/* Custom CSS for OJM Spray Painting */

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --grey: #6b7280;
    --dark-grey: #374151;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --white: #ffffff;
    --light-grey: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background-color: var(--warning-orange);
    border-color: var(--warning-orange);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    color: white;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 1050;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1400px;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Navigation spacing improvements */
.navbar-nav {
    gap: 0.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
    white-space: nowrap;
}

.navbar-nav .nav-link {
    padding: 0.5rem 0.75rem !important;
    margin: 0;
    white-space: nowrap;
}

/* Reduce space between logo and first nav item */
.navbar-brand {
    margin-right: 1.5rem;
}

/* Responsive navigation spacing */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.75rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
    }
    
    .navbar-brand {
        margin-right: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        gap: 1rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0 0.75rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1.25rem !important;
        margin: 0;
    }
    
    .navbar-brand {
        margin-right: 3rem;
    }
}

/* Brand logo image */
.brand-logo {
    height: 60px;
    width: auto;
    display: block;
    max-width: 200px;
}

@media (max-width: 576px) {
    .brand-logo { 
        height: 50px; 
        max-width: 160px;
    }
}

@media (min-width: 768px) {
    .brand-logo { 
        height: 70px; 
        max-width: 220px;
    }
}

@media (min-width: 992px) {
    .brand-logo { 
        height: 80px; 
        max-width: 260px;
    }
}

@media (min-width: 1200px) {
    .brand-logo { 
        height: 90px; 
        max-width: 300px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 75vh;
    background: linear-gradient(rgba(26, 46, 74, 0.8), rgba(26, 46, 74, 0.7)), 
                url('images/home-hero-roof-roller.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1, .hero-content h2, .hero-content p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Height Classes */
.min-vh-75 {
    min-height: 75vh;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--secondary-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: white;
}

.service-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Why Choose Us Cards */
.why-choose-card {
    padding: 25px 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 30px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Contact Section */
.contact-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937, #374151) !important;
}

.contact-info a:hover {
    color: var(--light-blue) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-section {
        min-height: 80vh;
        text-align: center;
        padding-top: 100px;
        background-position: 65% center; /* keep painter visible on mobile */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }

    .hero-buttons {
        gap: 10px;
    }
}

/* Medium screens (tablets/landscape) - adjust image focal point */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero-section {
        background-position: 55% center;
    }
}

/* Large desktops - center subject while keeping text area clear */
@media (min-width: 1200px) {
    .hero-section {
        background-position: center center;
        background-size: cover;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--grey);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-grey);
}

/* Services Page Specific Styles */
.services-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(26, 46, 74, 0.8), rgba(26, 46, 74, 0.7)), 
                url('images/home-hero-roof-roller.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.min-vh-50 {
    min-height: 50vh;
}

.service-detail-row {
    margin-bottom: 4rem;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-image-container img {
    transition: transform 0.3s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), rgba(59, 130, 246, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-content ul li {
    font-size: 1rem;
    padding: 5px 0;
}

/* Process Section */
.process-step {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-blue);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Active navigation state */
.nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

/* Enhanced responsive design for services page */
@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .service-detail-row {
        margin-bottom: 3rem;
    }
    
    .service-content {
        padding: 15px 0;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-badge {
        margin: 0 auto 20px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(rgba(26, 46, 74, 0.8), rgba(26, 46, 74, 0.7)), 
                url('images/home-hero-roof-roller.jpg') center/cover;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-container img {
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Enhanced responsive design for about page */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-image-container {
        margin-bottom: 2rem;
    }
    
    .feature-icon {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(rgba(26, 46, 74, 0.8), rgba(26, 46, 74, 0.7)), 
                url('images/home-hero-roof-roller.jpg') center/cover;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.map-container iframe {
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Contact form enhancements */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Contact card hover effects */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Enhanced responsive design for contact page */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        text-align: center;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .map-container {
        margin-bottom: 1rem;
    }
    
    .contact-hero .btn-lg {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(26, 46, 74, 0.8), rgba(26, 46, 74, 0.7)), 
                url('images/home-hero-roof-roller.jpg') center/cover;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gallery-filter .btn {
    transition: all 0.3s ease;
}

.gallery-filter .btn.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.gallery-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.before-after-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image {
    width: 50%;
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    z-index: 1;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.image-label {
    position: absolute;
    top: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-label {
    left: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.after-label {
    right: 10px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.project-details .badge {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
}

/* Quick Quote Form Styles */
.quick-quote-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.quick-quote-section .form-control,
.quick-quote-section .form-select {
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-quote-section .form-control:focus,
.quick-quote-section .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    transform: translateY(-2px);
}

.quick-quote-section .btn-warning {
    background: var(--warning-orange);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-quote-section .btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Enhanced responsive design for gallery page */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    .gallery-hero .lead {
        font-size: 1.1rem;
    }
    .gallery-filter .btn {
        margin-bottom: 0.5rem;
    }
    .before-after-slider {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
    .gallery-hero .lead {
        font-size: 1rem;
    }
    .gallery-filter .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .before-after-slider {
        height: 180px;
    }
    .slider-handle::before {
        width: 16px;
        height: 16px;
        left: -6px;
    }
}

/* Testimonials Styles */
.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem !important;
}

.stars {
    color: var(--warning-orange);
}

.testimonial-text {
    font-style: italic;
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info h6 {
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.author-info small {
    font-size: 0.85rem;
}

/* Enhanced responsive design for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
    .hero-section {
        min-height: 60vh;
    }
    .min-vh-75 {
        min-height: 60vh;
    }
    .whatsapp-float {
        left: 15px;
        bottom: 80px;
    }
}

@media (max-width: 576px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .hero-section {
        min-height: 50vh;
    }
    .min-vh-75 {
        min-height: 50vh;
    }
    .service-card {
        padding: 20px 15px;
    }
    .why-choose-card {
        padding: 20px 15px;
    }
    .whatsapp-float {
        left: 10px;
        bottom: 70px;
    }
}