
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3960ff;
  --primary-dark: #02032a;
  --dark: #0d0d0d;
  --dark2: #141414;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
  --text-muted: #888;
  --white: #ffffff;
  --section-bg: #111111;
  
  
}

    * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

    html{
      overflow-x: hidden;
    }

    body {
      /*font-family: 'Figtree', sans-serif;*/
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
      font-family: 'Poppins', sans-serif;
    }

    /*h1,h2,h3,h4,h5,h6 { font-family: 'inter', sans-serif; }*/

    a { text-decoration: none; color: inherit; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

    /* ===== TOP BAR ===== */
    .top-bar {
      background: var(--dark2);
      border-bottom: 1px solid var(--border);
      padding: 8px 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .top-bar a { color: var(--text-muted); transition: color .3s; }
    .top-bar a:hover { color: var(--primary); }
    .top-bar .apply-btn {
      background: var(--primary);
      color: #fff;
      padding: 4px 18px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .5px;
      transition: background .3s, transform .3s;
    }
    .top-bar .apply-btn:hover { background: var(--primary-dark); transform: scale(1.05); }

    /* ===== NAVBAR ===== */
    .navbar {
      background: rgba(13,13,13,.95);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    /* .navbar-brand img { height: 44px; } */
    .navbar-nav .nav-link {
      color: #ccc !important;
      font-weight: 600;
      font-size: 14px;
      padding: 6px 14px !important;
      transition: color .3s;
      position: relative;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 14px;
      width: 0; height: 2px;
      background: var(--primary);
      transition: width .3s;
    }
    .navbar-nav .nav-link:hover { color: var(--primary) !important; }
    .navbar-nav .nav-link:hover::after { width: calc(100% - 28px); }
    .navbar-nav .nav-link.active { color: var(--primary) !important; }
    .navbar-toggler { border-color: var(--primary); }
    .navbar-toggler-icon { filter: invert(1); }
    .nav-cta-btns a {
      font-size: 13px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s;
    }
    .btn-enquiry { background: transparent; border: 2px solid var(--primary); color: var(--primary) !important; }
    .btn-enquiry:hover { background: var(--primary); color: #fff !important; }
    .btn-call { background: #25D366; color: #fff !important; }
    .btn-call:hover { background: #1ebe5a; }
    .btn-wa { background: var(--primary); color: #fff !important; }
    .btn-wa:hover { background: var(--primary-dark); transform: scale(1.04); }

    /* ===== HERO ===== */
    .hero {
      min-height: 92vh;
      /* background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 60%, #0d0d0d 100%); */
      background-color: #02032a;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0 60px;
    }
    .hero::before {
         content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 100%,
            rgba(65, 105, 255, .10) 0%,
            transparent 40%),
        radial-gradient(circle at 80% 100%,
            rgba(0, 170, 255, .06) 0%,
            transparent 40%),
        linear-gradient(to bottom,
            #06070d,
            #08111c,
            #0b1a2a);
    z-index: 0;
        
      /*content: '';*/
      /*position: absolute;*/
      /*top: -200px; right: -200px;*/
      /*width: 600px; height: 600px;*/
      /*border-radius: 50%;*/
      /*background: radial-gradient(circle, #0033ff63 0%, transparent 70%);*/
      /* animation: pulseGlow 4s ease-in-out infinite; */
    }
    .hero::after {
          content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    bottom: -380px;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(65, 105, 255, .07),
            transparent 70%);
    filter: blur(100px);
    z-index: 0;
}
        
        
      /*content: '';*/
      /*position: absolute;*/
      /*bottom: -200px; left: -200px;*/
      /*width: 500px; height: 500px;*/
      /*border-radius: 50%;*/
      /*background: radial-gradient(circle, rgba(0, 51, 255, 0.183) 0%, transparent  70%);*/
    }
    @keyframes pulseGlow {
      0%,100% { transform: scale(1); opacity: .8; }
      50% { transform: scale(1.1); opacity: 1; }
    }
    .hero-badge {
      display: inline-block;
      background: var(--primary);
      border: 1px solid var(--primary-dark);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .hero h1 {
           font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 25px;
      /*font-size: clamp(36px, 5vw, 68px);*/
      /*font-weight: 900;*/
      /*line-height: 1.1;*/
      /*color: #fff;*/
    }
    .hero h1 span { color: #4169ff; }
    .hero p.lead {
            font-size: 17px;
    color: #9fa4c5;
    line-height: 1.7;
    margin-bottom: 45px;
      /*color: #aaa;*/
      /*font-size: 16px;*/
      /*line-height: 1.8;*/
      /*max-width: 560px;*/
      /*margin-top: 20px;*/
    }
    .hero-cta-wrap { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .btn-primary-orange {
      background: var(--primary);
      color: #fff;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      border: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .3s;
      /*box-shadow: 0 6px 30px var(--primary);*/
       box-shadow: 0 0 35px rgba(65, 105, 255, .30);
    }
    .btn-primary-orange:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 0 45px rgba(65, 105, 255, .55);color: #000; }
    .btn-outline-orange {
      background: transparent;
      border: 2px solid var(--white);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 15px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .3s;
    }
    .btn-outline-orange:hover { background: var(--white); color: #000; }

    /* Hero stats */
    .hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
    .hero-stat .num {
      font-size: 38px;
      font-weight: 900;
      color: var(--primary);
      /*font-family: 'Nunito', sans-serif;*/
      line-height: 1;
    }
    .hero-stat .label { font-size: 13px; color: #888; margin-top: 4px; }

    /* Hero card visual */
    .hero-visual {
        display: flex;
        justify-content: flex-end;
      /*position: relative;*/
      /*z-index: 2;*/
    }
    .hero-card {
     width: 500px;
    margin-top: -20px;
    max-width: 100%;
    background: #1b1b1b;
    margin-left:50px;
    border-radius: 30px;
    padding: 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
      animation: floatCard 4s ease-in-out infinite;
    }
    @keyframes floatCard {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }
    .hero-card .top-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .service-pill {
      display: inline-block;
      background: var(--primary);
      border: 1px solid var(--primary-dark);
      color: var(--white);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      margin: 5px 4px;
      transition: all .3s;
    }
    .service-pill:hover { background: var(--white); color: #000; transform: scale(1.05); }
    .badge-float {
      position: absolute;
      background: var(--primary);
      color: #fff;
      border-radius: 14px;
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 0 35px rgba(65, 105, 255, .5);
      /*box-shadow: 0 8px 24px var(--primary);*/
      white-space: nowrap;
    }
    .badge-float.top-right { top: -18px; right: -18px; }
    .badge-float.bottom-left { bottom: -18px; left: -18px; }

    /* ===== SECTION TITLE ===== */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      border: 1px solid var(--primary-dark);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 30px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-tag::before { content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%; }
    .section-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 900; line-height: 1.2; }
    .section-title span { color: var(--primary); }

    /* ===== WHY SECTION ===== */
    .why-section {
      padding: 100px 0;
      background: var(--section-bg);
      position: relative;
      overflow: hidden;
    }
    .why-section::before {
      content: '';
      position: absolute;
      top: 50%; left: -100px; transform: translateY(-50%);
      width: 400px; height: 400px; border-radius: 50%;
      /* background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%); */
    }
    .problem-list { margin-top: 30px; }
    .problem-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
      padding: 18px 20px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: border-color .3s, transform .3s;
    }
    .problem-item:hover { border-color: var(--primary); transform: translateX(6px); }
    .problem-icon { font-size: 22px; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
    .problem-item h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .problem-item p { font-size: 13px; color: #888; margin: 0; }
    .why-right-card {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark));
      /* border: 1px solid #fff; */
      /*border-radius: 24px;*/
      border-radius: 24px;
      background: #09092d;
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      /*box-shadow: 0 6px 30px var(--primary);*/
      box-shadow: 0 25px 60px rgba(0, 0, 0, .35),
        0 0 35px rgba(65, 105, 255, .20);
    }
    .why-right-card-2 {
      /* background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark)); */
      /* border: 1px solid #fff; */
      border-radius: 24px;
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 30px var(--primary);
    }
    .HeroSwiper {
      /* background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark)); */
      /* border: 1px solid #fff; */
      border-radius: 24px;
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
      /* box-shadow: 0 6px 30px var(--primary); */
    }
    .HeroSwiper .hero-card-2{
      border-radius: 24px;
      padding: 100px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 25px -3px var(--primary);
    }
    .why-right-card::after {
      content: '';
      position: absolute;
      bottom: -120px; right: -130px;
      width: 290px; height: 280px; border-radius: 50%;
      /*background: radial-gradient(circle, var(--primary) 0%, transparent 59%);*/
    }
    .big-stat { font-size: 72px; font-weight: 900; color: var(--primary); line-height: 1; 
    /*font-family: 'Nunito', sans-serif; */
        
    }

    /* ===== SERVICES ===== */
    .services-section { padding: 100px 0; background: var(--dark); }
    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      height: 100%;
      transition: all .4s;
      position: relative;
      overflow: hidden;
      transition: all .5s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      /* background: linear-gradient(90deg, var(--primary), transparent); */
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }
    .service-card:hover { border-color: rgba(65, 105, 255, .45);transform: translateY(-8px); box-shadow: 0 18px 45px rgba(65, 105, 255, .18); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon-wrap {
      width: 64px; height: 64px;
      background: var(--primary-dark);
      border: 1px solid var(--primary);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--primary);
      margin-bottom: 22px;
      transition: background .3s;
    }
    .service-card:hover .service-icon-wrap { background: var(--primary); color: #fff; }
    .service-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
    .service-card p { font-size: 14px; color: #888; line-height: 1.7; margin-bottom: 20px; }
    .service-card:hover p{ color: #e9e9e9; }
    .service-link { color: var(--primary); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
    .service-link i { transition: transform .3s; }
    .service-card:hover .service-link i { transform: translateX(5px); }
    
    /* ======== infrastructure ============= */
    .service-card#infrastructure::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-network-setup-infrastructure.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#infrastructure:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== infrastructure ============= */
    /* ======== it_support ============= */
    .service-card#it_support::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-managed-it-support-services.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#it_support:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== it_support ============= */
    /* ======== server_maintain ============= */
    .service-card#server_maintain::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-server-setup-maintenance.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#server_maintain:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== server_maintain ============= */
    /* ======== cyber_security ============= */
    .service-card#cyber_security::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-cybersecurity-data-protection.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#cyber_security:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== cyber_security ============= */
    /* ======== remote_access ============= */
    .service-card#remote_access::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-cloud-solutions-remote-access.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#remote_access:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== remote_access ============= */
    /* ======== cctv ============= */
    .service-card#cctv::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/networkgenie-cctv-access-control-security-systems.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .service-card#cctv:hover::before { opacity: 1; bottom:0; height: 100%; }
    /* ======== cctv ============= */

    /* ===== TOOLS MARQUEE ===== */
    .tools-section { padding: 80px 0; background: var(--section-bg); overflow: hidden; }
    .tools-heading { font-size: clamp(28px, 4vw, 50px); font-weight: 900; line-height: 1.2; text-align: center; margin-bottom: 60px; }
    .tools-heading span { color: var(--primary); }
    .marquee-wrap { overflow: hidden; white-space: nowrap; }
    .marquee-track {
      display: inline-flex;
      gap: 24px;
      animation: marqueeScroll 22s linear infinite;
    }
    .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .tool-card {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 28px;
      width: 130px;
      flex-shrink: 0;
      transition: border-color .3s, transform .3s;
      cursor: default;
    }
    .tool-card:hover { border-color: var(--primary); transform: translateY(-6px); }
    .tool-card img { width: 48px; height: 48px; object-fit: contain; }
    .tool-card span { font-size: 12px; font-weight: 700; color: #aaa; white-space: nowrap; }

    /* ===== PORTFOLIO ===== */
    .portfolio-section { padding: 100px 0; background: var(--dark); }
    .portfolio-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--card-bg);
    }
    .portfolio-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s; display: block; }
    .portfolio-card:hover img { transform: scale(1.08); }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }
    .portfolio-overlay h5 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .portfolio-overlay span { font-size: 12px; color: var(--primary); font-weight: 600; }
    .portfolio-overlay .open-icon {
      position: absolute;
      top: 16px; right: 16px;
      width: 40px; height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { padding: 100px 0; background: var(--section-bg); }
    .rating-big {
      font-size: 72px;
      font-weight: 900;
      color: var(--primary);
      /*font-family: 'Nunito', sans-serif;*/
      line-height: 1;
    }
    .stars { color: #FFB800; font-size: 18px; }
    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 28px;
      height: 100%;
      position: relative;
      transition: border-color .3s, transform .3s;
    }
    .testimonial-card:hover { border-color: var(--primary); transform: translateY(3px); }
    .quote-icon {
      font-size: 52px;
      color: var(--primary);
      line-height: 1;
      /*font-family: Georgia, serif;*/
      margin-bottom: 10px;
    }
    .testimonial-card p { font-size: 15px; color: #bbb; line-height: 1.7; margin-bottom: 24px; }
    .testimonial-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 900; color: #fff;
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 800; font-size: 15px; }
    .testimonial-role { font-size: 12px; color: #888; }

    /* ===== PROCESS ===== */
    .process-section { padding: 100px 0; background: var(--dark); }
    .process-step {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: all .4s;
    }
    .process-step:hover { 
        /*border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 20px 50px var(--primary);*/
     transform: translateY(-8px);
    border-color: rgba(65, 105, 255, .45);
    box-shadow: 0 18px 45px rgba(65, 105, 255, .18);
    }
    .step-number {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 56px;
      font-weight: 900;
      color: rgba(57, 97, 255, 0.4);
      /*font-family: 'Nunito', sans-serif;*/
      line-height: 1;
    }
    .step-icon {
      width: 56px; height: 56px;
      background: var(--primary);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; color: var(--white);
      margin-bottom: 20px;
    }
    .process-step h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
    .process-step p { font-size: 14px; color: #888; line-height: 1.7; margin: 0; }
    .process-step:hover p { color: #e9e9e9 }

    .process-step#process_one::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/it-infrastructure-planning-solution-design.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .process-step#process_one:hover::before { opacity: 1; bottom:0; height: 100%; }
    .process-step#process_two::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/business-it-setup-monitoring-support.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .process-step#process_two:hover::before { opacity: 1; bottom:0; height: 100%; }
    .process-step#process_three::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/managed-it-monitoring-support-services.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .process-step#process_three:hover::before { opacity: 1; bottom:0; height: 100%; }
    .process-step#process_four::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/network-maintenance-optimization-services.jpg') no-repeat center center;
        background-size: cover;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: -1;
        bottom: 0;
    }
    .process-step#process_four:hover::before { opacity: 1; bottom:0; height: 100%; }

    /* ===== BLOG ===== */
    .blog-section { padding: 100px 0; background: var(--section-bg); }
    .blog-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      transition: all .4s;
    }
    .blog-card:hover { border-color: #a3ff12; transform: translateY(-8px); box-shadow: 0 20px 50px rgba(163, 255, 18, 0.2); }
    .blog-img { position: relative; overflow: hidden; }
    .blog-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s; display: block; }
    .blog-card:hover .blog-img img { transform: scale(1.08); }
    .blog-body { padding: 24px 22px; }
    .blog-date { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .blog-body h5 { font-size: 16px; font-weight: 800; line-height: 1.4; margin-bottom: 12px; transition: color .3s; }
    .blog-card:hover .blog-body h5 { color: var(--primary); }
    .blog-read { color: var(--primary); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
    .blog-read i { transition: transform .3s; }
    .blog-card:hover .blog-read i { transform: translateX(5px); }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 50%, rgb(57, 96, 255, 0.4) 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='#3960ff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-section h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; margin-bottom: 24px; position: relative; }
    .cta-section h2 span { color: var(--primary); }
    .cta-section p { font-size: 17px; color: #aaa; max-width: 580px; margin: 0 auto 40px; position: relative; }
    .cta-trust { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; color: #888; font-size: 14px; }
    .cta-avatars { display: flex; }
    .cta-avatars .av {
      width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dark);
      background: var(--primary); color: #fff; font-size: 13px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-left: -10px;
    }
    .cta-avatars .av:first-child { margin-left: 0; }

    /* ===== FOOTER ===== */
    .footer {
      background: #0a0a0a;
      border-top: 1px solid var(--border);
      padding: 70px 0 30px;
    }
    .footer-brand h3 { font-size: 28px; font-weight: 900; margin-bottom: 14px; }
    .footer-brand h3 span { color: var(--primary); }
    .footer-brand p { font-size: 14px; color: #777; line-height: 1.8; max-width: 300px; }
    .footer-social { margin-top: 24px; display: flex; gap: 10px; }
    .social-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--card-bg); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: #aaa; font-size: 15px; transition: all .3s;
    }
    .social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
    .footer h5 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #fff; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; color: #777; transition: color .3s, padding-left .3s; display: flex; align-items: center; gap: 8px; }
    .footer-links a:hover { color: var(--primary); padding-left: 6px; }
    .footer-links a i { font-size: 10px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
    .footer-contact-item .ic { color: var(--primary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item p { margin: 0; font-size: 14px; color: #777; line-height: 1.6; }
    .footer-contact-item a { color: #aaa; transition: color .3s; }
    .footer-contact-item a:hover { color: var(--primary); }
    .footer-divider { border-color: var(--border); margin: 40px 0 24px; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 13px; color: #555; margin: 0; }
    .footer-bottom span { color: var(--primary); }

    /* Newsletter input */
    .newsletter-form { margin-top: 20px; display: flex; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
    .newsletter-form input {
      flex: 1;
      background: var(--card-bg);
      border: none;
      padding: 12px 16px;
      color: #fff;
      font-size: 13px;
      outline: none;
    }
    .newsletter-form input::placeholder { color: #555; }
    .newsletter-form button {
      background: var(--primary);
      border: none;
      padding: 12px 18px;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
      transition: background .3s;
    }
    .newsletter-form button:hover { background: var(--primary-dark); }

    /* ===== SCROLL TO TOP ===== */
    #scrollTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: all .4s;
      box-shadow: 0 6px 24px var(--primary);
      z-index: 9999;
    }
    #scrollTop.show { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: var(--white); color: #000; transform: translateY(-3px); box-shadow: 0 6px 24px var(--white);}

    /* ===== ENQUIRY MODAL ===== */
    .modal-content {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      color: #fff;
    }
    .modal-header { border-bottom: 1px solid var(--border); padding: 20px 24px; }
    .modal-header .modal-title { font-weight: 800; font-size: 20px; }
    .btn-close { filter: invert(1); }
    .modal-body { padding: 24px; }
    .form-label { font-size: 13px; font-weight: 700; color: #aaa; margin-bottom: 6px; }
    .form-control, .form-select {
      background: #111;
      border: 1px solid var(--border);
      color: #fff;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 14px;
      transition: border-color .3s;
    }
    .form-control:focus, .form-select:focus {
      background: #111;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255,107,44,.15);
      color: #fff;
    }
    .form-select option { background: #111; }
    textarea.form-control { resize: vertical; min-height: 90px; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in-up { animation: fadeInUp .8s ease forwards; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .hero { padding: 60px 0 50px; min-height: auto; }
      .hero-visual { margin-top: 50px; }
      .hero-cta-wrap { justify-content: center; }
      .hero h1 { text-align: center; }
      .hero p.lead { text-align: center; margin-left: auto; margin-right: auto; }
      .hero-stats { justify-content: center; }
      .hero-badge { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 575px) {
      .hero h1 { font-size: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      #scrollTop { bottom: 20px; right: 20px; }
    }

    /* ===== PRELOADER ===== */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity .6s ease;
    }
    #preloader.hide { opacity: 0; pointer-events: none; }
    .loader-ring {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 4px solid rgba(255,107,44,.2);
      border-top-color: var(--primary);
      animation: spin .8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    
    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
