/* Global Styles - "Big Tech" Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #0B2D4D;
  /* Dark Navy Blue */
  --primary-light: #163E66;
  /* Lighter Navy */
  --secondary-color: #F7931E;
  /* Bright Orange */
  --secondary-hover: #D87C0D;
  /* Darker Orange */
  --text-main: #202124;
  /* Google Gray */
  --text-secondary: #5F6368;
  /* Google Light Gray */
  --bg-color: #FFFFFF;
  --bg-secondary: #F8F9FA;
  /* Google/Meta Off-white */
  --surface-color: #FFFFFF;
  --border-color: #DADCE0;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);

  --font-family: 'Poppins', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 80px;
  /* Space for sticky footer on mobile */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  /* 18px */
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(247, 147, 30, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(247, 147, 30, 0);
  }
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3.5rem;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 2px 4px rgba(247, 147, 30, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(247, 147, 30, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 40px;
  width: auto;
}

/* Logo Branding */
.logo span {
  display: flex;
  align-items: center;
}

.brand-mera {
  color: #0B1F35;
  /* Dark Navy Blue */
  font-weight: 700;
}

.brand-kaam {
  color: #FF7A00;
  /* Construction Orange */
  font-weight: 700;
}

/* Footer Visibility Fix */
.footer-brand .brand-mera,
.footer-brand h2,
.footer-bottom,
.footer-bottom .brand-mera {
  color: #FFFFFF !important;
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
}

.nav-cta {
  display: inline-block;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.close-menu {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.mobile-links a.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  /* Cool Social/Network Background Image with Overlay */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 248, 0.9)),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3.25rem;
  /* Large heading */
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.highlight-text {
  background: linear-gradient(120deg, var(--secondary-color), #FF4D4D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Background Overlay for text readability */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  /* 30% blur effect */
  z-index: 1;
}

.social-mockup {
  position: relative;
  width: 350px;
  height: 100%;
  margin: 0 auto;
}

.social-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  /* Stronger shadow for pop */
  padding: 16px;
  position: absolute;
  width: 320px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card {
  top: 0%;
  /* Moved higher */
  left: 0;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-header .avatar {
  width: 40px;
  height: 40px;
  background: #E8F0FE;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 12px;
}

.card-header .avatar.supplier {
  background: #FEF0E8;
  color: var(--secondary-color);
}

.card-header .info {
  flex: 1;
}

.card-header .info h5 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main);
}

.card-header .info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: block;
}

.badge-icon {
  color: #25D366;
  /* Verified green */
  font-size: 1.1rem;
}

.card-body p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.4;
}

.card-image-placeholder {
  width: 100%;
  height: 150px;
  background: #f0f4f8;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
  margin-bottom: 12px;
}

.card-footer-social {
  display: flex;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.card-footer-social span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.suggestion-card {
  bottom: 5%;
  right: -20px;
  z-index: 3;
  width: 280px;
  padding: 12px;
  animation: float 6s ease-in-out infinite 1s;
}

.btn-sm {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  transform: rotate(45deg);
  opacity: 0.2;
}

/* Sticky Mobile Footer */
.mobile-sticky-footer {
  display: none;
  /* Desktop default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: flex;
  gap: 12px;
}

.btn-block-whatsapp {
  flex: 1;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-block-call {
  flex: 1;
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Problem Section */
.problem-section {
  background-color: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Modern Card Design (Glassmorphism & Gradients) */
.problem-item,
.join-card,
.step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Bouncy transition */
}

.problem-item:hover,
.join-card:hover,
.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(11, 45, 77, 0.1);
  border-color: var(--secondary-color);
}

.problem-item:hover .icon-box {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.icon-box {
  width: 64px;
  height: 64px;
  background: rgba(11, 45, 77, 0.05);
  color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.problem-item:hover .icon-box {
  background: var(--primary-color);
  color: white;
}

.problem-item h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Solution Section */
.solution-section {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 120px 0;
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
}

.solution-section .section-title {
  color: white;
  margin-bottom: 1.5rem;
}

.solution-section .section-title::after {
  background: var(--secondary-color);
  margin: 24px auto;
}

.solution-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  /* Larger text for impact */
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Who Can Join - Clean Cards */
.who-can-join {
  background-color: var(--bg-secondary);
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.join-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.join-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Subtle top border color bar on hover */
.join-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.join-card:hover::before {
  transform: scaleX(1);
}

.join-card i {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 24px;
  display: inline-block;
}

.join-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.join-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* How It Works - Animated Timeline */
/* How It Works - Animated Timeline */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
  overflow: hidden;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* Remove old line styles */
.steps-container::before,
.steps-container::after {
  display: none;
}

.step-card {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 40px 25px;
  position: relative;
  z-index: 1;
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Arrow between cards */
.step-card:not(:last-child)::after {
  content: '\f061';
  /* FontAwesome Arrow Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--secondary-color);
  z-index: 2;
}

/* Adjust for mobile wrapping */
@media (max-width: 992px) {
  .step-card:not(:last-child)::after {
    content: '\f063';
    /* Arrow Down */
    top: auto;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
  }

  .steps-container {
    gap: 50px;
    /* More space for down arrows */
  }
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px white;
  /* Border effect over line */
  transition: transform 0.5s;
  position: relative;
  z-index: 2;
}

.step-card:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  background: var(--secondary-color);
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Connecting Line Mobile Hide */
@media (max-width: 992px) {

  .steps-container::before,
  .steps-container::after {
    display: none;
  }
}

/* Trust & Recognition - Circular Badge Cards */
.trust-section {
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  padding: 80px 0;
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.badge-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /* Perfect Circle */
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 10px;
  text-align: center;
}

.badge-pill:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Verified Tick Icon Base */
.badge-pill i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Badge Hierarchy Colors (Meta/YouTube Style) */

/* Starter - Green Tick */
.badge-pill:nth-child(1) i {
  background: #4CAF50;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Rising - Blue Tick */
.badge-pill:nth-child(3) i {
  background: #2196F3;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* Pro - Gold Star */
.badge-pill:nth-child(5) i {
  background: #FFC107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Master - Platinum/Grey */
.badge-pill:nth-child(7) i {
  background: #9E9E9E;
  box-shadow: 0 4px 15px rgba(158, 158, 158, 0.3);
}

/* ELITE Badge - Professional Premium Circular Card */
.badge-pill.elite {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border: none;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  font-size: 1.2rem;
  z-index: 2;
  padding: 10px;
}

.badge-pill.elite i {
  background: white;
  color: #FF6B35;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chevron-right {
  display: none;
}

/* Big CTA */
.big-cta {
  padding: 120px 0;
  background: linear-gradient(rgba(11, 45, 77, 0.85), rgba(11, 45, 77, 0.85)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
  color: white;
  text-align: center;
  background-attachment: fixed;
}

.big-cta h2 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.big-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.btn-whatsapp-lg {
  background-color: #25D366;
  color: white;
  font-size: 1.25rem;
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-whatsapp-lg:hover {
  background-color: #1ebc59;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Footer */
footer {
  background-color: #051626;
  /* Very dark navy */
  color: white;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
  color: white;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-brand h2 img {
  height: 48px;
  filter: brightness(0) invert(1);
}

.footer-contact h4,
.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--secondary-color);
  font-weight: 500;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}


/* -------------------------------------------------------------------------- */
/*                               Page Headers                                 */
/* -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #051626 100%);
  color: white;
  padding: 140px 0 60px;
  /* Space for fixed navbar */
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*                               About Page                                   */
/* -------------------------------------------------------------------------- */
.col-text {
  flex: 1;
  padding-right: 40px;
}

.col-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  align-items: center;
}

.image-card {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.big-icon {
  font-size: 6rem;
  color: var(--secondary-color);
  opacity: 0.2;
}

.content-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(247, 147, 30, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}


/* -------------------------------------------------------------------------- */
/*                             Services Page                                  */
/* -------------------------------------------------------------------------- */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
  border-bottom: none;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.service-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-content.align-right {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.big-icon-circle {
  font-size: 4rem;
  color: white;
  background: var(--primary-color);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.benefit-list {
  margin: 24px 0 32px;
}

.benefit-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-list li i {
  color: var(--secondary-color);
  margin-top: 4px;
}


/* -------------------------------------------------------------------------- */
/*                              Contact Page                                  */
/* -------------------------------------------------------------------------- */
.contact-wrapper {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1.5;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.btn-block {
  width: 100%;
}

.map-container {
  width: 100%;
  height: 450px;
  background: #e0e0e0;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary-color);
  color: white;
}


/* -------------------------------------------------------------------------- */
/*                               Responsive                                   */
/* -------------------------------------------------------------------------- */

@media (min-width: 993px) {
  .mobile-sticky-footer {
    display: none !important;
    /* Force hide on desktop */
  }
}

@media (max-width: 992px) {

  .nav-links,
  .nav-cta {
    display: none;
    /* Hide desktop nav */
  }

  .mobile-menu-btn {
    display: block;
    /* Show mobile menu trigger */
  }

  .hero-content,
  .row {
    flex-direction: column;
    /* Stack columns */
    text-align: center;
  }

  .col-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .service-content,
  .service-content.align-right {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .benefit-list li {
    justify-content: center;
    /* Center list items for mobile */
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .page-header {
    padding-top: 120px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .badges-container {
    flex-direction: column;
    align-items: stretch;
  }

  .badge-pill {
    justify-content: center;
  }

  .chevron-right {
    transform: rotate(90deg);
  }

  /* Social Feed Responsive */
  .hero-visual {
    height: auto;
    margin-top: 40px;
    min-height: 400px;
  }

  .social-card {
    width: 90%;
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-card {
    top: 0;
  }

  .suggestion-card {
    bottom: 0;
    right: auto;
    top: 250px;
  }

  .mobile-sticky-footer {
    display: flex;
    /* Show on mobile */
  }

  .desktop-only {
    display: none;
    /* Hide desktop buttons/elements */
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .navbar .container {
    /* Keep it row for mobile menu button */
    flex-direction: row;
  }
}

/* Services Page - Modern Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px 0;
}

.service-card-modern {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 45, 77, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
}

.service-card-modern h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.service-card-modern p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.service-features li i {
  color: #4CAF50;
}

.btn-text {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.btn-text:hover {
  gap: 12px;
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 107, 53, 0.1);
  transition: border-color 0.3s;
}

.team-card:hover .team-img {
  border-color: var(--secondary-color);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.team-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.team-grid.justify-center {
  justify-content: center;
  display: flex;
  /* Use flex for centering single items */
  flex-wrap: wrap;
}

/* Mission Image Styling */
.mission-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.mission-img:hover {
  transform: scale(1.02);
}