/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans';
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Ensure all text elements use Google Sans by default */
p, span, div, li, a, button, input, textarea, label, .tagline-text, .umbrella-icon {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - All headings use Google Sans */
h1, h2, h3 {
    font-family: 'Google Sans';
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.7;
}

/* Bootstrap Navbar Custom Styles */
.navbar-custom {
    background: transparent !important;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(0, 96, 112, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
}

.navbar-brand svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 107, 125, 0.3));
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 107, 125, 0.4));
}

.navbar-brand svg path {
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

.navbar-brand svg text {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link {
    color: #ffffff !important;
    font-family: 'Google Sans';
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.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, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-custom.scrolled .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");
}

@media (max-width: 768px) {
    /* Bootstrap Navbar Mobile Styles */
    .navbar-custom {
        padding: 1rem 0;
    }
    
    .navbar-brand svg {
        height: 35px;
    }
    
    .navbar-custom .navbar-nav {
        background: rgba(0, 96, 112, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 1rem;
    }
    
    .navbar-custom .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 1rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .hero-tagline-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Product Section Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* Footer Mobile - Final Alignment Plan */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    /* --- Main Footer Alignment --- */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 2.5rem !important;
        padding: 0 20px;
    }

    /* --- Center the Logo --- */
    .footer-logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 0.5rem;
    }

    .footer-logo svg {
        height: 40px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    /* --- Center Contact & Social Blocks --- */
    .footer-contact, .footer-social {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-title, .social-title {
        text-align: center !important;
        margin-bottom: 1rem;
        width: 100%;
    }

    .contact-icons, .social-links {
        justify-content: center !important;
        margin-top: 10px;
        display: flex;
        gap: 1rem;
    }

    .contact-link, .social-link {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-link svg, .social-link svg {
        width: 20px;
        height: 20px;
    }

    /* --- Fix Footer Bottom Overflow --- */
    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 1.5rem !important;
        gap: 1.5rem !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-links {
        justify-content: center !important;
        padding-left: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .footer-copyright {
        width: 100%;
        text-align: center !important;
        white-space: normal !important; /* Forces wrapping if text is too long */
        font-size: 0.8rem !important;
        padding: 0 10px;
    }
    
    /* Button Mobile */
    .btn-enquiry {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .wa-icon {
        width: 30px;
        height: 30px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #006b7d 0%, #003d4a 100%);
    text-align: center;
    padding: 2rem;
}

/* Bottom fade to white as seen in design - reduced intensity */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.7) 100%);
    opacity: 0.6;
}

.hero-watermark {
    position: absolute;
    right: -5%;
    top: 20%;
    width: 40%;
    opacity: 0.05;
    color: #ffffff;
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero-tagline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

.hero h1 {
    color: #ffffff;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    background: #004d5a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-size: 1rem;
}

.cta-button:hover {
    background: #005f6e;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #ffffff;
}

.collection-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Swiper Container Fixes */
.product-visual-top {
    position: relative;
    width: 100%;
    height: 250px; /* Increased height to prevent cropping */
    overflow: hidden;
    background-color: #ffffff; /* White background for better image visibility */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This ensures images show fully without cropping */
    object-position: center; /* This centers the image */
}

/* Customizing Arrows */
.swiper-button-next, .swiper-button-prev {
    color: #006B7D; /* Match your brand teal */
    transform: scale(0.5); /* Make them subtle */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .swiper-button-next,
.product-card:hover .swiper-button-prev {
    opacity: 1;
}

/* Customizing Pagination Dots */
.swiper-pagination-bullet-active {
    background: #006B7D !important;
}

/* Base Card Styling */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 61, 74, 0.1);
}

/* Top Colored Visual Block */
.product-visual-top {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* Individual Card Colors from Design */
.product-card:nth-child(1) .product-visual-top { background-color: #ffffff; } /* Mint */
.product-card:nth-child(2) .product-visual-top { background-color: #ffffff; } /* Sky Blue */
.product-card:nth-child(3) .product-visual-top { background-color: #ffffff; } /* Pale Green */
.product-card:nth-child(4) .product-visual-top { background-color: #ffffff; } /* Soft Sand */

.product-icon {
    width: 60px;
    height: 60px;
    color: #006B7D; /* Brand Teal */
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Info Section */
.product-info {
    padding: 30px;
    text-align: left;
}

.category-label {
    color: #006B7D;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-info h3 {
    font-family: 'Google Sans';
    font-size: 1.4rem;
    color: #032F3C;
    margin-bottom: 15px;
    font-weight: 700;
}

/* The Pill-shaped "View Details" button */
.view-details-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #006B7D;
    color: #006B7D;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: #006B7D;
    color: #ffffff;
}

/* Add depth and visibility to the last card's button */
.product-card:nth-child(4) .view-details-btn {
    border-color: #032F3C; /* Dark Navy-Teal from the button palette */
    color: #032F3C;
}

.product-card:nth-child(4) .view-details-btn:hover {
    background-color: #032F3C;
    color: #ffffff;
}

/* Force vertical alignment of the buttons */
.product-info {
    flex-grow: 1; /* Pushes content down */
    display: flex;
    flex-direction: column;
}

.product-info p {
    flex-grow: 1; /* Ensures text box matches neighbors */
    margin-bottom: 25px; /* Consistent spacing to button */
}

/* Corporate Section */
.corporate-section {
    padding: 5rem 0;
    background: #032F3C;
    color: white;
}

.corporate-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.corporate-content h2 {
    color: white;
    margin-bottom: 2rem;
    font-family: 'Google Sans';
    font-weight: 700;
}

.corporate-content p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

.corporate-cta {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-size: 1rem;
}

.corporate-cta:hover {
    background: white;
    color: #032F3C;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    color: #006070;
    font-family: 'Google Sans';
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #006070 0%, #004050 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #006070;
    margin-bottom: 0.5rem;
    font-family: 'Google Sans';
    font-weight: 700;
}

.stat-card p {
    color: #666;
    margin: 0;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: #006070;
    font-family: 'Google Sans';
    font-weight: 700;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
    font-size: 1rem;
    background: #f5f5f5;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006070;
    background: white;
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: #006B7D;
    color: #ffffff;
    font-family: 'Google Sans';
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 50px;
    white-space: nowrap;
}

.btn-enquiry:hover {
    background: #005f6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 125, 0.3);
}

/* Footer - Enhanced Design */
.footer {
    background: linear-gradient(135deg, #006070 0%, #004050 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Google Sans', sans-serif;
    font-optical-sizing: auto;
}

.footer-logo svg {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo svg {
    height: 50px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.contact-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Google Sans';
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-1px);
}

.footer-copyright {
color: rgba(255, 255, 255, 0.7);
font-family: 'Google Sans';
font-optical-sizing: auto;
font-weight: 500;
font-size: 1.2rem;
margin-top: 1rem;
white-space: normal;
}

/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25d366; /* Official WhatsApp Green */
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e; /* Darker teal-green */
}

.wa-icon {
    width: 35px;
    height: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-icons {
        justify-content: center;
    }
    
    .contact-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 20px 0;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .footer-copyright {
        font-size: 1.2rem !important;
        max-width: 100%;
        word-wrap: break-word;
        text-align: center;
    }
    
    .btn-enquiry {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
}

@media (max-width: 480px) {
    /* Hero Small Mobile */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    /* Swiper Container Fixes */
    .product-visual-top {
        position: relative;
        width: 100%;
        height: 250px; /* Increased height to prevent cropping */
        overflow: hidden;
        background-color: #ffffff; /* White background for better image visibility */
    }

    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: contain; /* This ensures images show fully without cropping */
        object-position: center; /* This centers the image */
    }

    /* Customizing Arrows */
    .swiper-button-next, .swiper-button-prev {
        color: #006B7D; /* Match your brand teal */
        transform: scale(0.5); /* Make them subtle */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-card:hover .swiper-button-next,
    .product-card:hover .swiper-button-prev {
        opacity: 1;
    }

    /* Customizing Pagination Dots */
    .swiper-pagination-bullet-active {
        background: #006B7D !important;
    }

    /* Product Small Mobile */
    .product-visual-top {
        height: 150px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .view-details-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    /* Footer Small Mobile - Enhanced Center Alignment */
    .footer-content {
        gap: 2rem;
        padding: 0 15px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .footer-logo {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }
    
    .footer-logo svg {
        height: 35px;
        margin: 0 auto !important;
        display: block !important;
    }

    .footer-logo img {
        height: 40px;
        width: auto;
        transition: all 0.3s ease;
        filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
        border-radius: 8px;
        padding: 5px;
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-logo:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
    }
    
    .footer-contact {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-title {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .contact-icons {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .contact-link {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .contact-link svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .footer-social {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .social-title {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
    }
    
    .social-links {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .social-link svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .footer-bottom {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 2rem 15px 0 !important;
    }
    
    .footer-links {
        width: 100% !important;
        margin: 0 auto 1rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .footer-links a {
        font-size: 0.8rem !important;
    }
    
    .footer-copyright {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        font-size: 1.2rem !important;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .logo svg {
        height: 35px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 96, 112, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 1rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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