/* =====================================================
   WEBSOLVIT — Premium Redesigned CSS
   Design: Deep navy + electric blue + white, clean & modern
   ===================================================== */

/* ──── Google Fonts ──── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ──── CSS Variables ──── */
:root {
  --navy:        #0b1f3a;
  --navy-light:  #142d52;
  --blue:        #1a6ef5;
  --blue-dark:   #0f52c1;
  --blue-glow:   rgba(26, 110, 245, 0.18);
  --orange:      #f7931e;
  --orange-dark: #d97b0c;
  --white:       #ffffff;
  --offwhite:    #f5f8ff;
  --gray-100:    #f0f4f9;
  --gray-200:    #e4eaf3;
  --gray-400:    #9baec9;
  --gray-600:    #556080;
  --text:        #1a2744;
  --shadow-sm:   0 2px 8px rgba(11,31,58,0.10);
  --shadow-md:   0 6px 24px rgba(11,31,58,0.14);
  --shadow-lg:   0 16px 48px rgba(11,31,58,0.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --transition:  all 0.28s cubic-bezier(.4,0,.2,1);
}

/* ──── Reset ──── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover { text-decoration: none; }

img { max-width: 100%; display: block; }

/* ──── Utility ──── */
.container  { width: 90%; max-width: 1280px; margin: auto; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--navy);
  color: var(--gray-400);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5%;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.franchise { background: var(--orange); color: #000; }
.hiring    { background: var(--blue);   color: #fff; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }

/* =====================================================
   HEADER & NAVBAR
   ===================================================== */
header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(11,31,58,0.08);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
  padding: 0 20px;
}

.logo { flex-shrink: 0; }
.logo img {
  width: 200px;
  height: auto;
}

/* Desktop nav */
nav {
  margin-left: 10px;
  margin-right: auto;
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0 20px;
}

nav ul li a {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

nav ul li a:hover {
  color: var(--blue);
  background: var(--blue-glow);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.menu-toggle:hover { background: var(--gray-100); }

/* Call button */
.call-btn { flex-shrink: 0; margin-left: 10px; }
.call-btn a {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26,110,245,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.call-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,110,245,0.45);
}

/* ──── Dropdown menus ──── */
.nav-links li { position: relative; }

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.mega-menu a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13.5px;
  text-align: left;
  transition: var(--transition);
}

.mega-menu a:hover {
  background: var(--blue-glow);
  color: var(--blue);
  padding-left: 18px;
}

/* ──── Mobile navbar ──── */
@media (max-width: 992px) {
  header { padding: 0 15px; }
  .nav { justify-content: space-between; height: 62px; }
  .logo img { width: 150px; }

  .call-btn { order: 2; margin-left: auto; }
  .call-btn a { padding: 8px 14px; font-size: 13px; }

  .menu-toggle { order: 3; display: block; margin-left: 10px; }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 72%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    box-shadow: 4px 0 30px rgba(0,0,0,0.4);
    transition: left 0.35s ease;
    z-index: 1001;
    padding-top: 80px;
    border-right: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
  }
  nav.open { left: 0; top: 62px; padding-top: 10px; }

  nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }
  nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  nav ul li a {
    color: rgba(255,255,255,0.85);
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
  }
  nav ul li a:hover { background: rgba(255,255,255,0.08); color: #fff; }

  .mega-menu {
    display: none;
    position: static;
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    min-width: unset;
  }
  .dropdown.open > .mega-menu { display: flex; }
  .mega-menu a {
    padding: 10px 35px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .mega-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; padding-left: 40px; }
}

/* =====================================================
   MOBILE SLIDER
   ===================================================== */
.mobile-slider {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.slides { display: flex; width: 100%; transition: transform 0.45s ease; }
.slide  { min-width: 100%; }
.slide img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px;
  border-radius: var(--radius-lg);
}
.caption h2 { font-size: 20px; margin-bottom: 5px; }
.caption p  { font-size: 14px; margin: 0; }

.mobile-slider .prev, .mobile-slider .next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(11,31,58,0.55);
  color: white;
  border: none; font-size: 20px;
  padding: 8px 13px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.mobile-slider .prev:hover, .mobile-slider .next:hover { background: rgba(26,110,245,0.85); }
.mobile-slider .prev { left: 12px; display: none; }
.mobile-slider .next { right: 12px; display: none; }

@media (max-width: 768px) {
  .hero          { display: none; }
  .mobile-slider { display: block; }
}

/* =====================================================
   MOBILE MINI SERVICE CARDS
   ===================================================== */
.mobile-container {
  display: none;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin: -16px auto 8px;
  padding: 0 12px;
}

.service-card1 {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card1:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card1 img { width: 52px; height: 48px; object-fit: contain; margin: 0 auto 8px; }
.service-card1 p { margin: 0; font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* Connect Expert Button */
.button-wrapper { display: none; justify-content: center; margin: 10px 0 16px; }
.expert-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 200px; height: 40px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(247,147,30,0.38);
  transition: var(--transition);
}
.expert-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,147,30,0.45); }
.btn-text {
  flex: 1; text-align: center;
  color: #111; font-size: 13px; font-weight: 700;
}
.btn-icon {
  width: 40px; height: 40px;
  border-left: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #111;
}

@media (max-width: 768px) {
  .mobile-container { display: flex; }
  .button-wrapper   { display: flex; }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1f3a 0%, #142d52 55%, #1a3d6b 100%);
}

/* Decorative blobs */
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,110,245,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(247,147,30,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Remove old hero-bg background image */
.hero-bg { display: none; }

.hero-content, .hero-image { position: relative; z-index: 2; }

.hero-content {
  flex: 1;
  max-width: 580px;
  animation: slideInLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.32;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.3px;
}

.hero-content h2 {
  color: var(--orange);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 14px;
}

#changing-text {
  color: #fff;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 18px;
  white-space: nowrap;
  border-right: 3px solid var(--orange);
  width: fit-content;
  overflow: hidden;
  animation: blink 0.75s infinite;
}

@keyframes blink { 50% { border-color: transparent; } }

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  line-height: 1.7;
}

.buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.see-how {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26,110,245,0.45);
  transition: var(--transition);
}
.see-how:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,110,245,0.55); }

.see-work {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: var(--transition);
}
.see-work:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }

/* Also handle .btn1 */
.btn1 {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: var(--transition);
}
.btn1:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease forwards;
}
.hero-image img {
  max-width: 460px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

@keyframes slideInLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(40px);  } to { opacity:1; transform:translateX(0); } }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 40px 6%; text-align: center; min-height: auto; }
  .hero-content, .hero-image { animation: none; }
  .hero-content h1 { font-size: 1.45rem; }
  #changing-text { font-size: 1.1rem; margin: 0 auto 16px; }
  .hero-content p { font-size: 0.95rem; }
  .buttons { justify-content: center; }
  .hero-image { margin-top: 32px; }
  .hero-image img { max-width: 300px; }
}

/* =====================================================
   FLOATING ICONS (left side — WhatsApp & Email)
   ===================================================== */
.floating-iconss {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.floating-iconss.left { bottom: 24px; left: 24px; }

.floating-iconss a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.floating-iconss a:hover { transform: scale(1.12) translateY(-2px); }
.floating-iconss a.whatsapp { background: #25d366; color: #fff; }
.floating-iconss a.email    { background: var(--blue); color: #fff; }
.floating-iconss a span { display: none; }

@media (max-width: 768px) {
  .floating-iconss {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
    border-top: 1px solid var(--gray-200);
    border-radius: 16px 16px 0 0;
  }
  .floating-iconss a {
    flex-direction: column;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    color: var(--text);
    font-size: 22px;
  }
  .floating-iconss a.whatsapp { background: transparent; color: #25d366; }
  .floating-iconss a.email    { background: transparent; color: var(--blue); }
  .floating-iconss a span {
    display: block; font-size: 11px; font-weight: 600;
    margin-top: 3px; line-height: 1;
    color: var(--text);
  }
  .floating-iconss a:hover { transform: scale(1.08); }
  .mobile-only { display: flex !important; }
}
.mobile-only { display: none; }

/* =====================================================
   FLOATING SOCIAL ICONS (right side)
   ===================================================== */
.floating-icons {
  position: fixed;
  top: 30%; right: 0;
  display: flex; flex-direction: column;
  z-index: 1000;
}
.floating-icons a {
  position: relative;
  display: flex; align-items: center;
  width: 46px; height: 46px;
  margin: 3px 0;
  color: #fff;
  border-radius: 24px 0 0 24px;
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition);
  padding-left: 14px;
}
.floating-icons a i { font-size: 18px; flex-shrink: 0; transition: var(--transition); }
.floating-icons a span {
  margin-left: 10px; font-size: 14px; font-weight: 500;
  white-space: nowrap; opacity: 0;
  transform: translateX(16px); transition: var(--transition);
}
.floating-icons a:hover { width: 130px; transform: translateX(-14px); box-shadow: var(--shadow-md); }
.floating-icons a:hover span { opacity: 1; transform: translateX(0); }
.floating-icons a:hover i { transform: scale(1.1); }
.floating-icons a.facebook  { background: #3b5998; }
.floating-icons a.instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.floating-icons a.youtube   { background: #ff0000; }
.floating-icons a.twitter   { background: #1da1f2; }
.floating-icons a.linkedin  { background: #0077b5; }

@media (max-width: 768px) { .floating-icons { display: none; } }

/* =====================================================
   MARQUEE / RUNNING TEXT
   ===================================================== */
.mobile-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transform: rotate(-2deg);
  padding: 14px 0;
  margin: 32px 0;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(11,31,58,0.2);
}
.mobile-marquee-content {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}
.mobile-marquee-content span { display: inline-block; margin-right: 48px; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

@media (max-width: 768px) {
  .mobile-marquee-content { font-size: 15px; animation-duration: 20s; }
  .mobile-marquee { margin: 16px 0; padding: 10px 0; }
}
@media (max-width: 992px) { .mobile-marquee-content { font-size: 18px; } }

/* =====================================================
   PORTFOLIO SECTION
   ===================================================== */
.container1 {
  width: 90%; margin: auto;
  text-align: center; padding: 56px 0;
}
.container1 h2 {
  color: var(--navy); font-size: 30px; font-weight: 800;
  margin-bottom: 24px; letter-spacing: -0.3px;
}
.tabs1 {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.tab1 {
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  color: var(--navy); padding: 10px 22px;
  border-radius: var(--radius-md); cursor: pointer;
  font-weight: 600; font-size: 14px;
  transition: var(--transition);
}
.tab1.active, .tab1:hover {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(11,31,58,0.2);
}
.tab1 a { color: inherit; text-decoration: none; }

.filters {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; padding: 12px; margin-bottom: 28px;
  background: var(--gray-100); border-radius: var(--radius-md);
}
select {
  padding: 9px 15px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px;
  outline: none; background: #fff; color: var(--text);
  font-family: inherit; cursor: pointer; transition: var(--transition);
}
select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.portfolio-card {
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--gray-200);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card img { width: 100%; height: 190px; object-fit: cover; }
.portfolio-info { padding: 16px; text-align: left; }
.portfolio-info h4 { color: var(--navy); margin-bottom: 4px; font-size: 17px; font-weight: 700; }
.portfolio-info p  { color: var(--gray-600); font-size: 13px; margin-bottom: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--blue-glow); color: var(--blue);
  font-size: 11.5px; padding: 4px 10px;
  border-radius: 20px; font-weight: 600;
}

@media (max-width: 600px) {
  .filters { flex-direction: column; }
  .container1 { display: none; }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 80px 8%;
  display: flex; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
}
.about::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,110,245,0.15) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.about-container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; flex-wrap: nowrap;
  max-width: 1200px; width: 100%;
  position: relative; z-index: 1;
}
.about-image { flex: 1 1 44%; display: flex; justify-content: center; }
.about-image img {
  width: 100%; max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-content { flex: 1 1 50%; }
.about-content h2 {
  font-size: 2.2rem; margin-bottom: 8px;
  color: var(--orange); text-transform: uppercase; letter-spacing: 1px; font-weight: 900;
}
.about-content h2 span { color: #fff; }
.about-content h3 { font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.about-content p  { line-height: 1.8; margin-bottom: 16px; color: rgba(255,255,255,0.82); font-size: 0.97rem; }
.about-stats { display: flex; gap: 24px; margin: 24px 0; flex-wrap: wrap; }
.about-stats .stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 14px 22px;
  text-align: center; transition: var(--transition);
}
.about-stats .stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.about-stats h3 { color: var(--orange); font-size: 1.7rem; font-weight: 800; }
.about-stats p  { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.about-btn {
  background: var(--orange); color: #000;
  padding: 12px 26px; border-radius: var(--radius-md);
  font-weight: 700; text-decoration: none;
  display: inline-block; transition: var(--transition);
}
.about-btn:hover { background: #fff; color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .about { padding: 50px 7%; }
  .about-container { flex-direction: column; gap: 24px; text-align: center; }
  .about-image img { display: none; }
  .about-content h2 { font-size: 1.7rem; }
  .about-stats { justify-content: center; }
}

/* =====================================================
   GROWTH / WHY US SECTION
   ===================================================== */
.growth-section {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; padding: 80px 7%;
  background: #fff; gap: 40px;
}
.growth-content { flex: 1; min-width: 320px; }
.growth-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--navy); margin-bottom: 18px; font-weight: 800; line-height: 1.35;
}
.growth-content > p { font-size: 15.5px; line-height: 1.75; color: var(--gray-600); margin-bottom: 28px; }

.growth-card {
  background: var(--offwhite); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 20px 22px;
  margin-bottom: 18px; display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.growth-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.growth-card i { font-size: 26px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.growth-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; font-weight: 700; }
.growth-card p  { font-size: 13.5px; color: var(--gray-600); margin: 0; line-height: 1.6; }

.growth-image { flex: 1; text-align: center; min-width: 280px; }
.growth-image img { max-width: 90%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

@media (max-width: 900px) {
  .growth-section { flex-direction: column; text-align: center; padding: 60px 6%; }
  .growth-card { justify-content: flex-start; text-align: left; }
}

/* =====================================================
   COUNTER SECTION
   ===================================================== */
.counter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3062 100%);
  color: #fff; padding: 80px 8%;
  text-align: center; position: relative; overflow: hidden;
}
.counter-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,110,245,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.counter-container {
  display: flex; justify-content: space-around; align-items: stretch;
  flex-wrap: wrap; gap: 28px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.counter-box {
  flex: 1 1 200px; min-width: 160px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 34px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(26,110,245,0.3);
  border-color: rgba(26,110,245,0.4);
}
.counter-box .counter {
  font-size: 3rem; font-weight: 800;
  color: var(--orange); display: inline-block;
}
.counter-box:hover .counter { color: #fff; }
.counter-box .plus { font-size: 2rem; font-weight: 700; color: var(--orange); margin-left: 4px; }
.counter-box .label {
  margin-top: 10px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.counter-box:hover .label { color: rgba(255,255,255,0.9); }

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(26,110,245,0.2); }
  50%       { box-shadow: 0 0 24px rgba(26,110,245,0.5); }
}
.counter-box:hover { animation: glow 1.8s infinite ease-in-out; }

@media (max-width: 991px) { .counter-box { flex: 1 1 45%; } }
@media (max-width: 600px)  { .counter-box { flex: 1 1 100%; } .counter-box .counter { font-size: 2.5rem; } }

/* =====================================================
   SERVICES SECTION (cards)
   ===================================================== */
.section-title {
  text-align: center; color: var(--navy);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  letter-spacing: -0.3px; font-weight: 800;
  margin-bottom: 8px; padding-top: 60px;
}

.services-container {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px; max-width: 1250px;
  margin: 32px auto 80px; padding: 0 20px;
}

.service-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  color: var(--text); text-align: center;
  border-radius: var(--radius-lg); padding: 32px 24px;
  width: 280px; flex: 1 1 240px; max-width: 320px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-card img {
  width: 72px; height: 72px; object-fit: contain;
  margin: 0 auto 18px;
  filter: none;
  transition: var(--transition);
}
.service-card:hover img { transform: scale(1.08); }

.service-card h2 {
  font-size: 16px; color: var(--navy);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

@media (max-width: 992px) {
  .service-card { width: 45%; padding: 26px 18px; }
}
@media (max-width: 576px) {
  .section-title { font-size: 1.4rem; padding-top: 40px; }
  .services-container { flex-direction: column; align-items: center; padding: 0 14px; }
  .service-card { width: 92%; max-width: 100%; }
}

/* =====================================================
   SERVICES TABS SECTION
   ===================================================== */
.services-section {
  padding: 70px 8%;
  background: var(--gray-100);
  text-align: center;
}
.services-section h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--navy); font-weight: 800; margin-bottom: 32px; letter-spacing: -0.2px;
}
.tabs {
  display: flex; justify-content: center;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 36px; gap: 4px;
}
.tab {
  background: transparent; border: none;
  padding: 14px 28px; cursor: pointer;
  font-weight: 600; font-size: 14px;
  color: var(--gray-600); transition: var(--transition);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-family: inherit;
}
.tab:hover { color: var(--blue); background: var(--blue-glow); }
.tab.active {
  color: var(--blue); border-bottom-color: var(--blue);
  background: rgba(26,110,245,0.05);
  font-weight: 700;
}
.tab.active::after { display: none; }

.tab-content         { display: none; text-align: left; }
.tab-content.active  { display: block; }

.content-box {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.text { flex: 1 1 50%; }
.text h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 14px; font-weight: 800; }
.text p  { color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; font-size: 15px; }
.text h4 { font-size: 16px; color: var(--text); margin-bottom: 10px; font-weight: 700; }
.image { flex: 1 1 38%; text-align: center; }
.image img { width: 100%; max-width: 360px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white; padding: 11px 26px;
  border-radius: var(--radius-md); font-weight: 700;
  text-decoration: none; transition: var(--transition);
  font-size: 14px; box-shadow: 0 4px 14px rgba(26,110,245,0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,110,245,0.45); }

@media (max-width: 600px) {
  .services-section { padding: 48px 5%; }
  .tabs { flex-direction: column; align-items: stretch; border: none; gap: 6px; }
  .tab { padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); border-bottom-width: 1.5px; margin-bottom: 0; }
  .tab.active { border-color: var(--blue); border-bottom-color: var(--blue); }
  .content-box { flex-direction: column; padding: 24px 18px; }
  .image img { max-width: 260px; }
}

/* =====================================================
   TESTIMONIALS / VIDEO SECTION
   ===================================================== */
.testimonials {
  background: var(--offwhite); padding: 70px 6%;
  text-align: center;
}
.testimonials h2 {
  color: var(--navy); font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 12px; font-weight: 800;
}
.testimonials .intro {
  max-width: 800px; margin: 0 auto 48px;
  color: var(--gray-600); font-size: 15.5px; line-height: 1.7;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px; justify-content: center;
}
.video-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--gray-200);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb iframe { width: 100%; height: 210px; border: none; }
.video-card h4 { margin: 14px 16px 6px; color: var(--navy); font-size: 17px; font-weight: 700; }
.video-card p  { padding: 0 16px 16px; font-size: 14px; color: var(--gray-600); line-height: 1.55; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #fff;
  border-top: 2px solid var(--gray-200);
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 5% 30px;
}

.brand-section {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; margin-bottom: 50px;
  gap: 20px;
}
.brand-section h2 {
  width: 100%; font-weight: 900; font-size: 22px;
  margin-bottom: 24px; letter-spacing: 0.5px; color: var(--navy);
}
.brand-column { flex: 1 1 200px; min-width: 160px; }
.brand-column h3 {
  color: var(--navy); font-size: 14px; font-weight: 800;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px;
}
.brand-column ul { list-style: none; padding: 0; margin: 0; font-size: 13.5px; line-height: 1.6; }
.brand-column ul li {
  margin-bottom: 8px; cursor: pointer;
  color: var(--gray-600); transition: var(--transition);
}
.brand-column ul li:hover { color: var(--blue); padding-left: 4px; }

/* Social + Payment */
.social-payment-section {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  margin-bottom: 32px; padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  gap: 20px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; justify-content: center; align-items: center;
  color: white; font-size: 18px; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.social-icon:hover { transform: scale(1.14) translateY(-2px); box-shadow: var(--shadow-md); }
.facebook  { background: #3b5998; }
.instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.youtube   { background: #ff0000; }
.x         { background: #000; }
.linkedin  { background: #0077b5; }

.payment-methods { display: flex; gap: 10px; align-items: center; }
.payment-methods img {
  height: 30px; filter: grayscale(0.2) drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  transition: var(--transition); cursor: pointer;
}
.payment-methods img:hover { transform: scale(1.08); filter: none; }
.payment-label { color: var(--gray-600); font-weight: 700; font-size: 13px; margin-right: 12px; white-space: nowrap; }

/* Contact addresses */
.contact-section { position: relative; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--gray-200); }
.contact-addresses { display: flex; flex-wrap: wrap; justify-content: space-between; position: relative; z-index: 2; gap: 16px; }
.contact-address { flex: 1 1 200px; font-size: 13px; line-height: 1.6; margin-bottom: 20px; min-width: 160px; color: var(--gray-600); }
.contact-address strong { display: block; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.bg-locations {
  position: absolute; inset: 0;
  color: rgba(11,31,58,0.04); font-weight: 900; font-size: 80px;
  display: flex; justify-content: space-around; align-items: center;
  pointer-events: none; user-select: none;
  letter-spacing: 10px; text-transform: uppercase; z-index: 1;
}

/* Disclaimer */
.disclaimer-box {
  background: #fff5f5; color: #a00; font-size: 13px;
  padding: 16px 22px; border: 1.5px solid #f0a0a0;
  margin-bottom: 28px; border-radius: var(--radius-md);
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.disclaimer-box strong { display: block; margin-bottom: 8px; }

/* Copyright */
.copyright {
  text-align: center; font-size: 13px; color: var(--gray-600);
  padding-bottom: 20px; font-weight: 500;
}
.copyright a { color: var(--blue); font-weight: 700; }
.copyright a:hover { text-decoration: underline; }

/* Footer responsive */
@media (max-width: 992px) {
  .brand-section { flex-direction: column; }
  .social-payment-section { flex-direction: column; align-items: center; text-align: center; }
  .payment-methods { flex-wrap: wrap; justify-content: center; }
  .bg-locations { font-size: 50px; }
}
@media (max-width: 576px) {
  .footer-container { padding: 40px 5% 20px; }
  .brand-section h2 { font-size: 18px; text-align: center; }
  .copyright { font-size: 12px; }
  .social-icon { width: 38px; height: 38px; font-size: 16px; }
  .bg-locations { font-size: 32px; }
}

/* =====================================================
   h2 GLOBAL OVERRIDE (prevent nav h2 conflicts)
   ===================================================== */
h2 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* =====================================================
   MISC
   ===================================================== */

/* nav-open body lock */
body.nav-open { overflow: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }