:root{
      --gie-blue:#0c2d57;
      --gie-blue-dark:#071d38;
      --gie-red:#d62f2f;
      --gie-yellow:#f0c419;
      --gie-green:#4a8b2c;
      --gie-text:#212529;
      --gie-muted:#6c757d;
      --gie-light:#f8f9fb;
      --gie-border:#d9d9d9;
      --gie-shadow:0 10px 30px rgba(0,0,0,.10);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Montserrat',sans-serif;
      color:var(--gie-text);
      background:#fff;
      overflow-x:hidden;
    }

    a{text-decoration:none}
    ul{margin:0;padding:0;list-style:none}

    .top-inquiry-bar{
      background:#fff;
      border-bottom:1px solid #ececec;
      font-size:14px;
      font-weight:700;
      color:var(--gie-green);
      padding:6px 0;
    }
    .top-inquiry-bar .numbers{
      color:#2c69b0;
      font-weight:700;
    }

    .main-header{
      background:#fff;
      position:sticky;
      top:0;
      z-index:9999;
      box-shadow:0 2px 10px rgba(0,0,0,.05);
    }

    .gie-navbar{
      min-height:76px;
    }

    .navbar-brand img{
      max-height:56px;
      width:auto;
      object-fit:contain;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:0;
    }

    .desktop-nav > li{
      position:relative;
    }

    .desktop-nav > li > a,
    .desktop-nav > li > button{
      display:flex;
      align-items:center;
      gap:7px;
      padding:26px 18px;
      border:none;
      background:none;
      color:#1f2e45;
      font-size:15px;
      font-weight:700;
      text-transform:uppercase;
      transition:.25s ease;
    }

    .desktop-nav > li:hover > a,
    .desktop-nav > li:hover > button,
    .desktop-nav > li.active > a{
      color:#fff;
      background:var(--gie-red);
    }

    .desktop-nav > li > a .arrow,
    .desktop-nav > li > button .arrow{
      font-size:12px;
      transform:translateY(-1px);
    }

    .menu-dropdown,
    .menu-mega{
      position:absolute;
      top:100%;
      left:0;
      background:#f1f1f1;
      min-width:240px;
      box-shadow:var(--gie-shadow);
      border-top:3px solid var(--gie-red);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:all .25s ease;
      z-index:1000;
    }

    .desktop-nav > li:hover .menu-dropdown,
    .desktop-nav > li:hover .menu-mega{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .menu-dropdown a{
      display:block;
      padding:14px 16px;
      border-bottom:1px dotted #bfbfbf;
      color:#444;
      font-weight:500;
      background:#efefef;
      transition:.2s ease;
    }
    .menu-dropdown a:hover{
      background:#fff;
      color:var(--gie-red);
      padding-left:20px;
    }

    .menu-mega{
      width:660px;
      padding:14px 0;
    }

    .menu-mega.destination-mega{
      width:1120px;
      max-width:calc(100vw - 40px);
      left:50%;
      transform:translate(-50%,10px);
    }
    .desktop-nav > li:hover .menu-mega.destination-mega{
      transform:translate(-50%,0);
    }

    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:0;
    }

    .mega-col{
      padding:8px 30px;
    }

    .mega-col + .mega-col{
      border-left:1px dashed #b9b9b9;
    }

    .mega-title{
      font-size:15px;
      font-weight:700;
      color:#333;
      margin:6px 0 12px;
    }

    .mega-col a{
      display:block;
      padding:9px 0;
      color:#444;
      font-weight:600;
      transition:.2s ease;
    }

    .mega-col a:hover{
      color:var(--gie-red);
      padding-left:6px;
    }

    .destination-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:18px 28px;
      padding:8px 18px 12px;
    }

    .destination-grid a{
      display:block;
      padding:8px 0;
      color:var(--gie-red);
      font-weight:700;
      text-transform:uppercase;
      border-bottom:1px solid #cfcfcf;
      transition:.2s ease;
      font-size:14px;
    }

    .destination-grid a:hover{
      color:var(--gie-blue);
      padding-left:4px;
    }

    .inquiry-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--gie-yellow);
      color:#2f2a00;
      font-weight:700;
      padding:11px 18px;
      border-radius:4px;
      transition:.25s ease;
      border:1px solid rgba(0,0,0,.06);
      white-space:nowrap;
    }
    .inquiry-btn:hover{
      background:#d8af12;
      color:#000;
    }

    .mobile-toggle{
      border:none;
      background:transparent;
      font-size:28px;
      color:var(--gie-blue);
    }

    .mobile-menu-wrap{
      position:fixed;
      top:0;
      left:-100%;
      width:320px;
      max-width:90%;
      height:100vh;
      background:#fff;
      z-index:10050;
      overflow-y:auto;
      box-shadow:20px 0 50px rgba(0,0,0,.18);
      transition:.3s ease;
    }
    .mobile-menu-wrap.active{left:0}
    .mobile-overlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,.45);
      opacity:0;
      visibility:hidden;
      z-index:10040;
      transition:.3s ease;
    }
    .mobile-overlay.active{
      opacity:1;
      visibility:visible;
    }

    .mobile-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:18px 16px;
      border-bottom:1px solid #eee;
    }
    .mobile-head img{
      max-height:46px;
    }
    .mobile-close{
      border:none;
      background:none;
      font-size:30px;
      line-height:1;
      color:#444;
    }

    .mobile-menu > li{
      border-bottom:1px solid #efefef;
    }
    .mobile-menu > li > a,
    .mobile-menu > li > button{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:14px 16px;
      border:none;
      background:#fff;
      color:#222;
      font-size:15px;
      font-weight:700;
      text-transform:uppercase;
    }
    .mobile-submenu{
      display:none;
      background:#f8f8f8;
      padding:0;
    }
    .mobile-submenu a{
      display:block;
      padding:12px 20px;
      color:#444;
      border-top:1px solid #ececec;
      font-size:14px;
      font-weight:600;
    }
    .mobile-submenu a:hover{color:var(--gie-red)}

    .hero-section{
      position:relative;
      overflow:hidden;
      background:#0b2342;
    }

    .gie-slider,
    .gie-slider .carousel-inner,
    .gie-slider .carousel-item{
      height:750px;
    }

    .hero-bg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(12,45,87,.92) 0%, rgba(12,45,87,.82) 45%, rgba(12,45,87,.20) 100%);
      z-index:1;
    }

    .hero-caption{
      position:relative;
      z-index:2;
      height:100%;
      display:flex;
      align-items:center;
    }

    .hero-content{
      max-width:700px;
      color:#fff;
    }

    .hero-badge{
      display:inline-block;
      background:var(--gie-red);
      color:#fff;
      padding:10px 18px;
      border-radius:50px;
      font-size:13px;
      font-weight:700;
      margin-bottom:18px;
      letter-spacing:.6px;
      text-transform:uppercase;
    }

    .hero-content h1{
      font-size:56px;
      line-height:1.12;
      font-weight:800;
      margin-bottom:18px;
    }

    .hero-content p{
      font-size:18px;
      line-height:1.8;
      margin-bottom:28px;
      color:#eef4fb;
    }

    .hero-btns{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .btn-main{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:15px 26px;
      border-radius:6px;
      font-size:15px;
      font-weight:700;
      transition:.25s ease;
    }

    .btn-red{
      background:var(--gie-red);
      color:#fff;
    }
    .btn-red:hover{background:#b82222;color:#fff}

    .btn-outline-light2{
      border:2px solid rgba(255,255,255,.8);
      color:#fff;
      background:transparent;
    }
    .btn-outline-light2:hover{
      background:#fff;
      color:var(--gie-blue);
    }

    .slider-box{
      position:absolute;
      left:50%;
      bottom:28px;
      transform:translateX(-50%);
      z-index:4;
      width:min(1220px, 94%);
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.15);
      backdrop-filter:blur(10px);
      border-radius:16px;
      padding:18px 8px;
    }

    .stat-item{
      text-align:center;
      color:#fff;
      padding:8px 10px;
    }
    .stat-item h3{
      font-size:28px;
      font-weight:800;
      margin-bottom:4px;
      color:#ffd76d;
    }
    .stat-item p{
      margin:0;
      font-size:14px;
      color:#ecf2fa;
    }

    .carousel-control-prev,
    .carousel-control-next{
      width:60px;
      opacity:1;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      width:52px;
      height:52px;
      border-radius:50%;
      background-color:rgba(255,255,255,.18);
      background-size:20px;
    }

    .carousel-indicators [data-bs-target]{
      width:12px;
      height:12px;
      border-radius:50%;
      background:#fff;
      opacity:.5;
      margin:0 6px;
    }
    .carousel-indicators .active{
      background:var(--gie-yellow);
      opacity:1;
    }

    .section-space{
      padding:80px 0;
    }

    .section-title{
      margin-bottom:18px;
    }
    .section-title .eyebrow{
      display:inline-block;
      color:var(--gie-red);
      font-size:14px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.8px;
      margin-bottom:10px;
    }
    .section-title h2{
      font-size:38px;
      font-weight:800;
      line-height:1.2;
      color:var(--gie-blue-dark);
      margin-bottom:14px;
    }
    .section-title p{
      color:var(--gie-muted);
      line-height:1.8;
      max-width:740px;
      margin:0 auto;
    }

    .feature-card,
    .service-card,
    .country-card,
    .process-card,
    .why-card{
      background:#fff;
      border:1px solid #ececec;
      border-radius:16px;
      box-shadow:0 8px 25px rgba(0,0,0,.05);
      transition:.25s ease;
      height:100%;
    }
    .feature-card:hover,
    .service-card:hover,
    .country-card:hover,
    .process-card:hover,
    .why-card:hover{
      transform:translateY(-6px);
      box-shadow:0 16px 30px rgba(0,0,0,.08);
    }

    .feature-card{
      padding:30px 22px;
      text-align:center;
    }

    .icon-badge{
      width:64px;
      height:64px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:0 auto 18px;
      background:linear-gradient(135deg, var(--gie-red), #f06b6b);
      color:#fff;
      font-size:28px;
      font-weight:800;
    }

    .feature-card h3,
    .service-card h3,
    .country-card h3,
    .process-card h3,
    .why-card h3{
      font-size:20px;
      font-weight:800;
      margin-bottom:12px;
      color:var(--gie-blue-dark);
    }

    .feature-card p,
    .service-card p,
    .country-card p,
    .process-card p,
    .why-card p{
      color:var(--gie-muted);
      line-height:1.75;
      margin-bottom:0;
      font-size:15px;
    }

    .service-card{
      overflow:hidden;
    }
    .service-card .service-img{
      height:210px;
      overflow:hidden;
    }
    .service-card .service-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.3s ease;
    }
    .service-card:hover .service-img img{
      transform:scale(1.08);
    }
    .service-content{
      padding:24px;
    }

    .country-card{
      padding:26px 20px;
      text-align:center;
      border-top:4px solid var(--gie-red);
    }

    .process-card{
      padding:28px 22px;
      position:relative;
    }
    .process-no{
      width:44px;
      height:44px;
      border-radius:50%;
      background:var(--gie-yellow);
      color:#222;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      margin-bottom:15px;
    }

    .cta-strip{
      background:linear-gradient(135deg, var(--gie-blue), var(--gie-blue-dark));
      color:#fff;
      border-radius:22px;
      padding:50px 40px;
      box-shadow:var(--gie-shadow);
    }
    .cta-strip h2{
      font-size:38px;
      font-weight:800;
      margin-bottom:12px;
    }
    .cta-strip p{
      color:#e5edf8;
      line-height:1.8;
      margin-bottom:0;
    }

    .why-card{
      padding:28px 22px;
    }

    .footer{
      background:#0a1f3a;
      color:#d9e2ef;
      margin-top:80px;
    }

    .footer-top{
      padding:70px 0 35px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .footer-logo{
      max-width:220px;
      margin-bottom:18px;
      background:#fff;
      padding:10px 12px;
      border-radius:8px;
    }

    .footer p{
      color:#d0dae6;
      line-height:1.8;
      font-size:14px;
    }

    .footer h4{
      font-size:18px;
      font-weight:800;
      color:#fff;
      margin-bottom:18px;
    }

    .footer-links a{
      display:block;
      color:#d0dae6;
      padding:7px 0;
      font-size:14px;
      transition:.2s ease;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:6px;
    }

    .contact-list li{
      display:flex;
      gap:10px;
      margin-bottom:12px;
      font-size:14px;
      color:#d0dae6;
      line-height:1.7;
    }

    .footer-bottom{
      padding:18px 0;
      text-align:center;
      color:#d0dae6;
      font-size:14px;
    }

    .footer-bottom a{
      color:#fff;
      font-weight:700;
    }

    .floating-leads{
  position:fixed;
  right:18px;
  bottom:22px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.lead-btn{
  min-width:220px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transition:all .25s ease;
  backdrop-filter:blur(8px);
}

.lead-btn:hover{
  transform:translateY(-3px) scale(1.02);
  color:#fff;
}

.lead-call{
  background:linear-gradient(135deg,#1e73be,#0c5aa6);
}

.lead-wa{
  background:linear-gradient(135deg,#25d366,#14b854);
}

.lead-icon{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
  font-size:22px;
}

.lead-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.lead-text strong{
  font-size:15px;
  font-weight:800;
  color:#fff;
}

.lead-text small{
  font-size:12px;
  color:rgba(255,255,255,.92);
}

@media (max-width: 767px){
  .floating-leads{
    right:12px;
    bottom:14px;
    gap:10px;
  }

  .lead-btn{
    min-width:auto;
    width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
    justify-content:center;
  }

  .lead-icon{
    width:58px;
    height:58px;
    min-width:58px;
    background:transparent;
    font-size:24px;
  }

  .lead-text{
    display:none;
  }
}

    @media (max-width:1399px){
      .destination-grid{
        grid-template-columns:repeat(3,1fr);
      }
      .menu-mega.destination-mega{
        width:900px;
      }
    }

    @media (max-width:1199px){
      .desktop-only{display:none!important}
      .hero-content h1{font-size:46px}
    }

    @media (min-width:1200px){
      .mobile-only{display:none!important}
    }

    @media (max-width:991px){
      .gie-slider,
      .gie-slider .carousel-inner,
      .gie-slider .carousel-item{
        height:700px;
      }
      .hero-content h1{font-size:38px}
      .hero-content p{font-size:16px}
      .section-title h2{font-size:32px}
      .cta-strip h2{font-size:30px}
    }

    @media (max-width:767px){
      .top-inquiry-bar{display:none}
      .gie-slider,
      .gie-slider .carousel-inner,
      .gie-slider .carousel-item{
        height:680px;
      }
      .hero-content h1{font-size:30px}
      .hero-content p{font-size:15px;line-height:1.7}
      .hero-badge{font-size:11px;padding:8px 14px}
      .btn-main{padding:13px 18px;font-size:14px}
      .slider-box{
        width:94%;
        bottom:18px;
        padding:14px 6px;
      }
      .stat-item h3{font-size:20px}
      .stat-item p{font-size:12px}
      .section-space{padding:60px 0}
      .section-title h2{font-size:28px}
      .cta-strip{
        padding:35px 20px;
        text-align:center;
      }
      .cta-strip h2{font-size:26px}
      .carousel-control-prev,
      .carousel-control-next{display:none}
    }
	  .footer-branch-box{
  margin-top:40px;
  padding:28px 26px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:16px;
}

.footer-branch-header{
  text-align:center;
  margin-bottom:24px;
}

.footer-branch-header h4{
  margin:0 0 8px;
  font-size:24px;
  font-weight:800;
  color:#fff;
}

.footer-branch-header p{
  margin:0;
  color:#cfd9e8;
  font-size:14px;
  line-height:1.8;
}

.footer-branch-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.branch-card{
  display:block;
  padding:18px 18px 16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-left:4px solid #f0c419;
  border-radius:12px;
  transition:all .25s ease;
}

.branch-card:hover{
  transform:translateY(-4px);
  border-left-color:#d62f2f;
  background:rgba(255,255,255,.08);
  box-shadow:0 12px 24px rgba(0,0,0,.12);
}

.branch-city{
  display:block;
  font-size:18px;
  font-weight:800;
  color:#ffffff;
  margin-bottom:8px;
}

.branch-address{
  display:block;
  color:#d7e1ee;
  font-size:14px;
  line-height:1.8;
}

.branch-card:hover .branch-city{
  color:#f0c419;
}

.branch-card:hover .branch-address{
  color:#ffffff;
}

@media (max-width: 767px){
  .footer-branch-box{
    padding:22px 16px;
  }

  .footer-branch-list{
    grid-template-columns:1fr;
    gap:14px;
  }

  .footer-branch-header h4{
    font-size:20px;
  }

  .branch-city{
    font-size:17px;
  }

  .branch-address{
    font-size:13px;
  }
}