:root {
  --navy: #1A3C6E;
  --myellow: #FDD835;
  --morange: #E8770A;
  --mgreen: #10B981;
  --mblue: #3B82F6;
  --mpurple: #8B5CF6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
}

.py-5{
  padding-top: 4.3rem !important;
}

/* Loader Styles */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--myellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.loader-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.longer-message {
    color: var(--myellow);
    font-weight: 600;
    margin-top: 10px;
    display: none;
    text-align: center;
    width: 100%;
}

.longer-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Prevent scrolling during loader */
body.loading {
    overflow: hidden;
}

/* Ensure all containers don't cause overflow */
.container,
.container-fluid,
.row,
[class*="col-"] {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Contact Info Bar */
.contact-info-bar {
  background-color: var(--myellow);
  color: var(--navy);
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--morange);
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  color: var(--myellow);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
  background-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  background-color: var(--myellow);
}

/* WhatsApp Button - Moved to bottom left */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 28px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Navigation */
.navbar {
  background-color: var(--navy) !important;
  transition: all 0.3s ease;
  padding: 1rem 0;
  width: 100%;
  max-width: 100%;
}

.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-left: 0;
  margin-right: auto;
}

/* Navigation Active State */
.nav-link.active {
  color: var(--myellow) !important;
  font-weight: 600;
}

/* Logo instead of brand icon */
.nav_logo {
  max-width: 70px;
  height: auto;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

/* When navbar is scrolled, make logo slightly smaller */
.navbar.scrolled .nav_logo {
  max-width: 50px;
}

.nav-link {
  color: white !important;
  transition: color 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--myellow) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(26, 60, 110, 0.9), rgba(26, 60, 110, 0.8)), 
              url('../imgs/hero');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  max-width: 100%;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  word-wrap: break-word;
  max-width: 100%;
}

/* Hero Section Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

/* Buttons - Yellow button with black text, all buttons with lift effect on hover */
.btn-yellow {
  background-color: var(--myellow);
  color: black !important; /* Changed to black */
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
}

.btn-yellow:hover {
  background-color: var(--myellow);
  transform: translateY(-3px); /* Lift effect */
  color: black !important; /* Keep black on hover */
  box-shadow: 0 8px 20px rgba(253, 216, 53, 0.3);
}

.btn-yellow:active {
  background-color: var(--myellow) !important;
}

.btn-orange {
  background-color: var(--morange);
  color: white !important;
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
}

.btn-orange:hover {
  background-color: var(--morange);
  transform: translateY(-3px); /* Lift effect */
  color: white !important;
  box-shadow: 0 8px 20px rgba(232, 119, 10, 0.3);
}

.btn-orange:active {
  background-color: var(--morange) !important;
}

.btn-navy {
  background-color: var(--navy);
  color: white !important;
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
}

.btn-navy:hover {
  background-color: var(--navy);
  transform: translateY(-3px); /* Lift effect */
  color: white !important;
  box-shadow: 0 8px 20px rgba(26, 60, 110, 0.3);
}

.btn-navy:active {
  background-color: var(--navy) !important;
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 100%;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--navy);
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Secondary button in pricing section */
.btn-secondary {
  color: white !important;
}

.btn-secondary:hover {
  color: white !important;
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

/* Add lift effect and box shadow on hover for card buttons in pricing */
.pricing-card .btn-yellow:hover,
.pricing-card .btn-orange:hover,
.pricing-card .btn-navy:hover,
.pricing-card .btn-secondary:hover {
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
#about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  width: 100%;
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.about-img-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.about-img-container:hover img {
  transform: scale(1.05);
}

.about-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mblue) 100%);
  color: white;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 2, 3, 0.651);
  max-width: 100%;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}

.stat-item {
  flex: 1;
  padding: 0 15px;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.mission-vision {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 100%;
}

.mission-card, .vision-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  min-width: 250px;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card i, .vision-card i {
  font-size: 3rem;
  color: var(--myellow);
  margin-bottom: 20px;
}

.mission-card h4, .vision-card h4 {
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Coverage Area Section - Simple Diagonal Accent */
.py-5.bg-light {
  position: relative;
  overflow: hidden;
}

.py-5.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(135deg, var(--myellow) 0%, transparent 70%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
  z-index: 0;
}

.py-5.bg-light .container {
  position: relative;
  z-index: 1;
}

/* Services Section */
#services {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-color: #f8f9fa;
  width: 100%;
}

.services-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0% 100%, 0 100%);
  z-index: 0;
}

.services-content {
  position: relative;
  z-index: 1;
}

.services-img-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.services-img-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.services-img-container:hover img {
  transform: scale(1.05);
}

/* Service Icons */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
  border: 2px solid;
  max-width: 100%;
}

.service-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.icon-yellow {
  background-color: rgba(253, 216, 53, 0.897);
  color: white;
  border-color: var(--myellow);
}

.icon-orange {
  background-color: rgba(232, 117, 10, 0.897);
  color: white;
  border-color: var(--morange);
}

.icon-green {
  background-color: rgba(16, 185, 129, 0.89);
  color: white;
  border-color: var(--mgreen);
}

.icon-blue {
  background-color: rgba(59, 131, 246, 0.849);
  color: white;
  border-color: var(--mblue);
}

.icon-purple {
  background-color: rgba(138, 92, 246, 0.856);
  color: white;
  border-color: var(--mpurple);
}

/* Timeline Icons - Changed from round to square with 15px border radius */
.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px; /* Changed from 50% to 15px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
  max-width: 100%;
}

/* Accent Line */
.accent-line {
  width: 80px;
  height: 4px;
  background: var(--myellow);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.accent-line-left {
  width: 80px;
  height: 4px;
  background: var(--myellow);
  border-radius: 2px;
  margin: 0 0 20px;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  max-width: 100%;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Pricing Cards */
.pricing-card {
  border-top: 4px solid;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.yellow {
  border-top-color: var(--myellow);
}

.pricing-card.orange {
  border-top-color: var(--morange);
}

.pricing-card.navy {
  border-top-color: var(--navy);
}

.pricing-card.gray {
  border-top-color: #6c757d;
}

/* Testimonial Cards - Uniform size with name at bottom */
.testimonial-card {
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px; /* Set uniform minimum height */
}

.testimonial-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem;
}

.testimonial-card .stars {
  margin-bottom: 1rem;
}

.testimonial-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card .testimonial-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stars {
  color: var(--myellow);
}

/* Timeline Services */
.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  max-width: 100%;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 20px; 
  bottom: -50px; 
  width: 2px;
  background: var(--myellow);
  z-index: 1;
}

.timeline-item:last-child {
  margin-bottom: 0; 
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--myellow);
  z-index: 2; 
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 1060;
  max-width: 500px;
  width: 90%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
}

.success-popup.show {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #10b981;
  font-size: 2rem;
}

/* Parallax Section */
.parallax-section {
  background: linear-gradient(rgba(26, 60, 110, 0.85), rgba(26, 60, 110, 0.85)), 
              url('../imgs/5086.avif');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 80px 0;
  position: relative;
  width: 100%;
}

/* Service Area Tags */
.service-area {
  background-color: #f8f9fa;
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-block;
  margin: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid #e9ecef;
  max-width: 100%;
}

.service-area:hover {
  background-color: rgba(253, 216, 53, 0.2);
  transform: scale(1.03);
  border-color: var(--myellow);
}

/* Footer */
footer {
  background-color: var(--navy);
  color: white;
  padding: 60px 0 30px;
  width: 100%;
  max-width: 100%;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--myellow);
}

.footer-heading {
  color: var(--myellow);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
  border: 2px solid #fff;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--myellow);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Section Headings */
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}

.section-subheading {
  font-size: 1.1rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
}

/* Animation */
@keyframes sequential-pulse {
  0%, 10% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  5% {
    transform: scale(1.2);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
  }
}

.hero-section .service-icon:nth-child(1) {
  animation: sequential-pulse 35s infinite;
}

.hero-section .service-icon:nth-child(2) {
  animation: sequential-pulse 35s infinite 5s;
}

.hero-section .service-icon:nth-child(3) {
  animation: sequential-pulse 35s infinite 10s;
}

.hero-section .service-icon:nth-child(4) {
  animation: sequential-pulse 35s infinite 15s;
}

.hero-section .service-icon:nth-child(5) {
  animation: sequential-pulse 35s infinite 20s;
}

.hero-section .service-icon:nth-child(6) {
  animation: sequential-pulse 35s infinite 25s;
}

.hero-section .service-icon:nth-child(7) {
  animation: sequential-pulse 35s infinite 30s;
}

/* Utility Classes */
.text-navy { color: var(--navy) !important; }
.text-myellow { color: var(--myellow) !important; }
.text-morange { color: var(--morange) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-myellow { background-color: var(--myellow) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mt-1 { margin-top: 0.5rem !important; }

/* Focus styles for accessibility */
button:focus,
a:focus,
.btn-yellow:focus,
.btn-orange:focus,
.btn-navy:focus,
.btn-outline-white:focus,
.nav-link:focus,
.whatsapp-btn:focus,
.back-to-top:focus {
  outline: 2px solid var(--myellow);
  outline-offset: 2px;
}

/* Loading states */
.btn-yellow:disabled,
.btn-orange:disabled,
.btn-navy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Print styles */
@media print {
  .whatsapp-btn,
  .back-to-top,
  .navbar {
    display: none !important;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 20;
  animation: fadeIn 2s ease forwards;
}

.scroll-indicator .chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
  animation: bounce 1.5s infinite;
}

.scroll-indicator.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(-45deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

/* Map Styles */
#service-areas-map {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

/* Hide map on screens 768px and below */
@media (max-width: 768px) {
  #service-areas-map {
    display: none !important;
  }
}

.custom-map-pin {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.leaflet-popup-content {
  font-family: 'Inter', sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-popup-content h3 {
  color: var(--navy);
  margin-bottom: 5px;
  font-weight: 600;
}

.leaflet-popup-content p {
  margin: 0;
  color: #6c757d;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Mobile Equal Spacing Fixes */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Center align all content on mobile */
  .hero-section .row,
  #about .row,
  #services .row,
  #values .row,
  #problem-statement .row,
  #contact .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-section .col-lg-6,
  #about .col-lg-6,
  #services .col-lg-5,
  #services .col-lg-7,
  #values .col-lg-6,
  #problem-statement .col-lg-6,
  #contact .col-lg-5,
  #contact .col-lg-7 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure text content is centered and has equal padding */
  .hero-section h1,
  .hero-section .lead,
  .section-heading,
  .section-subheading {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Center align buttons and content */
  .hero-section .d-flex.flex-wrap.gap-3,
  .text-center .d-flex.flex-wrap.justify-content-center {
    justify-content: center !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix image containers to have equal spacing */
  .about-img-container,
  .services-img-container,
  .card {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Ensure all sections use equal spacing */
  section {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix specific sections that might have uneven spacing */
  .hero-section .container,
  #about .container,
  #services .container,
  #values .container,
  #problem-statement .container,
  #pricing .container,
  #testimonials .container,
  #contact .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Medium devices (tablets, 768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  body {
    width: 100%;
  }
  
  /* Center hero section buttons */
  .hero-buttons {
    justify-content: center !important;
    text-align: center;
  }
  
  .hero-section .d-flex.flex-wrap.gap-3 {
    justify-content: center !important;
    width: 100%;
  }
  
  .nav_logo {
    max-width: 65px;
  }
  
  .navbar.scrolled .nav_logo {
    max-width: 55px;
  }
  
  .contact-info-bar {
    font-size: 0.85rem;
  }
  
  .contact-items {
    gap: 20px;
    justify-content: center;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    text-align: center;
  }
  
  .hero-section .lead {
    text-align: center;
  }
  
  .section-heading {
    font-size: 2.25rem;
  }
  
  .about-bg-shape {
    width: 25%;
  }
  
  .services-bg-shape {
    width: 25%;
  }
  
  .mission-vision {
    gap: 25px;
  }
  
  .mission-card, .vision-card {
    padding: 25px;
  }
  
  .pricing-card .display-6 {
    font-size: 2.25rem;
  }
  
  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }
  
  /* FOOTER FIXES FOR 768PX */
  footer .row.g-4 {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  footer .col-lg-3, 
  footer .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  footer .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  footer h5.fw-bold {
    text-align: center;
    margin-bottom: 1.5rem !important;
  }
  
  footer ul.list-unstyled {
    text-align: center;
  }
  
  footer .list-unstyled li {
    margin-bottom: 0.8rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

/* Extra small devices (phones, 425px and down) */
@media (max-width: 425px) {
  * {
    max-width: 100%;
  }
  
  body {
    width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  /* Remove any negative margins that might cause imbalance */
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure all content blocks have equal side spacing */
  .hero-section,
  #about,
  #services,
  #values,
  #problem-statement,
  #pricing,
  #testimonials,
  #contact {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Logo adjustments for mobile */
  .nav_logo {
    max-width: 50px !important;
  }
  
  .navbar.scrolled .nav_logo {
    max-width: 40px !important;
  }
  
  /* Timeline icons square with 15px border radius on mobile */
  .timeline-icon {
    border-radius: 15px !important;
    width: 75px;
    height: 50px;
    font-size: 20px;
  }
  
  /* Center footer content */
  footer .row {
    text-align: center;
  }
  
  footer .col-lg-3,
  footer .col-md-6 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  footer .d-flex {
    justify-content: center;
  }
  
  /* Center hero buttons on mobile */
  .hero-buttons {
    justify-content: center !important;
  }
  
  .hero-section .d-flex.flex-wrap.gap-3 {
    justify-content: center !important;
  }
  
  /* NAVBAR BRAND - KEEP LEFT ALIGNED ON MOBILE */
  .navbar-brand {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  /* Fix footer alignment */
  footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  footer .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  footer [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  
  /* Fix hero section spacing */
  .hero-section h1 {
    font-size: 2rem;
    padding: 0 10px;
    text-align: center;
    margin-top: 20px;
  }
  
  .hero-section .lead {
    font-size: 1rem;
    padding: 0 10px;
    text-align: center;
  }
  
  .contact-info-bar {
    padding: 10px 0;
    font-size: 0.75rem;
  }
  
  .contact-items {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    width: 100%;
  }
  
  .social-links {
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
  }
  
  .social-links a {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .hero-section {
    padding: 60px 0;
    text-align: center;
    background-attachment: scroll;
    width: 100%;
    overflow: hidden;
  }
  
  .btn-yellow, .btn-orange, .btn-navy, .btn-outline-white {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .section-heading {
    font-size: 1.75rem;
    padding: 0 10px;
  }
  
  .section-subheading {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 10px;
  }
  
  #about, #services {
    padding: 60px 0;
    width: 100%;
  }
  
  /* Remove background shapes on mobile */
  .about-bg-shape {
    display: none;
  }
  
  .services-bg-shape {
    display: none;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .mission-vision {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .mission-card, .vision-card {
    padding: 20px;
  }
  
  .about-highlight {
    padding: 20px;
    margin-top: 20px;
  }
  
  .timeline-item {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  .pricing-card .display-6 {
    font-size: 1.75rem;
  }
  
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .parallax-section {
    padding: 50px 0;
    background-attachment: scroll;
    width: 100%;
  }
  
  .service-area {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 3px;
  }
  
  footer {
    padding: 40px 0 20px;
    text-align: center;
    width: 100%;
  }
  
  .footer-links li {
    margin-bottom: 0.3rem;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
  }
  
  /* Map adjustments for mobile */
  #service-areas-map {
    height: 350px;
  }
}

/* Small devices (landscape phones, 426px to 576px) */
@media (min-width: 426px) and (max-width: 576px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  /* Logo adjustments */
  .nav_logo {
    max-width: 55px;
  }
  
  .navbar.scrolled .nav_logo {
    max-width: 45px;
  }
  
  /* Timeline icons square with 15px border radius */
  .timeline-icon {
    border-radius: 15px !important;
  }
  
  /* Center footer content */
  footer .row {
    text-align: center;
  }
  
  footer .col-lg-3,
  footer .col-md-6 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  footer .d-flex {
    justify-content: center;
  }
  
  /* Center hero buttons */
  .hero-buttons {
    justify-content: center !important;
  }
  
  .hero-section .d-flex.flex-wrap.gap-3 {
    justify-content: center !important;
  }
  
  /* NAVBAR BRAND - KEEP LEFT ALIGNED */
  .navbar-brand {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  .contact-info-bar {
    padding: 8px 0;
    font-size: 0.8rem;
  }
  
  .contact-items {
    gap: 15px;
    justify-content: center;
  }
  
  .social-links {
    gap: 10px;
    justify-content: center;
  }
  
  .hero-section {
    padding: 70px 0;
    text-align: center;
    width: 100%;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    padding: 0 15px;
    text-align: center;
  }
  
  .hero-section .lead {
    text-align: center;
  }
  
  .btn-yellow, .btn-orange, .btn-navy, .btn-outline-white {
    padding: 11px 25px;
    font-size: 0.95rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  
  .section-heading {
    font-size: 2rem;
    padding: 0 15px;
  }
  
  #about, #services {
    padding: 80px 0;
    width: 100%;
  }
  
  /* Remove background shapes on tablet */
  .about-bg-shape {
    display: none;
  }
  
  .services-bg-shape {
    display: none;
  }
  
  .about-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .mission-vision {
    gap: 20px;
  }
  
  .pricing-card .display-6 {
    font-size: 2rem;
  }
  
  .parallax-section {
    background-attachment: scroll;
    width: 100%;
  }
  
  /* Map adjustments */
  #service-areas-map {
    height: 400px;
  }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (min-width: 576px) and (max-width: 768px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  /* Logo adjustments */
  .nav_logo {
    max-width: 60px;
  }
  
  .navbar.scrolled .nav_logo {
    max-width: 50px;
  }
  
  /* Center hero buttons */
  .hero-buttons {
    justify-content: center !important;
  }
  
  .hero-section .d-flex.flex-wrap.gap-3 {
    justify-content: center !important;
  }
  
  /* NAVBAR BRAND - KEEP LEFT ALIGNED */
  .navbar-brand {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  
  .hero-section h1 {
    text-align: center;
    margin-top: 30px;
  }
  
  .hero-section .lead {
    text-align: center;
  }
  
  .contact-info-bar {
    padding: 8px 0;
    font-size: 0.8rem;
  }
  
  .contact-items {
    gap: 15px;
    justify-content: center;
  }
  
  .social-links {
    gap: 10px;
    justify-content: center;
  }
  
  .hero-section {
    padding: 70px 0;
    text-align: center;
    width: 100%;
  }
  
  .btn-yellow, .btn-orange, .btn-navy, .btn-outline-white {
    padding: 11px 25px;
    font-size: 0.95rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  #about, #services {
    padding: 80px 0;
    width: 100%;
  }
  
  /* Remove background shapes on tablet */
  .about-bg-shape {
    display: none;
  }
  
  .services-bg-shape {
    display: none;
  }
  
  .about-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .mission-vision {
    gap: 20px;
  }
  
  .pricing-card .display-6 {
    font-size: 2rem;
  }
  
  .parallax-section {
    background-attachment: scroll;
    width: 100%;
  }
  
  /* Map adjustments */
  #service-areas-map {
    height: 400px;
  }
}

/* Large devices (desktops, 992px to 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .hero-section h1 {
    font-size: 3.25rem;
  }
  
  .about-bg-shape {
    width: 22%;
  }
  
  .services-bg-shape {
    width: 22%;
  }
  
  .mission-vision {
    gap: 28px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section h1 {
    font-size: 3.4rem;
  }
}

/* Super large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .section-heading {
    font-size: 2.75rem;
  }
}

/* Additional utility class for equal side spacing */
.equal-side-spacing {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  .logo{
    display: none;
  }
}
