:root {
      --primary:    #004b93;
      --primary-d:  #002b55;
      --accent:     #00e0d0;
      --accent-glow:#00fff5;
      --dark:       #071425;
      --light:      #f5fbff;
      --gray:       #e0f0ff;
      --text:       #0e2a4f;
    }

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

    h1, h2, h3 {
       font-family: 'Segoe UI', system-ui, sans-serif;
      font-weight: 800;
    }

    /* Zigzag Background Pattern */
    .zigzag-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
    }



    .hero-section {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      padding: 5rem 0 8rem;
      overflow: hidden;
    }

    .main-content {
      position: relative;
      z-index: 2;
    }

    .circle-deco {
      position: absolute;
      border-radius: 50%;
      background: rgba(66, 165, 245, 0.18);
      z-index: 1;
    }

    .circle-big   { width: 600px; height: 600px; top: -15%; right: -20%; }
    .circle-med   { width: 400px; height: 400px; bottom: -10%; left: -15%; }
    .circle-small { width: 180px; height: 180px; top: 30%; left: 10%; }

    .plus-deco {
      font-size: 4.5rem;
      font-weight: bold;
      color: var(--blue-med);
      line-height: 1;
      opacity: 0.15;
      position: absolute;
      z-index: 1;
    }

    .plus-1 { top: 18%; left: 8%; font-size: 6rem; }
    .plus-2 { bottom: 22%; right: 12%; font-size: 7rem; transform: rotate(15deg); }
    .plus-3 { top: 45%; right: 15%; font-size: 5rem; }

    .hero-image-wrapper {
      position: relative;
      max-width: 520px;
      margin: 0 auto;
    }

    .hero-image {
      border-radius: 50%;
      border: 12px solid white;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        width: 550px;
    height: 550px;
    object-fit: cover;    position: relative;
    top: 51px;
    }

    .title-main {
  font-size: 70px;
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-align: left;
    }

    .title-sub {
      font-size:50px;
    color: var(--primary);
      margin-bottom: 1.8rem;
    }

    .description {
      font-size: 1.25rem;
      max-width: 620px;
      margin: 0 auto 2.5rem;
      color: #444;
    }

    .btn-read {
      background: var(--primary)!important;
      color: white!important;
      font-weight: 600!important;
      padding: 0.9rem 2.4rem!important;
      border-radius: 50px!important;
      border: none!important;
      transition: all 0.35s!important;
      box-shadow: 0 8px 25px rgba(25,118,210,0.3)!important;
    }

    .btn-read:hover {
      background: var(--blue-dark);
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(13,71,161,0.4);
    }

    .dotted-pattern {
      font-size: 2.8rem;
      letter-spacing: 0.6rem;
      color: var(--blue-light);
      opacity: 0.4;
      line-height: 1;
    }

    @media (max-width: 992px) {
      .hero-section { padding: 4rem 0 6rem; }
      .circle-big   { width: 450px; height: 450px; right: -30%; }
      .circle-med   { width: 320px; height: 320px; left: -25%; }
      .plus-deco    { font-size: 3.5rem; }
    }

    @media (max-width: 576px) {
      .title-main { font-size: 2.8rem; }
      .title-sub  { font-size: 2rem; }
      .description { font-size: 1.1rem; }
    }

    /* Section Title */
    .section-title {
      font-size: 50PX;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 0.95; text-align: center;
    }

    /* Stats */
    .stat-number {
font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    }

    .stat-icon {
      font-size: 4.5rem;
      opacity: 0.85;
    }

    /* Glass cards & hover effects */
    .glass-card {
      background: rgba(255,255,255,0.09);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 1.75rem;
      transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    }

    .glass-card:hover {
      transform: translateY(-1.125rem) rotate(1deg);
      background: rgba(255,255,255,0.16);
      box-shadow: 0 1.875rem 5.625rem rgba(0,0,0,0.5);
    }

    .strength-item,
    .service-card {
      transition: all 0.5s;
      border-radius: 1.75rem;
    }

    .strength-item:hover,
    .service-card:hover {
      transform: translateY(-0.875rem);
      box-shadow: 0 2.5rem 6.875rem rgba(0,75,147,0.22);
    }

    .service-img {
      height: 260px;
      background-size: cover;
      background-position: center;
      border-top-left-radius: 1.75rem;
      border-top-right-radius: 1.75rem;
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 80vh;
        padding: 5rem 0;
      }
      .section-title {
        font-size: 3.5rem;
      }
      #stats    {clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%)!important;} 
        #why    {clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%)!important;} 
    }
    /* 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;
    }

    

  footer {
      background: #0b1324;
      color: #cbd5e1;
      padding: 2.5rem 0 1.25rem;
      font-size: 0.92rem;
      border-top: 1px solid rgba(34,211,238,0.12);
    }

    .brand-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(34,211,238,0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(34,211,238,0.35);
      border-radius: 999px;
      padding: 0.65rem 1.4rem;
      font-weight: 700;
      color: #22d3ee;
      font-size: 1.35rem;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(34,211,238,0.18);
    }

    .brand-pill:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(34,211,238,0.35);
      background: rgba(34,211,238,0.22);
    }

    .social-mini {
      display: flex;
      gap: 0.9rem;
      justify-content: center;
      margin: 1.2rem 0;
    }

    .social-mini a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(34,211,238,0.08);
      border: 1px solid rgba(34,211,238,0.3);
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all 0.35s ease;
    }

    .social-mini a:hover {
      background: #22d3ee;
      color: #0f172a;
      transform: translateY(-5px) rotate(12deg);
      box-shadow: 0 8px 25px rgba(34,211,238,0.4);
    }

    .quick-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 2.2rem;
      margin: 1rem 0 1.5rem;
    }

    .quick-bar a {
      color: #cbd5e1;
      text-decoration: none;
      position: relative;
      transition: color 0.25s;
      white-space: nowrap;
    }

    .quick-bar a:hover {
      color: #22d3ee;
    }

    .quick-bar a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background: #22d3ee;
      transition: width 0.35s ease;
    }

    .quick-bar a:hover::after {
      width: 100%;
    }

    .copyright {
      text-align: center;
      font-size: 0.85rem;
      color: #64748b;
      margin-top: 1rem;
    }

    .heartbeat-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, #22d3ee88, transparent);
      margin: 1.2rem auto 0;
      max-width: 400px;
      opacity: 0.6;
      animation: pulseLine 4s infinite ease-in-out;
    }

    @keyframes pulseLine {
      0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
      50%      { opacity: 0.9; transform: scaleX(1); }
    }

    .scroll-top {
      position: fixed;
      bottom: 1.2rem;
      right: 1.2rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(34,211,238,0.18);
      border: 1px solid rgba(34,211,238,0.4);
      color: #22d3ee;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
    }

    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      background: #22d3ee;
      color: #0f172a;
      transform: translateY(-6px);
    }

    @media (max-width: 576px) {
      .brand-pill { font-size: 1.15rem; padding: 0.55rem 1.1rem; }
      .quick-bar { gap: 1rem 1.4rem; font-size: 0.9rem; }
    }

    /* Header */
    header {
      position: fixed;
      top: 0;    z-index: 9;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.2rem 5%;
    background: rgb(105 105 105 / 0%);
      transition: all 0.4s ease;
    }

    header.scrolled {
      padding: 0.9rem 5%;
      background: var(--accent);
    }

    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: var(--primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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


    .nav-links a {
      color:var(--primary);
      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: #000;
    }

    /* 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;
      }
    }

     .contact-wrapper {
      max-width: 1100px;
      margin: 4rem auto;
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 
        0 25px 70px rgba(0,0,0,0.08),
        0 10px 30px rgba(0,0,0,0.05);
      border: 1px solid rgba(226,232,240,0.8);
    }

    .left-panel {
      background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
      color: white;
      padding: 3.5rem 2.5rem;
      position: relative;
    }

    .left-panel h3 {
      font-size: 1.85rem;
      font-weight: 700;
      margin-bottom: 1.5rem;    text-align: center;
    }

    .address-item {
display: flex
;
    align-items: center;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    justify-content: center;
    }
.right-panel form{padding: 0px 50px;}
    .address-item i {
      font-size: 1.5rem;
      margin-right: 1rem;
      width: 2rem;
      text-align: center;
      opacity: 0.9;
    }
.right-panel h1{color: #000;}
    .right-panel {
      padding: 3.5rem 2.5rem;
      background: white;
    }

    h1 {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(90deg, #0ea5e9, #22d3ee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.8rem;
      text-align: center;
    }

    .lead-text {
      color: #64748b;
      font-size: 1.1rem;
      text-align: center;
      margin-bottom: 2.25rem;
      line-height: 1.6;
    }

    .form-floating > .form-control,
    .form-floating > .form-control-plaintext {
      padding: 1rem 1.25rem;
      height: auto;
      border-radius: 0.85rem;
      border: 1px solid #cbd5e1;
      background: #f8fafc;
    }

    .form-floating > label {
      color: #64748b;
      padding: 1rem 1.25rem;
    }

    .form-floating > .form-control:focus,
    .form-floating > .form-control:not(:placeholder-shown) {
      border-color: #22d3ee;
      box-shadow: 0 0 0 0.25rem rgba(34,211,238,0.15);
    }

    .form-floating > .form-control:focus ~ label,
    .form-floating > .form-control:not(:placeholder-shown) ~ label {
      color: #0ea5e9;
      opacity: 1;
      transform: scale(0.85) translateY(-0.6rem) translateX(0.15rem);
    }

    .btn-submit {
      background: linear-gradient(90deg, #0ea5e9, #22d3ee);
      border: none;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 0.95rem 2.2rem;
      border-radius: 999px;
      transition: all 0.35s ease;
      box-shadow: 0 8px 25px rgba(14,165,233,0.3);
      width: 100%;
      margin-top: 1.5rem;
    }

    .btn-submit:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(14,165,233,0.45);
      background: linear-gradient(90deg, #22d3ee, #0ea5e9);
    }

    .icon-bg {
      position: absolute;
      font-size: 6rem;
      opacity: 0.07;
      color: white;
      pointer-events: none;
    }

    .icon-top { top: 10%; right: 10%; }
    .icon-bottom { bottom: 15%; left: 12%; transform: rotate(-15deg); }

    @media (max-width: 991px) {
      .contact-wrapper { margin: 2rem auto; }
      .left-panel { padding: 3rem 2rem; }
      .right-panel { padding: 2.5rem 2rem; }
    }

    @media (max-width: 576px) {
      h1 { font-size: 2.4rem; }
      .btn-submit { font-size: 1rem; padding: 0.9rem; }
    } 

        #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;
  }