        :root {
            --primary: #0b6bb5;
            --secondary: #ff3800;
            --light-gray: #f8f9fa;
            --dark-gray: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Header Styles */
        .top-header {
            background-color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.8s ease-out;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .logo-container {
            padding: 5px;
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover {
            transform: scale(1.02);
        }
        
        .partners-logo-container {
            transition: transform 0.3s ease;
        }
        
        .partners-logo-container:hover {
            transform: scale(1.01);
        }
        
        /* Hero Section */
        .hero-section {
            color: white;
            padding: 80px 0;
            min-height: 768px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background overlay */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 56, 0, 0.1) 0%, transparent 100%);
            animation: gradientShift 8s ease-in-out infinite alternate;
            z-index: 0;
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
                opacity: 0.1;
            }
            50% {
                background-position: 100% 50%;
                opacity: 0.2;
            }
            100% {
                background-position: 0% 50%;
                opacity: 0.1;
            }
        }
        
        .hero-left, .hero-right {
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 992px) {
            .hero-section {
                padding: 40px 0;
                min-height: auto;
            }
        }
        
        .hero-left h1 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            line-height: 1.2;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .hero-left h1 span {
           color: #ff5b2d;
          /* display: inline-block;*/
           transition: all 0.3s ease;
           position: relative;
        }
        
        .hero-left h1 span:hover {
            transform: translateY(-3px);
            text-shadow: 0 5px 15px rgba(255, 91, 45, 0.3);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @media (max-width: 768px) {
            .hero-left h1 {
                font-size: 2.2rem;
            }
        }
        
        .features-list {
            list-style: none;
            padding-left: 0;
            margin-top: 25px;
            opacity: 0;
            animation: fadeInLeft 1s ease-out 0.6s forwards;
        }
        
        .features-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 20px;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }
        
        .features-list li:nth-child(1) { animation: fadeInLeft 0.5s ease-out 0.8s forwards; }
        .features-list li:nth-child(2) { animation: fadeInLeft 0.5s ease-out 1.0s forwards; }
        .features-list li:nth-child(3) { animation: fadeInLeft 0.5s ease-out 1.2s forwards; }
        .features-list li:nth-child(4) { animation: fadeInLeft 0.5s ease-out 1.4s forwards; }
        .features-list li:nth-child(5) { animation: fadeInLeft 0.5s ease-out 1.6s forwards; }
        .features-list li:nth-child(6) { animation: fadeInLeft 0.5s ease-out 1.8s forwards; }
        .features-list li:nth-child(7) { animation: fadeInLeft 0.5s ease-out 2.0s forwards; }
        .features-list li:nth-child(8) { animation: fadeInLeft 0.5s ease-out 2.2s forwards; }
        
        .features-list li:hover {
            transform: translateX(10px);
            color: #ff5b2d;
        }
        
        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .features-list li:hover:before {
            transform: scale(1.3) rotate(5deg);
            color: #ff8a65;
        }
        
        /* Accordion Styles */
        .courses-accordion {
            opacity: 0;
            animation: fadeInRight 1s ease-out 0.9s forwards;
        }
        
        .courses-accordion .card {
            border: none;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .courses-accordion .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .courses-accordion .card-header {
            background-color: white;
            border: none;
            padding: 0;
        }
        
        .courses-accordion .btn-link {
            color: var(--dark-gray);
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--light-gray);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .courses-accordion .btn-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(11, 107, 181, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .courses-accordion .btn-link:hover::before {
            left: 100%;
        }
        
        .courses-accordion .btn-link:hover {
            background-color: #e9ecef;
            text-decoration: none;
            color: var(--primary);
            padding-left: 25px;
        }
        
        .courses-accordion .btn-link.collapsed {
            background-color: white;
        }
        
        .courses-accordion .btn-link:after {
            font-family: "Font Awesome 5 Free";
            content: "\f068";
            font-weight: 900;
            font-size: 0.9rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .courses-accordion .btn-link.collapsed:after {
            content: "\f067";
            color: var(--secondary);
        }
        
        .courses-accordion .btn-link:hover:after {
            transform: scale(1.2);
        }
        
        .course-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--secondary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .course-item::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .course-item:hover {
         /*   padding-left: 10px;*/
            color: var(--primary);
        }

        .course-item:hover .btn-apply {
            background-color: var(--primary);
        }
        
        .course-item:hover::before {
            width: 100%;
        }
        
        .course-item:last-child {
            border-bottom: none;
        }
        
        .btn-apply {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 6px 20px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-apply::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .btn-apply:hover {
            background-color: #e63200;
            color: white;
            text-decoration: none;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 15px rgba(255, 56, 0, 0.3);
        }
        
        .btn-apply:hover::before {
            left: 100%;
        }
        
        .announcement-badge {
            background-color: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.80rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .announcement-badge:hover {
           /* transform: scale(1.05);*/
            box-shadow: 0 4px 8px rgba(11, 107, 181, 0.3);
            background-color: #0a5ea0;
        }
        
        /* Footer Styles */
        .main-footer {
            background-color: #222;
            color: #ddd;
            padding: 60px 0 30px;
            animation: fadeInUp 1s ease-out;
        }
        
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background-color: var(--secondary);
            transition: left 0.5s ease;
        }
        
        .footer-heading:hover::after {
            left: 0;
        }
        
        .footer-heading:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        
        .contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
            padding: 5px;
            border-radius: 5px;
        }
        
        .contact-info li:hover {
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
            padding-left: 10px;
        }
        
        .contact-info i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 5px;
            transition: all 0.3s ease;
        }
        
        .contact-info li:hover i {
            color: var(--secondary);
            transform: scale(1.2);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .social-icons a:hover::before {
            left: 100%;
        }
        
        .social-icons a:nth-child(1):hover { background-color: #3b5998; }
        .social-icons a:nth-child(2):hover { background-color: #1da1f2; }
        .social-icons a:nth-child(3):hover { background-color: #0077b5; }
        .social-icons a:nth-child(4):hover { background-color: #e4405f; }
        
        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .whatsapp-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .whatsapp-btn:hover {
            background-color: #1da851;
            color: white;
            text-decoration: none;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover::before {
            left: 100%;
        }
        
        .footer-bottom {
            background-color: #111;
            color: #aaa;
            padding: 20px 0;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-bottom a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .footer-bottom a:hover::after {
            width: 100%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-left, .hero-right {
                margin-bottom: 30px;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }
        
        /* Custom spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        .mb-30 {
            margin-bottom: 30px;
        }

        @media (min-width: 1300px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl {
                max-width: 1240px;
            }
        }
        @media (min-width: 1400px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl {
                max-width: 1340px;
            }
        }
        @media (min-width: 1500px) {
            .container, .container-lg, .container-md, .container-sm, .container-xl {
                max-width: 1440px;
            }
        }
        
        /* Floating animation for visual interest */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }
        
        /* Pulse animation for call-to-action elements */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 56, 0, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 56, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 56, 0, 0);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }