/* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/Hero-Image.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            margin-top: 60px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

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

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

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

        .about-image img {
            transition: var(--transition);
        }

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

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature {
            display: flex;
            gap: 1rem;
        }

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

        .feature h4 {
            margin-bottom: 0.5rem;
        }

        /* ===================== Responsive Media Queries ===================== */

        /* Mobile Devices – 320px — 480px */
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0 1rem 0;
                height: auto;
            }
            .hero-title {
                font-size: 1.3rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-content {
                padding: 0 0.5rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 0.5rem;
            }
            .about-content {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                padding: 0 0.5rem;
            }
            .about-text h3 {
                font-size: 1.1rem;
            }
            .features {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }
            .feature-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        /* iPads and Tablets – 481px — 768px */
        @media (min-width: 481px) and (max-width: 768px) {
            .hero {
                height: 60vh;
                padding: 2.5rem 0 1.5rem 0;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .hero-content {
                padding: 0 1rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 0.7rem;
            }
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }
            .about-text h3 {
                font-size: 1.3rem;
            }
            .features {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .feature-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }

        /* Laptops and small screen – 769px — 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero {
                height: 80vh;
                padding-top: 70px;
            }
            .hero-title {
                font-size: 2.7rem;
            }
            .hero-subtitle {
                font-size: 1.3rem;
            }
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.2rem;
                padding: 0 2rem;
            }
            .about-text h3 {
                font-size: 1.5rem;
            }
            .features {
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .feature-icon {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
        }

        /* Large screens and Desktops – 1025px — 1200px */
        @media (min-width: 1025px) and (max-width: 1200px) {
            .hero {
                height: 90vh;
                padding-top: 80px;
            }
            .hero-title {
                font-size: 3rem;
            }
            .hero-subtitle {
                font-size: 1.4rem;
            }
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
                padding: 0 4rem;
            }
            .about-text h3 {
                font-size: 1.7rem;
            }
            .features {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        /* TV and Extra Large Screens – 1201px and more */
        @media (min-width: 1201px) {
            .hero {
                height: 100vh;
                padding-top: 100px;
            }
            .hero-title {
                font-size: 4rem;
            }
            .hero-subtitle {
                font-size: 1.7rem;
            }
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                padding: 0 10rem;
            }
            .about-text h3 {
                font-size: 2rem;
            }
            .features {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
            }
        }