/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #0a0f1e;
  color: #ffffff;
  overflow-x: hidden;
}

/* ===== NAVBAR - EXACT SAME AS INDEX PAGE (NO HAMBURGER, ALL LINKS VISIBLE) ===== */
.navbar-modern {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 0 !important;
  transition: all 0.3s;
  z-index: 99999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

.navbar-modern.scrolled {
  background: #ffffff !important;
  padding: 8px 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Brand/Logo */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.navbar-logo {
  height: 50px !important;
  width: auto !important;
  max-height: 50px !important;
}

/* Hide Hamburger Button - No Hamburger Menu */
.navbar-toggler {
  display: none !important;
}

/* Navbar Container */
.navbar-modern .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}

/* Navbar Collapse - Always Visible */
.navbar-collapse {
  display: flex !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Navbar Links */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.navbar-nav .nav-item {
  display: inline-block !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.navbar-modern .nav-link {
  color: #0a0f1e !important;
  font-weight: 500;
  padding: 8px 12px !important;
  position: relative;
  font-size: 15px !important;
  white-space: nowrap !important;
  display: inline-block !important;
  transition: color 0.3s;
}

.navbar-modern .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #20c997, #0a2540);
  transition: width 0.3s;
}

.navbar-modern .nav-link:hover::before,
.navbar-modern .nav-link.active::before {
  width: 100%;
}

.navbar-modern .nav-link.active {
  color: #20c997 !important;
  font-weight: 600;
}

/* Get a Quote Button */
.btn-gradient {
  background: linear-gradient(135deg, #20c997, #0a2540);
  color: white;
  border: none;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
  margin-left: 8px !important;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3);
  color: white;
}

/* ===== SECTION 1 - HERO WITH BACKGROUND IMAGE ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1400&auto=format');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
  padding-bottom: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.7) 0%, rgba(32, 201, 151, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
  background: linear-gradient(135deg, #fff, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Round Stats Cards - Light Theme */
.stat-card-round-light {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card-round-light:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #20c997;
  box-shadow: 0 20px 40px rgba(32, 201, 151, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

.stat-card-round-light h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.2rem;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.stat-card-round-light p {
  color: white !important;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Stats Row */
.stats-row {
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* ===== SECTION 2 - STORY WITH WHITE BACKGROUND ===== */
.story-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.story-section .section-subtitle {
  color: #20c997 !important;
  background: rgba(32, 201, 151, 0.1);
}

.story-section .section-title {
  color: #0a0f1e;
}

.story-section .section-title span {
  background: linear-gradient(135deg, #0a0f1e, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-section p {
  color: #4a5568 !important;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.float-shape {
  position: absolute;
  background: linear-gradient(135deg, #20c997, #0a2540);
  opacity: 0.05;
  border-radius: 50%;
  animation: floatShape 8s infinite;
}

.float-shape1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.float-shape2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -50px;
  animation-delay: 2s;
}

.float-shape3 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: 30%;
  animation-delay: 4s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.story-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.3);
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.5s;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Round Stats Cards for Story Section */
.story-stat-card {
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(32, 201, 151, 0.3);
}

.story-stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(32, 201, 151, 0.5);
}

.story-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.story-stat-card p {
  color: white !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION 3 - MISSION WITH 4 CARDS ===== */
.mission-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1e, #1a1f35);
  overflow: hidden;
}

.orbit-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  z-index: 0;
}

.orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(32, 201, 151, 0.1);
  border-radius: 50%;
  animation: orbitRotate 15s linear infinite;
}

.orbit-circle1 {
  width: 300px;
  height: 300px;
}

.orbit-circle2 {
  width: 500px;
  height: 500px;
  animation-duration: 20s;
  border-color: rgba(10, 37, 64, 0.2);
}

.orbit-circle3 {
  width: 700px;
  height: 700px;
  animation-duration: 25s;
  border-color: rgba(32, 201, 151, 0.05);
}

@keyframes orbitRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.purpose-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 2rem 1.5rem;
  height: 350px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.purpose-card:hover {
  transform: translateY(-5px);
  border-color: #20c997;
  box-shadow: 0 30px 50px -20px #20c997;
}

.purpose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.purpose-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.purpose-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ===== SECTION 4 - TEAM WITH WHITE BACKGROUND ===== */
.team-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.team-section .section-subtitle {
  color: #20c997 !important;
  background: rgba(32, 201, 151, 0.1);
}

.team-section .section-title {
  color: #0a0f1e;
}

.team-section .section-title span {
  background: linear-gradient(135deg, #0a0f1e, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-section .section-description {
  color: #4a5568 !important;
}

.team-card {
  background: #f8fafc;
  backdrop-filter: blur(10px);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: #20c997;
  box-shadow: 0 30px 50px -20px #20c997;
}

.team-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.team-card:hover .team-image {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(32, 201, 151, 0.4);
}

.team-initial {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.team-card:nth-child(1) .team-image {
  background: linear-gradient(135deg, #20c997, #0d9488);
}
.team-card:nth-child(2) .team-image {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.team-card:nth-child(3) .team-image {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.team-card:nth-child(4) .team-image {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a0f1e;
}

.team-card p {
  color: #20c997;
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* ===== SECTION 5 - ACHIEVEMENTS WITH PULSE ===== */
.achievements-section {
  position: relative;
  padding: 100px 0;
  background: #0c1222;
  overflow: hidden;
}

.pulse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(32, 201, 151, 0.1);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

.pulse-ring1 {
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}

.pulse-ring2 {
  width: 500px;
  height: 500px;
  animation-delay: 1s;
  border-color: rgba(10, 37, 64, 0.15);
}

.pulse-ring3 {
  width: 700px;
  height: 700px;
  animation-delay: 2s;
  border-color: rgba(32, 201, 151, 0.05);
}

@keyframes pulse {
  0% {
    width: 300px;
    height: 300px;
    opacity: 0.5;
  }
  50% {
    width: 800px;
    height: 800px;
    opacity: 0;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0.5;
  }
}

.achievement-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  height: 100%;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: #20c997;
}

.achievement-number {
  font-size: 1rem;
  font-weight: 800;
  color: #20c997;
  margin-bottom: 1rem;
}

/* ===== SECTION 6 - CONTACT SECTION ===== */
.contact-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9f4 0%, #e0f2e9 50%, #d1eae0 100%);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.1) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(10, 37, 64, 0.1) 0%, transparent 70%);
  animation: rotateReverse 35s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .section-subtitle {
  color: #0a2540 !important;
  background: rgba(32, 201, 151, 0.15);
}

.contact-section .section-title {
  color: #0a0f1e;
}

.contact-section .section-title span {
  color: #20c997 !important;
  background: none;
  -webkit-text-fill-color: #20c997;
}

.contact-section .section-description {
  color: #4a5568 !important;
}

.contact-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 50px -20px #20c997;
}

.contact-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: all 0.5s;
}

.contact-image:hover img {
  transform: scale(1.05);
}

.contact-form {
  background: white;
  backdrop-filter: blur(10px);
  border: 2px solid #20c997;
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 50px -20px rgba(32, 201, 151, 0.5);
}

.contact-form .form-control,
.contact-form .form-select {
  background: #f8fafc;
  border: 1px solid #cbd5e0;
  color: #0a0f1e;
  padding: 1rem;
  border-radius: 15px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #20c997;
  box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

.contact-form .form-control::placeholder {
  color: #94a3b8;
}

/* ===== SECTION TITLES ===== */
.section-subtitle {
  color: #20c997;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(32, 201, 151, 0.1);
  border-radius: 50px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.section-title span {
  background: linear-gradient(135deg, #fff, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0f1e;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 60px 0 30px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: #20c997;
  transform: translateX(5px);
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(32,201,151,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #20c997;
  color: #0a0f1e;
  transform: translateY(-5px) rotate(360deg);
}

.footer .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.footer .contact-info i {
  width: 20px;
  color: #20c997;
}

.footer .contact-info span,
.footer .contact-info a {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-buttons a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.float-buttons a:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.4);
}

#phoneFloatBtn {
  background: linear-gradient(135deg, #20c997, #0a2540);
}

#whatsappBtn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

#whatsappBtn:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

#backToTop {
  background: linear-gradient(135deg, #0a2540, #20c997);
}

.contact-info a {
  display: inline-block;
  white-space: nowrap;
}

/* ===== SCROLL ANIMATIONS ===== */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.scroll-active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* ===== RESPONSIVE STYLES - EXACT SAME AS INDEX PAGE ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .navbar-modern .nav-link {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }
  .btn-gradient {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  .navbar-logo {
    height: 40px !important;
  }
  .hero-title {
    font-size: 3rem;
  }
  .stat-card-round-light {
    width: 130px;
    height: 130px;
  }
  .stat-card-round-light h3 {
    font-size: 2rem;
  }
  .story-stat-card {
    width: 100px;
    height: 100px;
  }
  .story-stat-card h3 {
    font-size: 1.6rem;
  }
  .purpose-card {
    height: auto;
    min-height: 320px;
  }
  .team-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  /* Navbar - Same as Index Page - All Links in One Line */
  .navbar-modern .container {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    padding: 0 10px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }
  
  .navbar-modern .container::-webkit-scrollbar {
    height: 3px !important;
  }
  
  .navbar-modern .container::-webkit-scrollbar-track {
    background: #e2e8f0 !important;
  }
  
  .navbar-modern .container::-webkit-scrollbar-thumb {
    background: #20c997 !important;
    border-radius: 3px !important;
  }
  
  .navbar-brand {
    margin-right: 10px !important;
    flex-shrink: 0 !important;
  }
  
  .navbar-collapse {
    display: flex !important;
    flex: auto !important;
  }
  
  .navbar-nav {
    gap: 2px !important;
  }
  
  .navbar-modern .nav-link {
    padding: 5px 6px !important;
    font-size: 11px !important;
  }
  
  .btn-gradient {
    padding: 5px 10px !important;
    font-size: 11px !important;
    margin-left: 8px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    width: auto !important;
  }
  
  /* HERO SECTION - FIXES (Height kam, heading top margin kam, heading size bada, 3 cards bottom) */
  .hero-section {
    min-height: 70vh !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  
  .hero-content .section-subtitle {
    margin-top: 0 !important;
    margin-bottom: 50px !important;
  }
  
  .hero-content .section-description {
    margin-bottom: 30px !important;
  }
  
  /* 3 Cards - Bottom Par */
  .hero-content .row.g-4 {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
  }
  
  .stat-card-round-light {
    width: 100px !important;
    height: 100px !important;
  }
  
  .stat-card-round-light h3 {
    font-size: 1.5rem !important;
  }
  
  .stat-card-round-light p {
    font-size: 0.7rem !important;
  }
  
  /* OUR JOURNEY - Center + Top Margin (FIXED) */
  .story-content {
    text-align: center;
  }
  
  .story-content .section-subtitle {
    display: inline-block;
    margin-top: 30px;
  }
  
  .story-content .section-title {
    text-align: center;
  }
  
  .story-section {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }
  
  /* GET IN TOUCH - Select Service Width Fix */
  .contact-section .row.g-4 .col-md-6,
  .contact-section .row.g-4 .col-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
  }
  
  .contact-section .row.g-4 .col-12 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  
  /* Send Message Button - Center (FIXED) */
  .contact-section .submit-btn,
  .contact-section .btn-gradient {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  .hero-section {
    padding-bottom: 120px;
  }
  
  .stats-row {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .stats-row .col-4 {
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .story-image img {
    height: 350px;
  }
  
  .story-stat-card {
    width: 90px;
    height: 90px;
  }
  
  .story-stat-card h3 {
    font-size: 1.3rem;
  }
  
  .story-stat-card p {
    font-size: 0.7rem;
  }
  
  .purpose-card {
    min-height: 280px;
    margin-bottom: 20px;
  }
  
  .team-card {
    margin-bottom: 20px;
  }
  
  .team-image {
    width: 140px;
    height: 140px;
  }
  
  .team-initial {
    font-size: 3rem;
  }
  
  .achievement-card {
    margin-bottom: 20px;
    padding: 1.5rem;
  }
  
  .achievement-number {
    font-size: 2.5rem;
  }
  
  .contact-image img {
    height: 350px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer .contact-info {
    justify-content: center;
  }
  
  .footer .d-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* Navbar - Small Phone */
  .navbar-modern .container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }
  
  .navbar-modern .container::-webkit-scrollbar {
    height: 3px !important;
  }
  
  .navbar-modern .nav-link {
    padding: 4px 5px !important;
    font-size: 10px !important;
  }
  
  .btn-gradient {
    padding: 4px 8px !important;
    font-size: 10px !important;
  }
  
  .navbar-logo {
    height: 40px !important;
     
  }
  
  /* Hero Section - Small Phone */
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .stat-card-round-light {
    width: 90px !important;
    height: 90px !important;
  }
  
  .stat-card-round-light h3 {
    font-size: 1rem !important;
  }
  
  .stat-card-round-light p {
    font-size: 0.55rem !important;
  }
  
  /* Get in Touch - Small Phone */
  .contact-section .row.g-4 .col-md-6,
  .contact-section .row.g-4 .col-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
  }
  
  /* Send Message Button - Center (FIXED) */
  .contact-section .submit-btn,
  .contact-section .btn-gradient {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  
  .section-subtitle {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-description {
    font-size: 0.9rem;
  }
  
  .story-image img {
    height: 250px;
  }
  
  .story-stat-card {
    width: 70px;
    height: 70px;
  }
  
  .story-stat-card h3 {
    font-size: 1rem;
  }
  
  .story-stat-card p {
    font-size: 0.6rem;
  }
  
  .purpose-card {
    padding: 1.2rem;
  }
  
  .purpose-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .purpose-card h3 {
    font-size: 1.2rem;
  }
  
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  .team-initial {
    font-size: 2.5rem;
  }
  
  .team-card h4 {
    font-size: 1.1rem;
  }
  
  .team-card p {
    font-size: 0.85rem;
  }
  
  .achievement-number {
    font-size: 2rem;
  }
  
  .contact-image img {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.2rem;
  }
  
  .float-buttons {
    bottom: 20px;
    right: 20px;
  }
  
  .float-buttons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== EXTRA FIXES ===== */
.hero-content .section-description {
  margin-left: 0 !important;
  margin-bottom: 1.5rem;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .stats-row {
    margin-top: 30px;
  }
}



/* ===== HAMBURGER BUTTON WITH CROSS EFFECT ===== */

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  margin-left: auto !important;
  display: block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative !important;
  width: 28px !important;
  height: 2px !important;
  background: #0a0f1e !important;
  border-radius: 2px !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '' !important;
  position: absolute !important;
  width: 28px !important;
  height: 2px !important;
  background: #0a0f1e !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
  left: 0 !important;
}

.navbar-toggler-icon::before {
  top: -8px !important;
}

.navbar-toggler-icon::after {
  bottom: -8px !important;
}

/* Jab menu CLOSED ho - ☰ Three Lines */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: #0a0f1e !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: -8px !important;
  transform: none !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  bottom: -8px !important;
  transform: none !important;
}

/* Jab menu OPEN ho - ✕ Cross */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(45deg) !important;
  top: 0 !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(-45deg) !important;
  bottom: 0 !important;
}

/* Menu Logo - Top Center */
.menu-logo {
  text-align: center !important;
  margin-bottom: 30px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid rgba(32, 201, 151, 0.3) !important;
}

.menu-logo img {
  height: 50px !important;
  width: auto !important;
}

/* Mobile Quote Button */
.mobile-quote-btn {
  display: none !important;
}

.desktop-quote-btn {
  display: inline-block !important;
}

/* Overlay Background */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.menu-overlay.show {
  display: block;
}

/* ===== MOBILE VIEW - LEFT SIDE SLIDE ===== */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block !important;
  }
  
  .desktop-quote-btn {
    display: none !important;
  }
  
  .mobile-quote-btn {
    display: inline-block !important;
    margin-top: 20px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Menu - LEFT SE SLIDE OPEN */
 @media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1) !important;
    transition: left 0.3s ease !important;
    z-index: 1050 !important;
    padding: 20px 20px 30px !important;  /* 80px se 20px kar diya */
    overflow-y: auto !important;
  }
}
  
  .navbar-collapse.show {
    display: block !important;
    left: 0 !important;
  }
  
  /* Show logo inside menu on mobile */
  .menu-logo {
    display: block !important;
  }
  
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .navbar-nav .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  
  .navbar-modern .nav-link {
    padding: 12px 0 !important;
    font-size: 18px !important;
    display: block !important;
    color: #0a0f1e !important;
  }
  
  .navbar-modern .nav-link.active {
    color: #20c997 !important;
  }
  
  .navbar-modern .nav-link::before {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
  
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  
  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 0 !important;
  }
  
  .navbar-nav .nav-item {
    width: auto !important;
    border-bottom: none !important;
  }
  
  .navbar-modern .nav-link {
    padding: 8px 12px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    color: #0a0f1e !important;
    position: relative !important;
  }
  
  .navbar-modern .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #20c997, #0a2540);
    transition: width 0.3s;
  }
  
  .navbar-modern .nav-link:hover::before,
  .navbar-modern .nav-link.active::before {
    width: 100%;
  }
  
  .navbar-modern .nav-link.active {
    color: #20c997 !important;
  }
  
  .desktop-quote-btn {
    display: inline-block !important;
    margin-left: 8px !important;
  }
  
  .mobile-quote-btn {
    display: none !important;
  }
  
  .menu-overlay {
    display: none !important;
  }
  
  .menu-logo {
    display: none !important;
  }
}

.btn-gradient {
  background: linear-gradient(135deg, #20c997, #0a2540);
  color: white;
  border: none;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3);
  color: white;
}