*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #1a2340; }

  /* ── Variables ── */
  :root {
    --navy:  #0F2557;
    --sky:   #1E6FD9;
    --amber: #F5820D;
    --slate: #F0F4FA;
    --white: #ffffff;
  }

  /* ── Utility ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .section-label { color: var(--amber); font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
  .section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: var(--navy); margin-bottom: 14px; }
  .section-sub  { color: #667; font-size: 15px; line-height: 1.7; max-width: 520px; }
  .text-center  { text-align: center; }
  .mx-auto      { margin-left: auto; margin-right: auto; }

  /* ── Fade-in animation ── */
  .fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ══════════════════════════════════════
     NAVBAR
  ══════════════════════════════════════ */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,37,87,0.92); backdrop-filter: blur(10px);
    transition: background 0.3s, box-shadow 0.3s;
  }
  #navbar.scrolled { background: #0F2557; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
  }
  .logo { 
    display: flex; 
    align-items: center; 
    gap: 10px;
    cursor: pointer; 
    text-decoration: none; }
  .logo-icon img{
    width: 50px; height: 50px; border-radius: 25px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-name { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: 0.3px; }
  .logo-tagline { font-size: 10px; color: #93B8F5; letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a {
    color: #CBD9F5; font-size: 14px; font-weight: 600; text-decoration: none;
    padding: 6px 0; letter-spacing: 0.4px; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--amber); }

.navbar li {
  position: relative; 
}

.navbar a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-family: sans-serif;
}

.navbar a:hover {
  background-color: #555;
}

/* --- 2. The Dropdown Container (Hidden by Default) --- */
.dropdown-content {
  display: none; /* Hides the menu initially */
  position: absolute; /* Pulls it out of the normal flow so it drops down */
  background-color: #f9f9f9;
  min-width: 200px; /* Width of your dropdown */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1; /* Ensures the dropdown stays on top of other content */
  
  /* Reset list styles for the nested list */
  padding: 0;
  margin: 0;
  list-style-type: none; 
}

/* Style the links inside the dropdown */
.dropdown-content li a {
  color: black;
  padding: 12px 16px;
  text-align: left;
}

.dropdown-content li a:hover {
  background-color: #ddd; /* Hover effect for dropdown links */
}

/* --- 3. The Hover Trigger --- */
/* When you hover over the .dropdown list item, change .dropdown-content to block */
.dropdown:hover .dropdown-content {
  display: block;
}


  .btn-call-nav {
    background: linear-gradient(135deg,#F5820D,#e0700a);
    color: #fff; border: none; border-radius: 8px; padding: 9px 20px;
    font-weight: 700; font-size: 13px; cursor: pointer; display: flex;
    align-items: center; gap: 6px; transition: transform 0.2s;
  }
  .btn-call-nav:hover { transform: translateY(-1px); }
  .hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none; background: #0F2557;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0 14px;
  }
  .mobile-menu a {
    display: block; color: #CBD9F5; font-size: 15px; font-weight: 600;
    padding: 12px 24px; text-decoration: none;
  }
  .mobile-menu.open { display: block; }

  @media(max-width:768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero { padding-top: 48px; }
  }

  /* ══════════════════════════════════════
     HERO
  ══════════════════════════════════════ */
.page-hero {
  margin-top: 68px;
  padding: 44px 24px 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
}
.breadcrumb {
  color: #667;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.breadcrumb a {
  color: #667;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  opacity: 0.72;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.page-hero-content h1 {
  color: var(--navy);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-link {
  color: var(--sky);
  font-weight: 700;
  text-decoration: none;
}
.page-hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15,37,87,0.16);
  object-fit: cover;
}

/* Hero Slider Container */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 68px);
  min-height: 520px;
  margin-top: 68px;
  overflow: hidden;
  background-color: #000;
}

/* Slides Wrapper */
.slides-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Individual Slide */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65; /* Darkens the image for better text readability */
}

/* Slide Content Overlay */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 80%;
  max-width: 800px;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cta-btn {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #ffffff;
  color: #333333;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #dddddd;
}

/* Navigation Buttons (Left & Right Arrows) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 15px;
  border-radius: 4px;
}

.next-btn {
  right: 15px;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2.2rem;
  }
  .slider-btn {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
}
  /* ══════════════════════════════════════
     SERVICES
  ══════════════════════════════════════ */
  #services { padding: 90px 24px; background: var(--slate); }
  .services-header { margin-bottom: 52px; }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px;
  }
  .service-card {
    background: #fff; border-radius: 16px; padding: 28px;
    box-shadow: 0 2px 16px rgba(15,37,87,0.07);
    border: 1px solid rgba(15,37,87,0.06);
    transition: transform 0.3s, box-shadow 0.3s; cursor: default;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15,37,87,0.14); border-radius: 30px 30px 30px 0;}
  .service-card-img{
    width: 100%;
    height: 300px;
    display: flex;
    object-fit: cover;
    overflow: hidden;
    border-radius: 3%;
}
  .service-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .service-card p { color: #667; font-size: 14px; line-height: 1.75; }
  .service-cta {
    margin-top: 16px; display: inline-flex; align-items: center; gap: 4px;
    font-weight: 700; font-size: 13px; cursor: pointer; text-decoration: none;
    transition: gap 0.2s;
  }
  .service-cta:hover { gap: 8px; }
  /* ══════════════════════════════════════
     WHY CHOOSE US
  ══════════════════════════════════════ */
  #about { padding: 90px 24px; background: var(--navy); }
  #about .section-title { color: #fff; }
  #about .section-sub { color: #93B8F5; }
  .why-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px;
    margin-top: 8px;
  }
  .why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 24px; display: flex; gap: 18px; align-items: flex-start;
    transition: background 0.3s;
  }
  .why-card:hover { background: rgba(255,255,255,0.09); }
  .why-icon {
    width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
    background: rgba(245,130,13,0.2); display: flex; align-items: center; justify-content: center;
  }
  .why-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
  .why-card p { color: #93B8F5; font-size: 14px; line-height: 1.65; }

  /* ══════════════════════════════════════
     NET TYPES
  ══════════════════════════════════════ */
  #net-types { padding: 90px 24px; background: var(--slate); }
  .net-types-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
    margin-top: 8px;
  }
  .net-type-card {
    background: #fff; border-radius: 20px; padding: 22px;
    box-shadow: 0 8px 24px rgba(15,37,87,0.08);
    border: 1px solid rgba(15,37,87,0.06);
    text-decoration: none; color: inherit; display: block;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .net-type-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,37,87,0.16); }
  .net-type-image {
    width: 100%; height: 220px; object-fit: cover; border-radius: 14px; margin-bottom: 16px;
  }
  .net-type-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
  .net-type-card p { color: #667; font-size: 14px; line-height: 1.75; }

  /* ══════════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════════ */
  #testimonials { padding: 90px 24px; background: #fff; }
  .testi-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px;
    margin-top: 8px;
  }
  .testi-card {
    background: var(--slate); border-radius: 16px; padding: 26px;
    border: 1px solid rgba(15,37,87,0.07);
  }
  .stars { color: var(--amber); font-size: 17px; letter-spacing: 2px; }
  .testi-text { color: #334; font-size: 14px; line-height: 1.8; margin: 14px 0 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg,#1E6FD9,#0F2557);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
  }
  .testi-name { font-weight: 800; color: var(--navy); font-size: 14px; }
  .testi-loc { color: #778; font-size: 12px; }

  /* ══════════════════════════════════════
     SERVICE AREAS
  ══════════════════════════════════════ */
  #areas { padding: 70px 24px; background: var(--navy); text-align: center; }
  #areas .section-title { color: #fff; margin-bottom: 32px; }
  .areas-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
  .area-chip {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: #CBD9F5; border-radius: 50px; padding: 8px 20px; font-size: 14px; font-weight: 600;
  }
  #areas .note { color: #93B8F5; font-size: 14px; }

  /* ══════════════════════════════════════
     FAQ
  ══════════════════════════════════════ */
  #faq { padding: 90px 24px; background: var(--slate); }
  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
  .faq-item {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(15,37,87,0.06);
    border: 1px solid transparent; transition: border-color 0.2s;
  }
  .faq-item.open { border-color: var(--sky); }
  .faq-q {
    width: 100%; background: none; border: none; padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; text-align: left;
  }
  .faq-q span { font-weight: 700; color: var(--navy); font-size: 15px; }
  .faq-icon { color: var(--sky); font-size: 24px; line-height: 1; transition: transform 0.25s; font-weight: 300; flex-shrink: 0; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a { display: none; padding: 0 22px 18px; color: #556; font-size: 14px; line-height: 1.8; }
  .faq-item.open .faq-a { display: block; }

  /* ══════════════════════════════════════
     CONTACT
  ══════════════════════════════════════ */
  #contact { padding: 90px 24px; background: #fff; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  }
  .contact-info .section-sub { margin-bottom: 32px; }
  .contact-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: center; }
  .contact-row-icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
    background: var(--slate); display: flex; align-items: center; justify-content: center;
  }
  .contact-row-label { font-size: 12px; color: #778; font-weight: 600; }
  .contact-row-val { font-size: 15px; color: var(--navy); font-weight: 700; }
  .map-wrap { margin-top: 16px; border-radius: 14px; overflow: hidden; height: 200px; }
  .map-wrap iframe { width: 100%; height: 200px; border: 0; display: block; }
  .contact-form-wrap { background: var(--slate); border-radius: 18px; padding: 30px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .form-group label { font-size: 13px; font-weight: 700; color: var(--navy); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px; border-radius: 10px; border: 1.5px solid #dde3f0;
    font-size: 14px; color: #334; font-family: 'Inter',sans-serif;
    background: #fff; outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--sky); }
  .form-group .error { color: #e53; font-size: 12px; margin-top: 2px; display: none; }
  .form-group.has-error input,
  .form-group.has-error select,
  .form-group.has-error textarea { border-color: #e53; }
  .form-group.has-error .error { display: block; }
  .form-group textarea { resize: vertical; }
  .btn-submit {
    width: 100%; background: linear-gradient(135deg,#F5820D,#e0700a);
    color: #fff; border: none; border-radius: 12px; padding: 15px;
    font-weight: 800; font-size: 16px; cursor: pointer; transition: opacity 0.2s;
    font-family: 'Inter',sans-serif;
  }
  .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
  .form-note { text-align: center; font-size: 12px; color: #889; margin-top: 8px; }
  .form-success {
    display: none; background: #f0fff4; border: 2px solid #22c55e;
    border-radius: 16px; padding: 40px; text-align: center;
  }
  .form-success h3 { color: #166534; font-weight: 800; font-size: 22px; margin: 16px 0 10px; }
  .form-success p { color: #15803d; font-size: 14px; }

  @media(max-width:768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ══════════════════════════════════════
     FOOTER
  ══════════════════════════════════════ */
  footer { background: #07152E; color: #93B8F5; padding: 56px 24px 0; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    max-width: 1200px; margin: 0 auto;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
  .footer-logo-icon {
    width: 36px; height: 36px; border-radius: 10px;
    
    display: flex; align-items: center; justify-content: center;
  }

  .footer-logo-name { font-weight: 800; font-size: 16px; color: #fff; }
    .footer-logo-name-extra { font-weight: 800; font-size: 14px; color: #fff; }
  .footer-brand p { font-size: 13px; line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
  .social-row { display: flex; gap: 12px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: background 0.2s;
    text-decoration: none;
  }
  .social-btn:hover { background: rgba(245,130,13,0.25); }
  .footer-col h4 { color: #fff; font-weight: 800; font-size: 14px; margin-bottom: 18px; }
  .footer-link {
    display: block; color: #93B8F5; font-size: 13px; margin-bottom: 10px;
    text-decoration: none; transition: color 0.2s; cursor: pointer;
  }
  .footer-link:hover { color: var(--amber); }
  .footer-text { font-size: 13px; margin-bottom: 10px; line-height: 1.6; }
  .footer-bottom {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;    /* Center them horizontally */
    gap: 12px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copyright-center span {
    font-size: 15px;      /* Slightly larger for visibility */
    font-weight: 700;    /* Bold to match branding */
    color: #fff;         /* High contrast against dark background */
    letter-spacing: 0.5px;
}
  @media(max-width:768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width:480px) {
    .footer-grid { grid-template-columns: 1fr; }
  }
  @media(max-width:768px){
    .footer-logo-name-extra {
      display: none;
    }
  }

  /* ══════════════════════════════════════
     FLOATING BUTTONS
  ══════════════════════════════════════ */
  .btn-call {
  position: fixed;
  right: 20px;
  bottom: 170px; 
  width: 56px;
  height: 56px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(103, 148, 216, 0.5);
  text-decoration: none;
  z-index: 999;
  transition: transform .2s ease;
}
  .btn-whatsapp {
    position: fixed; bottom: 90px; right: 20px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%; background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none;
    transition: transform 0.2s;
  }
  .btn-whatsapp:hover { transform: scale(1.1); }
  .sticky-call-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 998; padding: 10px 16px;
    background: linear-gradient(135deg,#0F2557,#1E6FD9);
  }
  .sticky-call-bar button {
    width: 100%; background: linear-gradient(135deg,#F5820D,#e0700a);
    color: #fff; border: none; border-radius: 12px; padding: 14px;
    font-weight: 800; font-size: 16px; cursor: pointer; font-family: 'Inter',sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }

  @media(max-width:768px) {
    .sticky-call-bar { display: block; }
    .btn-whatsapp { bottom: 80px; }
    body { padding-bottom: 68px; }
  }

  /* ══════════════════════════════════════
     SVG INLINE ICONS
  ══════════════════════════════════════ */
  .icon { width: 22px; height: 22px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }