.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eac12b;
  padding: 10px 30px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

ul li {
  position: relative;
  margin-left: 20px;
}

ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  display: block;
}

ul li a:hover {
  color: #095b8a;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #eac12b;
  min-width: 200px;
  z-index: 1000;
  flex-direction: column;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 10px 15px;
  color: #fff;
}

.dropdown-menu li a:hover {
  color: #095b8a;
}

/* Toggle Button for Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .logo img {
    height: 40px;
    margin-bottom: 10px;
  }

  .menu-toggle {
    display: block;
    margin-top: -50px;
    margin-left: 90%;
  }

  ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #eac12b;
  }

  ul.active {
    display: flex;
  }

  ul li {
    margin: 0;
    width: 100%;
  }

  ul li a {
    width: 100%;
    padding: 10px;
    background-color: #eac12b;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
  }
}


    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
     
    }
.carousel {
  width: 100%;
  position: relative;
}

.carousel-img {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== UPDATED CAROUSEL TEXT ========== */
.carousel-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); /* Very light dark overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
}


.carousel-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.carousel-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.carousel-text p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.carousel-btn {
  display: inline-block;
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #eac12b;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.carousel-btn:hover{
  background-color: #095b8a;
  color: white;
}


.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  z-index: 10;
}

.owl-nav button.owl-prev {
  left: 10px;
}

.owl-nav button.owl-next {
  right: 10px;
}

.owl-nav button span {
  font-size: 40px;
  color: white;
}

/* ================= MOBILE RESPONSIVE CSS =================== */
@media (max-width: 768px) {
  .carousel-img {
    height: 300px;
  }

  /* ====== UPDATED CAROUSEL TEXT FOR MOBILE ====== */
 .carousel-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.6);
  width: 90%;
}

.carousel-text h1 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.carousel-text h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.carousel-text p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

 .carousel-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  /* About section (unchanged) */
  .about .column {
    min-width: 100%;
    padding: 10px;
  }

  .about .column img {
    max-width: 100%;
  }
}

        /******************************** about **************************** */
    .about {
  padding: 0 0 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #d4d9dc;
}

.about .column {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  box-sizing: border-box;
}

.about .column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about .column p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}
.column h1{
    text-align: center;
 margin-bottom: 30px;
   
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .about .row {
    flex-direction: column;
  }

  .about .column {
    padding: 10px;
  }

  .about .column p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ===== Review Section ===== */
.review-section {
  background-color: #ddfef8;
  padding: 50px 0;
}

/* ===== Container ===== */
.review-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Layout: 1 Row, 2 Columns ===== */
.review-layout {
  display: flex;
  gap: 30px;
}

/* ===== Left Column (25%) ===== */
.review-left-space {
  width: 30%;
  border-radius: 8px;

  /* Flex to center content vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-left-space h2{
  margin-top: 10%;
}

.review-left-space img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
/* ===== Right Column (75%) ===== */
.review-content {
  width: 70%;
}

/* Section Heading */
.review-heading {
  text-align: center;
  margin-bottom: 20px;
}

.review-heading p {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
}

/* ===== Review Slider ===== */
.review-slider {
  overflow: hidden;
  position: relative;
}

/* Scrolling Track */
.review-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

#track-2,
#track-4 {
  animation: scroll-right 25s linear infinite;
}

/* Review Card */
.review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name Below Image */
.name {
  text-align: center;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-top: 8px;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .review-layout {
    flex-direction: column;
  }
 
  .review-left-space img {
    display: block;
    margin: 20px auto;     /* centers horizontally and adds top/bottom space */
    max-width: 70%;        /* scales image for mobile */
  }
 

  .review-left-space,
  .review-content {
    width: 100%;
  }

  .review-left-space h2 {
    font-size: 22px;
    text-align: center;
    
  }

  .review-left-space p {
    font-size: 15px;
    text-align: center;
  }

  .review-card {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 12px;
  }
}

 

/* company */
.our-team {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.our-team h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.team-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.team-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.team-member {
    flex: 0 0 auto;
    width: 250px;
    height: 200px;
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* padding: 20px; */
}

.team-member img {
    width: 70%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    margin-top: 30px;
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1em;
    color: #666;
}
@media (max-width: 768px) {
  .our-team h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-250px * 10)); /* Adjust this value according to the number of team members */
    }
}

@media (max-width: 768px) {
    .team-member {
        width: 200px;
    }

    @keyframes scroll {
        to {
            transform: translateX(calc(-200px * 10)); /* Adjust this value for mobile */
        }
    }
}
 

 

  /* --- FOOTER STYLING --- */
.footer {
  background-color: #1f1e40;
  color: #f5f4f5;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
}

.footer .brand-info {
  flex: 1 1 250px;
}

.footer .brand-info img {
  width: 75px;
  margin-bottom: 15px;
}

.footer .brand-info h3 {
  margin: 8px 0;
}

.footer .brand-info p {
  line-height: 1.5;
}
 
/* --- Footer Links --- */
.footer-links {
  flex: 1 1 200px;
  padding-left: 70px;
  margin-top: 50px;
  padding-right: 20px;
}

.footer-links h4 {
  text-decoration: underline;
  margin-bottom: 30px;
}

.footer-links p {
  position: relative;
  margin: 15px 0;
  padding-left: 20px;
}

.footer-links p::before {
  content: "›";
  position: absolute;
  left: 10px;
}

.footer-links a {
  color: #f5f4f5;
  text-decoration: none;
}

.footer-links p:hover,
.footer-links a:hover {
  color: #095b8a;
  text-decoration: underline;
}

/* --- Contact Section --- */
.footer-contact {
  flex: 1 1 300px;
}

.footer-contact iframe {
  width: 400px;
  height: 200px;
  border: none;
  margin-bottom: 15px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.footer-contact .contact-item i {
  margin-right: 10px;
  font-size: 18px;
}

.footer-contact .contact-item a {
  color: #f5f4f5;
  text-decoration: none;
}

.footer-contact .contact-item a:hover {
  color: #095b8a;
}

/* --- Social Icons --- */
.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #095b8a;
}

/* --- Copyright --- */
.copyright {
  background-color: #1f1e40;
  color: #cccccc;
  font-size: 14px;
  width: 100%;
  margin-top: 30px;
}

.copyright .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.copyright .col-md-6 {
  padding: 5px 10px;
  text-align: left;
}

.copyright .col-md-6:last-child {
  text-align: right;
}

.copyright a {
  color: #f5f4f5;
  text-decoration: none;
}

.copyright a:hover {
  color: #095b8a;
  text-decoration: underline;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 15px;
  }

  .footer-links,
  .footer .brand-info,
  .footer-contact {
    padding: 0;
    margin-top: 20px;
    flex: 1 1 100%;
  }

  .footer-contact iframe {
    width: 100%;
    height: 180px;
  }

  .footer-links p {
    padding-left: 40px;
  }

  .social-icons a {
    font-size: 18px;
    margin-right: 10px;
  }

  .copyright .row {
    flex-direction: column;
    text-align: center;
  }

  .copyright .col-md-6 {
    text-align: center !important;
    margin: 5px 0;
  }
}


    /* === Popup Styles === */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .popup-box {
      background: #fff;
      padding: 30px;
      max-width: 400px;
      width: 90%;
      border-radius: 10px;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      background: none;
      border: none;
      color: #000;
      cursor: pointer;
    }

    .popup-right h2 {
      margin-bottom: 20px;
      font-size: 22px;
      color: #1f1e40;
    }

    .popup-box input,
    .popup-box select,
    .popup-box textarea {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .popup-box button[type="submit"] {
      background-color: #eac12b;
      color: white;
      border: none;
      padding: 10px 20px;
      width: 100%;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

    .popup-box button[type="submit"]:hover {
      background-color: #095b8a;
    }

    @media (max-width: 500px) {
      .popup-box {
        padding: 20px;
      }
    }



/* <!-- ****************************  Icons in Small Container--css *****************************--> */
      .container {
      background-color: #6ec6cb;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-top: 100px; /* move everything down */
    margin: 40px;
}


      .play-area {
    position: relative;
    width: 400px;
    height: 300px;
     background-image: url(images/bg.jpg);
    border: 2px solid #00bcd4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 100px; /* This moves only the box down */
}


        .icon {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
            user-select: none;
        }

        .about-rr {
            max-width: 500px;
        }

        .about-rr h1 {
            margin-bottom: 5px;
            color:black;
        }

        .about-rr h5 {
            margin-top: 10px;
            color:white;
        }

        .about-rr p {
            
            color:white;
            font-size: 18px;
        }

        .about-rr h2 {
            margin-top: 20px;
            color: white; 
            
        }


/* ================= MOBILE RESPONSIVE CSS =================== */
@media (max-width: 768px) {

  
 
  /* Icon box responsiveness */
  .container {
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
           margin: 10px;
        padding-top: 20px;
  }

  .play-area {
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
  }

  .about-rr {
    padding: 10px;
  }

  /* Popup box width fix */
  .popup-box {
    flex-direction: column;
    width: 90%;
  }
}
