
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy-blue: #003366;
            --sky-blue: #33B5E5;
            --white: #FFFFFF;
            --light-gray: #F7F7F7;
            --dark-gray: #333333;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

      btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--navy-blue);
            flex-shrink: 0;
        }/* Top Bar */
        .top-bar {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 30px;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .top-bar a:hover {
            opacity: 0.8;
        }

        /* Main Header */
        header {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-container {
            width: 100%;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        /* Logo */
        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* Main Navigation */
        nav {
            display: flex;
            gap: 5px;
            flex: 1;
            justify-content: center;
        }

        .nav-item {
            position: relative;
            padding: 12px 20px;
        }

        .nav-item > a {
            color: #2d3748;
          
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-item > a:hover {
            color: #667eea;
        }

        .nav-item > a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 3px;
        }

        .nav-item > a:hover::after {
            transform: scaleX(1);
        }

        /* Dropdown */
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 240px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            padding: 12px 0;
        }

        .nav-item:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .dropdown-content a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .dropdown-content a:first-child:hover {
            border-radius: 12px 12px 0 0;
        }

        .dropdown-content a:last-child:hover {
            border-radius: 0 0 12px 12px;
        }

        /* Utility Icons */
        .utility-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .icon-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color:white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .icon-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }

        .icon-btn:active {
            transform: translateY(-1px);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #f56565;
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border: 2px solid white;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            font-size: 24px;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .mobile-menu-btn:hover {
            transform: rotate(90deg);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-container {
                padding: 15px 20px;
            }

            .top-bar-container {
                padding: 0 20px;
            }

            nav {
                gap: 2px;
            }

            .nav-item {
                padding: 12px 15px;
            }

            .nav-item > a {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            header{
                flex-direction: column;
                align-items: end;
            }
            .hero{
                height: auto;
            }
            .utility-icons{
                margin-bottom: 2%;
            }
            .top-bar {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 0 20px;
                gap: 0;
                transition: left 0.3s ease;
                box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }

            nav.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
                padding: 0;
            }

            .nav-item > a {
                padding: 18px 30px;
                justify-content: space-between;
                width: 100%;
            }

            .nav-item > a::after {
                display: none;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                margin: 0;
                padding: 0;
                background: #f7fafc;
                display: none;
            }

            .nav-item.active .dropdown-content {
                display: block;
            }

            .logo img {
                height: 50px;
            }

            .utility-icons {
                gap: 10px;
            }

            .icon-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        /* Demo Content */
        .demo-content {
            max-width: 1400px;
            margin: 40px auto;
            padding: 40px;
            text-align: center;
        }

        .demo-content h1 {
            color: #2d3748;
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .demo-content p {
            color: #718096;
            font-size: 18px;
            line-height: 1.8;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 2rem;
            color: var(--white);
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-1 {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.85), rgba(51, 181, 229, 0.75));
        }

        .slide-2 {
            background: linear-gradient(135deg, rgba(51, 181, 229, 0.85), rgba(0, 51, 102, 0.75));
        }

        .slide-3 {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(51, 181, 229, 0.6));
        }

        .hero-content {
            max-width: 600px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary {
            background: var(--sky-blue);
            color: white;
            border: 2px solid var(--sky-blue);
        }

        .btn-primary:hover {
            background: var(--navy-blue);
            border-color: var(--navy-blue);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--navy-blue);
            transform: translateY(-2px);
        }

        .hero-image {
            width: 500px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .carousel-arrow.prev {
            left: 2rem;
        }

        .carousel-arrow.next {
            right: 2rem;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .section-light {
            background: var(--white);
        }

        .section-gray {
            background: var(--light-gray);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--navy-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Best Selling Section */
        .best-selling-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .product-card-large {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .product-card-large:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(51, 181, 229, 0.25);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #FF6B6B, #FF5252);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-image-large {
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: var(--light-gray);
            position: relative;
        }

        .product-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card-large:hover .product-image-large img {
            transform: scale(1.1);
        }

        .product-details {
            padding: 2rem;
        }

        .product-category {
            color: var(--sky-blue);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-details h3 {
            color: var(--navy-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .product-description {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .product-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: var(--light-gray);
            color: var(--navy-blue);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .product-price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
        }

        .product-price-large {
            font-size: 2rem;
            color: var(--sky-blue);
            font-weight: 700;
        }

        .view-details-btn {
            background: var(--navy-blue);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .view-details-btn:hover {
            background: var(--sky-blue);
            transform: translateX(5px);
        }

        /* Physiotherapy Equipment Section */
        .equipment-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .equipment-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .equipment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(51, 181, 229, 0.2);
            border-color: var(--sky-blue);
        }

        .equipment-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
            position: relative;
        }

        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .equipment-card:hover .equipment-image img {
            transform: scale(1.08);
        }

        .equipment-info {
            padding: 1.8rem;
        }

        .equipment-info h4 {
            color: var(--navy-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .equipment-info p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .equipment-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--sky-blue), #2a9fd4);
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .equipment-btn:hover {
            background: linear-gradient(135deg, var(--navy-blue), #002244);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(51, 181, 229, 0.3);
        }

        /* About Section */
        .about-section {
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, var(--white), var(--light-gray));
        }

        .about-content-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 3rem;
            
        }

        .about-image-side {
          width: 50%;
        }

        .about-main-image {
            
            width: 100%;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .about-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--sky-blue), var(--navy-blue));
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.95;
        }

        .about-secondary-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .secondary-img {
            height: 180px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 2%;
            transition: var(--transition);
        }

        .secondary-img:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

        .secondary-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text-side {
            padding-left: 2rem;
            width: 50%;
        }

        .about-label {
            color: var(--sky-blue);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
           width: 100%;
            margin: auto;
            display: flex;
           justify-content: center;
        }

        .about-title {
            font-size: 2.5rem;
            color: var(--navy-blue);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            margin: auto;
            text-align: center;
        }

        .about-description {
            color: var(--dark-gray);
            font-size: 1.05rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .about-features {
            margin: 2.5rem 0;
        }

        .about-feature-item {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--sky-blue), #2a9fd4);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(51, 181, 229, 0.3);
        }

        .feature-content h4 {
            color: var(--navy-blue);
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .feature-content p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .about-stats {
            display: flex;
            
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 2px solid rgba(51, 181, 229, 0.2);
            border-bottom: 2px solid rgba(51, 181, 229, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.2rem;
            color: var(--sky-blue);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--dark-gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .about-cta {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .btn-secondary-outline {
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
            background: transparent;
            color: var(--navy-blue);
            border: 2px solid var(--navy-blue);
        }

        .btn-secondary-outline:hover {
            background: var(--navy-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 51, 102, 0.3);
        }
        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, var(--navy-blue), #004080);
            color: var(--white);
        }

        .testimonials-section .section-title {
            color: var(--white);
        }

        .testimonials-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-client-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .testimonial-client-info p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .testimonial-rating {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: var(--light-gray);
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: var(--navy-blue);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 3px rgba(51, 181, 229, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--sky-blue), var(--navy-blue));
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(51, 181, 229, 0.4);
        }

        /* Footer */
        footer {
            background: var(--navy-blue);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--sky-blue);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .header-container nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .header-container nav.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo {
                width: 160px;
                height: 50px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .carousel-slide {
                flex-direction: column;
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .form-container {
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .about-stats {
                flex-direction: column;
            }

            .about-content-wrapper{
                flex-direction: column;
            }
             .about-text-side {
                width: 100%;
             }
        .about-image-side {
            width: 100%;
        }
            .logo {
                width: 140px;
                height: 45px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .best-selling-grid,
            .equipment-categories,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }
        }
