*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
body{
  margin: 0;
  background-color: white;
  color: rgba(0, 0, 0, 0.49);
  font-family:'Times New Roman', Times, serif;
  
}

a#products:visited,a#products:link{
  color:beige;
}
a#products:hover{
  color:rgb(8, 8, 51);
  font-weight: 600;
  font-size:larger;
}

/* ====== Default Mobile View (your original) ====== */
 /* ===================== MOBILE + DEFAULT (TOP NAV) ===================== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2px 15px;
      background-color:beige;
      color:  #151515;
      height: 60px;
      position: relative;
      z-index: 1000;
    }

    .logo img {
      width: 200px;
      padding: 10px;
      border-radius: 10px;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1rem;
      margin: 0;
      padding: 0;
    }

    nav ul li a {
      color: beige;
      text-decoration: none;
      font-weight: 500;
      font-size: 19px;
    }
    #hover:hover{
      font-size: 28px; 
    }

    /* Dropdown menu for desktop (default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: black;
      top: 100%;
      left: 0;
      min-width: 180px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 10;
    }

    .dropdown-content a {
      display: block;
      color: white;
      padding: 8px 12px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* ===================== MOBILE VIEW ===================== */
    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        background-color: black;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 5px;
        padding: 1rem;
      }

      nav ul.show { display: flex; }

      .menu-toggle { display: block; }

      /* disable hover dropdown on mobile */
      .dropdown:hover .dropdown-content { display: none; }

      .dropdown.open .dropdown-content { display: block; }

      .dropdown-content {
        position: static;
        box-shadow: none;
      }
       .logo img {
      width: 150px;
      padding: 10px;
      border-radius: 10px;
    }

    }

    /* ===================== PC VIEW - LEFT SIDEBAR ===================== */
    @media (min-width: 769px) {
      body {
        display: flex;
      }

      header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100vh;
        width: 220px;
        position: fixed;
        top: 0;
        left: 0;
        background-color:beige;
        padding: 20px 0;
      }

      .menu-toggle { display: none; } /* hide toggle on PC */

      nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin: 0;
      }

      nav ul li a {
        display: block;
        padding: 12px 15px;
        width: 100%;
        color: #151515;
      }

      

      /* PC dropdown fix */
      .dropdown-content {
        display: none;
        position: relative;
        margin-left: 15px;
      }
      .dropdown:hover .dropdown-content { display: block; }

      /* Main content */
      main {
        margin-left: 220px;
        padding: 20px;
        width: calc(100% - 220px);
        box-sizing: border-box;
      }
    }

    /* Optional: simple gallery layout */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      border-radius: 12px;
    }


/*below header 1st heading */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .v1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  @media (min-width: 768px) {
    .v1 {
      flex-direction: row;
      justify-content: center;
      gap: 80px;
    }
  }

  .video-v1 {
    flex: 1;
    max-width: 480px;
    width: 100%;
  }

  video {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .v2-v1 {
    flex: 1;
    width: 100%;
    max-width: 480px;
    padding: 0 15px;
    text-align: center;
  }

  @media (min-width: 768px) {
    .v2-v1 {
      text-align: left;
    }
  }

  .v2-v1 h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
    color:black;
  }

  .v2-v1 p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color:black;
    line-height: 1.6;
    text-align: center;
  }

  button {
    margin-top: 20px;
    font-size: 1rem;
    padding: 0.7em 1.5em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #0056b3;
  }

/*second heading in index page*/

.secondpara {
      background-image:linear-gradient(to right,rgb(133, 133, 249),skyblue);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px 15px;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .secondpara {
        flex-direction: row;
        padding: 40px 20px;
        gap: 40px;
      }
    }

    .text {
      flex: 1;
      width: 100%;
      max-width: 600px;
    }

    .text h1 {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      margin-bottom: 1rem;
      color:black;
      text-align: center;
    }

    .text p {
      font-size: clamp(1rem, 2.5vw, 1.1rem);
      color: black;
      line-height: 1.6;
      text-align: center;
      padding: 0 10px;
    }


    .slideshow {
      position: relative;
      width: 100%;
      max-width: 600px;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius:55px 55px 20px ;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      flex: 1;
    }

    .slide {
      display: none;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .overlay-text {
      position: absolute;
      bottom: 5%;
      left: 5%;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 0.5em 1em;
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      border-radius: 5px;
    }

   .show{
    display: block;
   }

 /* Map section */
#map-section {
  
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  column-gap: 50px;
}

.mapouter {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
}

.gmap_canvas iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

/* photos scrolling in products*/

    .photo-gallery-wrapper {
      position: relative;
      max-width: 100%;
      margin: auto;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .photo-scroll-wrapper {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      max-width: 80%;
      padding: 0.5rem;
      scroll-snap-type: x mandatory;
    }

    .photo-scroll-wrapper::-webkit-scrollbar {
      display: none;
    }

    .photos {
      flex: 0 0 auto;
      scroll-snap-align: start;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .photos img {
      width: 300px;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .dots-container {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      gap: 0.5rem;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #ccc;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #333;
    }

    @media (max-width: 600px) {
      .photos img {
        width: 200px;
        height: 130px;
      }
    }
  
/*
.gmap_canvas iframe {
  filter: invert(90%) hue-rotate(180deg);
  border-radius: 12px;
}
  */

/*support*/

.support {
      text-align: center;
      padding: 2rem 1rem;
      background-color: white;
    }

    .support h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: black;
    }

    .support p {
      font-size: 1.1rem;
      color: black;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .support h1 {
        font-size: 2.5rem;
      }
    }
/* Base styling */
#aboutus {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.about-text {
  max-width: 550px;
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  padding: 0 10px;
  color: black;
}

/*about vision*/
 .about-section {
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .about-section h2 {
      text-align: center;
      font-size: 2.0rem;
      margin-bottom: 50px;
      color:black;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .about-card {
      background-image:linear-gradient(to right,rgb(133, 133, 249),skyblue);
      border: 1px solid #e3e3e3;
     border-radius: 25px 45px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.5s, box-shadow 0.5s;
    }

    .about-card:hover {
      cursor:pointer;
      transform: translateY(-20px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .about-card i {
      font-size: 2rem;
      color:rgb(0, 0, 69);
      margin-bottom: 15px;
    }

    .about-card h4 {
      font-size: 1.25rem;
      margin-bottom: 10px;
      color:rgb(0, 0, 69);
    }

    .about-card p {
      font-size: 1rem;
      color: rgb(0, 0, 69);
      margin: 0;
    }

    @media (max-width: 600px) {
      .about-section {
        padding: 40px 15px;
      }

      .about-section h2 {
        font-size: 2rem;
      }

      .about-card {
        padding: 20px;
      }
    }
/*end here*/
/*About us what we do*/


.services-section {
  padding:  20px;
  text-align: center;
  
}
.services-section h2 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 10px;
}
.services-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  color:black;
  font-size: 1.1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.service-card {
  background-image:linear-gradient(to right,rgb(133, 133, 249),skyblue);
  border-radius: 25px 40px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card i {
  font-size: 2.5rem;
  color: rgb(0, 0, 69);
  margin-bottom: 15px;
}
.service-card h4 {
  font-size: 1.4rem;
  color: #002244;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1.0rem;
  color: rgb(0, 0, 69) ;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .about-text {
    font-size: 18px;
  }

  .about-img {
    width: 100%;
  }

  #aboutus {
    flex-direction: column;
    text-align: center;
  }

  #map-section {
    padding: 20px 10px;
  }

  .mapouter {
    height: 150px;
  }
}

/* Animation  content will be coming one by one */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*part 3 in index page*/

    /* image with text */
     .image-container {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: auto;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 25px 55px 20px ;
    }

    
     .rooms1,.rooms2{
      display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
    }

  .rooms1text,.rooms2text{
    max-width: 550px;
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  padding: 0 10px;
  color:black;
  }
  .swiper {
  width: 600px;
  height: 300px;
}

    @media (max-width: 480px) {
      .image-text {
        font-size: 6vw;
      } 
    }

    @media (max-width: 768px) {
  .rooms2 {
    flex-direction: column;
  }

  .rooms2text {
    order: 2; /* Move box1 below */
  }

  .rooms2text1 {
    order: 1; /* Move box2 above */
  }
}


/*section reveal*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*how it works*/
/* SECTION WITH BACKGROUND IMAGE */
.background-image {
  position: relative;
  background-image: url('CBR7.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

/* DARK OVERLAY FOR READABILITY */
.text-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 12px;
  max-width: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

/* HEADER TEXT */
.text-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

/* STEPS LAYOUT */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* INDIVIDUAL STEP */
.step {
  background-color: rgba(255, 255, 255, 0.1); /* Optional card style */
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  box-sizing: border-box;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  color: #fff;
  backdrop-filter: blur(4px);
}

/* ICON */
.step i {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
}

/* HEADINGS AND TEXT */
.step h1 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* FADE-IN ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .text-overlay h2 {
    font-size: 2rem;
  }
  .step {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 90%;
  }
  .text-overlay h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .text-overlay {
    padding: 20px 10px;
  }
  .step h1 {
    font-size: 1rem;
  }
  .step p {
    font-size: 0.9rem;
  }
}

/*quote book consultation on home page*/
/* Add to style.css */
.quote {
  padding: 2rem 1rem;
  background-color: white;
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.quote-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.quote-text h1 {
  font-size: 3rem;
  color: #002244;
  margin-bottom: 1rem;
}

.quote-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #00aaff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #0077cc;
}

.quote-img {
  flex: 1 1 300px;
  text-align: center;
}

.quote-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .quote-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .quote-text{
    margin-bottom: 0rem;
  }
  .quote-text h1 {
    font-size: 2.2rem;
  }

  .quote-text p {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .quote-img{
    margin-top: 0rem;
  }
}


/*our special partners*/


    .partners-section {
      text-align: center;
      padding: 40px 20px;
      background: #ffffff;
    }

    .partners-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #222;
    }

    /* Wrapper keeps content centered */
    .partners-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px; /* ensures spacing */
      align-items: center;
      justify-items: center;
    }

    .partner-logo {
      background: #fff;
      border: 2px solid #eee;
      padding: 15px;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 200px; /* prevents full stretch */
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .partner-logo img {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
    }

    .partner-logo:hover {
      transform: scale(1.05);
      box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    }

    /* Tablet */
    @media (max-width: 768px) {
      .partners-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
      }

      .partner-logo {
        height: 80px;
        max-width: 160px;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .partners-section {
        padding: 40px 15px;
      }

      .partners-section h2 {
        font-size: 1.3rem;
      }

      .partners-grid {
        gap: 15px;
      }

      .partner-logo {
        height: 70px;
        max-width: 130px;
        padding: 10px;
      }
    }

