/* assets/style.css */

/* ===== VARIABLES & RESET ===== */
:root {
  --primary: #072147;     /* Deep Blue */

  --accent: #d32f2f;      /* Red */
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#mainNavbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#mainNavbar span {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.navbar-toggler {
  padding: 0.5rem;
  font-size: 1.2rem;
  color: #000;
  background:none ;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(13, 71, 161, 0.1);
}


#mainNavbar button {
  background: linear-gradient(135deg, blue);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  transition: var(--transition);
}

#mainNavbar button a {
  color: white !important;
  text-decoration: none;
  font-weight: 500;
}

#mainNavbar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 134, 85, 0.3);
}

/* Ensure toggler is visible on mobile */
.navbar-toggler {
  display: block !important;
  padding: 6px 8px;
}

/* Hamburger icon */
.menu-icon {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #000;
  position: relative;
}

/* Top & bottom lines */
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #000;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

/* Hide menu button on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero-carousel {
  margin-top: 76px;
}

.carousel-item {
  height: 90vh;
  min-height: 600px;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  margin: 0 8px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border: 2px solid transparent !important;
}

.carousel-indicators button.active {
  background-color: var(--secondary) !important;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
}

.btn-warning {
  background: rgb(18, 18, 49);
  border: none ;
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.section-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.text-lg-start .section-title::after {
  left: 0;
  transform: none;
}

.about-img {
  max-height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.02);
}

.list-unstyled li {
  display: flex;
  align-items: center;
}

.fa-check {
  color: var(--secondary) !important;
  background: rgba(255, 152, 0, 0.1);
  padding: 8px;
  border-radius: 50%;
}

/* ===== SERVICES SECTION ===== */
#services {
  position: relative;
  overflow: hidden;
  background:#08172e;
}

.services-bg {
  background: #0d47a1;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  z-index: 1;
}

.position-relative.z-2 {
  z-index: 2;
}

/* Desktop Slider */
.slider-container {
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider-track {
  display: flex;
  animation: slide 30s linear infinite;
  height: 100%;
}

.slider-item {
  flex: 0 0 25%;
  padding: 10px;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: var(--transition);
}

.slider-item:hover img {
  transform: scale(1.05);
}

/* Mobile Slider */
.mobile-gallery {
  position: relative;
  overflow: hidden;
}

.mobile-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.mobile-slider-item {
  flex: 0 0 100%;
  padding: 0 10px;
}

.mobile-slider-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.slider-counter {
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 10px;
  border-radius: 20px;
}

/* Service Cards */
.service-card {
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .icon-box,
.service-card:hover h4,
.service-card:hover p {
  color: white !important;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: #08172e;
  transform: scale(1.1);
}

.service-card:hover .icon-box i {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mobile-slider-track {
    display: flex;
    width: 400%; /* 4 slides */
    animation: mobileScroll 20s linear infinite;
}

.mobile-slider-item {
    min-width: 100%;
}

@keyframes mobileScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-75%); } /* Moves to show all 4 slides */
}

.mobile-slider-track:hover {
    animation-play-state: paused;
}

.bg-purple { background-color: #6f42c1; }
.bg-orange { background-color: #fd7e14; }

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}
/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-control,
.form-select {
  border: 1px solid #dee2e6 !important;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  transition: var(--transition);
  margin-top: 16px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.25) !important;
}

.btn-danger {
  background: linear-gradient(135deg, var(--accent), #f44336) !important;
  border: none !important;
  padding: 0.8rem !important;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.map-container {
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-link:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.list-unstyled li {
  color:rgba(0, 0, 0, 0.655);
  font-size: 0.95rem;
}

.footer-icon {
  color: var(--secondary);
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-email,
.footer-address {
  color: #bdc3c7;
  font-size: 0.95rem;
}

.qr-code {
  width: 120px;
  height: 120px;
  border: 3px solid white;
  border-radius: 10px;
  padding: 5px;
  background: white;
}

/* ===== FLOATING SOCIAL ICONS ===== */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-social a:hover {
  transform: translateY(-5px);
}

.youtube { background: #FF0000; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.facebook { background: #1877F2; }
.whatsapp { background: #25D366; }
.phone { background: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Navbar */
  #mainNavbar span {
    font-size: 1.4rem;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  /* About */
  .section-title {
    font-size: 2rem;
  }
  
  .about-img {
    margin-bottom: 2rem;
  }
  
  /* Services */
  .mobile-slider-item img {
    height: 200px;
  }
  
  .service-card {
    padding: 1.5rem !important;
  }
  
  /* Footer */
  .footer {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-icon {
    justify-content: center;
    margin-bottom: 5px;
  }
  
  /* Floating Social */
  .floating-social {
    flex-direction: row;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
  }
  
  .floating-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn-warning {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  .map-container,
  .map-container iframe {
    min-height: 300px;
  }
}

/* AOS Animation Delay */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}


/* Professional Service Cards - Clean Design */
.service-card-professional {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: none; /* Remove transition */
}

.card-header {
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0); /* No rotation animation */
}

.card-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: #1a1a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.card-body {
    padding: 25px 30px;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
}

.card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(247, 199, 145, 0.08);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
}

.feature-icon {
    color: #ff6b35;
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-item span {
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-footer {
    padding: 0 30px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: none; /* Remove transition */
    border: none;
    width: 100%;
    text-align: center;
}

.card-cta i {
    margin-left: 10px;
    font-size: 0.9rem;
    transition: none; /* Remove transition */
}

/* Status indicator */
.service-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7c791);
    z-index: 1;
}

/* Card variations for different services */
.service-card-professional:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.service-card-professional:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #2d6bff, #6a98ff);
}

.service-card-professional:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #34c759, #5cd885);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .card-header {
        padding: 30px 25px 15px;
    }
    
    .card-body {
        padding: 20px 25px;
    }
    
    .card-footer {
        padding: 0 25px 25px;
        padding-top: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .card-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .service-card-professional {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .card-header {
        padding: 25px 20px 15px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .card-footer {
        padding: 0 20px 20px;
        padding-top: 20px;
    }
    
    .card-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
.project-card img {
    width: 100%;
    height: 300px; /* or any fixed height you prefer */
    object-fit: cover;
}
.project-card {
    height: 300px; /* match the height above */
    overflow: hidden;
}
/* Optional: Add subtle shadow for depth */
.service-card-professional {
    position: relative;
}

.service-card-professional::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background: rgba(0, 0, 0, 0.02);
    filter: blur(8px);
    border-radius: 50%;
    z-index: -1;
}
/* ================= FOOTER BASE ================= */
.footer {
  background: linear-gradient(180deg, #243647, #1b2836);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer a {
  color: #cfd8dc;
  text-decoration: none;
}

.footer a:hover {
  color: orange;
}

/* ================= ROW & COLUMN FIX ================= */
.footer .row {
  align-items: flex-start;
}

/* Force 4 columns in one row (desktop) */
@media (min-width: 768px) {
  .footer .row > div {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* ================= FOOTER HEADINGS ================= */
.footer-heading,
.footer h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

/* Underline for ALL headings */
.footer-heading::after,
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: orange;
}

/* ================= QR CODE COLUMN ================= */
.footer .qr-col {
  text-align: center;
}

/* Center underline for QR heading */
.footer .qr-col h5::after {
  left: 50%;
  transform: translateX(-50%);
}

/* QR image center */
.qr-code-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.qr-code-wrapper img {
  width: 140px;
  height: auto;
}

/* ================= LIST STYLE ================= */
.footer ul {
  padding-left: 0;
}

.footer ul li {
  font-size: 15px;
}

/* ================= CONTACT SECTION ================= */
.footer-icon {
  color: orange;
  font-size: 16px;
  margin-top: 4px;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-address {
  line-height: 1.6;
}

/* ================= COPYRIGHT ================= */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer p {
  margin-bottom: 0;
}
/* ================ FIX ABOUT SECTION OVERLAPPING ================ */

/* Mobile View Fixes */
@media (max-width: 768px) {
    /* Fix About Section positioning */
    #welcome {
        position: relative;
        z-index: 1;
        background: white;
        padding-top: 30px !important;
        padding-bottom: 40px !important;
        margin-top: 0 !important;
    }
    
    /* Ensure proper spacing between sections */
    #home + #welcome {
        margin-top: -1px; /* Remove any negative margin */
    }
    
    /* About image container */
    .col-lg-6.order-1.order-lg-2 {
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
        padding: 0 !important;
    }
    
    /* About image */
    .about-img {
        width: 90%;
        max-width: 280px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
        position: relative;
        top: 0;
        transform: none;
    }
    
    /* Text content */
    .col-lg-6.order-2.order-lg-1 {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Hero section bottom spacing */
    .hero-carousel {
        margin-bottom: 0 !important;
        position: relative;
    }
    
    /* Remove any negative margins */
    .section-bg {
        margin-top: 0 !important;
        background: #f8f9fa; /* Light background for contrast */
    }
    
    /* Ensure carousel doesn't overflow */
    .carousel-inner {
        overflow: hidden;
        border-radius: 0;
    }
}

/* Small Mobile Devices (up to 576px) */
@media (max-width: 576px) {
    #welcome {
        padding-top: 20px !important;
        padding-bottom: 30px !important;
    }
    
    .about-img {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    /* Add clear separation between sections */
    .hero-carousel::after {
        content: '';
        display: block;
        height: 20px;
        background: linear-gradient(to bottom, transparent, #f8f9fa);
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
        z-index: 1;
    }
    
    .section-bg {
        position: relative;
        z-index: 2;
    }
}

/* Tablet Adjustments (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    #welcome {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .about-img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* If there's a specific overlapping issue with negative margin */
@media (max-width: 768px) {
    /* Remove any problematic negative margins */
    *[style*="margin-top"] {
        margin-top: 0 !important;
    }
    
    *[class*="mt-"] {
        margin-top: 1rem !important;
    }
    
    /* Ensure smooth transition between sections */
    section {
        position: relative;
        overflow: hidden;
    }
    
    /* Add subtle border or shadow to separate sections */
    #welcome {
        border-top: 1px solid #e9ecef;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }
}

/* Specific fix for Samsung Galaxy S20 Ultra and similar devices */
@media (max-width: 412px) and (max-height: 915px) {
    #home {
        height: 60vh !important;
    }
    
    #welcome {
        margin-top: -5px; /* Small overlap for seamless transition */
        padding-top: 25px !important;
    }
    
    .about-img {
        max-width: 220px;
    }
}

/* Add emergency fix if overlapping persists */
@media (max-width: 768px) {
    /* Force proper stacking */
    .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .order-1, .order-2 {
        order: initial !important;
    }
    
    /* Clear any floats */
    .col-lg-6:before,
    .col-lg-6:after {
        content: "";
        display: table;
        clear: both;
    }
}
/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
  gap: 16px;
}

/* Card style remains same */
.stat-card {
  background: #dab4b4;
  border-radius: 16px;
  padding: 18px 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.stat-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background:linear-gradient( #211999,rgb(151, 38, 38));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1864;
  font-size: 20px;
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 23px;
  color:rgb(233, 218, 218);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile default */
  gap: 16px;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop */
  }
}
/* ================= STATS GRID – RESPONSIVE ================= */

/* Default: Mobile first */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
  gap: 16px;
  padding: 0 12px;
}

/* Tablet */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
  }
}

/* ================= STAT CARD ================= */
.stat-card {
  background: #dab4b4;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Icon */
.stat-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(#211999, rgb(151, 38, 38));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

/* Number */
.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1c1864;
}

/* Text */
.stat-card span {
  font-size: 14px;
  color: #ffffff;
}

/* Extra small phones */
@media (max-width: 480px) {
  .stat-card h3 {
    font-size: 16px;
  }

  .stat-card span {
    font-size: 13px;
  }
}
/* =====================================================
   GLOBAL MOBILE RESET
===================================================== */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 40px 15px !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* =====================================================
   NAVBAR (MOBILE)
===================================================== */
@media (max-width: 768px) {

  #mainNavbar {
    padding: 10px 12px;
  }

  #mainNavbar span {
    font-size: 1.3rem;
  }

  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .nav-link {
    padding: 12px;
    text-align: center;
  }

  #mainNavbar button {
    width: 20%;
    margin-top: 10px;
  }
}

/* =====================================================
   HERO SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .carousel-item {
    height: 65vh;
    min-height: 420px;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* =====================================================
   ABOUT SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  #welcome {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
    background: #f8f9fa;
  }

  .row.align-items-center {
    flex-direction: column;
  }

  .about-img {
    width: 85%;
    max-width: 260px;
    margin: 0 auto 25px;
    display: block;
  }

  .section-title {
    font-size: 1.9rem;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =====================================================
   SERVICES SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .service-card,
  .service-card-professional {
    margin-bottom: 25px;
  }

  .card-features {
    grid-template-columns: 1fr;
  }

  .icon-box,
  .card-icon {
    margin: 0 auto 15px;
  }
}

/* =====================================================
   STATS SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-card {
    padding: 16px 8px;
  }

  .stat-card h3 {
    font-size: 16px;
  }

  .stat-card span {
    font-size: 13px;
  }
}

/* =====================================================
   PROJECTS SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .project-card {
    height: 220px;
  }

  .project-card img {
    height: 220px;
    object-fit: cover;
  }
}

/* =====================================================
   ENQUIRY SECTION (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .form-control,
  .form-select {
    font-size: 14px;
    padding: 12px;
  }

  .btn-danger {
    font-size: 15px;
  }

  .map-container,
  .map-container iframe {
    min-height: 280px;
  }
}

/* =====================================================
   FOOTER (MOBILE)
===================================================== */
/* ================= MOBILE FOOTER – FINAL FIX ================= */
@media (max-width: 768px) {

  .footer {
    padding: 45px 16px 20px;
    text-align: center;
  }

  /* Stack columns properly */
  .footer .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .row > div {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 35px;
  }

  /* Headings center + underline */
  .footer-heading,
  .footer h5 {
    text-align: center;
  }

  .footer-heading::after,
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Footer lists */
  .footer ul {
    padding-left: 0;
  }

  .footer ul li {
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Contact info alignment */
  .footer-address,
  .footer-email {
    text-align: center;
    justify-content: center;
  }

  .footer-icon {
    margin-right: 8px;
  }

  /* QR section */
  .qr-col {
    text-align: center;
  }

  .qr-code-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .qr-code-wrapper img {
    width: 120px;
  }

  /* Copyright text */
  .footer .border-top {
    margin-top: 15px;
    padding-top: 15px;
  }
}


/* =====================================================
   FLOATING SOCIAL (MOBILE)
===================================================== */
@media (max-width: 768px) {

  .floating-social {
    flex-direction: row;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
  }

  .floating-social a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Hide default bootstrap icon */
.navbar-toggler {
  border: none;
  padding: 6px;
}

/* Custom hamburger */
.hamburger {
  width: 24px;
  height: 2px;
  background: #1f2937;
  display: block;
  position: relative;
  transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background: #1f2937;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Mobile menu style */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav {
    gap: 15px;
    text-align: center;
  }

  .nav-link {
    font-size: 16px;
  }

  .btn-enquiry {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    /* assets/style.css */

/* ===== VARIABLES & RESET ===== */
:root {
  --primary: #072147;
  --accent: #d32f2f;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#mainNavbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#mainNavbar span {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(13, 71, 161, 0.1);
}

/* Enquiry Button */
.btn-enquiry {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgb(34, 34, 82);
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 34, 82, 0.4);
}

/* Custom Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  box-shadow: none;
}

.hamburger {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: #1f2937;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hamburger to X animation */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-carousel {
  margin-top: 76px;
}

.carousel-item {
  height: 90vh;
  min-height: 600px;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
}

.btn-warning {
  background: rgb(18, 18, 49);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(18, 18, 49, 0.4);
}

/* ===== ABOUT SECTION ===== */
.section-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.about-img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== SERVICES SECTION ===== */
#services {
  background: #08172e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-card-professional {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  overflow: hidden;
  height: 100%;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

/* Variations */
.service-card-professional:nth-child(1) .card-icon { background: linear-gradient(135deg, #ff6b35, #ff8e53); }
.service-card-professional:nth-child(2) .card-icon { background: linear-gradient(135deg, #2d6bff, #6a98ff); }
.service-card-professional:nth-child(3) .card-icon { background: linear-gradient(135deg, #34c759, #5cd885); }

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 12px;
}

.stat-card {
  background: #dab4b4;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.stat-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(#211999, rgb(151, 38, 38));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1c1864;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 14px;
  color: #ffffff;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.map-container, .map-container iframe {
  min-height: 400px;
  width: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #243647, #1b2836);
  color: #cfd8dc;
  padding: 60px 0 30px;
}

.footer-heading, .footer h5 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after, .footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: orange;
}

.qr-code-wrapper img {
  width: 140px;
  height: auto;
  border: 5px solid white;
  border-radius: 10px;
}

.footer-icon {
  color: orange;
  margin-right: 10px;
  font-size: 16px;
}

/* ===== FLOATING SOCIAL ICONS ===== */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.floating-social a:hover {
  transform: translateY(-5px);
}

.youtube { background: #FF0000; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.facebook { background: #1877F2; }
.whatsapp { background: #25D366; }
.phone { background: var(--primary); }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet & Mobile Adjustments */
@media (max-width: 991.98px) {
  /* Navbar */
  #mainNavbar span {
    font-size: 1.4rem;
  }

  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-link {
    text-align: center;
    padding: 12px 0;
  }

  .btn-enquiry {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  /* General */
  section { padding: 50px 15px !important; }

  /* Hero */
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .carousel-control-prev,
  .carousel-control-next { display: none; }

  /* About */
  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-img {
    width: 85%;
    max-width: 300px;
    margin: 0 auto 30px;
    display: block;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Footer */
  .footer {
    text-align: center;
    padding: 50px 20px 30px;
  }

  .footer .row > div {
    width: 100%;
    margin-bottom: 40px;
  }

  .footer-heading::after,
  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .qr-code-wrapper img {
    width: 120px;
  }

  /* Floating Social */
  .floating-social {
    flex-direction: row;
    bottom: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    gap: 10px;
  }

  .floating-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; }

  .btn-warning {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
  }

  .map-container, .map-container iframe {
    min-height: 300px;
  }

  .stat-card h3 { font-size: 16px; }
  .stat-card span { font-size: 13px; }
}

/* Desktop Stats Grid */
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
}

/* Desktop enquiry button */
.btn-enquiry {
  padding: 8px 22px;
  border-radius: 30px;
  background: rgb(34, 34, 82);
  color: #fff;
  text-decoration: none;
}

/* Remove default icon */
/* Remove default bootstrap styles */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  box-shadow: none;
}

/* Hamburger wrapper */
.hamburger {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hamburger lines */
.hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: #1f2937; /* dark */
  border-radius: 3px;
  display: block;
  transition: all 0.3s ease;
}

/* Show button only on mobile */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
}

/* Remove default styles */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
}

/* Hamburger wrapper */
.hamburger {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Lines */
.hamburger span {
  width: 100%;
  height: 2.5px;
  background: #1f2937;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animate to X when menu is open */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu layout */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
  }
}

        /* Custom Mobile Responsive Fixes */
        body {
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar Mobile Fix */
        @media (max-width: 991px) {
            #mainNavbar .navbar-brand img {
                height: 50px;
            }
            .navbar-collapse {
                background: white;
                margin-top: 15px;
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .navbar-nav .nav-link {
                text-align: center;
                padding: 12px 0;
                font-size: 1.1rem;
            }
            .btn-enquiry {
                width: 100%;
                margin-top: 15px;
                padding: 12px;
            }
        }

        /* Hero Section Mobile */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem !important;
            }
            .hero-subtitle {
                font-size: 1.1rem !important;
            }
            .carousel-item {
                height: 70vh;
            }
            .carousel-overlay .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem !important;
            }
            .hero-subtitle {
                font-size: 1rem !important;
            }
            .carousel-item {
                height: 60vh;
            }
        }

        /* About Section Mobile */
        @media (max-width: 991px) {
            #welcome .section-title {
                font-size: 2rem;
                text-align: center;
            }
            .about-img {
                width: 80%;
                max-width: 300px;
                margin: 0 auto 30px;
                display: block;
            }
        }

        /* Services Section Mobile Sliding */
        .mobile-slider-track {
            display: flex;
            width: 800%; /* 8 slides */
            animation: mobileSlide 40s linear infinite;
        }

        .mobile-slider-item {
            min-width: 100%;
            position: relative;
        }

        @keyframes mobileSlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-87.5%); } /* Move 7 steps for 8 slides */
        }

        .mobile-gallery:hover .mobile-slider-track {
            animation-play-state: paused;
        }

        /* Enquiry Form Mobile */
        @media (max-width: 768px) {
            .enquiry-section .row > div {
                margin-bottom: 30px;
            }
            .map-container iframe {
                min-height: 300px;
            }
        }

        /* Footer Mobile */
        @media (max-width: 768px) {
            .footer .row > div {
                margin-bottom: 40px;
                text-align: center;
            }
            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .qr-code-wrapper {
                justify-content: center;
            }
        }

        /* Floating Social Mobile */
        @media (max-width: 768px) {
            .floating-social {
                flex-direction: row;
                bottom: 15px;
                left: 50%;
                right: auto;
                transform: translateX(-50%);
                gap: 15px;
            }
            .floating-social a {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }
    