* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

body {
  background: #f7f9fc;
  color: #222;
  line-height: 1.6;
}

.container {
  width: min(1150px, 94%);
  margin: 0 auto;
}

/* ==========================================================================
   2. DESKTOP HEADER & NAVIGATION
   ========================================================================== */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 80px;
  display: block;
}

/* Nav Menu */
.nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline-flex;
  position: relative;
  white-space: nowrap;
}

.nav a,
.nav a:link,
.nav a:visited {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav ul li a:hover {
  color: #0066ff !important;
  text-decoration: none !important;
}

/* Dropdown Menu (Desktop) */
.dropdown {
  position: relative !important;
  display: inline-block !important;
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #fff !important;
  padding: 20px 30px !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
  width: 350px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  pointer-events: none;
  z-index: 99999 !important;
  display: block !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
  pointer-events: auto !important;
}

.dropdown-menu li {
  list-style: none !important;
  margin-bottom: 15px !important;
  display: block !important;
}

.dropdown-menu li:last-child {
  margin-bottom: 0 !important;
}

.dropdown-menu a {
  text-decoration: none !important;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

/* Header Button */
.header-btn {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white !important;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.header-btn:hover {
  background: #0567e7;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

/* Hide Hamburger Menu Button on Desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease, transform 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.04);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: white;
  z-index: 10;
  padding: 0 20px;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
}

.circle-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.circle-arrow-btn:hover .arrow-circle {
  background: rgba(255,255,255,0.32);
  transform: translateX(4px);
}

.circle-arrow-btn svg {
  transition: 0.35s ease;
}

.circle-arrow-btn:hover svg {
  transform: translateX(3px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.hero-slide.active .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   4. PREMIUM FEATURE CARDS SECTION
   ========================================================================== */
.features {
  width: 100%;
  max-width: 1400px !important;
  margin: -70px auto 50px !important;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap !important;
  gap: 36px !important;
  position: relative;
  z-index: 50;
}

.feature-card {
  width: 300px !important;
  flex-shrink: 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border: 1px solid #e6eff6;
  border-radius: 20px !important;
  padding: 35px 30px 35px 75px !important;
  box-shadow: 0 20px 35px rgba(0, 70, 140, 0.06) !important;
  transition: 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px rgba(0, 70, 140, 0.12) !important;
}

.feature-num {
  position: absolute;
  left: 25px;
  top: 35px;
  margin: 0;
  width: 44px !important;
  height: 44px !important;
  font-size: 20px !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, #d9edff 0%, #cbe4ff 100%);
  color: #0a6cd0 !important;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #10375c;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #3c4b5a;
}

/* Hover effect helper classes */
.hover-blue {
  position: absolute;
  inset: 0;
  background: #007bff;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card.hover-active .hover-blue {
  opacity: 1;
}

/* ==========================================================================
   5. ADVANTAGES SECTION
   ========================================================================== */
.advantages {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.advantages-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.adv-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.adv-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0b77e6;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.adv-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0f1724;
}

.adv-text {
  font-size: 15px;
  color: #3c4b5a;
  line-height: 1.65;
  margin-bottom: 28px;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #10375c;
  margin-bottom: 14px;
  line-height: 1.55;
}

.check-icon {
  width: 25px;
  height: 25px;
  background: #0b77e6;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* ==========================================================================
   6. WHAT WE BRING SECTION (FIXED FOR ALIGNMENT)
   ========================================================================== */
.what-we-bring {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

.sub-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0066ff;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  color: #10375c;
  margin-bottom: 20px;
}

.top-desc {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #617182;
}

.bring-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bring-box {
  background: #f8fba3; /* Subtle clean bg color structure */
  background: #f7f9fc;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: left;
  border: 1px solid #ebf1f6;
  transition: 0.3s ease;
}

.bring-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.my-icon {
  height: 55px;
  width: auto;
  margin-bottom: 25px;
  display: block;
}

.bring-box h4 {
  font-size: 20px;
  color: #10375c;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.bring-box p {
  font-size: 15px;
  color: #4f5e71;
  line-height: 1.6;
}

/* ==========================================================================
   7. ABOUT SECTION (FIXED SIDE-BY-SIDE GRID Layout)
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.section-tag {
  font-size: 14px;
  font-weight: 700;
  color: #0b77e6;
  margin-bottom: 15px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  color: #10375c;
  line-height: 1.25;
  margin-bottom: 25px;
}

.about-text {
  font-size: 16px;
  color: #4f5e71;
  margin-bottom: 20px;
  line-height: 1.65;
}

.about-btn {
  background: #10375c;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-btn:hover {
  background: #0b77e6;
}

/* Right Side Matrix Box */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-box {
  background: #f7f9fc;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eef3f7;
  transition: 0.3s ease;
}

.about-box:hover {
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(0,102,255,0.08);
  border-color: #cbe4ff;
}

.about-box .icon {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.about-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #10375c;
}

/* ==========================================================================
   8. ABOUT FEATURES GRID SECTION (FIXED FOR ALIGNMENT)
   ========================================================================== */
.about-features-section {
  padding: 90px 0;
  background: #f4f8fc;
  text-align: center;
}

.about-features-heading {
  font-size: 36px;
  font-weight: 800;
  color: #10375c;
  line-height: 1.3;
  margin-bottom: 55px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-feature-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 25px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,40,100,0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid #ebf1f6;
}

.about-feature-icon {
  width: 55px;
  height: 55px;
  background: #e6f0ff;
  color: #0066ff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-content h3 {
  font-size: 20px;
  color: #10375c;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-feature-content p {
  font-size: 15px;
  color: #52637a;
  line-height: 1.6;
}

.about-card-number {
  position: absolute;
  right: 25px;
  bottom: -15px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,102,255,0.04);
  pointer-events: none;
}

/* ==========================================================================
   9. CUSTOMER SERVICES SECTION (FIXED VERTICAL BOXES)
   ========================================================================== */
.customer-services {
  padding: 100px 0;
  background: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  color: #10375c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: #617182;
  margin-bottom: 60px;
}

.service-box {
  display: flex;
  gap: 35px;
  background: #f8fba3;
  background: #ffffff;
  border: 1px solid #e9eff5;
  padding: 45px;
  border-radius: 24px;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}

.service-box:hover {
  box-shadow: 0 20px 45px rgba(0,102,255,0.07);
  border-color: #d0e3ff;
}

.service-icon {
  flex-shrink: 0;
}

.service-icon img {
  width: 70px;
  height: auto;
}

.service-content h3 {
  font-size: 24px;
  color: #10375c;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 15px;
  color: #4f5e71;
  line-height: 1.65;
  margin-bottom: 15px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   10. FOOTER SECTION
   ========================================================================== */
.main-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #0066ff;
}

.footer-col p {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-gallery {
  width: 100%;
  max-width: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-bottom {
  max-width: 1150px;
  margin: 60px auto 0;
  padding: 25px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 14px;
}

/* Floating Widgets */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 9999;
}

.wa-text {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  font-weight: 500;
}

.wa-icon {
  position: relative;
}

.wa-icon img {
  width: 55px;
  height: 55px;
}

.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ==========================================================================
   11. CLEANED & MERGED MOBILE RESPONSIVE MEDIA QUERY (768px)
   ========================================================================== */
@media (max-width: 768px) {
  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    position: relative;
  }

  .logo img {
    height: 45px !important;
    width: auto !important;
  }

  .menu-toggle {
    display: block !important;
    order: 2 !important;
  }

  .header-btn {
    display: none !important;
  }

  .nav {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 15px 20px !important;
    z-index: 9999 !important;
    border-top: 1px solid #f0f0f0;
    overflow-x: visible !important;
    white-space: normal !important;
  }

  .nav.active {
    display: block !important;
  }

  .nav ul {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .nav ul li {
    width: 100% !important;
    display: block !important;
  }

  .nav ul li a {
    font-size: 16px !important;
    padding: 8px 0 !important;
    display: block !important;
    width: 100%;
  }

  .dropdown-menu {
    position: relative !important;
    box-shadow: none !important;
    padding: 10px 15px !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    transform: none !important;
  }

  /* Structural block alignments for mobile device screens */
  .features {
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-top: -20px !important;
    padding: 0 15px;
  }
  
  .feature-card {
    width: 100% !important;
  }

  .services-grid, 
  .advantages-wrapper,
  .about-container,
  .bring-row,
  .about-features-grid,
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .service-box {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .about-right {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px;
  }

  .about-feature-card {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
}