 :root{
      --gx-blue:#0000cd;
      --gx-blue-dark:#004aad;
      --gx-blue-light:#00a3ff;
      --gx-white:#ffffff;
      --gx-text:#111827;
      --gx-shell:1300px;
      --gx-desktop-pad:40px;
      --gx-tablet-pad:20px;
      --gx-mobile-pad:16px;
      --gx-nav-h:76px;
      --gx-radius:20px;
      --gx-shadow:0 10px 30px rgba(0,0,0,0.08);
      --gx-gradient-horizontal:linear-gradient(90deg, var(--gx-blue-dark), var(--gx-blue-light));
      --gx-gradient-vertical:linear-gradient(180deg, var(--gx-blue-dark), var(--gx-blue-light));
    }

    *{margin:0;padding:0;box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      font-family:"Roboto",sans-serif;
      color:var(--gx-text);
      background:beige;
      overflow-x:hidden;
    }
    img{max-width:100%;display:block}
    a{text-decoration:none}
    ul{list-style:none}

    .gx-shell{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
    }
.feature-item::before {
  content: "✔";
  color: #00ffae;
  margin-right: 8px;
  font-weight: bold;
}
    /* NAVBAR */
    .gx-navbar{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:var(--gx-nav-h);
      background:#fff;
      box-shadow:0 4px 20px rgba(0,0,0,0.06);
      z-index:9999;
      
    }
    .gx-nav-container{
     padding:0px 42px;
      height:100%;
      margin-inline:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      position:relative;
    }
    .gx-logo img{height:42px;width:auto}
    .gx-nav-menu{
      display:flex;
      align-items:center;
      
    }
    .gx-nav-link{
      color:var(--gx-text);
      font-size:14px;
      font-weight:400;
      padding:8px 0px;
      
      transition:.25s ease;
    }
    .gx-nav-menu {
    
    align-items: center !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 16 !important;
}
    .gx-nav-link:hover{color:var(--gx-blue-dark)}
    .gx-dropdown{position:relative}
    .gx-dropdown-menu{
      position:absolute;
      top:calc(100% + 12px);
      left:0;
      min-width:220px;
      background:#fff;
      border-radius:12px;
      box-shadow:0 14px 30px rgba(0,0,0,0.08);
      padding:10px 0;
      opacity:0;
      
      visibility:hidden;
      transform:translateY(10px);
      transition:.25s ease;
      z-index:50;
    }
    .gx-dropdown:hover .gx-dropdown-menu{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .gx-dropdown-link{
      display:block;
      padding:12px 18px;
      color:#334155;
      font-size:14px;
    }
    .gx-dropdown-link:hover{
      background:#f4f8ff;
      color:var(--gx-blue-dark);
    }

    .gx-menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:none;
      background:transparent;
      cursor:pointer;
      position:relative;
      flex-shrink:0;
    }
    .gx-menu-toggle span{
      position:absolute;
      left:50%;
      width:24px;
      height:2.5px;
      background:#111827;
      border-radius:999px;
      transform:translateX(-50%);
      transition:.25s ease;
    }
    .gx-menu-toggle span:nth-child(1){top:14px}
    .gx-menu-toggle span:nth-child(2){top:22px}
    .gx-menu-toggle span:nth-child(3){top:30px}
    .gx-menu-toggle.active span:nth-child(1){top:22px;transform:translateX(-50%) rotate(45deg)}
    .gx-menu-toggle.active span:nth-child(2){opacity:0}
    .gx-menu-toggle.active span:nth-child(3){top:22px;transform:translateX(-50%) rotate(-45deg)}

    body.menu-open{overflow:hidden}

    /* HERO */
    .gx-hero{
     background: beige;
      color:black;
      padding-top:var(--gx-nav-h);
    }
    .gx-hero-inner{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
      min-height:calc(100vh - var(--gx-nav-h));
      display:grid;
      grid-template-columns:1fr 1fr;
      align-items:center;
      gap:48px;
      padding:32px 0 0;
    }
    .gx-hero-left{max-width:620px}
    .gx-badge{
      display:inline-block;
      background:lightgrey;
      color:black;
      padding:12px 18px;
      border-radius:8px;
      font-size:12px;
      font-weight:700;
      margin-bottom:26px;
    }
    .gx-hero-left h2{
      font-family:"Roboto",sans-serif;
      font-size:32px;
      line-height:1.22;
      font-weight:400px;
      margin-bottom:24px;
      color:#fff;
    }
    .gx-hero-left p{
      font-size:18px;
      line-height:1.7;
      color:black;
      margin-bottom:24px;
    }
    .gx-hero-left hr{
      border:none;
      height:1px;
      background:black;
      margin:24px 0 26px;
    }
    .gx-points{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px 24px;
      color:black;
      font-size:17px;
      margin-bottom:28px;
    }
    .gx-buttons{
      display:flex;
      flex-wrap:wrap;
      gap:16px;
    }
    .gx-btn-primary,
    .gx-btn-secondary{
      min-width:180px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:15px 28px;
      border-radius:10px;
      font-size:16px;
      font-weight:700;
      transition:.25s ease;
    }
    .gx-btn-primary{
      background:lightgrey;
      color:black;
    }
    .gx-btn-secondary{
      background:lightgrey;
      color:black;
      border:2px solid var(--gx-blue-dark);
    }
    .gx-btn-primary:hover,
    .gx-btn-secondary:hover{transform:translateY(-2px)}

    .gx-hero-right{
      min-height:620px;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      border-left:1px solid rgba(255,255,255,.15);
    }
    .gx-shape{
      position:absolute;
      background:white;
      opacity:.9;
      z-index:1;
      clip-path:polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
    }
    .shape1{width:280px;height:280px;top:90px;left:30px}
    .shape2{width:240px;height:240px;bottom:20px;right:20px}

    .gx-image-slider{
      position:relative;
      width:min(100%, 500px);
      height:620px;
      z-index:4;
      display:flex;
      align-items:flex-end;
      justify-content:center;
    }
    .gx-image-slider img{
      width:100%;
      height:100%;
      object-fit:contain;
    }
    .gx-stat{
      position:absolute;
      z-index:5;
      color:black;
    }
    .gx-stat h2{
      font-size:42px;
      line-height:1;
      margin-bottom:8px;
      font-weight:700;
    }
    .gx-stat p{
      font-size:16px;
      color:black;
    }
    .gx-stat1{top:54px;left:52px}
    .gx-stat2{bottom:22px;left:12px}
    .gx-stat3{bottom:110px;right:0}

    /* CROSS BANNERS */
    .cross-scroll{
      position:relative;
      overflow:hidden;
      height:110px;
      background:var(--gx-blue);
    }
    .second-scroll{margin-top:-8px}
    .scroll-strip{
      position:absolute;
      top:40%;
      left:50%;
      width:125%;
      transform:translateX(-50%) rotate(-4deg);
      background:var(--gx-gradient-horizontal);
      overflow:hidden;
      padding:14px 0;
    }
    .sap-strip{
      top:20%;
      transform:translateX(-50%) rotate(4deg);
      background:#fff;
      border:2px solid var(--gx-blue-dark);
    }
    .scroll-content{
      display:flex;
      align-items:center;
      gap:60px;
      white-space:nowrap;
      width:max-content;
      animation:gxScroll 14s linear infinite;
      padding-right:60px;
    }
    .reverse-scroll{animation:gxScrollReverse 14s linear infinite}
    .scroll-content span{
      font-size:22px;
      color:#fff;
    }
    .sap-strip .scroll-content span{color:#111}
    @keyframes gxScroll{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }
    @keyframes gxScrollReverse{
      from{transform:translateX(-50%)}
      to{transform:translateX(0)}
    }

    /* STATS */
    .gx-stats-section{
      background:beige;
      padding:72px 0;
    }
    .gx-stats-container{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
      display:flex;
      justify-content:center;
      gap:30px;
      flex-wrap:wrap;
    }
    .gx-stat-card{
      text-align:center;
      min-width:220px;
      flex:1 1 220px;
      background:transparent;
    }
    .gx-stat-card h2{
      font-family:"Montserrat",sans-serif;
      font-size:64px;
      font-weight:100;
      color:black;
      letter-spacing:-2px;
      margin-bottom:6px;
    }
    .gx-stat-card p{
      color:black;
      font-size:14px;
      letter-spacing:2px;
      text-transform:uppercase;
    }

    /* TOOLS */
    .gx-tools-marquee{
      background:beige;
      padding:70px 0;
      overflow:hidden;
    }
    .gx-tools-inner{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
    }
    .gx-tools-title{
      text-align:center;
      font-family:"Montserrat",sans-serif;
      font-size:32px;
      margin-bottom:40px;
      color:#333;
    }
    .gx-tools-title span{color:var(--gx-blue-dark)}
    .marquee-track{
      display:flex;
      align-items:center;
      gap:70px;
      width:max-content;
      animation:scroll-left 26s linear infinite;
    }
    .tool-item{
      width:120px;
      height:60px;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }
    .tool-item img{
      max-width:100%;
      max-height:100%;
      object-fit:contain;
      mix-blend-mode:multiply;
    }
    @keyframes scroll-left{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }

    /* CURRICULUM */
    .gx-curriculum-section{
      padding:80px 0;
      background:beige;
    }
    .gx-curriculum-container{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
    }
    .gx-curriculum-header{
      text-align:center;
      max-width:750px;
      margin:0 auto 50px;
    }
    .gx-curriculum-tag{
      display:inline-block;
      background:#004aad;
      color:#fff;
      padding:8px 18px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;
      margin-bottom:15px;
    }
    .gx-curriculum-header h2{
      font-family:"Montserrat",sans-serif;
      font-size:clamp(28px,5vw,42px);
      color:#1e293b;
      margin-bottom:16px;
    }
    .gx-curriculum-header p{
      font-size:17px;
      color:#64748b;
      line-height:1.7;
    }
    .gx-flip-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:28px;
    }
    .gx-flip-card{
      height:380px;
      perspective:1000px;
    }
    .gx-flip-inner{
      position:relative;
      width:100%;
      height:100%;
      transition:transform .8s cubic-bezier(.4,0,.2,1);
      transform-style:preserve-3d;
    }
    .gx-flip-card:hover .gx-flip-inner{transform:rotateY(180deg)}
    .gx-flip-front,.gx-flip-back{
      position:absolute;
      inset:0;
      border-radius:20px;
      overflow:hidden;
      backface-visibility:hidden;
      box-shadow:var(--gx-shadow);
    }
    .gx-flip-front{
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
    }
    .gx-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.8));
    }
    .gx-front-content{
      position:relative;
      z-index:2;
      padding:20px;
      text-align:center;
    }
    .gx-flip-front h3{
      font-size:24px;
      text-shadow:0 2px 10px rgba(0,0,0,.4);
    }
    .gx-flip-back{
      background:lightgrey;
      color:black;
      transform:rotateY(180deg);
      padding:30px 24px;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      text-align:left;
    }
    .gx-flip-back h3{
      width:100%;
      font-size:20px;
      margin-bottom:18px;
      padding-bottom:10px;
      border-bottom:2px solid rgba(255,255,255,.2);
    }
    .gx-flip-back ul li{
      position:relative;
      padding-left:26px;
      margin-bottom:12px;
      line-height:1.5;
    }
    .gx-flip-back ul li::before{
      content:"âœ“";
      position:absolute;
      left:0;
      color:#10b981;
      font-weight:700;
    }

    /* CONTACT */
    .gx-contact-section{
      padding:80px 0;
      background:beige;
    }
    .gx-contact-wrapper{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      min-height:650px;
      border-radius:24px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 18px 45px rgba(0,0,0,.12);
    }
    .gx-contact-left{
      position:relative;
      display:flex;
      align-items:center;
      padding:70px 60px;
      background:url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
    }
    .gx-contact-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(0,53,128,.75), rgba(0,0,0,.45));
    }
    .gx-contact-content{
      position:relative;
      z-index:2;
      color:#fff;
      max-width:520px;
    }
    .gx-contact-tag{
      display:inline-block;
      padding:8px 18px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.25);
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      margin-bottom:22px;
    }
    .gx-contact-content h1{
      font-family:"Montserrat",sans-serif;
      font-size:46px;
      line-height:1.2;
      margin-bottom:20px;
    }
    .gx-contact-content p{
      font-size:17px;
      line-height:1.8;
      color:#f0f4ff;
      margin-bottom:28px;
    }
    .gx-contact-points{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px 20px;
      color:#fff;
      font-size:15px;
      font-weight:500;
    }
    .gx-contact-form{
      width:100%;
      max-width:570px;
      margin:42px;
      background:rgba(255,255,255,.92);
      border:1px solid #e8eef8;
      border-radius:22px;
      padding:38px 30px;
      box-shadow:0 10px 30px rgba(0,75,160,.08);
    }
    .gx-contact-form h2{
      text-align:center;
      font-size:30px;
      color:#0d1b3d;
      margin-bottom:10px;
    }
    .gx-form-subtitle{
      text-align:center;
      font-size:15px;
      color:#6c7894;
      line-height:1.6;
      margin-bottom:28px;
    }
    .gx-form-group{margin-bottom:18px}
    .gx-form-group label{
      display:block;
      margin-bottom:8px;
      font-size:15px;
      font-weight:600;
      color:#1d2b4f;
    }
    .gx-required{color:#ef4444}
    .gx-form-group input,
    .gx-form-group select,
    .gx-form-group textarea{
      width:100%;
      border:1px solid #d7e1f0;
      border-radius:14px;
      background:#f8fbff;
      padding:14px 16px;
      font-size:15px;
      color:#222;
      outline:none;
      transition:.25s ease;
    }
    .gx-form-group input,
    .gx-form-group select{height:52px}
    .gx-form-group textarea{resize:none;min-height:110px}
    .gx-form-group input:focus,
    .gx-form-group select:focus,
    .gx-form-group textarea:focus{
      border-color:#2d7ff9;
      background:#fff;
      box-shadow:0 0 0 4px rgba(45,127,249,.12);
    }
    .gx-btn{
      width:100%;
      border:none;
      background:lightgrey;
      color:black;
      padding:15px 20px;
      border-radius:14px;
      font-size:16px;
      font-weight:700;
      cursor:pointer;
      transition:.25s ease;
      margin-top:8px;
    }
    .gx-btn:hover{transform:translateY(-2px)}
    .gx-form-message{
      margin-top:14px;
      font-size:14px;
      border-radius:10px;
      padding:12px 14px;
    }
    .gx-success-message{background:#ecfdf5;color:#065f46}
    .gx-error-message{background:#fef2f2;color:#991b1b}
@media (max-width: 1024px) {

  .gx-contact-form {
    max-width: 600px;
    margin: 30px auto;   /* center horizontally */
    padding: 30px 24px;
  }

}
    /* COURSES */
    .gx-courses-section{
      padding:80px 0;
      background:beige;
    }
    .gx-courses-container{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
    }
    .gx-courses-title{
      text-align:center;
      font-family:"Montserrat",sans-serif;
      font-size:42px;
      color:#1d3557;
      margin-bottom:50px;
    }
    .gx-courses-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:20px;
    }
    .gx-course-card{
      background:#fff;
      border:1px solid #e5e7eb;
      display:flex;
      flex-direction:column;
      height:100%;
      transition:.25s ease;
    }
    .gx-course-card:hover{
      transform:translateY(-6px);
      box-shadow:0 10px 25px rgba(0,0,0,.08);
    }
    .gx-course-card img{
      width:100%;
      height:220px;
      object-fit:cover;
    }
    .gx-course-content{
      flex:1;
      display:flex;
      flex-direction:column;
      padding:20px;
    }
    .gx-course-content h3{
      font-size:22px;
      margin-bottom:14px;
      color:#111;
    }
    .gx-course-content p{
      font-size:15px;
      line-height:1.7;
      color:#444;
      margin-bottom:22px;
      flex:1;
    }
    .gx-course-btn{
      align-self:flex-start;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:lightgrey;
      color:black;
      padding:10px 24px;
      border-radius:999px;
      font-size:15px;
    }

    /* WHY */
    .gx-why-section{
      padding:80px 0;
      background:beige;
    }
    .gx-why-container{
      width:min(var(--gx-shell), calc(100% - (var(--gx-desktop-pad) * 2)));
      margin-inline:auto;
    }
    .gx-why-tag{
      display:block;
      text-align:center;
      color:blue;
      font-size:22px;
      font-weight:700;
      margin-bottom:15px;
    }
    .gx-why-title{
      text-align:center;
      font-family:"Montserrat",sans-serif;
      font-size:34px;
      color:#1d3557;
      margin-bottom:50px;
    }
    .gx-why-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:24px;
    }
    .gx-why-item{
      display:flex;
      align-items:center;
      gap:18px;
      background:#fff;
      padding:22px 20px;
      border-radius:16px;
      min-height:95px;
      box-shadow:0 8px 24px rgba(0,0,0,.06);
    }
    .gx-why-icon{
      min-width:60px;
      width:60px;
      height:60px;
      border-radius:50%;
      background:lightgrey;
      color:black;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:24px;
      flex-shrink:0;
    }
    .gx-why-item h3{
      font-size:17px;
      line-height:1.5;
      font-weight:500;
      color:#000;
    }

    /* FOOTER */
    .gx-footer{
      position:relative;
      color:#fff;
      background:url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80") center/cover no-repeat;
    }
    .gx-footer-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(rgba(0,20,60,.8), rgba(0,20,60,.85));
    }
    .gx-footer-container{
      position:relative;
      z-index:2;
      padding:60px 0;
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:40px;
    }
    .gx-footer-logo{
      font-family:"Montserrat",sans-serif;
      font-size:28px;
      margin-bottom:15px;
    }
    .gx-footer-col p{
      font-size:13.5px;
      line-height:1.7;
      color:#dcdcdc;
      margin-bottom:14px;
    }
    .gx-footer-col h3{
      font-size:22px;
      margin-bottom:20px;
    }
    .gx-footer-col ul li{margin-bottom:12px}
    .gx-footer-col ul li a{
      color:#fff;
      transition:.25s ease;
    }
    .gx-footer-col ul li a:hover{color:blue}
    .gx-social-icons{
      display:flex;
      gap:12px;
      margin-top:10px;
    }
    .gx-social-icons a{
      width:42px;
      height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      color:#fff;
      background:rgba(255,255,255,.14);
      transition:.25s ease;
    }
    .gx-social-icons a:hover{background:#004aad}
    .gx-footer-bottom{
      position:relative;
      z-index:2;
      text-align:center;
      padding:15px;
      background:rgba(0,0,0,.6);
      font-size:14px;
      color:#fff;
    }

    /* WHATSAPP */
    .whatsapp-chat{
      position:fixed;
      right:20px;
      bottom:20px;
      width:56px;
      height:56px;
      background:#25D366;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      z-index:999999;
      box-shadow:0 4px 12px rgba(0,0,0,.28);
      animation:whatsapp-pulse 1.8s infinite;
    }
    .whatsapp-chat i{font-size:30px}
    @keyframes whatsapp-pulse{
      0%{box-shadow:0 0 0 0 rgba(37,211,102,.7)}
      70%{box-shadow:0 0 0 14px rgba(37,211,102,0)}
      100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
    }

    /* TABLET */
    @media (max-width: 1024px){
      :root{--gx-nav-h:72px}
      .gx-shell,
      .gx-nav-container,
      .gx-hero-inner,
      .gx-stats-container,
      .gx-tools-inner,
      .gx-curriculum-container,
      .gx-contact-wrapper,
      .gx-courses-container,
      .gx-why-container,
      .gx-footer-container{
        
      }
@media (max-width: 768px) {
    .gx-social-icons {
        /* justify-content: center !important; */
    }
}
      .gx-hero-inner{
        grid-template-columns:1fr;
        min-height:auto;
        gap:28px;
        padding:24px 0 24px;
      }
      .gx-hero-right{
        border-left:none;
        border-top:1px solid rgba(255,255,255,.15);
        min-height:500px;
        padding-top:20px;
      }
      .gx-hero-left h2{font-size:clamp(30px,4vw,40px)}
      .gx-points{grid-template-columns:repeat(2,minmax(0,1fr));font-size:16px}
      .gx-image-slider{width:min(100%,360px);height:430px}
      .shape1{width:200px;height:200px;top:70px;left:40px}
      .shape2{width:170px;height:170px;bottom:10px;right:40px}
      .gx-stat h2{font-size:24px}
      .gx-stat p{font-size:14px}
      .gx-stat1{top:12px;left:20px}
      .gx-stat2{bottom:10px;left:12px}
      .gx-stat3{bottom:80px;right:10px}

      .scroll-strip{width:155%}
      .scroll-content span{font-size:18px}

      .gx-flip-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .gx-contact-wrapper{grid-template-columns:1fr}
      .gx-contact-left{min-height:420px;padding:45px 30px}
      .gx-contact-content h1{font-size:36px}
      .gx-contact-points{grid-template-columns:1fr}
      .gx-courses-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .gx-why-grid{grid-template-columns:1fr}
      .gx-footer-container{grid-template-columns:1fr 1fr}
    }

    /* MOBILE */
    @media (max-width: 767px){
      :root{--gx-nav-h:64px}
      .gx-nav-container,
      .gx-hero-inner,
      .gx-stats-container,
      .gx-tools-inner,
      .gx-curriculum-container,
      .gx-contact-wrapper,
      .gx-courses-container,
      .gx-why-container,
      .gx-footer-container{
        
      }

      .gx-menu-toggle{display:block}
      .gx-nav-menu{
        position:fixed;
        top:var(--gx-nav-h);
        left:0;
        width:100%;
        height:calc(100vh - var(--gx-nav-h));
        background:#fff;
        padding:16px;
        gap:32px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        box-shadow:0 14px 35px rgba(0,0,0,.08);
        brder-bottom:1px solid black;
      }
      .gx-nav-menu.show{display:flex}
      .gx-nav-menu li{width:100%}
      .gx-nav-link{width:100%;padding:12px 8px;font-size:15px;        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
          
      }
      .gx-dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:1px solid #e5e7eb;
        border-radius:10px;
        margin-top:8px;
        display:none;
        width:100%;
      }
      .gx-dropdown.open .gx-dropdown-menu{display:block}
      .gx-dropdown:hover .gx-dropdown-menu{opacity:1;visibility:visible;transform:none}

      .gx-logo img{height:36px}

      .gx-hero-inner{
        gap:18px;
        padding:18px 0 20px;
      }
      .gx-badge{font-size:10px;padding:10px 12px;margin-bottom:18px}
      .gx-hero-left h2{font-size:clamp(24px,7vw,30px);margin-bottom:16px}
      .gx-hero-left p{font-size:15px;line-height:1.65;margin-bottom:18px}
      .gx-points{grid-template-columns:1fr;gap:12px;font-size:15px}
      .gx-buttons{flex-direction:column}
      .gx-btn-primary,.gx-btn-secondary{width:100%;min-width:100%}
      .gx-hero-right{min-height:360px;padding-top:18px}
      .gx-image-slider{width:min(100%,280px);height:320px}
      .shape1{width:130px;height:130px;top:55px;left:10px}
      .shape2{width:110px;height:110px;bottom:10px;right:10px}
      .gx-stat h2{font-size:20px}
      .gx-stat p{font-size:12px}
      .gx-stat1{top:0;left:0}
      .gx-stat2{bottom:0;left:0}
      .gx-stat3{bottom:70px;right:0}

      .cross-scroll{height:86px}
      .scroll-strip{width:185%;padding:10px 0}
      .scroll-content{gap:30px;padding-right:30px}
      .scroll-content span{font-size:14px}

      .gx-stats-section{padding:56px 0}
      .gx-stat-card h2{font-size:46px}
      .gx-tools-marquee{padding:56px 0}
      .gx-tools-title{font-size:24px}
      .marquee-track{gap:40px}
      .tool-item{width:80px;height:40px}

      .gx-curriculum-section,
      .gx-contact-section,
      .gx-courses-section,
      .gx-why-section{padding:56px 0}

      .gx-flip-grid{grid-template-columns:1fr}
      .gx-contact-section{background:linear-gradient(180deg,#f5f8ff,#eef3fb)}
      .gx-contact-form{padding:28px 20px}
      .gx-contact-content h1{font-size:30px}
      .gx-contact-content p{font-size:15px}
      .gx-contact-form h2{font-size:24px}
      .gx-courses-title{font-size:28px}
      .gx-courses-grid{grid-template-columns:1fr}
      .gx-why-title{font-size:24px;margin-bottom:30px}
      .gx-why-item{padding:18px 16px;gap:14px}
      .gx-why-icon{width:52px;height:52px;min-width:52px;font-size:20px}
      .gx-why-item h3{font-size:15px;line-height:1.4}
      .gx-footer-container{grid-template-columns:1fr}
      .gx-social-icons{justify-content:center}
      .whatsapp-chat{width:50px;height:50px;right:15px;bottom:15px}
      .whatsapp-chat i{font-size:26px}
    }
    
    /* GLOBAL ALIGNMENT SYSTEM */
.gx-nav-container,
.gx-hero-inner,
.gx-stats-container,
.gx-tools-inner,
.gx-curriculum-container,
.gx-contact-wrapper,
.gx-courses-container,
.gx-why-container,
.gx-footer-container {
  width: 100%;
  max-width: va(--gx-shell);
  margin: 0 auto;
  padding: 0 var(--gx-desktop-pad);
}
    
    @media (max-width: 1024px) {

  .gx-nav-container,
  .gx-hero-inner,
  .gx-stats-container,
  .gx-tools-inner,
  .gx-curriculum-container,
  .gx-contact-wrapper,
  .gx-courses-container,
  .gx-why-container,
  .gx-footer-container {
    padding: 0 var(--gx-tablet-pad); /* 20px */
  }

}
    
 /* OVERLAY */
.gx-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* SHOW */
.gx-popup-overlay.show {
  display: flex;
}

/* BOX (SMALL SIZE) */
.gx-popup-box {
  width: 90%;
  max-width: 650px; /* ðŸ”¥ reduced size */
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* CLOSE */
.gx-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 26px;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 10;
}

.gx-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

.gx-popup-overlay.show {
  display: flex;
}

.gx-popup-box {
  width: 95%;
  max-width: 1000px; /* increased size */
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.gx-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gx-popup-close:hover {
  background: #f3f4f6;
}

/* LEFT */
.gx-popup-left {
  position: relative;
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
}

.gx-popup-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.72), rgba(0, 0, 0, 0.55));
}

.gx-popup-left-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.gx-popup-logo-top {
  width: 150px;
  margin: 0 auto 16px; /* centered */
  display: flex;
}

.gx-popup-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.gx-popup-stars span {
  color: #ffd54a;
  font-size: 20px;
}

.gx-popup-left h2 {
  font-size: 34px;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.gx-popup-left p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}

/* RIGHT */
.gx-popup-right {
  padding: 38px 30px;
  display: flex;
  align-items: center;
}

.gx-popup-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.gx-popup-right input,
.gx-popup-right select {
  width: 100%;
  height: 56px;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 17px;
  background: #f9fafb;
  outline: none;
  transition: 0.3s ease;
}

.gx-popup-right input:focus,
.gx-popup-right select:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.gx-popup-right button {
  background: #ff6a2b;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  height: 58px;
}

.gx-popup-right button:hover {
  transform: translateY(-2px);
  background: #f85c17;
}

/* TABLET */
@media (max-width: 991px) {
  .gx-popup-box {
    max-width: 820px;
    grid-template-columns: 1fr;
  }

  .gx-popup-left {
    min-height: 240px;
    padding: 28px;
  }

  .gx-popup-right {
    padding: 26px 22px;
  }

  .gx-popup-logo-top {
    width: 135px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .gx-popup-overlay {
    padding: 12px;
  }

  .gx-popup-box {
    width: 100%;
    min-height: auto;
    border-radius: 16px;
  }

  .gx-popup-left {
    min-height: 220px;
    padding: 22px 18px;
  }

  .gx-popup-logo-top {
    width: 120px;
    margin-bottom: 12px;
  }

  .gx-popup-stars span {
    font-size: 18px;
  }

  .gx-popup-left h2 {
    font-size: 26px;
  }

  .gx-popup-left p {
    font-size: 14px;
  }

  .gx-popup-right {
    padding: 20px 16px;
  }

  .gx-popup-right input,
  .gx-popup-right select {
    height: 50px;
    font-size: 15px;
  }

  .gx-popup-right button {
    font-size: 18px;
    height: 52px;
  }

  .gx-popup-close {
    width: 34px;
    height: 34px;
    font-size: 24px;
    top: 8px;
    right: 8px;
  }
}

.gx-popup-logo {
  width: 120px;
  margin: 0 auto 15px;
}

.gx-popup-left h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.gx-popup-left p {
  font-size: 14px;
}

/* RIGHT SIDE */
.gx-popup-right {
  padding: 20px;
}

.gx-popup-right form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gx-popup-right input,
.gx-popup-right select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* BUTTON */
.gx-popup-right button {
  background: #ff6a2b;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {
  .gx-popup-box {
    grid-template-columns: 1fr;
  }

  .gx-popup-left {
    padding: 15px;
  }
}



/* BIGGER POPUP */
.gx-popup-box {
  width: 95%;
  max-width: 900px; /* ðŸ”¥ increased size */
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

/* RIGHT SIDE (FORM AREA) */
.gx-popup-right {
  padding: 30px 25px 25px;
  position: relative;
}

/* ðŸ”¥ LOGO TOP RIGHT */
.gx-popup-logo-top {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 110px;
}

/* FORM SPACING */
.gx-popup-right form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px; /* space below logo */
}

/* INPUT SIZE BIGGER */
.gx-popup-right input,
.gx-popup-right select {
  padding: 12px;
  font-size: 15px;
  border-radius: 10px;
}

/* BUTTON BIGGER */
.gx-popup-right button {
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
}

/* LEFT SIDE */
.gx-popup-left {
  padding: 35px;
}

/* REMOVE OLD ABSOLUTE LOGO */
.gx-popup-logo-top {
  display: none;
}

/* FORM HEADER */
.gx-form-header {
  text-align: center;
  margin-bottom: 20px;
}

/* ðŸ”¥ CENTERED LOGO */
.gx-form-logo {
  width: 140px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .gx-form-logo {
    width: 120px;
  }

  .gx-form-header {
    margin-bottom: 15px;
  }
}

/* ONLY CHANGE THIS */
.gx-form-header {
  display: flex;
  justify-content: flex-end; /* move logo to right */
}

/* keep logo size same */
.gx-form-logo {
  width: 130px; /* adjust if needed */
}


.gx-popup-message {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.gx-popup-success {
  background: #ecfdf5;
  color: #065f46;
}

.gx-popup-error {
  background: #fef2f2;
  color: #991b1b;
}





/* =========================
   TABLET VIEW
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
    
    wrapper {
    width: 100%;
    max-width: 12/* DESKTOP (default) */
.gx-contact-wrapper {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 40px; /* side spacing */
}

/* TABLET */
@media (max-width: 1024px) {
  .gx-contact-wrapper {
    max-width: 100%;
    padding: 0 30px; /* reduce padding */
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gx-contact-wrapper {
    max-width: 100%;
    padding: 0 20px; /* smaller spacing */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .gx-contact-wrapper {
    padding: 0 16px; /* tight spacing */
  }
}0px;
    margin: 0 auto;
}
    
    
    
    
    
  .gx-popup-overlay {
    padding: 18px;
  }

  .gx-popup-box {
    width: 100%;
    max-width: 760px;
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .gx-popup-left {
    min-height: 240px;
    padding: 28px 24px;
  }

  .gx-popup-left-content {
    text-align: center;
  }

 

  .gx-popup-stars {
    justify-content: center;
    margin-bottom: 12px;
  }

  .gx-popup-stars span {
    font-size: 18px;
  }

  .gx-popup-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .gx-popup-left p {
    font-size: 15px;
    line-height: 1.6;
  }

  .gx-popup-right {
    padding: 24px 22px;
  }

  .gx-popup-right form {
    gap: 14px;
  }

  .gx-popup-right input,
  .gx-popup-right select,
  .gx-popup-right textarea {
    width: 100%;
    font-size: 15px;
    border-radius: 10px;
  }

  .gx-popup-right input,
  .gx-popup-right select {
    height: 50px;
    padding: 12px 14px;
  }

  .gx-popup-right textarea {
    min-height: 95px;
    padding: 12px 14px;
  }

  .gx-popup-right button {
    height: 52px;
    font-size: 17px;
    border-radius: 10px;
  }

  .gx-popup-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
    top: 8px;
    right: 8px;
  }
}

/* =========================
   MOBILE VIEW
   ========================= */
@media (max-width: 767px) {
  .gx-popup-overlay {
    padding: 12px;
  }

  .gx-popup-box {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .gx-popup-left {
    min-height: 200px;
    padding: 22px 16px;
  }

  .gx-popup-left-content {
    text-align: center;
  }

 

  .gx-popup-stars {
    justify-content: center;
    margin-bottom: 10px;
  }

  .gx-popup-stars span {
    font-size: 16px;
  }

  .gx-popup-left h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .gx-popup-left p {
    font-size: 14px;
    line-height: 1.5;
  }

  .gx-popup-right {
    padding: 18px 14px;
  }

  .gx-popup-right form {
    gap: 12px;
  }

  .gx-popup-right input,
  .gx-popup-right select,
  .gx-popup-right textarea {
    width: 100%;
    font-size: 14px;
    border-radius: 10px;
  }

  .gx-popup-right input,
  .gx-popup-right select {
    height: 46px;
    padding: 10px 12px;
  }

  .gx-popup-right textarea {
    min-height: 85px;
    padding: 10px 12px;
  }

  .gx-popup-right button {
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
  }

  .gx-popup-close {
    width: 32px;
    height: 32px;
    font-size: 22px;
    top: 8px;
    right: 8px;
  }
}
html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

body.menu-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
.gx-flip-back ul {
  list-style: none;
  padding: 0;
}

.gx-flip-back ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

/* 🔥 CORRECT CHECKMARK */
.gx-flip-back ul li::before {
  content: "✔";  /* ONLY symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: #00e676;
  font-weight: bold;
}

/* 🔥 TITLE CENTER */
.gx-contact-title {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* SECTION CENTER ALIGN */
.gx-contact-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* center everything */
}

/* WRAPPER CENTER */
.gx-contact-wrapper {
  width: 100%;
 
  margin: 0 auto;
}



.gx-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 70px;

 font-family:'Roboto',sans-sarif;
}

.gx-marquee {
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
  white-space: nowrap;
}

.gx-marquee-blue {
  background: lightgrey;
  transform: rotate(-4deg);
  color:black;
  
  
}

.gx-marquee-white {
  background: lightgrey;
  transform: rotate(4deg);
  margin-top: 55px;
  border: 1px solid #111;
  
}
.gx-marquee-wrap {
  width: 100%;
  overflow: hidden;
 
  padding: 100px 0 120px; /* give vertical space */
  position: relative;
}

/* BOTH STRIPS */
.gx-strip {
  width: 140%;
  margin-left: -20%;
  overflow: hidden;
  position: relative;
}

/* TOP BLUE STRIP */
.gx-blue {
  background: #0798e8;
  transform: rotate(-4deg);
  position: relative;
  top: 0;
  z-index: 2;
}


.gx-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 55px;
  padding: 14px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  font-family:'Roboto',sans-sarif;
  white-space: nowrap;
  will-change: transform;
}

.gx-marquee-track span {
  flex: 0 0 auto;
}

/* top: right to left */
.gx-left {
  animation: gxMoveLeft 8s linear infinite;
}

/* bottom: left to right */
.gx-right {
  animation: gxMoveRight 8s linear infinite;
}

@keyframes gxMoveLeft {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes gxMoveRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}

.gx-strip {
  width: 120%;
  margin-left: -10%;
  overflow: hidden;
}

.gx-blue {
  background: linear-gradient(90deg,#0bbcff,#0077ff);
  transform: rotate(-4deg);
}

.gx-white {
  background: #fff;
  transform: rotate(4deg);
  margin-top: 15px;
}

.gx-track {
  display: flex;
  width: max-content;
}

/* ❗ KEY FIX: NO EXTRA GAP */
.gx-content {
  display: flex;
  gap: 50px;
  padding: 12px 30px;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 800;
}

/* 🔥 PERFECT LOOP */
.gx-left {
  animation: gxLeft 6s linear infinite;
}

.gx-right {
  animation: gxRight 6s linear infinite;
}

/* move EXACTLY half (one duplicate width) */
@keyframes gxLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gxRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gx-marquee-wrap {
  width: 100%;
  overflow: hidden;
 background:beige;
  padding: 50px 0 75px;
}

.gx-strip {
  width: 140%;
  margin-left: -20%;
  overflow: hidden;
}

.gx-blue {
  background: #0798e8;
  transform: rotate(-4deg);
}

.gx-white {
  background: #fff;
  transform: rotate(4deg);
  margin-top: 14px;
}

.gx-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.gx-track span {
  flex: 0 0 auto;
  padding: 13px 35px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

/* continuous right to left */
.gx-left {
  animation: gxMoveLeft 4s linear infinite;
}

/* continuous left to right */
.gx-right {
  animation: gxMoveRight 4s linear infinite;
}

@keyframes gxMoveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@keyframes gxMoveRight {
  from {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(0);
  }
}
/* Tablet view */
@media (max-width: 1024px) {
  .gx-marquee-white {
    transform: rotate(3deg);   /* slightly less tilt */
    margin-top: 30px;          /* reduce gap */
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .gx-marquee-white {
    transform: rotate(2deg);   /* minimal tilt for small screens */
    margin-top: 20px;          /* prevent overlap */
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .gx-marquee-white {
    transform: rotate(1.5deg); /* almost straight */
    margin-top: 15px;
  }
}



/* MOBILE + TABLET: remove front text overlap on back side */
@media (max-width: 1024px) {
  .gx-flip-card {
    height: 360px !important;
    perspective: 1200px !important;
  }

  .gx-flip-inner {
    height: 100% !important;
    position: relative !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
  }

  .gx-flip-front,
  .gx-flip-back {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
  }

  .gx-flip-front {
    transform: rotateY(0deg) translateZ(1px) !important;
    z-index: 2;
  }

  .gx-flip-back {
    transform: rotateY(180deg) translateZ(1px) !important;
    z-index: 1;
    display: flex !important;
  }

  .gx-flip-card.active .gx-flip-inner {
    transform: rotateY(180deg) !important;
  }

  .gx-flip-card.active .gx-flip-front {
    visibility: hidden !important;
  }

  .gx-flip-card.active .gx-flip-back {
    visibility: visible !important;
  }
}

.gx-flip-card.active .gx-flip-front {
  visibility: hidden !important;
}

/* DESKTOP (default) */
.gx-contact-wrapper {
  width: 100%;
  
  margin: 0 auto;
  padding: 0 40px; /* side spacing */
}

/* TABLET */
@media (max-width: 1024px) {
  .gx-contact-wrapper {
    max-width: 100%;
    padding: 0 30px; /* reduce padding */
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gx-contact-wrapper {
    max-width: 100%;
    padding: 0 20px; /* smaller spacing */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .gx-contact-wrapper {
    padding: 0 16px; /* tight spacing */
  }
}

.gx-error{
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.gx-form-group input.error-border,
.gx-form-group select.error-border{
  border: 1px solid red;
}
.gx-error{
  color:red;
  font-size:12px;
  margin-top:5px;
  display:block;
}

.error-border{
  border:1px solid red !important;
}
.gx-error{
  color:red;
  font-size:12px;
  margin-top:5px;
  display:block;
}

.error-border{
  border:1px solid red !important;
}






.gx-footer-container {
    padding-bottom: 0px;
}



.gx-footer {
    padding: 60px 0 0;
}




@media (max-width: 480px) {
  .gx-hero-left h2 {
    font-size: 22px;        /* reduce size */
    line-height: 1.3;       /* tighter spacing */
    
  }
}
@media (max-width: 1024px) {
  .gx-hero-left h2 {
   
    margin-left: auto;
    margin-right: auto; /* Centers the text block if needed */
    line-height: 1.4;   /* Adds breathing room between the 3 lines */
  }
}








/* ================= POPUP ================= */

.gx-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
  padding:20px;
}

.gx-popup-box{
  width:100%;
  max-width:900px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
}

.gx-popup-left{
  background:#004ba0;
  color:#fff;
  padding:50px 35px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.gx-popup-left h2{
  font-size:32px;
  margin-bottom:15px;
}

.gx-popup-left p{
  line-height:1.7;
}

.gx-popup-right{
  padding:35px;
}

.gx-popup-group{
  margin-bottom:16px;
}

.gx-popup-group input,
.gx-popup-group select,
.gx-popup-group textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:8px;
  outline:none;
  font-size:15px;
}

.gx-popup-group input:focus,
.gx-popup-group select:focus,
.gx-popup-group textarea:focus{
  border-color:#004ba0;
}

.gx-popup-btn{
  width:100%;
  padding:14px;
  border:none;
  background:#004ba0;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
}

.gx-popup-btn:hover{
  background:#00357a;
}

.gx-popup-close{
  position:absolute;
  top:12px;
  right:14px;
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:24px;
  cursor:pointer;
}

.gx-popup-error{
  color:red;
  font-size:13px;
  display:block;
  margin-top:5px;
}

.gx-popup-success{
  color:green;
  margin-top:12px;
  font-size:14px;
}

@media(max-width:768px){

  .gx-popup-box{
    grid-template-columns:1fr;
  }

  .gx-popup-left{
    padding:30px 20px;
    text-align:center;
  }

  .gx-popup-right{
    padding:20px;
  }

}
