* {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Work Sans', sans-serif;
 }

 .text-shadow {
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
 }

 .gradient-overlay {
     background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
 }

 .bg-gradient-orange {
     background-image: linear-gradient(145deg, #FD7610, #E56A0C);
 }

 .hover-lift {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .hover-lift:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(253, 118, 16, 0.3);
 }

 .mobile-menu {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .mobile-menu.active {
     max-height: 600px;
 }

 .logo-carousel {
     animation: scroll 15s linear infinite;
 }

 @media (max-width: 767px) {
    .logo-carousel {
        animation: scroll 12.5s linear infinite;
    }
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .logo-carousel-container:hover .logo-carousel {
     animation-play-state: paused;
 }

 .review-carousel {
     animation: scroll-reviews 40s linear infinite;
 }

 @keyframes scroll-reviews {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .review-carousel-container:hover .review-carousel {
     animation-play-state: paused;
 }

 .location-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 118, 16, 0.25) 0%, rgba(229, 106, 12, 0.25) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Hover Effects - Image Zoom Inside Card */
.location-card:hover::before {
    transform: scale(1.15);
}

/* .location-card:hover::after {
    background: linear-gradient(135deg, rgba(253, 118, 16, 0.85) 0%, rgba(229, 106, 12, 0.75) 100%);
} */

.location-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 25px 50px rgba(253, 118, 16, 0.35); */
}

/* Icon and text hover effects */
.location-card:hover .w-14,
.location-card:hover .w-16 {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.location-card .w-14,
.location-card .w-16 {
    transition: all 0.3s ease;
}

.location-card h3 {
    transition: all 0.3s ease;
}

.location-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.location-card > * {
    position: relative;
    z-index: 2;
}

/* Background images for each location */
.location-card[data-location="central-mumbai"]::before {
    background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f?w=600');
}

.location-card[data-location="south-mumbai"]::before {
    background-image: url('https://images.unsplash.com/photo-1567157577867-05ccb1388e66?w=600');
}

.location-card[data-location="western-mumbai"]::before {
    background-image: url('./assets/western_mumbai.JPG');
}

.location-card[data-location="navi-mumbai"]::before {
    background-image: url('./assets/navi_mumbai.AVIF');
}

.location-card[data-location="thane"]::before {
    background-image: url('./assets/thane.JPG');
}

.location-card[data-location="kdmc"]::before {
    background-image: url('./assets/kdmc.JPG');
}

.location-card[data-location="pune"]::before {
    background-image: url('./assets/pune.JPG');
}

.location-card[data-location="bangalore"]::before {
    background-image: url('./assets/bangalore.WEBP');
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .location-card {
        min-height: 160px;
    }
    
    .location-card:hover::before {
        transform: scale(1.12);
    }
    
    .location-card:hover {
        transform: translateY(-3px);
    }
}

 /* Responsive hero section */
 .hero-section {
     position: relative;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background-image: url('./assets/bg.jpg');
     background-size: cover;
     background-position: center;
 }

 @media (max-width: 768px) {
     .hero-section {
         min-height: 70vh;
     }

     .hero-bg {
         background-position: center;
         background-size: cover;
     }

     .location-card {
         min-height: 160px;
     }
 }

 /* Enhanced mobile cards */
 @media (max-width: 768px) {
     .mobile-enhanced-card {
         border-radius: 24px;
         overflow: hidden;
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
     }

     .about-section .relative {
         border-radius: 24px;
     }

     .benefit-card {
         border-radius: 20px;
         padding: 24px;
         background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
     }
 }

 /* Modal Overlay */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Modal Container */
 .modal-container {
     position: relative;
     background: white;
     border-radius: 20px;
     max-width: 900px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     animation: slideUp 0.4s ease;
 }

 @keyframes slideUp {
     from {
         transform: translateY(50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 /* Close Button */
 .modal-close {
     position: absolute;
     top: 15px;
     right: 15px;
     width: 40px;
     height: 40px;
     border: none;
     background: rgba(0, 0, 0, 0.1);
     color: #333;
     font-size: 28px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10;
     transition: all 0.3s ease;
 }

 .modal-close:hover {
     background: #FD7610;
     color: white;
     transform: rotate(90deg);
 }

 /* Modal Content */
 .modal-content {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 0;
 }

 /* Left Side - Benefits */
 .modal-benefits {
     background: linear-gradient(135deg, #FD7610 0%, #E56A0C 100%);
     padding: 40px 30px;
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     border-radius: 20px 0 0 20px;
 }

 .modal-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 30px;
     text-align: center;
 }

 .benefit-item {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 25px;
     padding: 15px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 16px;
     transition: all 0.3s ease;
 }

 .benefit-item:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateX(5px);
 }

 .benefit-icon {
     width: 50px;
     height: 50px;
     background: #fff;
     border: 2px solid #fff;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .benefit-icon .material-symbols-outlined {
     font-size: 28px;
     color: #FD7610;
 }

 .benefit-text {
     font-size: 16px;
     font-weight: 600;
     margin: 0;
 }

 /* Right Side - Form */
 .modal-form-section {
     padding: 40px 35px;
     background: white;
     border-radius: 0 20px 20px 0;
 }

 .modal-header-logo {
     text-align: center;
     margin-bottom: 20px;
     display: flex;
     justify-content: center;
 }

 .modal-logo {
     height: 45px;
     width: auto;
 }

 .form-title {
     font-size: 20px;
     font-weight: 600;
     color: #333;
     text-align: center;
     margin-bottom: 25px;
     line-height: 1.4;
 }

 .form-title .highlight {
     color: #FD7610;
     font-weight: 700;
 }

 /* Form Styles */
 .modal-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .form-group {
     position: relative;
 }

 .form-input {
     width: 100%;
     padding: 14px 16px;
     border: 2px solid #e0e0e0;
     border-radius: 12px;
     font-size: 15px;
     transition: all 0.3s ease;
     font-family: 'Work Sans', sans-serif;
 }

 .form-input:focus {
     outline: none;
     border-color: #FD7610;
     box-shadow: 0 0 0 3px rgba(253, 118, 16, 0.1);
 }

 .phone-group {
     display: grid;
     grid-template-columns: 140px 1fr;
     gap: 10px;
 }

 .country-code {
     padding: 14px 12px;
     border: 2px solid #e0e0e0;
     border-radius: 12px;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .country-code:focus {
     outline: none;
     border-color: #FD7610;
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-top: 5px;
 }

 .checkbox-group input[type="checkbox"] {
     margin-top: 4px;
     width: 18px;
     height: 18px;
     cursor: pointer;
     accent-color: #FD7610;
 }

 .consent-label {
     font-size: 12px;
     color: #666;
     line-height: 1.5;
 }

 .consent-label .link {
     color: #FD7610;
     text-decoration: none;
     font-weight: 600;
 }

 .consent-label .link:hover {
     text-decoration: underline;
 }

 .submit-btn {
     width: 100%;
     padding: 16px;
     background: linear-gradient(135deg, #FD7610 0%, #E56A0C 100%);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-top: 10px;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(253, 118, 16, 0.4);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 .submit-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .modal-container {
         width: 95%;
         margin: 20px;
         border-radius: 24px;
     }

     .modal-content {
         grid-template-columns: 1fr;
     }

     .modal-benefits {
         border-radius: 24px 24px 0 0;
         padding: 30px 20px;
     }

     .modal-form-section {
         border-radius: 0 0 24px 24px;
         padding: 30px 20px;
     }

     .modal-title {
         font-size: 24px;
         margin-bottom: 20px;
     }

     .benefit-item {
         margin-bottom: 15px;
         padding: 12px;
         border-radius: 12px;
     }

     .form-title {
         font-size: 18px;
     }

     .phone-group {
         grid-template-columns: 110px 1fr;
     }

     .form-input,
     .country-code {
         border-radius: 10px;
         padding: 12px 14px;
     }

     .submit-btn {
         border-radius: 10px;
         padding: 14px;
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .modal-close {
         width: 35px;
         height: 35px;
         font-size: 24px;
         top: 12px;
         right: 12px;
     }

     .benefit-icon {
         width: 45px;
         height: 45px;
     }

     .benefit-icon .material-symbols-outlined {
         font-size: 24px;
     }

     .benefit-text {
         font-size: 14px;
     }

     .modal-benefits {
         padding: 24px 16px;
     }

     .modal-form-section {
         padding: 24px 16px;
     }

     .modal-title {
         font-size: 22px;
     }

     .form-title {
         font-size: 16px;
     }

     .phone-group {
         grid-template-columns: 100px 1fr;
         gap: 8px;
     }
 }

 /* Smooth scrollbar for modal */
 .modal-container::-webkit-scrollbar {
     width: 8px;
 }

 .modal-container::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 10px;
 }

 .modal-container::-webkit-scrollbar-thumb {
     background: #FD7610;
     border-radius: 10px;
 }

 .modal-container::-webkit-scrollbar-thumb:hover {
     background: #E56A0C;
 }

.logo-carousel-container .flex.logo-carousel > div > div {
    pointer-events: none;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}

.swiper-button-next .material-symbols-outlined, .swiper-button-prev .material-symbols-outlined {
    font-size: 24px !important;
    font-weight: bold;
    color: white;
}