:root {
   --primary:    #01579b;
      --accent: #388e3c;
      --med-deep:    #01579b;
      --med-primary: #0288d1;
      --med-accent:  #00bfa5;
      --med-green:   #388e3c;
      --bg-very-light:#f8fcff;
      --text-dark:   #0d1b2a;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--bg-very-light);
      color: var(--text-dark);
      line-height: 1.68;
    }

    /* ───────────────────────────────────────────────
       SECTION BACKGROUND PATTERNS
    ─────────────────────────────────────────────── */
    section {
      position: relative;
        padding: 50px 0;
      overflow: hidden;
    }
#contact form{padding: 35px;}
    section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.07;
      pointer-events: none;
      background-size: 90px 90px;
      background-repeat: repeat;
    }
    .form-control{font-size: 16px!important;}
h2{    margin-bottom: 30px!important;}
    #hero::before,
    #about::before,
    #why::before,
    #strengths::before,
    #services::before,
    #contact::before {
      background-image: var(--pattern);
    }
        .h3, h3 {
        font-size: 22px!important;}
#about img{    height: 600px;
    width: 100%;
    object-fit: cover;}
    #about p{font-size: 17px;}
    .card-body  {padding: 20px 25px!important;}
    /* Different subtle patterns per section */
    #hero::before       { --pattern: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%230288d1' stroke-width='1.1' fill='none' opacity='0.45'%3E%3Ccircle cx='45' cy='45' r='38'/%3E%3Ccircle cx='45' cy='45' r='22'/%3E%3Cpath d='M7 45h76 M45 7v76'/%3E%3C/g%3E%3C/svg%3E"); }
    #about::before      { --pattern: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45 15 L45 75 M15 45 L75 45' stroke='%2300bfa5' stroke-width='2' opacity='0.4'/%3E%3Ccircle cx='45' cy='45' r='18' stroke='%23388e3c' fill='none'/%3E%3C/svg%3E"); }
    #why::before        { --pattern: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30 Q50 10 70 30 Q90 50 70 70 Q50 90 30 70 Q10 50 30 30' stroke='%230288d1' fill='none' stroke-width='2.2' opacity='0.35'/%3E%3C/svg%3E"); }
    #strengths::before  { --pattern: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 40 Q40 20 60 40 Q80 60 60 80 Q40 100 20 80 Q0 60 20 40' stroke='%2300bfa5' fill='none' stroke-width='2' opacity='0.38'/%3E%3Ccircle cx='40' cy='40' r='12' fill='%2301579b' opacity='0.12'/%3E%3C/svg%3E"); }
    #services::before   { --pattern: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23388e3c' stroke-width='1.8' opacity='0.42'%3E%3Crect x='25' y='25' width='50' height='50' rx='8'/%3E%3Cline x1='50' y1='25' x2='50' y2='75'/%3E%3Cline x1='25' y1='50' x2='75' y2='50'/%3E%3C/g%3E%3C/svg%3E"); }
    #contact::before    { --pattern: url("data:image/svg+xml,%3Csvg width='110' height='110' viewBox='0 0 110 110' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 55 Q55 20 90 55 Q55 90 20 55' stroke='%230288d1' fill='none' stroke-width='2.5' opacity='0.32'/%3E%3C/svg%3E"); }

    /* Navbar */
    .navbar {
      background: linear-gradient(135deg, #01579b 0%, #0288d1 100%);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 20px rgba(1,87,155,0.35);
    }

    .navbar-brand {
      font-weight: 900;
      font-size: 2.1rem;
      color: #fff !important;
      letter-spacing: -0.8px;
      background: linear-gradient(90deg, #fff, #b3e5fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-link {
      color: white !important;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: #00bfa5 !important;
      transform: translateY(-1px);
    }

    /* Hero */
    #hero {
      min-height: 92vh;
      background: linear-gradient(135deg, #01579b 0%, #0277bd 50%, #039be5 100%);
      color: white;
      position: relative;
    }

    .hero-title {
      font-size: 5.2rem;
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 1.6rem;
    }

    /* Titles */
    .section-title {
      font-weight: 800;
      color: var(--med-deep);
      position: relative;
      display: inline-block;
      margin-bottom: 3.5rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -14px;
      left: 50%;
      transform: translateX(-50%);
      width: 130px;
      height: 5px;
      background: var(--med-accent);
      border-radius: 3px;
    }

    /* Cards */
    .feature-card {
      border: none;
      border-radius: 18px;
      background: white;
      transition: all 0.38s ease;
      box-shadow: 0 12px 36px rgba(1,87,155,0.14);
      overflow: hidden;
      position: relative;
    }

    .feature-card:hover {
      transform: translateY(-14px);
      box-shadow: 0 28px 68px rgba(0,191,165,0.28);
    }

    .feature-number {
      position: absolute;
      top: -20px;
      right: 24px;
      font-size: 9rem;
      font-weight: 900;
      color: rgba(2,136,209,0.06);
      line-height: 1;
      pointer-events: none;
    }

    .service-img-wrapper {
      height: 260px;
      overflow: hidden;
      position: relative;
    }

    .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .feature-card:hover .service-img-wrapper img {
      transform: scale(1.12);
    }

    footer {
      background: linear-gradient(145deg, #01579b 0%, #002171 100%);
      color: white;
      padding: 110px 0 60px;
    }

    .social-icon {
      width: 56px;
      height: 56px;
      background: rgba(255,255,255,0.09);
      border-radius: 50%;
      color: white;
      font-size: 1.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 14px;
      transition: all 0.42s;
      border: 1px solid rgba(0,191,165,0.28);
    }

    .social-icon:hover {
      background: var(--med-accent);
      transform: translateY(-8px) scale(1.14);
      box-shadow: 0 16px 40px rgba(0,191,165,0.55);
      border-color: transparent;
    }

    @media (max-width: 991px) {
      .hero-title { font-size: 4.2rem; }
    }

    @media (max-width: 767px) {
      .hero-title { font-size: 3.4rem; }
      section { padding: 40px 0; }
      .section-title { font-size: 2.6rem; }
    }

    #scrollTopBtn { bottom: 20px; right: 20px; width: 48px; height: 48px; font-size: 1.4rem; }


    /* Header */
    header {
      position: fixed;
      top: 0;    z-index: 9;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.2rem 5%;
      background: rgba(10, 14, 23, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 212, 255, 0.15);
      transition: all 0.4s ease;
    }

    header.scrolled {
      padding: 0.9rem 5%;
      background: rgba(10, 14, 23, 0.98);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: bold;
      color: white;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
    }


    .nav-links a {
      color:#fff;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-size: 1.05rem;
    }
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: white;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(10, 14, 23, 0.98);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      transform: translateX(100%);
      transition: transform 0.5s ease;
      z-index: 99999;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu a {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .close-btn {
      position: absolute;
      top: 1rem;
      right: 2rem;
      font-size: 3.5rem;
      color: white;
      cursor: pointer;
      transition: all 0.3s;
    }

    .close-btn:hover {
      color: var(--accent);
      transform: rotate(90deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
    }

      

        #hero {
            height: 100vh;
            min-height: 820px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 6%;
                background: url(../../assets/img/slider/slide1a.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    display: flex
;
    align-items: center;
    min-height: 350px;
       background-position: center;
      
    background-color: #8b8b8b;
}

        .hero-content {
            max-width: 1200px;
            position: relative;
            z-index: 2;
        }

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s 
ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.glass-card {
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,191,165,0.25);
  }

  .social-glass {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;    text-decoration: none;
  }
.form-control:focus {box-shadow: none!important;}
  .social-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: hsl(var(--hue), 80%, 55%);
    opacity: 0;
    transition: opacity 0.45s ease;
    border-radius: 50%;
  }

  .social-glass:hover::before {
    opacity: 0.22;
  }

  .social-glass:hover {
    transform: translateY(-12px) scale(1.15);
    box-shadow: 0 20px 50px rgba(0,200,83,0.45);
    border-color: rgba(255,255,255,0.4);
  }

  .link-hover {
    transition: all 0.32s ease;
  }

  .link-hover:hover {
    color: #00e676 !important;
    padding-left: 12px;
  }

  .wave-top {
    pointer-events: none;
  }