/* =============================================
   GSME ENTERPRISES - MAIN STYLESHEET
   ============================================= */

/* ---- CSS Variables ---- */
/* :root {
  --primary:     #f97316;
  --primary-dark:#ea580c;
  --secondary:   #1e293b;
  --dark:        #0f172a;
  --light:       #f8fafc;
  --gray:        #64748b;
  --gray-light:  #e2e8f0;
  --white:       #ffffff;
  --gradient:    linear-gradient(135deg, #f97316, #ea580c);
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  all 0.3s ease;
  --font-main:   'Inter', sans-serif;
  --font-head:   'Poppins', sans-serif;
} */

:root {
  --primary:       #006B3F;
  --primary-dark:  #004D2C;
  --secondary:     #1A1A2E;
  --dark:          #0f172a;
  --light:         #F8F9FA;
  --gray:          #6C757D;
  --gray-light:    #E0E0E0;
  --white:         #FFFFFF;
  --gradient:      linear-gradient(135deg, #006B3F, #004D2C);
  --shadow-sm:     0 2px 10px rgba(0, 107, 63, 0.08);
  --shadow-md:     0 8px 30px rgba(0, 107, 63, 0.12);
  --shadow-lg:     0 20px 60px rgba(0, 107, 63, 0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    all 0.3s ease;
  --font-main:     'Inter', sans-serif;
  --font-head:     'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }


body {
  font-family: var(--font-main);
  color: var(--secondary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}



img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility Classes ---- */
.hl          { color: var(--primary); }
.hl-light    { color: #fdba74; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.sec-tag.light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.sec-title.light { color: var(--white); }

.sec-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
}
.sec-sub.light { color: rgba(255,255,255,0.8); }

.sec-header {
  text-align: center;
  margin-bottom: 60px;
}
.sec-header .sec-sub { margin: 0 auto; }

/* ---- Button Styles ---- */
.btn-primary,
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover,
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
  color: var(--white);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-cta-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-right a,
.topbar-right span {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--primary); }
.topbar-left a i,
.topbar-right i { color: #9fefff;; font-size: 12px; }

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px;
}
.topbar-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}
.topbar-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon svg { width: 48px; height: 48px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary);
  background: rgba(249,115,22,0.07);
}
.nav-menu > li > a .fa-chevron-down {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.nav-menu > li:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* Consultation Button */
.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  transition: var(--transition);
}
.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #006b3f;
  border-radius: 4px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* =============================================
   MEGA MENU
   ============================================= */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 820px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  
}
.mega-menu .container { padding: 32px 36px; }
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 240px;
  gap: 32px;
}
.mega-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mega-col h4 i { color: var(--primary); }
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mega-col ul li a:hover {
  background: rgba(249,115,22,0.07);
  color: var(--primary);
  padding-left: 18px;
}
.mega-col ul li a i {
  color: var(--primary);
  font-size: 13px;
  width: 16px;
}

/* Mega CTA Box */
.mega-highlight { border-left: 1px solid var(--gray-light); padding-left: 28px; }
.mega-cta-box img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.mega-cta-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  text-transform: none;
  letter-spacing: 0;
}
.mega-cta-box p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
}
.mega-cta-btn {
  display: block;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: var(--transition);
}
.mega-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  color: var(--white);
}
.mega-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}
.mega-phone i { color: var(--primary); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.92) 0%,
    rgba(15,23,42,0.75) 50%,
    rgba(249,115,22,0.25) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 100vh;
}

/* Hero Left */
.hero-left { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.5);
  color: #fdba74;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 1s ease;
}
.hero-badge i { color: var(--primary); }

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-para {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-para strong { color: #fdba74; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Hero Stats Row */
.hero-stats-row {
  width: 82%;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  animation: fadeInUp 1s ease 0.8s both;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.hs-item strong {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hs-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hs-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero Right Visual */
.hero-right { position: relative; }
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Orbit rings */
.h-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.h-ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.h-ring-2 { width: 420px; height: 420px; animation-delay: 0.7s; border-style: dashed; }
.h-ring-3 { width: 540px; height: 540px; animation-delay: 1.4s; }
@keyframes ringPulse {
  0%,100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%,-50%) scale(1.04); }
}

/* Hero Main Image */
.hero-main-img {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  margin: 80px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(249,115,22,0.5);
  box-shadow: 0 0 60px rgba(249,115,22,0.3);
}
.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards */
.h-float-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatCard 3s ease-in-out infinite alternate;
}
.fc-1 { top: 60px;  left: -20px; animation-delay: 0s; }
.fc-2 { top: 60px;  right: -20px; animation-delay: 1s; }
.fc-3 { bottom: 60px; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.fc-3 { animation: floatCard3 3s ease-in-out infinite alternate; }
@keyframes floatCard3 {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-10px); }
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fc-text { display: flex; flex-direction: column; }
.fc-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.fc-text span {
  font-size: 11px;
  color: var(--gray);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 1px;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* =============================================
   CLIENTS SECTION
   ============================================= */
.clients-section {
  padding: 40px 0;
  background: var(--light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.clients-label i { color: var(--primary); }

.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.clients-marquee-wrapper::before,
.clients-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}
.clients-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.clients-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.clients-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  min-width: 220px;
  transition: var(--transition);
  flex-shrink: 0;
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cc-icon { font-size: 28px; }
.cc-info { display: flex; flex-direction: column; line-height: 1.3; }
.cc-info strong {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-head);
}
.cc-info span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images */
.about-imgs { position: relative; }
.aimg-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.aimg-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.aimg-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.ab-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.ab-num span { font-size: 24px; }
.ab-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
}
.aimg-small {
  position: absolute;
  width: 170px;
  height: 130px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  top: -24px;
  right: -24px;
}
.aimg-small-2 {
  top: auto;
  bottom: 120px;
  right: -30px;
}
.aimg-small img,
.aimg-small-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Content */

.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-desc {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 28px 0;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}
.ac-item i { color: var(--primary); font-size: 15px; flex-shrink: 0; }

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ap-text { display: flex; flex-direction: column; }
.ap-text span { font-size: 12px; color: var(--gray); }
.ap-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.svc-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  transition: var(--transition);
}
.svc-body { padding: 24px; }
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(5deg); }
.svc-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.svc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.svc-link:hover { gap: 10px; }

/* =============================================
   TECHNOLOGY SECTION
   ============================================= */
.tech-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.tech-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.tech-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.85));
}
.tech-section .container { position: relative; z-index: 2; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.tech-card:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-6px);
}
.tc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(249,115,22,0.2);
  border: 2px solid rgba(249,115,22,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.tech-card:hover .tc-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.tech-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.tech-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tc-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
  transition: width 0.3s ease;
}
.tech-card:hover .tc-line { width: 80px; }

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-section {
  padding: 100px 0;
  background: var(--white);
}

/* Filter Tabs */
.proj-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pf-btn {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: transparent;
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.pf-btn:hover,
.pf-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.proj-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pc-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.proj-card:hover .pc-img img { transform: scale(1.08); }
.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.95), rgba(15,23,42,0.3));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.proj-card:hover .pc-overlay { opacity: 1; }
.pc-ov-content { color: var(--white); }
.pc-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.pc-ov-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pc-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.pc-meta span { display: flex; align-items: center; gap: 6px; }
.pc-meta i { color: var(--primary); font-size: 11px; }

.pc-info { padding: 20px; background: var(--white); }
.pc-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pc-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pc-info p {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pc-info p i { color: var(--primary); font-size: 11px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  padding: 100px 0;
  background: #f8fafc;
}
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,0.2);
}
.wc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-card:hover .wc-icon { transform: scale(1.1); }
.wc-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.wc-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Why Image Stack */
.why-img-stack { position: relative; }
.wi-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.wi-sub {
  position: absolute;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  bottom: -28px;
  left: -28px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.wi-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.wi-badge i {
  font-size: 28px;
  color: var(--primary);
}
.wi-badge div { display: flex; flex-direction: column; }
.wi-badge strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.wi-badge span {
  font-size: 12px;
  color: var(--gray);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #006b3f, #006b3f);
}
.stats-section .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.stat-box {
  text-align: center;
  color: var(--white);
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.stat-box:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}
.sb-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.sb-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.sb-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testi-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.testi-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

.testiSwiper { padding: 20px 10px 60px !important; }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,0.2);
}
.tc-quote {
  font-size: 40px;
  color: rgba(249,115,22,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.tc-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.tc-stars i { color: #f59e0b; font-size: 15px; }
.tc-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
}
.tc-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249,115,22,0.3);
}
.tc-author div { display: flex; flex-direction: column; }
.tc-author strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.tc-author span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* Swiper customization */
.testiSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-light);
  opacity: 1;
}
.testiSwiper .swiper-pagination-bullet-active { background: var(--primary); width: 28px; border-radius: 5px; }
.testiSwiper .swiper-button-prev,
.testiSwiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  color: var(--primary);
  top: auto;
  bottom: 0;
}
.testiSwiper .swiper-button-prev { left: calc(50% - 60px); }
.testiSwiper .swiper-button-next { right: calc(50% - 60px); }
.testiSwiper .swiper-button-prev::after,
.testiSwiper .swiper-button-next::after { font-size: 14px; font-weight: 900; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(15,23,42,0.85));
}
.cta-section .container { position: relative; z-index: 2; }
.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(249,115,22,0.2);
  border: 2px solid rgba(249,115,22,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  margin: 0 auto 24px;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); }
  50%      { box-shadow: 0 0 0 20px rgba(249,115,22,0); }
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.cta-contact-row a {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.cta-contact-row a:hover { color: var(--primary); }
.cta-contact-row span { display: flex; align-items: center; gap: 6px; }
.cta-contact-row i { color: var(--primary); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.4fr;
  gap: 50px;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.fl-main {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}
.fl-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.fs-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.fs-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-col-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--primary); font-size: 10px; }
.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* Footer Contact */
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.fcl-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.fcl-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.fcl-text a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.fcl-text a:hover { color: var(--primary); }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}
.footer-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
}
.wa-float:hover {
  background: #128C7E;
  transform: scale(1.12);
  color: var(--white);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}