/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    color: #fff;
  }
  
  .logo img {
    height: 60px;
    width: 200px;
    object-fit: contain;
  }
  
  @media screen and (max-width: 768px) {
    .logo img {
      height: 40px;
      width: 60px;
    }
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  .nav-links .bntnav{
    margin-top: -10px;
  }
  
  /* 🍔 Hamburger Icon */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 20;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* 📱 Mobile styles */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      background-color: rgba(0, 0, 0, 0.9);
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px 0;
      transform: translateY(-200%);
      transition: transform 0.3s ease;
    }
  
    .nav-links.active {
      transform: translateY(0);
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 100px; /* Fixed overlap issue */
    scroll-margin-top: 100px;
  }
  
  .bg-video {
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-content h1 span {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
  
  /* About Section */
  .about {
    padding: 80px 40px;
    background-color: #f9f9f9;
    min-height: 80vh;
    scroll-margin-top: 100px;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  @media screen and (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text h2 {
      font-size: 2rem;
    }
  }
  
  /* Services Section */
  .services {
    padding: 80px 40px;
    background-color: #d4d2d2;
    min-height: 80vh;
    scroll-margin-top: 100px;
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .services-container h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #222;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: #ebe9e9;
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  
  .service-card img {
    width: 60px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
  }


  .quote-btn1 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .quote-btn1:hover {
    background-color: #000;
    transform: translateY(-2px);
  }
  
  .quote-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .quote-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
  }


  /* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 22px;
  cursor: pointer;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

.modal-content form input,
.modal-content form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  background: #111;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  margin-top: 5px;
}

.submit-btn:hover {
  background: #222;
}
textarea {
  resize: vertical;
  min-height: 100px;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
}


  /* 💸 Pricing Section */
.pricing {
  padding: 80px 40px;
  background: #f9f9f9;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.pricing-tabs .tab {
  padding: 10px 20px;
  background: #eee;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.pricing-tabs .tab.active {
  background: #222;
  color: #fff;
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 1.6rem;
  color: #222;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
}



  /* Contact Section */
  .contact-section {
    background: #b4b7b8;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 100px;
  }
  
  .contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
  }
  
  .contact-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .contact-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
  }
  
  .contact-form {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background-color: #f5f7fa;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow 0.3s ease;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    box-shadow: inset 0 0 0 2px #dcdddd;
    outline: none;
    background-color: #fff;
  }
  
  .submit-btn {
    background-color: #7e7e7e;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #b1b1b1;
  }
  
  /* Social Media Icons */
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icon {
    background-color: #333;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .social-icon.facebook { background-color: #3b5998; }
  .social-icon.twitter { background-color: #1da1f2; }
  .social-icon.instagram { background-color: #e1306c; }
  .social-icon.linkedin { background-color: #0077b5; }
  
  @media screen and (max-width: 600px) {
    .contact-card {
      padding: 30px 20px;
    }
  
    .social-links {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 15px;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  
  /* Footer Styles */
  .footer {
    background: #111;
    color: #fff;
    padding: 60px 40px 20px;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }
  
  .footer-logo img {
    max-width: 120px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    max-width: 300px;
    color: #bbb;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 8px 0;
  }
  
  .footer-links ul li a {
    color: #bbb;
    text-decoration: none;
  }
  
  .footer-links ul li a:hover {
    color: #fff;
  }
  
  .footer-socials .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    text-align: center;
    align-items: center;
  }
  
  .footer-socials i {
    font-size: 20px;
    color: #bbb;
    transition: 0.3s;
  }
  
  .footer-socials i:hover {
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #777;
  }
    
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-right {
      margin-top: 15px;
    }
  }
  
  /* Scroll to Top Button */
  #scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #333;
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #scrollToTopBtn:hover {
    background-color: #555;
    transform: translateY(-3px);
  }

  /* CTA Book Us Button */
.cta-btn {
    margin-left: 20px;
    padding: 10px 24px;
    background-color: #062347;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    border: none;
    box-shadow: 0 2px 8px rgba(0,114,255,0.08);
    display: inline-block;
}

.cta-btn:hover {
    background-color: #636870;
    transform: translateY(-2px);
}

/* --- Partners Page Pro Styling --- */
.partners-hero {
  position: relative;
  height: 60vh;
  width: 100%;
  background: linear-gradient(90deg, #8d939b 0%, #dbdfe6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  color: #fff;
  text-align: center;
}

.partners-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.partners-hero h1 span {
  color: #fff;
  background: linear-gradient(90deg, #161616 0%, #707172 100%);
  padding: 0 8px;
  border-radius: 6px;
  font-style: italic;
}

.partners-hero p {
  font-size: 1.3rem;
  color: #e6f0ff;
  margin-bottom: 0;
}

.partners-about {
  background: #fff;
  padding: 60px 20px;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-about .about-container {
  max-width: 700px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 114, 255, 0.08);
  padding: 40px 30px;
}

.partners-about h2 {
  font-size: 2.2rem;
  color: #323335;
  margin-bottom: 18px;
  font-weight: bold;
}

.partners-about p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 18px;
}

.partners-about ul {
  padding-left: 18px;
  color: #2e2f31;
  font-size: 1rem;
  margin-bottom: 0;
}

.partners-about ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.partners-contact-section {
  background: linear-gradient(90deg, #ebeef3 0%, #5a5e5d 100%);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 114, 255, 0.10);
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.partners-contact-card h2 {
  font-size: 2rem;
  color: #515355;
  margin-bottom: 18px;
  font-weight: bold;
}

.partners-contact-card .form-group input,
.partners-contact-card .form-group select,
.partners-contact-card .form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ced0d3;
  border-radius: 10px;
  background: #f5f7fa;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border 0.3s;
}

.partners-contact-card .form-group input:focus,
.partners-contact-card .form-group select:focus,
.partners-contact-card .form-group textarea:focus {
  border: 1.5px solid #02152c;
  outline: none;
  background: #fff;
}

.partners-contact-card .submit-btn {
  background: #14171b;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 10px;
}

.partners-contact-card .submit-btn:hover {
  background: #19191a;
}

@media screen and (max-width: 768px) {
  .partners-hero {
    padding-top: 80px;
    height: auto;
    min-height: 30vh;
  }
  .partners-hero h1 {
    font-size: 2rem;
  }
  .partners-about .about-container,
  .partners-contact-card {
    padding: 25px 10px;
  }
}


