:root {
    --primary: #2361A1;
    --primary-dark: #1a4a7a;
    --primary-light: #3478c0;
    --accent: #3692f1;
    --white: #ffffff;
    --light: #f4f6f9;
    --mid: #e2e8f0;
    --gray: #64748b;
    --dark: #0f1923;
    --text: #1e293b;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    /*color: var(--text);*/
    color: #ffffff;
    background: var(--white);
    overflow-x: hidden;
  }
  
  
    /* ===================== custom ===================== */
    
    .nav-cta {
    background: #ffffff !important;
    color: #095FBA !important;
    border: 2px solid #095FBA !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
a.nav-cta.adj:hover {
    color: #ffffff !important;
    border-color: #095FBA !important;
}
.nav-cta {
    border-radius: 30px; /* pill shape */
}

span.svg-icon.adjco {
    fill: black !important;
    color: black !important;
}
      /* ===================== custom ===================== */

  /* ===================== HEADER ===================== */
  #site-header {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* MENU LINKS */
#main-nav a {
    color: #095FBA !important;
    font-weight: 600;
}

/* HOVER EFFECT */
#main-nav a:hover {
    color: #0b4a8a !important;
}

/* ACTIVE MENU */
#main-nav a.active {
    color: #095FBA !important;
    border-bottom: 2px solid #095FBA;
}
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(15, 25, 35, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
  }
  header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 38px;
    filter: none;
    display: block;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
  }
  nav ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
  }
  nav ul li a:hover { color: #fff; }
  nav ul li a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--primary-light) !important; }
  .nav-cta::after { display: none !important; }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  /* Mobile nav */
  @media(max-width: 768px) {
    .hamburger { display: flex; }
    nav {
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(10,18,28,0.98);
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    nav.open { max-height: 400px; padding: 20px 0 28px; }
    nav ul { flex-direction: column; gap: 0; }
    nav ul li a {
      display: block;
      padding: 14px 32px;
      font-size: 0.95rem;
    }
    .nav-cta { margin: 12px 32px 0; display: inline-block; }
  }

  /* ===================== HERO ===================== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(8,18,32,0.93) 0%,
      rgba(15,30,55,0.82) 50%,
      rgba(35,97,161,0.4) 100%
    );
    z-index: 1;
  }
  /* Diagonal accent stripe */
  .hero-stripe {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 120px;
    background: linear-gradient(to top right, var(--white) 49%, transparent 51%);
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 180px;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3 169 244 / 24%);
    border: 1px solid rgba(3 169 244 / 64%);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease both;
  }
  .hero-badge i { font-size: 0.7rem; }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.01em;
    max-width: 760px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s 0.1s ease both;
  }
  .hero h1 span { color: var(--accent); }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s 0.2s ease both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(35,97,161,0.4);
  }
  .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(35,97,161,0.5);
  }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
  }
  .btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
  }
  /* Stats bar */
  .hero-stats {
    position: absolute;
    bottom: 135px; left: 0; right: 0;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.9s 0.5s ease both;
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
  }
  @media(max-width:600px) {
    .hero-stats { gap: 24px; bottom: 150px; }
    .stat-num { font-size: 1.8rem; }
    .stat-divider { display: none; }
  }

  /* ===================== SECTIONS COMMON ===================== */
  section { padding: 100px 32px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .section-title span { color: var(--primary); }
  .section-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 580px;
    margin-top: 14px;
  }

  /* ===================== FACILITIES ===================== */
  .facilities { background: var(--white); }
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 56px;
  }
  .facility-card {
    background: var(--light);
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid var(--mid);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    opacity: 0;
    transform: translateY(30px);
  }
  .facility-card.visible {
    animation: fadeInUp 0.6s ease forwards;
  }
  .facility-card:nth-child(2) { animation-delay: 0.1s; }
  .facility-card:nth-child(3) { animation-delay: 0.2s; }
  .facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(35,97,161,0.12);
    border-color: var(--primary);
  }
  .facility-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
    transition: height 0.35s ease;
  }
  .facility-card:hover::before { height: 100%; }
  .card-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
  }
  .facility-card:hover .card-icon { transform: rotate(-6deg) scale(1.08); }
  .card-icon i { font-size: 1.5rem; color: #fff; }
  .facility-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }
  .facility-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
  }
  @media(max-width:900px) { .facilities-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:580px) { .facilities-grid { grid-template-columns: 1fr; } }

  /* ===================== IMAGES STRIP ===================== */
  .images-strip {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .images-track {
    display: flex;
    gap: 6px;
    height: 340px;
  }
  .images-track img {
    flex: 1;
    min-width: 0;
    object-fit: cover;
    transition: flex 0.5s ease, filter 0.4s;
    filter: brightness(0.75) saturate(0.85);
    cursor: pointer;
  }
  .images-track img:hover {
    flex: 2.5;
    filter: brightness(1) saturate(1);
  }
  @media(max-width:600px) { .images-track { height: 200px; } }

  /* ===================== ADVANTAGES ===================== */
  .advantages { background: var(--dark); position: relative; overflow: hidden; }
  .advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 80px
    );
  }
  .advantages .section-title { color: #fff; }
  .advantages .section-label { color: var(--accent); }
  .advantages .section-label::before { background: var(--accent); }
  .advantages .section-desc { color: rgba(255,255,255,0.5); }
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
    margin-top: 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
  }
  .adv-card {
    background: rgba(255,255,255,0.04);
    padding: 40px 28px;
    position: relative;
    transition: background 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  .adv-card.visible { animation: fadeInUp 0.6s ease forwards; }
  .adv-card:nth-child(2) { animation-delay: 0.08s; }
  .adv-card:nth-child(3) { animation-delay: 0.16s; }
  .adv-card:nth-child(4) { animation-delay: 0.24s; }
  .adv-card:hover { background: rgba(35,97,161,0.2); }
  .adv-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.07); }
  .adv-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .adv-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .adv-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
  @media(max-width:900px) {
    .adv-grid { grid-template-columns: 1fr 1fr; }
    .adv-card:nth-child(2) { border-right: none; }
    .adv-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.07); }
    .adv-card:nth-child(even) { border-right: none; }
    .adv-card { border-bottom: 1px solid rgba(255,255,255,0.07); }
  }
  @media(max-width:580px) {
    .adv-grid { grid-template-columns: 1fr; }
    .adv-card:not(:last-child) { border-right: none; }
  }

  /* ===================== SERVICES ===================== */
  .services { background: var(--white); }
  .services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .services-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  }
  .services-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .services-visual:hover img { transform: scale(1.04); }
  .services-badge {
    position: absolute;
    bottom: 24px; right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(35,97,161,0.4);
  }
  .services-badge strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
  }
  .services-badge small { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
  .services-text { padding: 0; }
  .services-text ul {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .services-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--light);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    transition: background 0.2s, transform 0.2s;
  }
  .services-text ul li:hover { background: #e8eef7; transform: translateX(4px); }
  .services-text ul li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
  @media(max-width:900px) {
    .services-inner { grid-template-columns: 1fr; gap: 48px; }
    .services-visual img { height: 320px; }
  }

  /* ===================== CONTACT ===================== */
  .contact { background: var(--light); }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    margin-top: 56px;
  }
  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--mid);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(35,97,161,0.1);
  }
  .info-icon {
    width: 48px; height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .info-icon i { color: #fff; font-size: 1.1rem; }
  .info-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
  }
  .info-card p, .info-card a {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    text-decoration: none;
  }
  .info-card a:hover { color: var(--primary); }

  /* Contact Form */
  .contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 44px;
    border: 1px solid var(--mid);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  }
  .contact-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 13px 16px;
    border: 1.5px solid var(--mid);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(35,97,161,0.1);
    background: #fff;
  }
  .form-group textarea { min-height: 120px; }
  .btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
  }
  .btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35,97,161,0.3);
  }
  @media(max-width:900px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: var(--dark);
    padding: 56px 32px 28px;
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand img {
    height: 32px;
    filter: none;
    margin-bottom: 16px;
    display: block;
  }
  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
  }
  .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }
  .social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
  }
  .social-btn:hover { background: var(--primary); color: #fff; }
  .footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.8); }
  @media(max-width:900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media(max-width:580px) {
    .footer-inner { grid-template-columns: 1fr; }
  }

  /* ===================== ANIMATIONS ===================== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ===================== SCROLL REVEAL ===================== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===================== BACK TO TOP ===================== */
  #backTop {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(35,97,161,0.4);
  }
  #backTop.show { opacity: 1; transform: translateY(0); }
  #backTop:hover { background: var(--primary-light); }

  /* ===================== NOTIFICATION ===================== */
  #notification {
    position: fixed;
    top: 90px; right: 24px;
    background: var(--primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(35,97,161,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 9999;
    pointer-events: none;
  }
  #notification.show { opacity: 1; transform: translateX(0); }

/* ---- Inline SVG Icons ---- */
.svg-icon { display:inline-flex; align-items:center; justify-content:center; vertical-align:middle; line-height:1; }
.svg-icon svg { fill:currentColor; display:block; }
/* Default size */
.svg-icon svg { width:1em; height:1em; }
.card-icon .svg-icon svg { width:1.5rem; height:1.5rem; }
.adv-icon .svg-icon svg { width:2rem; height:2rem; }
.info-icon .svg-icon svg { width:1.1rem; height:1.1rem; }
.footer-socials .svg-icon svg { width:0.85rem; height:0.85rem; }
.hero-badge .svg-icon svg { width:0.65rem; height:0.65rem; }
.section-label .svg-icon svg { width:0.72rem; height:0.72rem; }
.btn-primary .svg-icon svg, .btn-outline .svg-icon svg, .btn-submit .svg-icon svg { width:1rem; height:1rem; }
#backTop .svg-icon svg { width:0.9rem; height:0.9rem; }
#notification .svg-icon svg { width:1rem; height:1rem; }
.services-text ul li .svg-icon svg { width:1rem; height:1rem; flex-shrink:0; }
@keyframes spin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}