:root{
  --purple:#6D28D9;
  --purple2:#8B5CF6;
  --green:#22C55E;
  --sky:#38BDF8;
  --dark:#0B1220;
  --card:#0F1A33;
  --muted:rgba(255,255,255,.72);
  --glass: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.14);
  --shadow: 0 18px 60px rgba(0,0,0,.25);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(109,40,217,.18), transparent 60%),
    radial-gradient(1200px 700px at 90% 10%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(1200px 700px at 60% 90%, rgba(34,197,94,.12), transparent 60%),
    #070B16;
  color:#EAF2FF;
}

a{ text-decoration:none; }
.section-pad{ padding: 80px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-title{
  font-family:"Space Grotesk", "Poppins", sans-serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.4rem);
}
.section-sub{
  color: rgba(255,255,255,.75);
  max-width: 720px;
}

.text-accent{
  background: linear-gradient(90deg, var(--sky), var(--green), var(--purple2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.muted-note{ color: rgba(255,255,255,.62); }

/* ========== TOPBAR ========== */
.topbar{
  background: linear-gradient(90deg, rgba(56,189,248,.18), rgba(34,197,94,.14), rgba(109,40,217,.18));
  border-bottom: 1px solid var(--border);
}
.topbar-link{
  color: rgba(255,255,255,.85);
}
.topbar-link:hover{ color:#fff; }
.btn-topbar{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  border-radius: 999px;
  padding: .35rem .75rem;
}
.btn-topbar:hover{
  background: rgba(255,255,255,.16);
}

/* ========== NAVBAR ========== */

.navbar-logo{
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 5px;
  transition: transform .3s ease;
}

.navbar-logo:hover{
  transform: scale(1.05);
}

/* Mobile size adjustment */
@media (max-width: 576px){
  .navbar-logo{
    height: 75px;
  }
}


.site-header{
  backdrop-filter: blur(14px);
  background: rgba(7,11,22,.55);
  border-bottom: 1px solid var(--border);
}
.navbar{ padding: 14px 0; }
.navbar-brand .brand-text{ line-height:1.05; }
.brand-mark{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109,40,217,.85), rgba(56,189,248,.75), rgba(34,197,94,.75));
  box-shadow: 0 10px 30px rgba(109,40,217,.25);
}
.brand-mark i{ font-size: 1.25rem; color:#fff; }
.brand-name{
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
}
.brand-sub{
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  color: var(--sky);
}
.brand-tagline{ color: rgba(255,255,255,.65); font-weight:400; }

.nav-link{
  color: rgba(255,255,255,.75) !important;
  font-weight: 500;
  border-radius: 999px;
  padding: .5rem .85rem !important;
}
.nav-link:hover{ color:#fff !important; background: rgba(255,255,255,.06); }
.nav-link.active{
  color:#fff !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.btn{
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: .2px;
}
.btn-main{
  background: linear-gradient(135deg, var(--purple), var(--sky));
  border: none;
  color:#fff;
  box-shadow: 0 14px 35px rgba(56,189,248,.18);
}
.btn-main:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.btn-ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}
.btn-ghost:hover{
  background: rgba(255,255,255,.12);
  color:#fff;
}

/* ========== HERO / CAROUSEL ========== */
.hero-section{ position: relative; }
.hero-slide{
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(120deg, rgba(7,11,22,.82), rgba(7,11,22,.40)),
    radial-gradient(900px 500px at 10% 20%, rgba(109,40,217,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(56,189,248,.18), transparent 60%),
    radial-gradient(900px 500px at 60% 90%, rgba(34,197,94,.14), transparent 60%);
}
.min-vh-75{ min-height: 75vh; }

.hero-card{
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.22);
  color:#DFFFEA;
  font-weight: 600;
  font-size: .9rem;
}
.hero-title{
  font-family:"Space Grotesk",sans-serif;
  font-weight: 800;
  letter-spacing:.2px;
  font-size: clamp(2rem, 1.1rem + 2vw, 3.2rem);
  margin-bottom: .75rem;
}
.hero-text{ color: rgba(255,255,255,.78); font-size: 1.05rem; }

.hero-mini{
  display:flex; gap:12px; flex-wrap:wrap;
}
.mini-item{
  display:flex; gap:8px; align-items:center;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-size: .92rem;
}
.mini-item i{ color: var(--sky); }

.hero-float{ position: relative; z-index:2; }
.float-card{
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.float-glow{
  position:absolute;
  inset:-25px;
  z-index:-1;
  background: radial-gradient(closest-side, rgba(109,40,217,.35), transparent 70%);
  filter: blur(12px);
}

.quick-strip{
  margin-top: 10px;
  padding-bottom: 20px;
}
.quick-card{
  display:flex;
  gap:12px;
  align-items:center;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 16px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.quick-card i{
  font-size: 1.4rem;
  color: var(--green);
}

/* ========== ABOUT ========== */
.about-card{
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  padding: 26px;
  box-shadow: var(--shadow);
}
.about-badge{
  display:inline-flex; align-items:center;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.24);
  color:#E2F7FF;
  font-weight: 600;
}
.icon-tile{
  display:flex; gap:12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}
.icon-tile i{
  width:44px;height:44px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(34,197,94,.24), rgba(56,189,248,.22));
  border:1px solid rgba(255,255,255,.14);
  font-size: 1.2rem;
}

.about-visual{ position:relative; }
.visual-card{
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.visual-top{
  display:flex; gap:10px; flex-wrap:wrap;
  padding: 18px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(109,40,217,.22), rgba(56,189,248,.16), rgba(34,197,94,.14));
}
.chip{
  padding:.35rem .65rem;
  border-radius:999px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  font-size:.9rem;
}
.visual-body{ padding: 18px; }
.visual-footer{
  padding: 18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex; gap:10px; flex-wrap:wrap;
}
.visual-glow{
  position:absolute;
  inset:-18px;
  z-index:-1;
  background: radial-gradient(closest-side, rgba(56,189,248,.25), transparent 70%);
  filter: blur(16px);
}

/* ========== SERVICES ========== */
.service-card{
  height: 100%;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute; inset:-60px;
  background: radial-gradient(closest-side, rgba(109,40,217,.22), transparent 70%);
  opacity:.0;
  transition: opacity .25s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.service-card:hover::before{ opacity:1; }

.service-icon{
  width:56px;height:56px;
  border-radius: 18px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(109,40,217,.30), rgba(56,189,248,.25), rgba(34,197,94,.22));
  border:1px solid rgba(255,255,255,.16);
  margin-bottom: 12px;
}
.service-icon i{
  font-size: 1.5rem;
  display: inline-block;
  transition: transform .6s ease;
  transform-origin: center;
}

/* rotate icon when hovering the whole card */
.service-card:hover .service-icon i{
  transform: rotate(360deg);
}

.service-list{
  padding-left:0; margin:0;
  list-style:none;
}
.service-list li{
  display:flex; align-items:center; gap:8px;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
}
.service-list i{ color: var(--green); }

.cta-strip{
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(109,40,217,.24), rgba(56,189,248,.18), rgba(34,197,94,.16));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}

.service-img{
  width: 100%;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 14px;
  position: relative;
}

.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease;
}

/* little gradient overlay for premium look */
.service-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
  pointer-events:none;
}

/* zoom on hover */
.service-card:hover .service-img img{
  transform: scale(1.12);
}


.service-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.service-top h5{
  margin: 0;
}
@media (max-width: 575px){
  .service-img{ height: 150px; }
}


/* ========== WHY ========== */
.why-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  height:100%;
}
.why-card i{
  font-size: 1.5rem;
  color: var(--sky);
}
.why-panel{
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.why-line{
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  margin-top: 10px;
}
.why-line i{ color: var(--green); margin-right: 8px; }
.why-highlight{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
}

/* ========== ACHIEVEMENTS ========== */
.stat-card{
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  text-align:center;
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
}
.stat-icon{
  width:56px;height:56px;
  border-radius: 18px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  margin: 0 auto 10px;
}
.stat-icon i{ font-size: 1.5rem; color: var(--green); }
.stat-num{
  font-family:"Space Grotesk",sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.4rem);
}
.stat-label{ color: rgba(255,255,255,.75); }

/* ========== GALLERY ========== */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  height: 220px;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.10); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
  opacity:0;
  transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-caption{
  position:absolute;
  left:14px; right:14px; bottom:12px;
  display:flex; align-items:center; justify-content:space-between;
  color:#fff;
  opacity:0;
  transform: translateY(8px);
  transition: .25s ease;
}
.gallery-item:hover .gallery-caption{
  opacity:1; transform: translateY(0);
}
.gallery-caption i{ color: var(--sky); }

/* ========== CONTACT ========== */
.contact-card, .form-card{
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.contact-item{
  display:flex; gap:12px; align-items:flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.contact-ico{
  width:46px;height:46px;
  border-radius: 16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(56,189,248,.22), rgba(34,197,94,.18));
  border: 1px solid rgba(255,255,255,.14);
}
.contact-ico i{ font-size: 1.2rem; }
.contact-item a{ color:#fff; }
.contact-item p{ color: rgba(255,255,255,.78); }

.form-control, .form-select{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius: 14px;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(56,189,248,.5);
  box-shadow: 0 0 0 .25rem rgba(56,189,248,.15);
  background: rgba(0,0,0,.30);
  color:#fff;
}
.form-label{ color: rgba(255,255,255,.78); }

.form-toast{
  display:none;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
}

/* ========== MAP ========== */
.map-section{ padding: 0 0 90px; }
.map-card{
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.map-head{
  padding: 16px 18px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(109,40,217,.18), rgba(56,189,248,.12), rgba(34,197,94,.10));
}

/* ========== FOOTER ========== */
.footer{
  padding: 70px 0 20px;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-title{
  font-family:"Space Grotesk",sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-links, .footer-contact{
  list-style:none;
  padding-left:0;
  margin:0;
}
.footer-links li{ margin: 9px 0; }
.footer-links a{
  color: rgba(255,255,255,.72);
}
.footer-links a:hover{ color:#fff; }
.footer-contact li{
  display:flex; gap:10px;
  margin: 10px 0;
  color: rgba(255,255,255,.72);
}
.footer-contact i{ color: var(--sky); margin-top: 2px; }
.footer-contact a{ color:#fff; }
.footer-hr{ border-color: rgba(255,255,255,.12); }

.social-btn{
  width:40px;height:40px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}
.social-btn:hover{
  background: rgba(255,255,255,.12);
  color:#fff;
}

/* ========== FLOATING ACTIONS ========== */
/* ===== FIX: prevent horizontal overflow from floating buttons ===== */
html, body{
  overflow-x: hidden;
}

/* Container stays inside screen */
.float-actions{
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;

  /* IMPORTANT: ensures it never creates extra width */
  max-width: calc(100vw - 24px);
}

/* Button can't exceed viewport width */
.float-btn{
  display: inline-flex;               /* avoids full-width flex stretching */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 45px rgba(0,0,0,.30);
  position: relative;
  overflow: hidden;

  max-width: 100%;
  white-space: nowrap;
}

.float-btn i{ font-size: 1.25rem; }
.float-btn span{ font-weight: 700; font-size: .92rem; }

.float-btn::before{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(closest-side, rgba(56,189,248,.35), transparent 70%);
  opacity:.85;
  filter: blur(10px);
}

.float-wa{ border-color: rgba(34,197,94,.35); }
.float-wa i{ color: var(--green); }
.float-wa::before{ background: radial-gradient(closest-side, rgba(34,197,94,.40), transparent 70%); }

.float-call{ border-color: rgba(56,189,248,.35); }
.float-call i{ color: var(--sky); }

.float-btn{ animation: floatPulse 2.2s ease-in-out infinite; }
@keyframes floatPulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}

/* ===== Mobile: icon-only circular buttons (no overflow ever) ===== */
@media(max-width:768px)
{
	.c-mb-ds-nn{
		display:none!important;
	}
	.c-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575px){
  .float-actions{
    right: 10px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn{
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .float-btn span{
    display: none;
  }
}

/* Back to top button stays inside screen safely */
.back-to-top{
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color:#fff;
  display:none;
  place-items:center;
  box-shadow: 0 16px 45px rgba(0,0,0,.30);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 991px){
  .min-vh-75{ min-height: 68vh; }
  .quick-strip{ margin-top: -20px; }
}
@media (max-width: 575px){
  .hero-card{ padding: 18px; border-radius: 20px; }
  .section-pad{ padding: 64px 0; }
  .float-btn span{ display:none; } /* icons only on very small screens */
  .gallery-item{ height: 190px; }
}
