/* ==========================================================================
   VijjāVerse Design System & Stylesheet
   ========================================================================== */

/* 1. Imports & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #f8f6f0;         /* Brighter beige base background */
  --bg-emerald: #ffffff;      /* Pure white for card contrast */
  --bg-emerald-deep: #ebe7da; /* Muted darker beige for footer/header fixed state */
  --accent-mint: #0f766e;     /* Deep teal-emerald for readable contrast */
  --accent-mint-glow: rgba(15, 118, 110, 0.15);
  --accent-gold: #c27803;     /* Muted dark gold for readability */
  --accent-gold-glow: rgba(194, 120, 3, 0.15);
  --text-primary: #1e293b;    /* Slate-900 for primary text */
  --text-secondary: #57687e;  /* Slate-600 for secondary text */
  
  /* Glassmorphism & Shadow */
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(15, 118, 110, 0.12);
  --glass-border-hover: rgba(15, 118, 110, 0.3);
  --card-shadow: 0 8px 32px 0 rgba(28, 25, 20, 0.05); /* Soft, subtle, warm shadow */
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* 2. Global Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 118, 110, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-mint);
}

/* Section Spacing */
section {
  padding: 80px 0;
  position: relative;
}

.left-heading {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.left-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-mint), transparent);
  border-radius: 2px;
}

/* 3. Navigation Header */
.navigations.inpagf {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navigations.inpagf .logo__holder {
  animation: logoBounceFadeIn 1.5s ease-out both;
}

@keyframes logoBounceFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  35% {
    opacity: 1;
    transform: translateY(0);
  }
  52% {
    transform: translateY(-20px);
  }
  68% {
    transform: translateY(0);
  }
  82% {
    transform: translateY(-7px);
  }
  95% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fixed shrinking header animation */
@keyframes shrink {
  to {
    height: 70px;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
  }
}

@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .navigations.inpagf {
    animation: shrink auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 100px;
  }
}

/* JS Fallback Class (handled in main.js) */
.navigations.inpagf.top-fix {
  height: 70px;
  background: rgba(248, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo__holder img {
  height: 40px;
  transition: var(--transition-smooth);
}

.navigations.inpagf.top-fix .logo__holder img {
  height: 32px;
}

.top-sosal ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-sosal li {
  margin-left: 20px;
}

.top-sosal a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-sosal a i {
  color: var(--accent-mint);
  font-size: 1.2rem;
}

.menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-emerald);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-icon:hover {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
  box-shadow: 0 0 15px var(--accent-mint-glow);
}

.menu-icon:hover img {
  filter: brightness(0) invert(1);
}

.menu-icon img {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

/* 4. Slide-Out Capsule Menu */
.top_custom_menu {
  position: fixed;
  top: 110px;
  right: 4%;
  width: 380px;
  max-width: calc(100vw - 8%);
  height: auto;
  max-height: calc(100vh - 140px);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
  z-index: 1001;
  display: none;
  overflow-y: auto;
  padding: 30px 24px;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shrinkMenu {
  to {
    top: 80px;
  }
}

@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .top_custom_menu {
    animation: shrinkMenu auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 100px;
  }
}

.navigations.inpagf.top-fix ~ .top_custom_menu {
  top: 80px;
}

.top_custom_menu .container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.top_custom_menu .row {
  margin-left: 0;
  margin-right: 0;
}

.top_custom_menu .col-md-12,
.top_custom_menu .col-lg-12 {
  padding-left: 0;
  padding-right: 0;
}

.close_men {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close_men img {
  height: 40px;
}

.close_men i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-style: normal;
  transition: var(--transition-smooth);
}

.close_men i:hover,
.close_men i.clicked_rotate {
  border-color: var(--accent-mint);
  background: var(--accent-mint-glow);
  transform: rotate(90deg);
}

.close_men i img {
  width: 16px;
  height: 16px;
}

.top-nav {
  margin-top: 10px;
}

.top-nav .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-nav .nav-item {
  position: relative;
}

.top-nav .nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-primary) !important;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.top-nav .nav-link:hover,
.top-nav .nav-link:focus,
.top-nav .nav-link:active,
.top-nav .show > .nav-link {
  color: var(--accent-mint) !important;
  padding-left: 12px;
  background: transparent !important;
}

.top-nav .dropdown-menu {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 20px 30px;
  margin-top: 10px;
  width: 100%;
  border-radius: 12px;
}

.top-nav .dropdown-menu .nav-link {
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  border: none;
  padding: 6px 0;
  color: var(--text-secondary) !important;
  background: transparent !important;
  display: block;
}

.top-nav .dropdown-menu .nav-link:hover,
.top-nav .dropdown-menu .nav-link:focus,
.top-nav .dropdown-menu .nav-link:active {
  color: var(--accent-mint) !important;
  padding-left: 8px;
  background: transparent !important;
}

/* 5. Hero Section */
.landing__splash {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(circle at 30% 30%, #0f172a 0%, #030712 100%);
  overflow: hidden;
}

.landing__splash .vb-head {
  background: linear-gradient(135deg, #ffffff 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing__splash .slider-text {
  color: #94a3b8;
}

.landing__splash .tagline-badge .badge {
  background-color: rgba(52, 211, 153, 0.1) !important;
  border-color: rgba(52, 211, 153, 0.25) !important;
  color: #34d399 !important;
}

.landing__splash .milestone-bg {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.landing__splash .milestone-bg .heading {
  color: #ffffff;
}

.landing__splash .milestone-bg .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.landing__splash .milestone-bg .right-text p {
  color: #94a3b8;
}

.landing__splash .milestone-bg .right-text h2 {
  color: #34d399;
}

.landing__splash .milestone-bg .right-text h2.gold-text {
  color: #fbbf24;
}

#landingCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.fx__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero {
  padding: 40px 0;
}

.vb-head {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #1e293b 0%, #0f766e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.btn-green {
  display: inline-block;
  background: var(--accent-mint);
  color: var(--bg-dark-space) !important;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 6px;
  box-shadow: 0 4px 20px var(--accent-mint-glow);
  transition: var(--transition-smooth);
  border: 1px solid var(--accent-mint);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.6);
  background: transparent;
  color: var(--accent-mint) !important;
}

/* Statistics Sidebar */
.milestone-bg {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.milestone-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.milestone-bg .heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-align: left;
}

.milestone-bg .border-bottom {
  border-bottom: 1px solid rgba(15, 118, 110, 0.1) !important;
}

.milestone-bg .left-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--accent-mint-glow));
}

.milestone-bg .right-text {
  text-align: left;
}

.milestone-bg .right-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.milestone-bg .right-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-mint);
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.milestone-bg .right-text h2.gold-text {
  color: var(--accent-gold);
}

/* 6. Capabilities & Services Grid Cards */
.box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.box:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.15);
}

.box:hover::before {
  opacity: 1;
}

.hover-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.box:hover .hover-img {
  background: var(--accent-mint);
  transform: scale(1.1);
}

.hover-img img,
.hover-img svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.box:hover .hover-img img {
  filter: brightness(0) invert(1);
}

.box:hover .hover-img svg {
  stroke: var(--bg-dark) !important;
}

.box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.box .descc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.box a {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.box a::after {
  content: '→';
  transition: var(--transition-fast);
}

.box a:hover::after {
  transform: translateX(4px);
}

.view-btn {
  text-align: center;
  margin-top: 50px;
}

.view-btn a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 1px solid var(--accent-mint);
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.view-btn a:hover {
  background: var(--accent-mint);
  color: var(--bg-dark-space) !important;
  box-shadow: 0 4px 15px var(--accent-mint-glow);
}

/* Custom Owl Navigation & Dots */
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.owl-prev, .owl-next {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  border: 1px solid var(--glass-border) !important;
  background: var(--glass-bg) !important;
  color: var(--text-primary) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth) !important;
}

.owl-prev:hover, .owl-next:hover {
  border-color: var(--accent-mint) !important;
  background: var(--accent-mint) !important;
  color: var(--bg-dark) !important;
  box-shadow: 0 0 10px var(--accent-mint-glow);
}

.owl-dots {
  text-align: center;
  margin-top: 25px;
}

.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  margin: 0 5px;
  display: inline-block;
  transition: var(--transition-fast);
}

.owl-dot.active {
  background: var(--accent-mint) !important;
  width: 24px;
  border-radius: 4px;
}

/* 7. Achievements & Clients Section */
.achivementdv {
  padding: 80px 0;
  position: relative;
}

#clients {
  padding: 0;
}

#clients .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 10px;
}

#clients img {
  max-height: 50px;
  width: auto !important;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(1) brightness(1.5);
  transition: var(--transition-smooth);
}

#clients .item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.clients-carousel svg {
  color: var(--text-secondary);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.clients-carousel .item:hover svg {
  color: var(--accent-mint);
  opacity: 1;
  transform: scale(1.05);
}

/* 8. Our Work Section */
.our-works {
  padding: 80px 0;
  background: radial-gradient(circle at 70% 70%, #0f172a 0%, #030712 90%);
}

.our-works h2.left-heading {
  color: #ffffff;
}

.our-works .ourworkgrid {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.our-works .addtxt h2 {
  color: #ffffff;
}

.our-works .addtxt p {
  color: #94a3b8;
}

.our-works .ourworkgridbxn {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: #34d399;
}

.our-works .ourworkgridbxn h5 {
  color: #cbd5e1;
}

.our-works .clientname {
  color: #ffffff;
}

.our-works .clientname span {
  color: #34d399;
}

.our-works .viewallbox {
  border-color: #34d399;
  color: #34d399;
  box-shadow: 0 4px 15px rgba(52, 211, 153, 0.1);
}

.our-works .viewallbox:hover {
  background: #34d399;
  color: #030712 !important;
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

.ourworkgrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--card-shadow);
  align-items: center;
  margin-bottom: 30px;
}

.addtxt h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.addtxt p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.viewallbox {
  display: inline-block;
  border: 1px solid var(--accent-mint);
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.1);
}

.viewallbox:hover {
  background: var(--accent-mint);
  color: var(--bg-dark) !important;
  box-shadow: 0 6px 20px var(--accent-mint-glow);
}

.addimg img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.ourworkgridbxn {
  background: rgba(15, 118, 110, 0.03);
  border-left: 4px solid var(--accent-mint);
  padding: 30px;
  border-radius: 0 16px 16px 0;
  margin-top: 20px;
}

.ourworkgridbxn h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.clientname {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.clientname span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--accent-mint);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 4px;
}

/* 9. Testimonial / CEO Section */
.ceo-word {
  margin-top: 50px;
}

.ceo-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ceo-box img {
  width: 400px !important;
  height: 400px !important;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 25px;
  border: 4px solid var(--accent-mint);
  box-shadow: 0 0 20px var(--accent-mint-glow);
  display: block;
}

.ceo-box p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.ceo-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.ceo-box span {
  color: var(--accent-mint);
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* 10. Request Access Modal */
.modal-content {
  background: var(--bg-emerald);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  color: var(--text-primary);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
  padding: 30px 40px 20px;
}

.modal-header .modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-header .close {
  color: var(--text-primary);
  text-shadow: none;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.modal-header .close:hover {
  color: var(--accent-mint);
  opacity: 1;
}

.modal-body {
  padding: 40px;
}

.modal-body h2 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Modal Form Controls */
.modal-body label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.modal-body input[type=text],
.modal-body input[type=tel],
.modal-body input[type=email],
.modal-body select,
.modal-body textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
  border-color: var(--accent-mint);
  box-shadow: 0 0 10px rgba(15, 118, 110, 0.2);
  outline: none;
}

/* Service Options Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--accent-mint);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent-mint);
  border-color: var(--accent-mint);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--bg-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.submit-btn {
  background: var(--accent-mint);
  color: var(--bg-dark);
  border: 1px solid var(--accent-mint);
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  width: 100%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  background: transparent;
  color: var(--accent-mint);
  box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
}

/* 11. Footer */
footer {
  background: #0b0f19;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer-widget h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #34d399;
}

.footer-widget p {
  color: #94a3b8 !important;
  font-size: 0.95rem;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-widget ul li a:hover {
  color: #34d399;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  border: 1px solid transparent;
}

.footer-social a:hover {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* 11.a Target Clients Cards */
.client-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.12);
}

.client-card:hover::before {
  opacity: 1;
}

.client-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.client-card:hover .client-icon {
  background: var(--accent-mint);
  transform: scale(1.1);
}

.client-card:hover .client-icon svg {
  stroke: var(--bg-dark);
}

.client-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.client-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* 11.b Work Process Layout */
.process-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.process-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.process-box:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.1);
}

.process-box:hover::before {
  opacity: 1;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(15, 118, 110, 0.2);
  line-height: 1;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.process-box:hover .step-num {
  color: var(--accent-mint);
  text-shadow: 0 0 10px var(--accent-mint-glow);
  transform: scale(1.05);
}

.process-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.process-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* 12. Responsive Adjustments */
@media (max-width: 991px) {
  .navigations.inpagf {
    height: 80px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--glass-border);
  }
  
  .vb-head {
    font-size: 2.8rem;
    text-align: center;
  }
  
  .slider-text {
    text-align: center;
    margin: 0 auto 30px;
  }
  
  .hero .col-lg-8 {
    text-align: center;
  }
  
  .milestone-bg {
    margin-top: 50px;
  }
  
  .ourworkgrid {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .addimg {
    order: -1;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vb-head {
    font-size: 2.2rem;
  }
  
  .left-heading {
    font-size: 2rem;
  }
  
  .top-sosal {
    display: none;
  }
}

/* 13. Interactive Floating Chatbot Widget */
.chatbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* Chat Launcher Button */
.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-mint);
  color: #ffffff !important;
  border: 1px solid var(--accent-mint);
  border-radius: 50px;
  padding: 12px 24px;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.4);
  background: #ffffff;
  color: var(--accent-mint) !important;
}

.chat-launcher:hover .chat-launcher-icon {
  transform: rotate(-10deg) scale(1.1);
}

.chat-launcher-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.chat-launcher-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

/* Chat Panel/Window */
.chat-window {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 480px;
  max-height: 70vh;
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(28, 25, 20, 0.12);
  display: none; /* toggled via JS */
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
  transition: var(--transition-smooth);
  animation: chatFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes chatFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.chat-header {
  background: var(--bg-emerald-deep);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  background: var(--bg-emerald);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-header-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.status-indicator {
  font-size: 0.75rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.chat-close-btn:hover {
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent-mint);
}

/* Body / Chat Messages */
.chat-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.3);
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.bot-message {
  align-self: flex-start;
  background: #ffffff;
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--glass-border);
}

.user-message {
  align-self: flex-end;
  background: var(--accent-mint);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

/* Quick Option Buttons */
.chat-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.chat-option-btn {
  background: #ffffff;
  color: var(--accent-mint);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--card-shadow);
}

.chat-option-btn:hover {
  background: var(--accent-mint);
  color: #ffffff;
  border-color: var(--accent-mint);
  transform: translateX(3px);
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Footer / Input block */
.chat-footer {
  padding: 15px 20px;
  background: #ffffff;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-footer input {
  flex-grow: 1;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  background: var(--bg-dark);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.chat-footer input:focus {
  border-color: var(--accent-mint);
  background: #ffffff;
  box-shadow: 0 0 8px rgba(15, 118, 110, 0.1);
}

.chat-footer button {
  background: var(--accent-mint);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-footer button:hover {
  background: rgba(15, 118, 110, 0.8);
  transform: scale(1.05);
}

/* ================================================================
   Enhanced Mobile Responsiveness
   ================================================================ */

/* --- Tablet: 768px–991px --- */
@media (max-width: 991px) {
  /* Fix hero centering — HTML uses .landing__splash not .hero */
  .landing__splash .col-lg-8 {
    text-align: center;
  }

  .tagline-badge {
    display: flex;
    justify-content: center;
  }

  .btn-green {
    display: inline-block;
    text-align: center;
  }

  /* Hero padding-top should match the 80px nav at this breakpoint */
  .landing__splash {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  /* Drop the heavy px-5 a bit */
  .container-fluid.px-5 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  /* Slide-out menu: shift down to match 80px nav */
  .top_custom_menu {
    top: 90px;
  }

  .navigations.inpagf.top-fix ~ .top_custom_menu {
    top: 80px;
  }
}

/* --- Small phones: 576px–767px --- */
@media (max-width: 767px) {
  .container-fluid.px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  section {
    padding: 60px 0;
  }

  .achivementdv,
  .our-works {
    padding: 60px 0;
  }

  .vb-head {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .slider-text {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .milestone-bg {
    padding: 25px 18px;
    margin-top: 25px;
  }

  .milestone-bg .right-text h2 {
    font-size: 1.9rem;
  }

  .ourworkgrid {
    padding: 24px 20px;
    gap: 20px;
  }

  .addtxt h2 {
    font-size: 1.6rem;
  }

  footer {
    padding: 60px 0 30px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  /* CEO image — 400px is overkill on a phone */
  .ceo-box img {
    width: 200px !important;
    height: 200px !important;
  }

  .ceo-box p {
    font-size: 1.05rem;
  }
}

/* --- Standard phones: up to 575px --- */
@media (max-width: 575px) {
  /* Navigation */
  .navigations.inpagf {
    height: 65px;
    padding: 0 16px;
  }

  .logo__holder a {
    font-size: 1.1rem !important;
  }

  /* Slide-out menu positioning for 65px nav */
  .top_custom_menu {
    top: 75px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }

  .navigations.inpagf.top-fix ~ .top_custom_menu {
    top: 72px;
  }

  /* Reduce container padding to 16px */
  .container-fluid.px-5 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Section headings */
  .left-heading {
    font-size: 1.5rem;
  }

  section,
  .achivementdv,
  .our-works {
    padding: 50px 0;
  }

  /* Hero */
  .landing__splash {
    padding-top: 75px;
    padding-bottom: 40px;
  }

  .vb-head {
    font-size: 1.7rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .tagline-badge .badge {
    font-size: 0.72rem !important;
    padding: 6px 10px !important;
    white-space: normal !important;
    line-height: 1.4;
    text-align: center;
  }

  .slider-text {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .btn-green {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }

  /* Stats panel */
  .milestone-bg {
    padding: 18px 14px;
    margin-top: 20px;
    border-radius: 14px;
  }

  .milestone-bg .heading {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .milestone-bg .right-text h2 {
    font-size: 1.65rem;
  }

  .milestone-bg .right-text p {
    font-size: 0.78rem;
  }

  /* Boxes */
  .box {
    padding: 22px 18px;
  }

  .box h2 {
    font-size: 1.25rem;
  }

  .hover-img {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  /* Work grid */
  .ourworkgrid {
    padding: 18px;
    gap: 15px;
    border-radius: 14px;
  }

  .addtxt h2 {
    font-size: 1.35rem;
  }

  .addtxt p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .ourworkgridbxn {
    padding: 16px 14px;
    border-radius: 0 10px 10px 0;
  }

  .ourworkgridbxn h5 {
    font-size: 0.9rem;
  }

  .clientname {
    font-size: 0.95rem;
  }

  /* Client cards */
  .client-card {
    padding: 18px 14px !important;
  }

  .client-card h3 {
    font-size: 1.05rem;
  }

  /* Process boxes */
  .step-num {
    font-size: 1.8rem;
  }

  .process-box h3 {
    font-size: 1.05rem;
  }

  /* Modal */
  .modal-dialog {
    margin: 8px;
    max-width: calc(100% - 16px);
  }

  .modal-content {
    border-radius: 16px;
  }

  .modal-header {
    padding: 18px 18px 14px;
  }

  .modal-header .modal-title {
    font-size: 1.3rem;
  }

  .modal-body {
    padding: 16px;
  }

  .modal-body h2 {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .submit-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Footer */
  footer {
    padding: 50px 0 20px;
  }

  .footer-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
  }

  /* Chat launcher — collapse to icon-only bubble */
  .chatbot-container {
    bottom: 16px;
    right: 14px;
  }

  .chat-launcher-text {
    display: none;
  }

  .chat-launcher {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .chat-window {
    width: calc(100vw - 28px);
    right: 0;
    bottom: 66px;
    height: 420px;
  }
}
