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

:root {
    --primary-color: #3A2899;
    --primary-light: rgba(58, 40, 153, 0.1);
    --primary-dark: #2a1d70;
    --secondary-color: #6A5ACD;
    --accent-color: #9370DB;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #2C2C54;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    /* Enhanced gradient for more vibrancy */
    --gradient-primary: linear-gradient(135deg, #4a38a9 0%, #3a2899 40%, #2a1d70 100%);
    --gradient-secondary: linear-gradient(135deg, #7a6add 0%, #5a4ac9 100%);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius: 8px;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0; /* Reduced padding */
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 8px 0; /* Reduced padding */
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px; /* Reduced height */
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 40px; /* Reduced height */
}

.nav-menu {
    display: flex;
    gap: 1.5rem; /* Reduced gap */
    list-style: none;
}
@media (min-width: 600px){
    .GetQuote{
        display: none;
    }
}

/* Hide mobile menu by default on desktop */
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    .nav-menu.active {
        transform: none;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* Reduced font size */
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Reduced gap */
    flex-wrap: nowrap;
}

.brochure-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Reduced gap */
    background: var(--bg-dark);
    color: var(--text-white);
    text-decoration: none;
    padding: 8px 16px; /* Reduced padding */
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem; /* Reduced font size */
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.brochure-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px); /* Reduced transform */
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
}

.brochure-btn i {
    font-size: 0.9rem;
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 10px 20px; /* Reduced padding */
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem; /* Reduced font size */
    letter-spacing: 0.02em;
}

.cta-btn:hover {
    transform: translateY(-2px); /* Reduced transform */
    box-shadow: var(--shadow-heavy);
    letter-spacing: 0.03em;
}

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 40px; /* Further reduced height */
    }
    
    .brochure-btn {
        padding: 5px 8px; /* Further reduced padding */
        font-size: 0.75rem; /* Further reduced font size */
        gap: 0.2rem; /* Further reduced gap */
    }
    
    .brochure-text {
        display: none;
    }
    
    .cta-btn {
        padding: 6px 12px; /* Further reduced padding */
        font-size: 0.8rem; /* Further reduced font size */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        background: var(--text-white);
        flex-direction: column;
        padding: 1rem; /* Reduced padding */
        box-shadow: var(--shadow-medium);
        transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem 0; /* Increased padding for better touch targets */
        font-size: 1.1rem; /* Increased font size */
        border-bottom: 1px solid var(--border-color);
    }
    
    .hamburger {
        display: flex;
    }
}

/* Footer Styles */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links .brochure-link {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-links .brochure-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Brochure Button Styles */
.brochure-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-dark);
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.brochure-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
}

.brochure-btn i {
    font-size: 0.9rem;
}

/* About Page Styles */
.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.about-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-container .brochure-btn {
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-container .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-container .contact-form input,
.contact-container .contact-form textarea {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-container .contact-form input:focus,
.contact-container .contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-container .contact-form button {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.contact-container .contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    letter-spacing: 0.03em;
}

/* Services Page Styles */
.services-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.services-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-container .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.services-container .service-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.services-container .service-card:hover {
    transform: translateY(-10px);
}

.services-container .service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.services-container .service-card p {
    font-size: 1rem;
    color: var(--text-dark);
}

.services-container .service-card .brochure-btn {
    margin-top: 1rem;
}

/* Testimonials Page Styles */
.testimonials-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.testimonials-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonials-container .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials-container .testimonial-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonials-container .testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonials-container .testimonial-card p {
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonials-container .testimonial-card .testimonial-author {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
}

.testimonials-container .testimonial-card .testimonial-author span {
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.blog-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-container .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-container .blog-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.blog-container .blog-card:hover {
    transform: translateY(-10px);
}

.blog-container .blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-container .blog-card p {
    font-size: 1rem;
    color: var(--text-dark);
}

.blog-container .blog-card .read-more-btn {
    margin-top: 1rem;
}

/* Single Blog Post Styles */
.single-blog-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.single-blog-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.single-blog-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.single-blog-container .blog-content {
    text-align: left;
    margin-bottom: 2rem;
}

.single-blog-container .blog-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.single-blog-container .blog-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.single-blog-container .blog-content blockquote {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.single-blog-container .blog-content pre {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.single-blog-container .blog-content ul,
.single-blog-container .blog-content ol {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.single-blog-container .blog-content li {
    margin-bottom: 0.5rem;
}

.single-blog-container .blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-blog-container .blog-content a:hover {
    color: var(--primary-dark);
}

.single-blog-container .blog-content .read-more-btn {
    margin-top: 1rem;
}

/* 404 Page Styles */
.error-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 4rem 20px;
    text-align: center;
}

.error-container h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-container .home-btn {
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        /* position: fixed; */
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .brochure-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Ensure hamburger is hidden on desktop */
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

/* Show hamburger on tablets and mobile */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 90%;
        height: 100vh;
        background: var(--text-white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: var(--shadow-heavy);
        transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-actions {
        gap: 0.8rem;
    }
    
    .brochure-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .brochure-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0); /* Removed dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Added subtle text shadow for better readability */
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white; /* Ensure white text */
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    color: white; /* Ensure white text */
}

.hero-content p {
    color: white; /* Ensure white text */
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* Video controls removed since we're using YouTube embed */

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* About Section */
.about {
    background: var(--bg-light);
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}



@media (max-width: 500px) {
    .about-features {
        grid-template-columns: 1fr;   /* one card per row */
        justify-items: center;        /* center the whole card */
    }

    .feature-item {
        margin: 0 auto;              /* center each card horizontally */
        width: 100%;
        max-width: 320px;            /* keep it neat */
        text-align: center;          /* center text */
        align-items: center;         /* center icon + text */
    }

    .feature-content {
        text-align: center;          /* center headings and paragraph */
    }
}


/* Products Section */
.products {
    background: var(--text-white);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--text-white);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px); /* Leave space for buttons */
    background: rgba(58, 40, 153, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through to buttons */
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.view-btn,
.cart-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.cart-btn:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.product-btn {
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

.btn-quote {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
}

.btn-details:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Videos Section */
.videos {
    background: var(--text-white);
    padding: 100px 0;
}

.videos .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 10px;
}

.video-item {
    position: relative;
    aspect-ratio: 9 / 16; /* 9:16 portrait ratio */
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.video-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    color: var(--text-white);
    font-size: 2.5rem;
    background: rgba(58, 40, 153, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-overlay:hover i {
    transform: scale(1.1);
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-item:hover .video-title {
    transform: translateY(0);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.view-more .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services Section */
.services {
    background: var(--bg-light);
    padding: 100px 0;
}

.services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.services .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services .section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services .section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Improve the service item text visibility */
.service-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 0.85;
}

/* Enhance the service icons */
.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    /* Add a subtle border for better definition */
    border: 3px solid rgba(255, 255, 255, 0.1);
    /* Add text shadow for better contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Make the white color more vibrant */
.service-icon {
    color: #ffffff;
    /* Ensure maximum brightness */
    filter: brightness(1.1);
}

/* Add a subtle glow effect to icons */
.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-icon::before {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
    /* Add a subtle pulse effect on hover */
    animation: pulse 2s infinite;
}

/* Add pulse animation for more vibrant effect */
@keyframes pulse {
    0% {
        box-shadow: var(--shadow-light);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(58, 40, 153, 0.2);
    }
    100% {
        box-shadow: var(--shadow-light);
    }
}

.service-item .service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-item .service-description {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.service-item .service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.service-item .service-link:hover {
    text-decoration: underline;
}

.service-item {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(58, 40, 153, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: var(--primary-color);
}

/* Enhance the service icons */
.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff; /* Pure white color for icons */
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    /* Add a subtle border for better definition */
    border: 3px solid rgba(255, 255, 255, 0.2);
    /* Add text shadow for better contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Ensure maximum brightness */
    filter: brightness(1.2);
}

/* Improve the service item text visibility */
.service-item p {
    color: #000000; /* Black color for paragraph text */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    opacity: 1; /* Make text fully opaque for better visibility */
}

/* Add arrow icon styling for service links */
.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 2px solid transparent;
    margin-top: 1rem;
    /* Ensure proper vertical alignment */
    line-height: 1.2;
}

.service-link:hover {
    color: var(--text-dark);
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
    /* Ensure icon aligns properly with text */
    align-self: center;
}

.service-link:hover i {
    transform: translateX(3px);
}


/* Testimonials Section */
.testimonials {
    background: var(--text-white);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--text-dark);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: var(--text-white);
    padding: 100px 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-form .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 40, 153, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
    padding: 100px 0;
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery .section-title {
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 9 / 16; /* 9:16 portrait ratio */
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Products Section Updates */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 40, 153, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.view-btn,
.cart-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover,
.cart-btn:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.product-btn {
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.btn-quote {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-sizing: border-box;
}

.btn-details:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.brochure-download {
    text-align: center;
    margin-top: 2rem;
}

.brochure-download .btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.brochure-download .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.brochure-download .btn-primary i {
    font-size: 1.1rem;
}

/* Videos Section */
.videos {
    background: var(--text-white);
    padding: 100px 0;
}

.videos .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-item img {
    width: 100%;
    height: auto;
    display: block;
}

.video-item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-item .play-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-item .play-btn i {
    color: var(--text-white);
    font-size: 2rem;
}

/* Contact Section Updates */
.contact {
    background: var(--text-white);
    padding: 100px 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-form .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 40, 153, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-section .contact-info i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    color: #BDC3C7;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: var(--text-white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.video-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
}

.video-item img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.video-item .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transform: translateY(100%);
    transition: var(--transition-fast);
}

.video-item:hover .video-title {
    transform: translateY(0);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Video Lightbox Styles */
.video-lightbox {
    display: none;
    position: fixed;
    z-index: 10000; /* Lower than navbar z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-lightbox-iframe-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

.video-lightbox-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
}

.video-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10001;
}

.video-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-lightbox-title {
    color: var(--text-white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    max-width: 900px;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #BDC3C7;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-item p {
    color: #BDC3C7;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    /* margin: 0 auto; */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #4A5568;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.contact-form button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form button:hover {
    background: var(--text-dark);
}

.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
}

/* Footer Section */
.footer-section {
    padding: 1rem 0;
    background: var(--bg-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
}

.footer-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-section .contact-info i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    color: #BDC3C7;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
    font-size: 1.2rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: var(--text-white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-First Responsive Design */

/* Tablet and smaller desktop responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: 2;
    }
    
    .contact-info {
        order: 1;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .video-wrapper {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .brochure-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .brochure-text {
        display: none;
    }
    
    .cta-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-medium);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-fast);
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .video-wrapper {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Video controls removed */
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Products Section */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-filters {
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 1.2rem;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .product-features li {
        font-size: 0.8rem;
        padding: 0.2rem 0;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.8rem 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .service-link {
        font-size: 0.9rem;
    }
    
    /* Testimonials Section */
    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .prev-testimonial,
    .next-testimonial {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 9 / 16;
    }
    
    /* Videos Section */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-item {
        max-width: 100%;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .map-container {
        margin-top: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* Scroll Top Button */
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Lightbox */
    .lightbox-content {
        width: 95%;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
    
    /* Video Lightbox */
    .video-lightbox-content {
        width: 95%;
        max-width: 95%;
    }
    
    .video-lightbox-iframe-container {
        max-width: 95%;
    }
    
    .video-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
    
    .video-lightbox-title {
        font-size: 0.9rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-fast);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .cta-btn,
    .product-btn,
    .submit-btn,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a,
    .scroll-top,
    .prev-btn,
    .next-btn,
    .prev-testimonial,
    .next-testimonial {
        min-width: 44px;
        min-height: 44px;
    }
    
    .view-btn,
    .cart-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Remove hover effects on touch devices */
    .product-item:hover,
    .service-item:hover,
    .feature-item:hover,
    .stat-item:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    .product-item:hover .product-image img {
        transform: none;
    }
    
    .product-overlay {
        opacity: 1;
        background: rgba(58, 40, 153, 0.5);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .spinner {
        border-width: 2px;
    }
    
    .nav-link::after {
        height: 1px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 10px 20px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    section {
        padding: 30px 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slider .slide {
        transition: none;
    }
    
    .fade-in-up {
        transition: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #FFFFFF;
        --text-light: #B0B0B0;
        --bg-light: #2C2C54;
        --bg-dark: #1A1A2E;
        --border-color: #4A5568;
    }
}

/* Print optimizations */
@media print {
    .navbar,
    .scroll-top,
    .slider-controls,
    .slider-dots,
    .lightbox,
    .product-overlay,
    .hamburger,
    .testimonial-controls {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .slide {
        position: relative;
        opacity: 1 !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title,
    .hero-title {
        color: #000;
    }
    
    section {
        padding: 1rem 0;
        break-inside: avoid;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-item,
    .service-item {
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top,
    .slider-controls,
    .slider-dots,
    .lightbox,
    .product-overlay,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .slide {
        position: relative;
        opacity: 1 !important;
    }
    
    body {
        color: #000;
    }
    
    .section-title,
    .hero-title {
        color: #000;
    }
}



/* Floating Button Container */
.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Common Button Style */
.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: none;
    cursor: pointer;
}

/* Hover Effect */
.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Specific Colors */
.call-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.email-btn {
    background: linear-gradient(135deg, #007bff, #6f42c1);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Product Detail Page */
.product-detail {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.product-detail-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.product-detail-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.product-detail-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Related Products Section */
.products {
    padding: 100px 0;
    background: var(--text-white);
}

.products .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products .section-title {
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-text h1 {
        font-size: 2rem;
    }
    
    .product-detail-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 50px 0;
    }
    
    .product-detail-text h1 {
        font-size: 1.8rem;
    }
    
    .product-detail-text p {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-page {
    background: var(--text-white);
    padding: 120px 0 80px;
}

.about-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-page .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-page .section-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h2.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-values {
    margin: 2rem 0;
}

.about-values h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.about-values ul {
    list-style: none;
    padding-left: 0;
}

.about-values li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.about-values li:last-child {
    border-bottom: none;
}

.about-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-values strong {
    color: var(--text-dark);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Contact Page Styles */
.contact-page {
    background: var(--text-white);
    padding: 120px 0 80px;
}

.contact-page .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-page .section-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-page .section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 40, 153, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--border-radius);
    display: none;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-top: auto;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.03);
}

.map-section {
    margin-top: 3rem;
}

.map-section .section-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-page .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-page .contact-form {
        order: 2;
    }
    
    .contact-page .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .about-page .section-title,
    .contact-page .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-info {
        order: -1;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Clients Section */
.clients {
    background: #f8f9fa; /* Light blue-gray background */
    padding: 100px 0;
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e9ecef 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.clients > .container {
    position: relative;
    z-index: 1;
}

.clients .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients .section-title {
    color: var(--primary-color);
}

.clients .section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.clients-slider-container {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    width: 100%;
}

.clients-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.slider-arrow {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.clients-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 1rem 60px; /* Make room for arrows */
    position: relative;
    align-items: center;
}

/* Continuous sliding animation */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.clients-slider:hover {
    animation-play-state: paused;
}

.clients-slider {
    display: flex;
    animation: scrollClients 20s linear infinite;
    width: max-content;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
}

.client-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    min-width: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e9ecef;
    margin-right: 2rem;
    height: 250px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.client-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    background: #f1f3f5;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
}

.client-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: auto;
    min-height: 3rem;
    display: flex;
    align-items: center;
    text-align: center;
    word-break: break-word;
}

.clients-list {
    background: var(--text-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid #e9ecef;
}

.clients-list h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.clients-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.clients-list li {
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.clients-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.clients-list li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive styles for clients section */
@media (max-width: 992px) {
    .client-card {
        min-width: 250px;
        width: 250px;
    }
    
    .clients-slider {
        padding: 1rem 50px; /* Adjust for smaller arrows */
        animation-duration: 15s;
    }
}

@media (max-width: 768px) {
    .client-card {
        min-width: 200px;
        width: 200px;
    }
    
    .clients-slider {
        padding: 1rem 40px; /* Adjust for smaller arrows */
        animation-duration: 12s;
    }
    
    .clients-list ul {
        grid-template-columns: 1fr;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .clients-slider {
        padding: 1rem 35px; /* Adjust for smaller arrows */
        animation-duration: 10s;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .client-card {
        padding: 1.5rem;
        min-width: 180px;
        width: 180px;
    }
    
    .client-logo {
        width: 80px;
        height: 80px;
    }
}

/* Footer Styles */
