
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --accent-color: #fc6205;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --gradient: linear-gradient(135deg, #f66e1f, #ff8c42);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            margin-left: -1rem; 
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05); 
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-size: larger;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a[onclick*="Registration"] {
            background: #fc6205;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            color: white;
            font-weight: 700;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(252, 98, 5, 0.3);
        }

        .nav-links a[onclick*="Registration"]:hover {
            transform: scale(1.05); 
            box-shadow: 0 6px 20px rgba(252, 98, 5, 0.4);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 4rem;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            color: white;
            text-align: left;
            z-index: 2;
            position: relative;
            left: -5rem;
            top:1rem;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: left;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        /* Buttons */
        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--accent-color);
            color: white;
            transform: translateY(0);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            padding:1rem 2rem;
            font-size: 1rem;
        }

        .btn-secondary:hover {
            background: var(--accent-color);
            color: white;
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 3rem 0;
            margin-top: -2rem;
            position: relative;
            z-index: 10;
            box-shadow: var(--shadow);
            border-radius: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            z-index:5;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 40%;
            height: 200%;
            background: linear-gradient(45deg, rgba(252, 98, 5, 0.03), rgba(255, 140, 66, 0.05));
            transform: rotate(-15deg);
            z-index: 1;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 60% 40%;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-image {
            padding: 1rem;
            margin-left: 1rem;
            order: 2;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            border-radius: 2rem;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            order: 1;
        }

        .about-content .section-subtitle {
            padding: 0 3rem;
            text-align: left;
            font-size: 1.2rem;
            color: black;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem 1rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(252, 98, 5, 0.15);
            border-color: #fc6205;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            padding: 1rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .feature-card p {
            margin: 0;
            font-size: 1.2rem;
            color: black;
        }

        /* Section Titles */
        .section-title-container {
            display: flex;
            gap: 1rem;
            position: relative;
            background: #ff7b1c;
            align-items: center;
            justify-content: space-between;
            border-radius: 2rem;
            overflow: hidden;
        }

        .section-title {
            padding-left: 2rem;
            text-align: left;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            z-index: 100;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .half-border {
            position: relative;
            display: inline-block;
        }

        .half-border::after {
            content: "";
            position: absolute;
            left: 25%;
            bottom: -6px;
            width: 50%;
            height: 3px;
            background: #fc6205;
        }

        .consultancy-container .half-border::after {
            content: "";
            position: absolute;
            left: 25%;
            bottom: -6px;
            width: 50%;
            height: 3px;
            background: black;
        }

        /* Burst Animation */
        .burst-container {
            position: relative;
            width: 200px;
            height: 200px;
            overflow: visible;
        }

        .diamond, .circle-large, .circle-medium, .circle-small {
            position: absolute;
            transform: scale(0);
            opacity: 0;
            animation: burstLoop 5s linear infinite;
        }

        .diamond {
            width: 200px;
            height: 200px;
            background: #e86713;
            border-radius: 20%;
            transform: rotate(45deg) scale(0);
            animation-delay: 0s;
        }

        .circle-large {
            width: 120px;
            height: 120px;
            background: #c24b06;
            border-radius: 50%;
            transform: rotate(-45deg) scale(0);
            animation-delay: 1.5s;
        }

        .circle-medium {
            width: 90px;
            height: 90px;
            background: #e86713;
            border-radius: 50%;
            transform: scale(0);
            animation-delay: 3s;
        }

        .circle-small {
            width: 45px;
            height: 45px;
            background: #d05d0d;
            border-radius: 50%;
            bottom: 10px;
            left: -10px;
            transform: scale(0);
            animation-delay: 4.5s;
        }

        @keyframes burstLoop {
            0% { transform: rotate(45deg) scale(0.5); opacity: 0.5; }
            25% { transform: rotate(45deg) scale(1); opacity: 1; }
            50% { transform: rotate(45deg) scale(1.4); opacity: 0.7; }
            75% { transform: rotate(45deg) scale(1.8); opacity: 0.3; }
            100% { transform: rotate(45deg) scale(2); opacity: 0; }
        }

        /* Three Up Images */
        .three-up {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            align-items: center;
        }

        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .image-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(252, 98, 5, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 8px;
        }

.three-up img {
  width: 100%;
  height: 220px;        /* set a uniform height */
  object-fit: cover;    /* crop neatly without distortion */
  border-radius: 8px;   /* optional */
}

        .overlay button {
            background: var(--accent-color);
            color: white;
            padding: 10px 18px;
            border: none;
            border-radius: 2rem;
            font-size: 16px;
            cursor: pointer;
            font-weight: bold;
        }

        .overlay button:hover {
  background: white;
  color: var(--accent-color);
}

/* Show overlay on hover */
.image-card .overlay {
  opacity: 1;
}

        /* Accreditations */
        .accreditations {
            padding: 3rem 0;
            background: var(--white);
            text-align: center;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            padding: 10px;
        }

        .marquee {
            display: inline-block;
            animation: scroll 30s linear infinite;
        }

        .marquee img {
            width: 150px;
            height: auto;
            margin: 0 20px;
            vertical-align: middle;
        }

        @keyframes scroll {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* Consultancy Section */
        .consultancy-section {
            background: var(--gradient);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .consultancy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            z-index: 1;
        }

        .consultancy-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .consultancy-section .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin:0 auto 2rem auto;
            color: white;
            text-align: center;
            width:100%;
        }
            

        .section-desc {
            max-width: 900px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: black;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            backdrop-filter: blur(10px);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: white;
        }

        .card .icon {
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--gradient);
            border-radius: 15px;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .card:hover .icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .icon img {
            max-width: 50px;
            max-height: 50px;
            object-fit: contain;
        }

        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #1f2937;
        }

        .card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #4b5563;
        }

        /* Courses Section */
        .courses {
            padding: 5rem 0;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height:30rem;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .course-header {
            height: 60%; /* Adjusted proportion */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .course-body {
            height: 40%; /* Adjusted proportion */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1.5rem;
        }

        .course-body h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .course-description {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        /* Consulting Services */
        .consulting {
            padding: 5rem 0;
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: var(--white);
            color: black;
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-form {
            background-color: #f66e1f;
            box-shadow: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            opacity:1;
        }

        .circle-bg {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient);
            z-index: -1;
        }

        .circle-1 { width: 400px; height: 400px; top: -200px; left: -200px; }
        .circle-2 { width: 300px; height: 300px; bottom: -150px; right: -150px; }
        .circle-3 { width: 200px; height: 200px; top: 50%; left: -100px; transform: translateY(-50%); opacity: 0.7; }
        .circle-4 { width: 150px; height: 150px; top: 20%; right: -75px; opacity: 0.6; }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Form validation styles */
        .form-group input.valid,
        .form-group textarea.valid {
            border: 2px solid #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }

        .form-group input.invalid,
        .form-group textarea.invalid {
            border: 2px solid #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }

        .error-message {
            display: block;
            color: #ef4444;
            font-size: 0.8rem;
            margin-top: 0.25rem;
            min-height: 1rem;
        }

        .form-status {
            margin-top: 1rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            text-align: center;
            display: none;
        }

        .form-status.success {
            background: rgba(16, 185, 129, 0.9);
            color: white;
            border: 2px solid #10b981;
            display: block;
            font-weight: 600;
        }

        .form-status.error {
            background: rgba(239, 68, 68, 0.9);
            color: white;
            border: 2px solid #ef4444;
            display: block;
            font-weight: 600;
        }

        .form-status.loading {
            background: rgba(245, 158, 11, 0.9);
            color: white;
            border: 2px solid #f59e0b;
            display: block;
            font-weight: 600;
        }

        /* Icons */
        i {
            background: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 2rem;
            padding: 1rem;
            size: 1rem;
        }

        a {
            cursor: pointer;
            text-decoration: none;
            color: black;
        }

        .contact-item a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            overflow: auto;
        }

        .registration-modal {
            background: white;
            border-radius: 1rem;
            max-width: 500px;
            width: 90%;
            max-height: 95vh;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display:flex;
            flex-direction: column;
        }

        
/* Additional decorative circles */
.registration-header .circle-1 {
    position: absolute;
    top: -20px;
    left: 120px;
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.25);
    border-radius: 50%;
    z-index: -1;
}

.registration-header .circle-2 {
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.registration-header .circle-3 {
    position: absolute;
    bottom: 10px;
    left: 90px;
    width: 35px;
    height: 35px;
    background: rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
}

/* Orange accent panel on the right */
.registration-header .orange-panel-1 {
    position: absolute;
    top: 3rem;
    right: 2rem;
    width: 2.5rem;
    border-radius: 5rem 5rem 0 0;
    height: 100%;
    background: #f06b25;
    z-index: 1;
}

.registration-header .orange-panel-2 {
    position: absolute;
    top: -1rem;
    right: 0;
    bottom:-2rem;
    width: 3rem;
    border-radius: 0 0 5rem 5rem ;
    height: 100%;
    background: var(--accent-color);
    z-index: 1;
}
/* Content container to ensure proper z-index */
.registration-header .header-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


       .registration-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left:-30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
}

        .registration-header {
    background:#1a1a1a;
    border-radius: 1rem 1rem 0 0;
    color: white;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 10rem;
    margin:-2rem -2rem 0 -2rem;
}

      .registration-header::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    z-index: 1;
}


        .registration-logo {
            height: 3rem;
            width: auto;
            margin-bottom: 0.5rem;
            z-index: 10;
            position:relative;
        }

        .registration-header h2 {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0;
            z-index: 10;
            color: white;
            position: relative;
        }

        .registration-header .close {
            font-size: 2rem;
            cursor: pointer;
            color: white;
            z-index: 2;
            background: none;
            border: none;
            position:relative;
        }

        .registration-body {
            padding: 1.5rem;
            background: white;
            overflow-y: auto;
            max-height: calc(95vh - 120px);
            flex:1;
        }

        .radio-group {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .radio-item {
            display: flex;
            align-items: center;
            white-space: nowrap;
            min-width: fit-content;
        }

        .radio-group input[type="radio"] {
            width: 18px;
            height: 18px;
            margin-right: 0.5rem;
            accent-color: var(--accent-color);
        }

        .radio-group label {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #333;
            cursor: pointer;
            font-weight: 500;
        }

        .registration-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-row {
            display: flex;
            width: 100%;
            gap:1rem;
            margin-bottom: 1.5rem;
        }

        .registration-form .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .registration-form .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.4rem;
        }

        .registration-form .form-group input,
        .registration-form .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--accent-color);
            border-radius: 0.5rem;
            background: white;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .registration-form .form-group input:focus,
        .registration-form .form-group select:focus {
            outline: none;
            border-color: #e55a2b;
            box-shadow: 0 0 5px rgba(252, 98, 5, 0.3);
        }

        .form-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .btn-submit {
            flex: 1;
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background: #e55a2b;
            transform: translateY(-1px);
        }

        .btn-cancel {
            flex: 1;
            background: white;
            color: #666;
            border: 2px solid #ddd;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-cancel:hover {
            background: #f5f5f5;
            border-color: #999;
        }

        .close {
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #fc6205;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: #fc6205;
        }

        .footer-logo {
            max-width: 150px;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            padding: 0;
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: #fc6205;
            transform: translateX(5px);
        }

        .footer-contact-info {
            color: #d1d5db;
        }

        .footer-contact-info i {
            color: white;
            background: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            padding: 1.5rem;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0; 
        }

        .footer-contact-info div {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-contact-info a {
            color: white;
        }

        .contact-footer:hover {
            color: #fc6205;
            transform: translateX(5px);
        }

        .contact-footer a:hover {
            color: #fc6205;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
        }

        .footer-section:nth-child(3) .footer-links li {
    display: flex;
    align-items: center;
}
        /* Footer Services List with Orange Arrow Icons */
        .footer-section:nth-child(3) .footer-links li::before {
            content: ">";
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            width: 1rem;
            height: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 10px;
            flex-shrink: 0;
            padding: 1rem;
        }

        .footer-section:nth-child(3) .footer-links a {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .footer-section:nth-child(3) .footer-links a i {
            display: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .mobile-menu {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                padding: 10px;
                border-radius: 5px;
                transition: all 0.3s ease;
            }

            .mobile-menu:hover {
                background: rgba(252, 98, 5, 0.1);
            }

            .mobile-menu span {
                width: 28px;
                height: 3px;
                background: black;
                margin: 3px 0;
                border-radius: 2px;
                transition: all 0.3s ease;
                transform-origin: center;
            }

            .mobile-menu.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
                background: var(--accent-color);
            }

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
                transform: scale(0);
            }

            .mobile-menu.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
                background: var(--accent-color);
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, rgba(31, 41, 55, 0.98), rgba(17, 24, 39, 0.98));
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                text-align: center;
                z-index: 999;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                display: flex;
                animation: slideDown 0.3s ease-out;
            }

            .nav-links li {
                margin-bottom: 1rem;
                transform: translateY(20px);
                opacity: 0;
                animation: fadeInStagger 0.3s ease-out forwards;
            }

            .nav-links li:nth-child(1) { animation-delay: 0.1s; }
            .nav-links li:nth-child(2) { animation-delay: 0.2s; }
            .nav-links li:nth-child(3) { animation-delay: 0.3s; }
            .nav-links li:nth-child(4) { animation-delay: 0.4s; }
            .nav-links li:nth-child(5) { animation-delay: 0.5s; }
            .nav-links li:nth-child(6) { animation-delay: 0.6s; }

            .nav-links a {
                color: white;
                font-size: 1.1rem;
                padding: 1rem 2rem;
                border-radius: 50px;
                transition: all 0.3s ease;
                display: block;
            }

            .nav-links a:hover {
                background: rgba(252, 98, 5, 0.2);
                color: var(--accent-color);
                transform: translateX(10px);
            }

            .nav-links a[onclick*="Registration"] {
                background: var(--gradient);
                color: white;
                margin-top: 1rem;
                box-shadow: 0 5px 15px rgba(252, 98, 5, 0.3);
            }

            .nav-links a[onclick*="Registration"]:hover {
                transform: translateX(0) scale(1.05);
                box-shadow: 0 8px 25px rgba(252, 98, 5, 0.4);
            }

            /* Hero Section Mobile */
            .hero-content {
                top:1rem;
                left: 0;
                text-align: center;
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                width: 100%;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            /* Stats Grid Mobile */
            .stats {
                padding: 2rem 0;
                margin-top: -1rem;
                margin-left: 1rem;
                margin-right: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            /* About Grid Mobile */
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                z-index:5;
                position:relative;
            }

            .about-content {
                order: 1;
                margin-top: 6rem;
            }

            .about-content .section-title-container {
                order: -2;
                margin: 0 1rem 2rem 1rem;
            }

            .about-image {
                display: none;
                order: -1;
                margin: 0 44%;
                padding: 0;
                height: 30rem;
                width: 20rem;
                align-items: center;
            }

            .about-content .section-subtitle {
                order: 1;
                padding: 0 1rem;
                margin-top: 1rem;
            }

            .features-grid {
                order: 2;
                margin: 0 1rem;
                gap: 0.5rem;
                grid-template-columns: repeat(3, 1fr);
                padding: 0 0.5rem;
            }

            .feature-card {
                padding: 1rem 0.5rem;
            }

            /* Three Up Images Mobile */
            .three-up {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* Cards Mobile */
            .cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Courses Grid Mobile */
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .course-card {
                height: 30rem; /* Increased mobile height */
                min-height: 30rem;
            }

            .course-header {
                height: 65%; /* Adjusted mobile proportion */
            }

            .course-body {
                height: 35%; /* Adjusted mobile proportion */
            }

            /* Services Grid Mobile */
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Contact Section Mobile */
            .contact {
                padding: 2rem 0;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-item {
                flex-direction: row;
                align-items: center;
                display: flex;
                text-align: left;
                gap: 0.5rem;
            }

            .contact-item i {
                align-self: flex-start;
            }

            /* Section Titles Mobile */
            .section-title {
                font-size: 2.2rem;
                padding-left: 1rem;
            }

            .section-title-container {
                margin: 0 1rem 2rem 1rem;
                flex-direction: column;
                text-align: center;
                align-items: center;
                padding-top: 1rem;
            }

            .burst-container {
                width: 150px;
                height: 150px;
                position: relative;
                overflow: visible;
                height: 1rem;
                width: 1rem;
            }

            .diamond { width: 150px; height: 150px; }
            .circle-large { width: 90px; height: 90px; }
            .circle-medium { width: 70px; height: 70px; }
            .circle-small { width: 35px; height: 35px; }

            /* Marquee Mobile */
            .marquee img {
                width: 100px;
                margin: 0 10px;
            }

            /* Modal Mobile */
            .registration-modal {
                width: 95%;
                max-height: 95vh;
                margin: 1rem;
            }

            .registration-body {
        padding: 1rem;
        max-height: calc(95vh - 100px);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half-width {
        flex: 1;
    }

            .form-actions {
                flex-direction: column;
            }

            .btn-submit,
            .btn-cancel {
                width: 100%;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }

            .hero {
                padding: 1rem 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .course-card {
                height: 30rem; /* Further increased for very small screens */
                min-height: 30rem;
            }

             .about-content {
                order: 1;
                margin-top: 6rem;
            }

            .features,
            .courses,
            .consulting {
                padding: 2rem 0;
            }

            .contact {
                padding: 2rem 0;
            }
        }

        /* Mobile Navigation Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInStagger {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }