@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e8f1ff;
}

/* ===== Header Style ===== */
    header {
  background-color: rgb(113, 176, 239);
   color: rgb(60, 60, 255);
  position: relative;
  z-index: 1000;
}


  


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:rgb(113, 176, 239);
  padding: 15px 40px;
  flex-wrap: wrap;
  height:150px
}

/* ===== Brand Section ===== */
.brand {
  color: #fff;
  line-height: 1.2;
}

.brand h1 {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px #020638;
  letter-spacing: 1px;
  letter-spacing: 4px;
}

.brand h3 {
  font-size: 1em;
  font-style: italic;
  margin-top: 4px;
  color: #1e57d1;
  letter-spacing: 2px;

}

.brand h2 {
  font-size: 0.85em;
  opacity: 0.9;
  letter-spacing: 2px;
  font-weight: 100;
}

/* ===== Navigation Left (Menu) ===== */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left ul li {
  position: relative;
}

.nav-left ul li a {
  text-decoration: none;
  color: #fff;
white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
  
}

.nav-left ul li a:hover {
  color: #1e1e1e;
}

/* Dropdown positioning fix */
.services {
      position: relative;
    }

    .services:hover .dropdown {
      display: block;
    }

    .services i {
      margin-left: 6px;
    }

    .services .dropdown li a {
      text-decoration: none;
      color: #ffffff;
      text-shadow: #050718;
      text-shadow: 1px 1px 2px #000000;
      font-size: 1.2em;
    }

    .services .dropdown {
      position: absolute;
      top: 30px;
      z-index: 8;
      width: 300px;
      background: rgb(113, 176, 239);
      color: #ffffff;
      padding: 20px;
      text-align: left;
      list-style: none;
      display: none;

    }

    .services .dropdown li {
      margin-bottom: 15px;

    }
/* ===== Enquire Now Button ===== */
.order-now {
  background-color: #fff3e0;
  border: 2px solid #f4c97d;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.order-now a {
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1rem;
}

.order-now:hover {
  background-color: #f4c97d;
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  
}

.bar {
  height: 3px;
  width: 25px;
  background: white;
  align-items: center;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Responsive Section ===== */

/* For Tablets and Mobiles */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 25px;
  }

  /* Hamburger visible */
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
  }

  /* Hide menu initially */
  .nav-left {
    display:none;
    position: absolute;
    width: 90%;
    align-items: center;
    flex-direction: column;
    background: #5d9cec;
    border-radius: 8px;
    padding-right: 30px;
    top: 60px;

  }


  .nav-left ul {
    flex-direction: column;
    width: 100%;
    gap: 5px;
    text-align: center;
  }

  .nav-left ul li {
    width: 100%;
  }

  .nav-left ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
  }

  .order-now {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* When menu checked */
  input[type="checkbox"]:checked ~ .nav-left {
    display: flex;
  }

 .services {
      position: relative;
    }

    .services:hover .dropdown {
      display: block;
    }

    .services i {
      margin-left: 10px;
    }

    .services .dropdown li a {
      text-decoration: none;
      color: #ffffff;
      text-shadow: #050718;
      text-shadow: 1px 1px 2px #000000;
      font-size: 1.2em;
    }

    .services .dropdown {
      position: absolute;
      top: 30px;
      z-index: 8;
      width: 300px;
      background: rgb(113, 176, 239);
      color: #ffffff;
      padding-left: 20px;
      text-align: center;
      list-style: none;
      display: none;
      border-radius: 8px;

    }

    .services .dropdown li {
      margin-bottom: 15px;

    }

  .brand {
    margin-bottom: 10px;
  }
}


/* For very small screens */
@media (max-width: 480px) {
  .brand {
    text-align: left;
    width: 100%;
  }

  .brand h1 {
    font-size: 1.5em;
  }

  .brand h3 {
    font-size: 0.9em;
  }

  .brand h2 {
    font-size: 0.7em;
  }
}
.about h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-top: 30px;
      margin-bottom: 30px;
      color: rgb(113, 176, 239);
      position: relative;}
    .about {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about img {
      flex: 1;
      max-width: 500px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .about-text {
      flex: 1;
    }

    .about-text p {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #333;
      text-align: center;
    }

.heading{
        text-align: center;
        margin: 40px 0 20px;
    }
    .heading h1{
        font-size: 2.5rem;
        color: rgb(113, 176, 239);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;

    }
    .card-container {
      width: 80%;
      padding: 100px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 5fr));
      gap: 100px;
      margin: 0 auto;
    }
    /* Individual card */
    .card {
      background: rgb(113, 176, 239);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      border: 1px solid #e0e0e0;
      /* Added border for better definition */
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Image section */
    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    /* Text section */
    .card-content {
      padding: 20px;
      text-align: center;
    }

    .card-content h2 {
      color: #fffbfb;
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .card-content p {
      color: #ffffff;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* Button */
    .card-content a {
      background-color: #4f46e5;
      color: white;
      text-decoration: none;
      padding: 10px 25px;
      border-radius: 8px;
      font-weight: bold;
      transition: background 0.3s ease;
      display: inline-block;
    }

    .card-content a:hover {
      background-color: #3730a3;
    }

/*
    .types .cards {
      width: 100%;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 5fr));
      gap: 100px;
      padding: 100px 10px;
      text-align: justify;
      position: relative;
    }

    .card {
      background: rgb(113, 176, 239);
      padding: 80px 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .card i {
      font-size: 2.5rem;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .card h3 {
      margin-bottom: 10px;
      color: #ffffff;
      font-size: 1.7rem;
    }

    .card p {
      color: #fff5f5;
      font-size: 1.1rem;
      margin-top: 10px;
      text-align: center;
    }


    .card:hover i {
      color: white;
    }
*/
    .benefits {
      background: rgb(113, 176, 239);
      color: rgb(255, 255, 255);
      border-radius: 20px;
      padding: 60px;
      margin-top: 10px;
    }

    .benefits .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }
    .benefits h2{
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: rgb(255, 255, 255);
      position: relative;
    }
    .benefits .card {
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 12px;
    }

    section.gallery h2 {
      color: #0c9eff;
      text-align: center;
      margin-top: 20px;
      font-weight: bold;
      font-size: 2rem ;
    }

    .gallery .images {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-top:  30px;

    }

    .gallery .images img {
      width: 90%;
      height: 280px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      margin: auto;
      display: block;
      cursor: pointer;
  
    }

    .gallery .images img:hover {
      transform: scale(1.05);
    }
  .order-btn {
      position: fixed;       /* Always visible */
      bottom: 200px;          /* Distance from bottom */
      right: 20px;           /* Distance from right */
      background-color: #25D366; /* WhatsApp green */
      color: white;
      padding: 15px 25px;
      font-size: 18px;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .order-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    /* Optional WhatsApp Icon */
    .order-btn img {
      width: 24px;
      height: 24px;
    }
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-0deg);
    opacity: 0.08;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    width: 1000px; /* adjust size */
  }
#scrollTopBtn {
      display: none;
      position: fixed;
      bottom: 80px;
      right: 30px;
      z-index: 99;
      font-size: 20px;
      border: none;
      outline: none;
      background-color: #5460ff;
      color: white;
      cursor: pointer;
      padding: 14px;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    #scrollTopBtn:hover {
      background-color: #555;
    }
    /* footer styles */
footer {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      padding: 40px 20px;
      background-color: #050718;
      color: #fff;
      margin-top: 30px;
    }

    .footer-col {
      flex: 1;
      margin: 0 20px;
    }

    .footer-col h3 {
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin: 8px 0;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: orange;
    }

    .footer-logo img {
      width: 250px;
      margin-bottom: 10px;
    }

    .footer-logo p {
      color: orange;
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-info p {
      margin: 10px 0;
    }

    .contact-info a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    .contact-info a:hover {
      color: orange;
    }