:root{
  --bg:#081120;
  --bg-soft:#101b33;
  --bg-card:rgba(255,255,255,0.08);
  --text:#f5f7ff;
  --text-muted:#bfd0ef;
  --white:#ffffff;
  --line:rgba(255,255,255,0.12);
  --shadow:0 20px 50px rgba(0,0,0,0.28);
  --gradient:linear-gradient(135deg,#00d4ff,#6c63ff,#ff4ecd,#ff7a18);
  --gradient-2:linear-gradient(135deg,#0ea5e9,#4f46e5,#9333ea);
  --gradient-3:linear-gradient(135deg,#14b8a6,#0ea5e9,#8b5cf6);
  --primary:#6c63ff;
  --primary-2:#00d4ff;
  --success:#19c37d;
  --warning:#ffb020;
  --danger:#ff4d6d;
  --radius:22px;
  --radius-sm:16px;
  --container:1200px;
}

body.light-theme{
  --bg:#f3f7ff;
  --bg-soft:#ffffff;
  --bg-card:rgba(255,255,255,0.9);
  --text:#0f172a;
  --text-muted:#475569;
  --white:#ffffff;
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 40px rgba(15,23,42,0.10);
  background:
    radial-gradient(circle at top left, rgba(108,99,255,0.15), transparent 30%),
    radial-gradient(circle at top right, rgba(0,212,255,0.18), transparent 25%),
    #f3f7ff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(108,99,255,.18), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(0,212,255,.15), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(255,78,205,.12), transparent 18%),
    var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
  width: 100%;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  list-style:none;
}

body .container{
  width:100%;
  max-width:1500px;
  padding-left:clamp(20px,4vw,64px);
  padding-right:clamp(20px,4vw,64px);
  margin:auto;
}

.section{
  padding:clamp(56px,7vw,90px) 0;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
}

.section-head h2{
  font-family:'Manrope',sans-serif;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.15;
  margin:12px 0;
}

.section-head p{
  color:var(--text-muted);
}

.section-tag,
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  color:var(--primary-2);
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.gradient-text{
  background:var(--gradient);
  background-size:200% 200%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.topbar{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);
}

.topbar-wrap{
  min-height:44px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.topbar-left,
.topbar-right{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:var(--text-muted);
  font-size:.92rem;
}

.topbar-right a:hover{
  color:var(--primary-2);
  transform:translateY(-2px);
}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,17,32,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.light-theme .header{
  background:rgba(255,255,255,0.75);
}

body.light-theme .header h2{
  color: #0f172a;
}

body.light-theme .header p{
  color: #0f172a;
}

body.light-theme .footer-logo h2{
  color:#0f172a;
}

body.light-theme .footer-logo p{
  color:#475569;
}

.solid-header{
  position:sticky;
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.logo-mark{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:20px;
  color:#fff;
  background:linear-gradient(135deg,#6366f1,#22c55e);
}

.logo-img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:10px;
  background:#fff;
  padding:3px;
}

.footer-logo .logo-img{
  width:48px;
  height:48px;
}

.logo h2{
  font-size:18px;
  font-weight:800;
  color:#ffffff;
}

.logo p{
  font-size:10px;
  letter-spacing:1px;
  color:#94a3b8;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  position:relative;
  display:inline-block; /* add this */
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:#cbd5f5;
  padding:6px 4px;
  transition:color .3s ease, transform .3s ease; /* better than transition: all */
}

.nav a:hover{
  color:var(--text);
}

.nav a.active{
  color:var(--text);
}

.nav a::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  border-radius:999px; /* optional, cleaner line */
  background:linear-gradient(90deg,#22c55e,#6366f1);
  transition:width .3s ease;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-auth-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 15px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.05);
  color:var(--text);
  font:inherit;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, transform .15s ease;
}

.nav-auth-btn:hover{
  border-color:var(--primary-2);
  transform:translateY(-1px);
}

body.light-theme .nav-auth-btn{
  color:#0f172a;
}

.nav-auth{ display:inline-flex; align-items:center; }
.nav-account-wrap{ position:relative; }

.nav-account{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:5px 12px 5px 6px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.05);
  color:var(--text);
  font:inherit;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  transition:border-color .2s ease, transform .15s ease;
}

.nav-account:hover{ border-color:var(--primary-2); transform:translateY(-1px); }
body.light-theme .nav-account{ color:#0f172a; }

.nav-avatar,
.nav-avatar-lg{ border-radius:50%; object-fit:cover; flex-shrink:0; }
.nav-avatar{ width:28px; height:28px; }
.nav-avatar-lg{ width:46px; height:46px; }

.nav-avatar--fallback,
.nav-avatar-lg--fallback{
  display:inline-grid;
  place-items:center;
  background:linear-gradient(135deg,#0ea5e9,#22c55e);
  color:#fff;
  font-weight:800;
}
.nav-avatar-lg--fallback{ font-size:1.2rem; }

.nav-account-name{ max-width:120px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nav-account-caret{ font-size:.7rem; color:var(--text-muted); }

.nav-account-menu{
  position:absolute;
  right:0;
  top:calc(100% + 12px);
  width:266px;
  padding:14px;
  border-radius:18px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  box-shadow:0 24px 60px rgba(0,0,0,.4);
  z-index:1200;
}
.nav-account-menu[hidden]{ display:none; }

.nav-account-id{
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom:14px;
  margin-bottom:14px;
  border-bottom:1px solid var(--line);
}
.nav-account-id-text{ overflow:hidden; }
.nav-account-id-text strong{
  display:block;
  font-size:.95rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nav-account-id-text span{
  display:block;
  font-size:.82rem;
  color:var(--text-muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-signout{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:11px;
  border-radius:13px;
  border:1px solid rgba(255,84,112,0.28);
  background:rgba(255,84,112,0.10);
  color:#ff8da0;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease;
}
.nav-signout:hover{ background:rgba(255,84,112,0.18); }

@media(max-width:560px){
  .nav-auth-btn span{ display:none; }
  .nav-auth-btn{ padding:8px 11px; }
  .nav-account-name,
  .nav-account-caret{ display:none; }
  .nav-account{ padding:4px; }
}

body.light-theme .nav a{
  color: #0f172a;
}

body.light-theme .hero{
  color:#f8fbff;
}

body.light-theme .hero-overlay{
  background:
    linear-gradient(120deg, rgba(8,17,32,0.72), rgba(8,17,32,0.42)),
    url('https://images.unsplash.com/photo-1502877338535-766e1452684?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

body.light-theme .hero-content h1,
body.light-theme .hero-content p,
body.light-theme .hero-badges span,
body.light-theme .mini-stats h4{
  color:#f8fbff;
}

body.light-theme .hero-content p,
body.light-theme .mini-stats p{
  color:#e4ecff;
}

body.light-theme .hero .eyebrow,
body.light-theme .hero-badges span,
body.light-theme .mini-stats div{
  background:rgba(8,17,32,0.42);
  border-color:rgba(255,255,255,0.28);
  box-shadow:0 16px 36px rgba(0,0,0,0.18);
}

body.light-theme .hero .btn-outline{
  color:#f8fbff;
  border-color:rgba(255,255,255,0.34);
  background:rgba(8,17,32,0.28);
}

body.light-theme .hero .btn-outline:hover{
  background:rgba(255,255,255,0.14);
}

body.light-theme .glass-card{
  background:rgba(255,255,255,0.86);
  border-color:rgba(15,23,42,0.10);
  box-shadow:0 18px 40px rgba(15,23,42,0.12);
}

body.light-theme .hero .glass-card{
  background:rgba(8,17,32,0.42);
  border-color:rgba(255,255,255,0.18);
}

.menu-toggle,
.theme-toggle{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#1e293b,#334155);
  color:#fff;
  transition:all .3s ease;
}

.menu-toggle:hover,
.theme-toggle:hover{
  transform:rotate(180deg);
  background:linear-gradient(135deg,#6366f1,#22c55e);
}

.menu-toggle{
  display:none;
  font-size:20px;
  color:#fff;
  cursor:pointer;
  background:none;
  border:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
}

.nav-btn {
  max-width: 200px;
  max-height: 50px;
  text-align: center;
}

.nav-btn h3 {
  font-size: 15px;
}

.contact-btn {
  width: 150px;
  height: 50px;
}

.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-150%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform:skewX(-20deg);
  transition:left .7s ease;
  pointer-events:none;
  z-index:0;
}

.btn:hover::before{
  left:160%;
}

.btn > *{
  position:relative;
  z-index:1;
}

.btn-primary{
  color:white;
  background:linear-gradient(135deg,#6366f1,#22c55e);
}


.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.btn-secondary{
  background:var(--gradient-3);
  color:#fff;
}

.btn-outline{
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
}

.btn-outline:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-4px);
}

.w-full{
  width:100%;
}

.hero{
  position:relative;
  min-height:calc(100vh - 128px);
  display:flex;
  align-items:center;
  padding:clamp(48px,6vw,70px) 0;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(8,17,32,0.85), rgba(8,17,32,0.45)),
    url('https://images.unsplash.com/photo-1502877338535-766e1452684?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  z-index:-3;
}

.hero-bg-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.45;
  z-index:-2;
}

.shape-1{
  width:380px;
  height:380px;
  background:#00d4ff;
  top:10%;
  right:5%;
}

.shape-2{
  width:340px;
  height:340px;
  background:#9333ea;
  bottom:-60px;
  left:-60px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.hero-content {
  padding-bottom: 0;
  display:grid;
  align-items: center;
  justify-content: center;
}

.home_image {
  position: relative;
  width: 100%;
  height: clamp(460px, 64vh, 720px);
  justify-self: stretch;
  align-self: center;
  border-radius: 28px;
  display: block;
  overflow: hidden;
  background: transparent !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.home_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1{
  font-family:'Manrope',sans-serif;
 /* font-size:clamp(2.7rem,5vw,5rem); */
  line-height:1.04;
  margin:18px 0 18px;
  max-width: 760px;
}

.hero-content p{
  font-size:15px;
  font-weight: 10px;
  width:100%;
  color:#e2ebff;
  text-align: center;
  max-width: 760px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:28px 0;
  justify-content: center;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content: center;
}

.hero-badges span{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
}

.glass-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border-radius: 30px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-card{
  padding:28px;
}

.hero-card-top h3{
  font-size:1.4rem;
  margin-bottom:6px;
}

.hero-card-top p{
  color:#dce7ff;
  margin-bottom:22px;
}

.booking-form .form-group,
.contact-form .form-group{
  margin-bottom:16px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:var(--text);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:none;
  outline:none;
  padding:15px 16px;
  border-radius:16px;
  background:rgba(255,255,255,0.10);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.10);
  transition:.3s ease;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea{
  background:#ffffff;
  color:#0f172a;
  border-color:rgba(15,23,42,0.14);
  box-shadow:0 1px 2px rgba(15,23,42,0.04);
}

body.light-theme .form-group label{
  color: #0f172a;
}

body.light-theme .hero .form-group label{
  color: #fff;
}

body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder{
  color:#64748b;
  opacity:1;
}

body.light-theme .form-group select:invalid{
  color:#64748b;
}

body.light-theme input:not([type="checkbox"]):not([type="radio"]),
body.light-theme select,
body.light-theme textarea{
  background-color:#ffffff;
  color:#0f172a;
  border-color:rgba(15,23,42,0.14);
  color-scheme:light;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--primary-2);
  box-shadow:0 0 0 4px rgba(0,212,255,0.12);
  transform:translateY(-1px);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.mini-stats{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.mini-stats div{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  padding:16px;
  border-radius:18px;
  text-align:center;
}

.mini-stats h4{
  font-size:1.5rem;
  font-weight:800;
}

.mini-stats p{
  font-size:.85rem;
  color:var(--text-muted);
}

.marquee{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  padding:16px 0;
}

.marquee-track{
  display:flex;
  white-space:nowrap;
  min-width:max-content;
  animation:marquee 22s linear infinite;
  font-weight:700;
  color:var(--primary-2);
}

.marquee-track span{
  padding-right:40px;
}

@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.partners,
.services-preview{
  background-image:
    linear-gradient(rgba(8,17,32,0.62), rgba(8,17,32,0.62)),
    url('https://firebasestorage.googleapis.com/v0/b/freeframe-2d8bc.firebasestorage.app/o/private%2F0tqWwoUu6KU54FDDhb3RErKYqes1%2F1782147416215-bf96fj-yamu_jay-global-business-9062781.jpg?alt=media&token=7f883576-b785-4eac-8ce1-6355566ad232');
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

/* These sections keep a dark image background in both themes, so their
   heading text must stay light even when the rest of the page is light. */
body.light-theme .partners .section-head h2,
body.light-theme .services-preview .section-head h2{
  color:#f5f8ff;
}

body.light-theme .partners .section-head p,
body.light-theme .services-preview .section-head p{
  color:#dbe6ff;
}

body.light-theme .partners .section-tag,
body.light-theme .services-preview .section-tag{
  color:#7fe6ff;
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.22);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.service-card{
  background:rgba(8,17,32,0.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

body.light-theme .service-card{
  background:rgba(255,255,255,0.90);
}
.info-card{
    background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:.25s ease;
}
.number-card{
    background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:.25s ease;
}
.contact-card{
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.service-card:hover,
.info-card:hover,
.number-card:hover,
.contact-card:hover{
  transform:translateY(-10px);
  border-color:rgba(0,212,255,.45);
}

.icon-box{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  font-size:1.35rem;
  border-radius:20px;
  background:var(--gradient-2);
  color:#fff;
  margin-bottom:20px;
  box-shadow:0 10px 22px rgba(79,70,229,0.28);
}

.service-card h3,
.info-card h3{
  margin-bottom:12px;
  font-size:1.25rem;
}

.service-card p,
.info-card p{
  color:var(--text-muted);
  margin-bottom:14px;
}

.service-card a{
  font-weight:700;
  color:var(--primary-2);
}

.service-card a:hover{
  letter-spacing:.02em;
}

.dark-panel{
  background:rgba(255,255,255,0.04);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
  align-items:center;
}

.image-stack{
  position: relative;
  min-height: 500px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible;
}

.image-stack img{
  position: absolute;
  width: 72%;
  border-radius: 28px;
  object-fit: cover;
  display: block;
  background: transparent !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.image-stack img:first-child{
  top: 0;
  left: 0;
  height: 420px;
}

.image-stack img:last-child{
  bottom: 0;
  right: 0;
  height: 420px;
}

.about-home,
.about-home .container,
.split-grid{
  background: transparent !important;
  box-shadow: none !important;
}

.dark-panel{
  background: rgba(255,255,255,0.02);
}

.content-block h2{
  font-family:'Manrope',sans-serif;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.15;
  margin:14px 0 18px;
}

.content-block p{
  color:var(--text-muted);
  margin-bottom:18px;
}

.feature-list{
  display:grid;
  gap:18px;
  margin:24px 0 30px;
}

.feature-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.feature-item i{
  margin-top:4px;
  color:var(--success);
  font-size:1.1rem;
}

.feature-item h4{
  margin-bottom:4px;
}

.feature-item p{
  margin:0;
}

.fleet-card{
  border-radius:26px;
  overflow:hidden;
  background:var(--bg-card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:.35s ease;
}

.fleet-card:hover{
  transform:translateY(-10px);
}

.fleet-card img{
  height:240px;
  width:100%;
  object-fit:cover;
}

.fleet-content{
  padding:22px;
}

.fleet-content h3{
  margin-bottom:8px;
}

.fleet-content p,
.fleet-content span{
  color:var(--text-muted);
}

.numbers-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.number-card{
  text-align:center;
}

.number-card h3{
  font-size:3rem;
  margin-bottom:6px;
  background:var(--gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.testimonial-slider{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.testimonial-track{
  position:relative;
  min-height:260px;
}

.testimonial-card{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateX(40px);
  transition:.5s ease;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:28px;
  padding:40px;
  box-shadow:var(--shadow);
}

.testimonial-card.active{
  opacity:1;
  transform:translateX(0);
  position:relative;
}

.stars{
  color:#ffd84d;
  font-size:1.3rem;
  letter-spacing:.1em;
  margin-bottom:18px;
}

.testimonial-card p{
  font-size:1.15rem;
  margin-bottom:20px;
}

.testimonial-card span{
  color:var(--text-muted);
}

.slider-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:24px;
}

.slider-controls button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:var(--gradient-2);
  color:#fff;
  font-size:1rem;
  transition:.3s ease;
}

.slider-controls button:hover{
  transform:translateY(-4px) scale(1.05);
}

.faq-list{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:18px;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,0.05);
}

.faq-question{
  width:100%;
  border:none;
  background:transparent;
  color:var(--text);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:22px 24px;
  cursor:pointer;
  font-size:1.02rem;
  font-weight:700;
  text-align:left;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 24px 22px;
  color:var(--text-muted);
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

.cta-banner .cta-wrap{
  width:auto;
  margin-left:clamp(20px,4vw,64px);
  margin-right:clamp(20px,4vw,64px);
  border-radius:30px;
  padding:42px;
  background:var(--gradient-2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:var(--shadow);
  color:#fff;
}

.cta-wrap h2{
  font-size:clamp(2rem,4vw,3rem);
  margin:12px 0;
}

.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.cta-banner .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,0.34);
  background:rgba(255,255,255,0.08);
}

.cta-banner .btn-outline:hover{
  background:rgba(255,255,255,0.16);
}

.footer{
  padding-top:70px;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:30px;
  padding-bottom:34px;
}

.footer h4{
  margin-bottom:16px;
  font-size:1.1rem;
}

.footer li,
.footer-text{
  color:var(--text-muted);
  margin-bottom:10px;
}

.footer a:hover{
  color:var(--primary-2);
}

.footer-bottom{
  min-height:72px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  border-top:1px solid var(--line);
  color:var(--text-muted);
}

.back-to-top{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--gradient);
  color:#fff;
  box-shadow:var(--shadow);
}

.page-hero{
  padding:120px 0 70px;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(108,99,255,0.18), rgba(0,212,255,0.08)),
    var(--bg-soft);
  border-bottom:1px solid var(--line);
}

.page-hero h1{
  font-family:'Manrope',sans-serif;
  font-size:clamp(2.4rem,4vw,4rem);
  margin:16px 0 14px;
}

.page-hero p{
  max-width:760px;
  margin:auto;
  color:var(--text-muted);
}

.services-listing{
  display:grid;
  gap:28px;
}

.service-row{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:center;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.service-row.reverse{
  grid-template-columns:1.1fr .9fr;
}

.service-row.reverse img{
  order:2;
}

.service-row img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
}

.service-row > div{
  padding:28px;
}

.service-row h2{
  margin-bottom:12px;
  font-family:'Manrope',sans-serif;
}

.service-row p{
  color:var(--text-muted);
  margin-bottom:14px;
}

.service-row ul{
  list-style:disc;
  padding-left:18px;
  color:var(--text-muted);
}

.timeline{
  display:grid;
  gap:20px;
  max-width:900px;
  margin:auto;
}

.timeline-item{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:20px;
  align-items:flex-start;
  background:var(--bg-card);
  border:1px solid var(--line);
  padding:24px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.timeline-item span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:var(--gradient);
  color:#fff;
  font-weight:900;
  font-size:1.4rem;
}

.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  align-items:start;
}

.contact-info{
  display:grid;
  gap:18px;
}

.contact-form-wrap{
  padding:30px;
}

.contact-form-wrap h2{
  margin-bottom:8px;
}

.contact-form-wrap p{
  color:var(--text-muted);
  margin-bottom:22px;
}

.map-wrap{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  background:linear-gradient(135deg,#14b8a6,#0ea5e9,#8b5cf6);
  color:#fff;
  padding:16px 20px;
  border-radius:16px;
  box-shadow:var(--shadow);
  transform:translateY(140px);
  opacity:0;
  transition:.35s ease;
  z-index:2000;
}

.toast.show{
  transform:translateY(0);
  opacity:1;
}


/* Dropdown options */
select option{
  background-color: #0b1324;
  color: #ffffff;
}

body.light-theme select option{
  background-color:#ffffff;
  color:#0f172a;
}

/* Hover + focus */
select:focus{
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.15);
}

/* Disabled */
select:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}


.cursor-dot,
.cursor-ring{
  position:fixed;
  top:0;
  left:0;
  pointer-events:none;
  z-index:2001;
  transform:translate(-50%,-50%);
  transition:transform .08s linear, width .2s ease, height .2s ease, opacity .2s ease;
}

.cursor-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
}

.cursor-ring{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.cursor-ring{
  backdrop-filter: none;
  box-shadow: none;
  background: transparent;
}

body.light-theme .cursor-dot{
  background:#111827;
}

body.light-theme .cursor-ring{
  border-color:rgba(17,24,39,.28);
}

[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:all .7s ease;
  transition-delay:var(--delay,0ms);
}

[data-reveal].visible{
  opacity:1;
  transform:translateY(0);
}

.tilt-card{
  transform-style: flat;
  will-change: auto;
  backface-visibility: hidden;
}

.service_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .contact-grid,
  .grid-4,
  .grid-3,
  .numbers-grid,
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-row,
  .service-row.reverse{
    grid-template-columns:1fr;
  }

  .service-row.reverse img{
    order:0;
  }
    .nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    flex-direction:column;
    align-items:center;
    background:#0f172a;
    padding:30px 0;
    gap:18px;
    transform:translateY(-150%);
    transition:all .4s ease;
  }

  .nav.show{
    transform:translateY(0);
  }

  .menu-toggle{
    display:block;
  }
}

@media (max-width: 860px){

  body.light-theme .nav{
    background:#fff;
  }


  .hero-grid {
    grid-template-columns:1fr;
  }

  .home_image {
    width: 100%;
    height: clamp(320px, 52vh, 520px);
    justify-self: stretch;
  }

  .split-grid,
  .grid-3,
  .grid-4,
  .numbers-grid,
  .footer-grid,
  .contact-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding-top:50px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-content h1{
    font-size:2.7rem;
  }

  .image-stack{
    min-height:360px;
  }

  .image-stack img:first-child{
    height:240px;
  }

  .image-stack img:last-child{
    height:240px;
  }

  .cta-banner {
    display: flex;
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-wrap{
    display: flex;
    flex-direction:column;
    align-items:flex-start;
  }

  .mini-stats{
    grid-template-columns:1fr;
  }

  
}

@media (max-width: 560px){
  .topbar-wrap{
    justify-content:center;
  }

  .hero-actions,
  .hero-badges,
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .hero-content h1{
    font-size:2.2rem;
  }

  .page-hero{
    padding-top:100px;
  }

  .cursor-dot,
  .cursor-ring{
    display:none;
  }
}

