
        :root {
            --dark-bg: #ffffff;
            --text-light: #ffffff;
            --text-muted: #cccccc;
            --accent: orange;
            --border: #555555;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        .footer-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Main Heading */
        .footer-heading {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .heading-underline {
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            margin: 10px auto;
            border-radius: 2px;
        }

        /* Features Grid */
        .features-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }

        .feature-card {
            flex: 1 1 22%;
            padding: 25px 20px;
            text-align: center;
            background: transparent;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 15px;
            fill: var(--accent);
        }

        .feature-title {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 0 10px 0;
            letter-spacing: 0.5px;
        }

        .feature-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 15px 0;
            line-height: 1.5;
        }

        .learn-more-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: opacity 0.2s ease;
        }

        .learn-more-link:hover {
            opacity: 0.8;
        }

        .learn-more-link::after {
            content: '→';
            font-size: 0.8rem;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            align-items: center;
            margin: 30px 0;
            gap: 10px;
        }

        .phone-icon {
            width: 20px;
            height: 20px;
            fill: var(--accent);
        }

        .phone-number {
            font-size: 15px;
            font-weight: 500;
        }

        /* Social Media Section */
        .social-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .social-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        #social-icon {
            width: 24px;
            height: 24px;
            fill: var(--text-light);
            transition: fill 0.2s ease;
        }

        #social-icon:hover {
            fill: var(--accent);
        }

        /* Legal Text */
        .legal-text {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-heading {
                font-size: 2rem;
            }

            .features-grid {
                flex-direction: column;
            }

            .feature-card {
                flex: 1 1 100%;
            }

            .contact-section {
                flex-direction: column;
                align-items: flex-start;
            }

            .social-section {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }
        }


        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
    
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--accent);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--secondary);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 0;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--dark);
            font-weight: 600;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('../img/children-laptop.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 0;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            text-align: center;
            padding: 30px 25px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            font-size: 2.5rem;
            color: orange;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: darkblue;
        }
        
        .service-card p {
            color: black;
            margin-bottom: 20px;
        }
        
        /* Features Section */
        .features {
            background: linear-gradient(to bottom right, rgb(1, 1, 87), black);
            color: white;
        }
        
        .features .section-title h2 {
            color: rgb(255, 255, 255);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
        }
        
        .feature-item i {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .feature-item h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: rgb(0, 0, 0);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: rgb(255, 255, 255);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            color: black;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: darkblue;
            opacity: 0.1;
            font-family: Georgia, serif;
        }
        
        .client {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .client-info h4 {
            margin-bottom: 5px;
        }
        
        .client-info p {
            color: black;
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: rgb(0, 0, 0);
            text-align: center;
            padding: 80px 0;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .cta .btn {
            background: var(--accent);
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        
        .cta .btn:hover {
            background: #ffffff;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-col p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .contact-info li {
            display: flex;
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }