         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ea580c;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: bolder;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: #ea580c;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #ea580c, #dc2626);
            color: white;
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(234, 88, 12, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(234, 88, 12, 0.3);
        }
        
       /* Logo Styles */
            .logo-wrapper {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

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

            .logo-tagline {
                font-size: 0.8rem;
                color: #393939;
                font-weight: 600;
                margin-top: 5px;
                text-align: center;
                line-height: 1.6;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            }

            @media (max-width: 768px) {
                .logo-wrapper {
                    flex-direction: row;
                    align-items: center;
                }
                
                .logo-tagline {
                    margin-top: 0;
                    margin-left: 10px;
                    font-size: 0.7rem;
                    /*border-left: 1px solid #d1d5db;*/
                    padding-left: 10px;
                }
            }
        /* Header Image Styles */
        .header-image-container {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: -50px;
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
            padding: 2rem;
            border-radius: 12px;
            font-size: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .header-image-container {
                height: 200px;
            }
            
            .hero-content {
                margin-top: -30px;
            }
        }
        /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Page Sections */
            .page-section {
                display: none;
                padding: 6rem 0 4rem;
                min-height: 100vh;
            }

            .page-section.active {
                display: block;
            }
        
        

        /* Hero Section */
        .hero {
            background: 
                linear-gradient(rgba(255, 247, 237, 0.9), rgba(254, 215, 170, 0.7)),
                url('header-image.jpeg') center/cover no-repeat;
            text-align: center;
            padding: 5rem 0 5rem;
            /*margin-top: 10px;*/
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            /*color: #1e293b;*/
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 2.5rem;
        }

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

        @media (max-width: 768px) {
            .hero {
                padding: 6rem 0 4rem;
                min-height: 60vh;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-content {
                padding: 1.5rem;
                margin: 0 1rem;
            }
        }

        .secondary-button {
            background: transparent;
            color: #ea580c;
            border: 2px solid #ea580c;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .secondary-button:hover {
            background: #ea580c;
            color: white;
        }

        /* Value Proposition */
        .value-props {
            padding: 4rem 0;
            background: white;
        }
        
        .value-props h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 3rem;
        }
        
        .props-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .prop-card {
            background: #fff7ed;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #fed7aa;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .prop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(234, 88, 12, 0.1);
        }
        
        .prop-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ea580c, #dc2626);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }
        
        .prop-card h3 {
            font-size: 1.25rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }
        
        .prop-card p {
            color: #64748b;
            line-height: 1.6;
        }
        
        /* About Section */
        .about {
            background: #fff7ed;
            padding: 6rem 0;
        }
        
        .about h2 {
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }
        
        .about-text {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.8;
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ea580c;
            display: block;
        }
        
        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        /* Programs Section */
        .programs {
            padding: 6rem 0;
            background: white;
        }
        
        .programs h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 3rem;
        }
        
        .program-card {
            background: #fff7ed;
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 2rem;
            border: 1px solid #fed7aa;
        }
        
        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .program-title {
            font-size: 1.8rem;
            color: #1e293b;
            font-weight: 600;
        }
        
        .program-badge {
            background: linear-gradient(135deg, #ea580c, #dc2626);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .program-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .program-feature {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ea580c;
        }
        
        .program-feature h4 {
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        
        .program-feature p {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        /* Team Section */
        .team {
            background: #fff7ed;
            padding: 6rem 0;
        }
        
        .team h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 3rem;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .team-member {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .member-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ea580c, #dc2626);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
            font-weight: 600;
        }
        
        .member-name {
            font-size: 1.1rem;
            color: #1e293b;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        /* Application Section */
        .application {
            padding: 6rem 0;
            background: white;
        }
        
        .application h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 2rem;
        }
        
        .application-form {
            max-width: 600px;
            margin: 0 auto;
            background: #fff7ed;
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid #fed7aa;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e293b;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ea580c;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Contact Section */
        .contact {
            background: #fff7ed;
            padding: 6rem 0;
        }
        
        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 3rem;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ea580c, #dc2626);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
        }
        
        .contact-text {
            color: #64748b;
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #ea580c;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1rem;
            text-align: center;
            color: #94a3b8;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .program-details {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .props-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        .animated-gradient-text {
		    position: relative;
		    display: inline-block;
		    font-size: 3.5rem;
		    font-weight: 700;
		}

		.animated-gradient-text::before {
		    content: attr(data-text);
		    position: absolute;
		    background: linear-gradient(70deg, 
		        #ea580c, #dc2626, #2563eb, #16a34a, #ea580c);
		    background-size: 300% auto;
		    background-clip: text;
		    -webkit-background-clip: text;
		    color: transparent;
		    animation: gradientShift 5s linear infinite;
		    z-index: 1;
		}

		.animated-gradient-text::after {
		    content: attr(data-text);
		    position: relative;
		    color: transparent; /* Hide original text */

		}

        /* Products Section Styles */
        .products-section {
             background: 
                linear-gradient(rgba(255, 247, 237, 0.9), rgba(254, 215, 170, 0.7)),
                url('header-image-2.webp') center/cover no-repeat;
            padding: 4rem 0;
            background-color: #f8fafc;
        }

        .products-section h2 {
            text-align: center;
            margin-bottom: 3rem;
            color: #dc2626;
            font-size: 2.5rem;
        }

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

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

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

        .product-image img {
            width: 100%;
            /*height: 100%;*/
            object-fit: revert-layer;
        }

        .product-card h3 {
            padding: 1.5rem 1.5rem 0;
            color: #1e293b;
            font-size: 1.25rem;
        }

        .product-card p {
            padding: 0 1.5rem;
            color: #64748b;
            margin: 0.5rem 0 1.5rem;
        }

        .learn-more {
            display: inline-block;
            padding: 0 1.5rem 1.5rem;
            color: #ea580c;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .learn-more:hover {
            color: #333;
            text-decoration: underline;
        }