/* --- General --- */
body {
  background-color: #f4f4f4;
  color: #333;
}

/* --- 1. Top Bar --- */
.top-bar {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.top-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-overlay-text {
  position: absolute;
  top: 30px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

/* --- Navbar Tweaks --- */
.navbar-logo {
  
  max-height: 100px;
  width: auto;
}
.navbar-brand{
  padding: 0;
}
nav.navbar.navbar-expand-lg.navbar-light.bg-white.sticky-top.shadow-sm {
  padding:0;
}
.nav-link {
  font-size: 0.95rem;
  color: #333 !important;
  padding: 10px 15px !important;
}

.nav-link.active,
.nav-link:hover {
  background-color: #e0e0e0;
  border-radius: 4px;
}

/* --- Main Content --- */
.main-content {
  background-color: #e6e6e6;
  padding: 80px 0;
}

.custom-card {
  text-align: left;
}
.custom-card img {
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-card p {
  font-size: 0.95rem;
  color: #444;
}

/* --- Parallax --- */
.parallax-section {
  background-image: url("images/backgroundimage.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

.footer {
  padding: 20px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

/* --- COOKIE POPUP STYLES (Internal Content Only) --- */

.cookie-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Options Wrapper */
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.cookie-accordion-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}
.cookie-accordion-item:last-child {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Toggle Switch */
.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.option-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #999;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

input:disabled + .slider {
  background-color: #999;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Arrow Icon */
.arrow-icon {
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-block;
  width: 20px;
  text-align: center;
  line-height: 1;
  user-select: none;
}

.arrow-icon.rotated {
  transform: rotate(180deg);
}

/* Hidden Text */
.cookie-option-detail {
  display: none;
  margin-top: 10px;
  padding: 0 5px;
}
.cookie-option-detail p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Buttons */
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btn-cookie {
  flex: 1;
  padding: 10px;
  border: none;
  background-color: #4a4a4a;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.btn-cookie:hover {
  background-color: #333;
}

.cookie-footer {
  text-align: right;
}

.cookie-footer a {
  font-size: 0.8rem;
  color: #555;
  text-decoration: underline;
}
.datems-head{
  font-size: 2.2rem;
}

@media (max-width: 600px) {
  .cookie-buttons {
    flex-direction: column;
  }
  .btn-cookie {
    width: 100%;
    margin-bottom: 5px;
  }
  .datems-head{
  font-size: 1.6rem;
}

  .top-overlay-text {
  font-size:1.6rem;
}
.top-bar{
  max-height: 40vh;
}
.parallax-section {
  height: 70vh;
}
}
.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 8px;
 
}

.form-control,
.form-select {
  border-radius: 2px;
 
  border: 1px solid #ccc;
  background-color: #e6e6e6;
 
  border: 1px solid #aaa;
}

.form-control:focus {
  background-color: #fff;
  box-shadow: none;
  border-color: #666;
}

/* Specifically style the textarea placeholder */
textarea::placeholder {
  color: #666;
}

.btn-submit {
  background-color: #a0a0a0;
  /* Match grey button color */
  color: #333;
  border: none;
  border-radius: 2px;
  padding: 8px 25px;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: #888;
  color: #000;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
        text-align: center;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 10px;
    }
}


        .side-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
           
            min-height: 400px;
           
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
           
        }

       
        @media (max-width: 991.98px) {
            .side-image-container img {
                min-height: auto;
                max-height: 300px;
               
                margin-bottom: 30px;
               
            }

           
            .content-row-1 {
                flex-direction: column-reverse;
            }

            .side-image-container {
                margin-bottom: 2rem;
            }
        }