/* Global Styles */
:root {
    --primary-color: #07124d; /* NetPy primary blue */
    --secondary-color: #07124d; /* NetPy secondary blue */
    --accent-color: #07124d; /* NetPy accent blue */
    --dark-color: #000000; /* NetPy dark text */
    --light-color: #ffffff; /* NetPy white background */
    --gray-color: #6c757d;
    --text-color: #000000; /* NetPy main text color */
    --text-light: #ffffff; /* White text */
    --border-color: #e0e0e0;
    --bg-light: #ffffff; /* NetPy light background */
    --bg-blue: #eef0fd; /* NetPy light blue background */
    --highlight-color: #ffcc00; /* Highlight color for important elements */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient: linear-gradient(135deg, #07124d 0%, #07124d 100%);
    --gradient-accent: linear-gradient(135deg, #07124d 0%, #07124d 100%);
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    font-size: 16px;
}

/* Ensuring all sections have padding */
section {
    padding-left: 10px;
    padding-right: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 52px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(7, 18, 77, 0.3);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(7, 18, 77, 0.3);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 90%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    max-width: 1200px;
    height: 55px;
    margin: 15px auto 0;
    border-radius: 50px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li:last-child a {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

nav ul li:last-child a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(7, 18, 77, 0.3);
    color: white;
}

.nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Parallax Effect */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(170deg, rgba(238, 240, 253, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
    transform-style: preserve-3d;
    z-index: -1;
    transform: translateZ(-10px) scale(2);
}

.parallax-element {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
}

.element-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    animation: float 8s ease-in-out infinite;
    transform: translateZ(-5px) scale(1.5);
}

.element-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    animation: float 10s ease-in-out infinite 1s;
    transform: translateZ(-8px) scale(1.8);
}

.element-3 {
    bottom: 10%;
    left: 20%;
    width: 60px;
    height: 60px;
    background-color: #6c757d;
    animation: float 6s ease-in-out infinite 0.5s;
    transform: translateZ(-3px) scale(1.3);
}

.element-4 {
    top: 25%;
    right: 30%;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    animation: float 12s ease-in-out infinite 2s;
    transform: translateZ(-6px) scale(1.6);
}

.element-5 {
    bottom: 30%;
    right: 5%;
    width: 90px;
    height: 90px;
    background-color: var(--secondary-color);
    animation: float 9s ease-in-out infinite 1.5s;
    transform: translateZ(-7px) scale(1.7);
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-10px, 10px) rotate(5deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, 10px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.parallax-text {
    transform: translateZ(0);
    transition: transform 0.4s ease-out;
}

.parallax-text-delay {
    transform: translateZ(0);
    transition: transform 0.4s ease-out 0.1s;
}

.parallax-item {
    transform: translateZ(0);
    transition: all 0.4s ease-out;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.parallax-item[data-parallax-delay="0.1"] {
    animation-delay: 0.1s;
}

.parallax-item[data-parallax-delay="0.2"] {
    animation-delay: 0.2s;
}

.parallax-item[data-parallax-delay="0.3"] {
    animation-delay: 0.3s;
}

.parallax-item[data-parallax-delay="0.4"] {
    animation-delay: 0.4s;
}

.parallax-item[data-parallax-delay="0.5"] {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.parallax-rise {
    transform: translateZ(0);
    transition: transform 0.6s ease-out;
    animation: float 8s ease-in-out infinite;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    perspective: 1000px;
    background: linear-gradient(170deg, var(--bg-light) 0%, var(--bg-blue) 100%);
    border-radius: 0 0 50px 50px;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 10px;
}

.hero-tag {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-tag span {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--highlight-color);
    opacity: 0.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 10px;
}

.play-btn {
    background-color: transparent;
    color: var(--dark-color);
    box-shadow: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.play-btn i {
    background-color: var(--bg-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.highlights-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    justify-content: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-blue);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.seats-banner {
    background-color: var(--bg-blue);
    border-radius: 12px;
    padding: 18px 20px 18px 30px; /* Added extra padding on left side */
    margin-top: 25px;
    margin-bottom: 10px;
    border: 1px dashed var(--primary-color);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(7, 18, 77, 0.05);
}

.seats-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.seats-numbers {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.elite-batch, .standard-batch {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elite-batch span, .standard-batch span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-color);
    margin-top: 5px;
}

.elite-batch {
    color: var(--primary-color);
}

.standard-batch {
    color: var(--secondary-color);
}

/* Removed hero-image section */


/* Removed hero-image img styling */


/* Removed hero-image::before styling */

/* Project Tabs and Grid Layout */
.projects-container {
    margin: 40px 0 60px;
}

.project-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.project-tab-content {
    display: none;
}

.project-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-grid-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

#elite-projects .project-grid-item {
    border-top-color: var(--primary-color);
}

#standard-projects .project-grid-item {
    border-top-color: var(--secondary-color);
}

.project-grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#elite-projects .project-icon {
    color: var(--primary-color);
}

#standard-projects .project-icon {
    color: var(--secondary-color);
}

.project-grid-item h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.project-preview {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.learn-more {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    background-color: var(--bg-blue);
    transition: var(--transition);
}

#elite-projects .learn-more {
    color: var(--primary-color);
    background-color: var(--bg-blue);
}

#standard-projects .learn-more {
    color: var(--secondary-color);
    background-color: var(--bg-blue);
}

.project-grid-item:hover .learn-more {
    background-color: var(--primary-color);
    color: white;
}

#elite-projects .project-grid-item:hover .learn-more {
    background-color: var(--primary-color);
    color: white;
}

#standard-projects .project-grid-item:hover .learn-more {
    background-color: var(--secondary-color);
    color: white;
}

/* Project Modal Styles */
#project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#project-modal.show {
    opacity: 1;
    visibility: visible;
}

#project-modal .modal-content {
    background-color: var(--bg-light);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#project-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

#modal-batch-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
    color: white;
}

#modal-batch-label.elite {
    background-color: var(--primary-color);
}

#modal-batch-label.standard {
    background-color: var(--secondary-color);
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    margin: 0;
    color: var(--gray-color);
    line-height: 1.6;
}

.modal-footer {
    padding: 15px 25px 25px;
    display: flex;
    justify-content: flex-end;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

/* Student Journey Section */
.student-journey-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.journey-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.journey-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-icon {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.journey-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background-color: var(--border-color);
}

.journey-item:last-child .journey-line {
    display: none;
}

.journey-content {
    flex: 1;
    padding: 0 0 0 25px;
}

.journey-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.journey-content p {
    margin: 0;
    color: var(--gray-color);
}

.journey-content p strong {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.journey-content p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color);
}

/* Learning Outcomes Section */
.learning-outcomes-section {
    padding: 100px 0;
    background-color: var(--bg-blue);
}

.outcomes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.outcome-column {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

.outcome-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.technical {
    border-top: 4px solid var(--primary-color);
}

.non-technical {
    border-top: 4px solid var(--secondary-color);
}

.outcome-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.outcome-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.outcome-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.outcome-list li:last-child {
    margin-bottom: 0;
}

.outcome-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 4px;
}

/* Highlight badge for mandatory elements */
.highlight-badge {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.highlight-item {
    position: relative;
}

.highlight-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color);
}
/* Media queries for responsive design */
@media (max-width: 992px) {
    .batch-card {
        min-width: 280px;
    }
    
    .batch-header h3 {
        font-size: 1.4rem;
    }
    
    .seats-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .why-choose {
        padding: 80px 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    .hero-flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .highlights-banner,
    .cta-buttons {
        justify-content: center;
    }
    
    .seats-numbers {
        justify-content: center;
    }
    
    /* Removed hero-image img styling */

}

@media (max-width: 768px) {
    .batch-container {
        flex-direction: column;
        align-items: center;
    }
    
    .batch-card {
        width: 100%;
        max-width: 450px;
        margin-bottom: 25px;
    }
    
    .project-list li {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    .why-choose {
        padding: 60px 10px;
    }
    
    .why-choose::before,
    .why-choose::after {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .hero {
        padding: 100px 10px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .highlights-banner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .seats-numbers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.partners {
    margin-top: 80px;
    text-align: center;
    padding: 20px 10px;
    background-color: var(--bg-blue);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.partners p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.partners-logo {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner {
    font-weight: 600;
    color: #aaa;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 10px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--bg-blue);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.5;
    z-index: 0;
}

.why-choose::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--bg-blue);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    opacity: 0.5;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 90px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.projects-section .section-title {
    color: var(--dark-color);
    margin-bottom: 100px;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 120px;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: white;
    padding: 35px 30px 35px 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 10px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(7, 18, 77, 0.15);
    transition: var(--transition);
}

.feature-icon i {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon i {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--bg-blue);
    border-radius: 3px;
}

.feature-card p {
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 10px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-out;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.program-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

.program-card:hover .icon {
    transform: scale(1.2);
    color: var(--primary-color);
}

.program-card h3 {
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Projects Section */
.projects-section {
    padding: 70px 10px 100px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.project-element-1 {
    top: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-color: rgba(13, 110, 253, 0.1);
    animation: float 12s ease-in-out infinite 0.5s;
}

.project-element-2 {
    bottom: 15%;
    left: 8%;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 174, 239, 0.1);
    animation: float 9s ease-in-out infinite 1s;
}

.project-element-3 {
    top: 70%;
    right: 15%;
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.15);
    animation: float 7s ease-in-out infinite 1.5s;
}

.batch-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0;
    justify-content: center;
    padding: 0;
}

.batch-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(7, 18, 77, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.batch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.batch-card.elite {
    border-top: 5px solid #07124d;
    background-color: #ffffff;
}

.batch-card.standard {
    border-top: 5px solid #07124d;
    background-color: #ffffff;
}

.batch-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.batch-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.seats-tag {
    position: absolute;
    top: 25px;
    right: 30px;
    background-color: #eef0fd;
    color: #07124d;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(7, 18, 77, 0.1);
}

.elite .seats-tag {
    background-color: #eef0fd;
    color: #07124d;
}

.standard .seats-tag {
    background-color: #eef0fd;
    color: #07124d;
}

.project-list {
    padding: 30px;
    flex-grow: 1;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.project-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.project-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.project-list li:last-child {
    border-bottom: none;
}

.project-list i {
    color: #07124d;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.standard .project-list i {
    color: #07124d;
}

.batch-footer {
    padding: 25px 30px 30px;
    background-color: #eef0fd;
    text-align: center;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.batch-footer p {
    margin-bottom: 20px;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 10px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.key-features {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: var(--card-shadow);
}

.key-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--gray-color);
}

.features-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Other Sections */
.other-section {
    padding: 120px 10px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.batches::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiMwNzEyNGQiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.batches .section-title {
    margin-bottom: 2.5rem;
    position: relative;
}

.batches .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

.batch-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

/* Adjusted for Project Categories spacing */
.projects-section .section-header {
    margin-bottom: 60px;
}

.batch-card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(7, 18, 77, 0.08);
    transition: var(--transition);
    border: none;
    position: relative;
    background-image: linear-gradient(to bottom, white, white 85%, var(--bg-light) 100%);
}

.batch-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: white;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1.275);
}

.batch-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.premium {
    border-top: 5px solid var(--primary-color);
}

.standard {
    border-top: 5px solid var(--secondary-color);
}

.batch-header {
    padding: 40px 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium .batch-header, .standard .batch-header {
    background: var(--primary-color);
}

.premium .batch-header::before, .standard .batch-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMTAwIiByPSI4MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2Utb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.batch-header h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    letter-spacing: -0.5px;
}

.seats {
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.batch-content {
    padding: 40px 35px 50px;
    position: relative;
    z-index: 1;
}

.batch-content h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.batch-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.batch-content ul {
    margin-bottom: 25px;
}

.batch-content ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(7, 18, 77, 0.08);
    position: relative;
    padding-left: 35px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.05rem;
}

.batch-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    background-color: var(--bg-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.batch-content ul li:hover {
    padding-left: 38px;
    color: var(--primary-color);
}

.batch-content ul li:last-child {
    border-bottom: none;
}

.batch-note {
    font-style: italic;
    color: var(--gray-color);
    background: #f8f9fc;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 10px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 20px;
    gap: 20px;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Override for buttons in dark background sections */
.cta-section .btn-outline {
    border: 2px solid white;
    color: white;
}

.cta-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* WhatsApp button styling */
.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    fill: white; /* Ensure the icon is white to match text */
}

.cta-section .btn-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.2); /* WhatsApp green with transparency */
}

/* Enrollment Form Section */
.enrollment {
    padding: 100px 10px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.enrollment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(13, 110, 253, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(13, 110, 253, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

form {
    max-width: 850px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    border: none;
    background-image: linear-gradient(to bottom right, white, white, rgba(238, 240, 253, 0.5));
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.required {
    color: var(--secondary-color);
    margin-left: 3px;
}

input, select, textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8f9fc;
    color: var(--dark-color);
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    background-color: white;
}

input[type="file"] {
    padding: 12px;
    background-color: #f8f9fc;
    border: 1px dashed var(--border-color);
}

input[type="file"]:hover {
    border-color: var(--primary-color);
}

input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive styles for header */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 12px 0;
    }
    
    nav ul {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    
    .logo-container {
        /* Removed margin-bottom to keep logo vertically centered */
        display: flex;
        align-items: center;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .company-logo {
        width: 75px;
    }
    
    nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 320px) {
    .company-logo {
        width: 65px;
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .btn {
    padding: 16px 50px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 29, 77, 0.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal h2 {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.modal p {
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.modal .btn {
    min-width: 150px;
}

/* Footer */
footer {
    background: var(--bg-light);
    color: var(--primary-color);
    text-align: center;
    padding: 40px 10px;
    position: relative;
    overflow: hidden;
}

footer p {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.footer-logo img {
    max-width: 240px;
    height: auto;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-details {
    background-color: var(--bg-blue);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: left;
}

.email-status {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: left;
}

.email-sent {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
}

.email-error {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #F44336;
}

.status-icon {
    font-size: 18px;
    margin-right: 10px;
    padding-top: 2px;
}

.email-status p {
    margin: 0;
    flex: 1;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .batch-card {
        min-width: 280px;
    }
    
    .batch-header h3 {
        font-size: 1.4rem;
    }
    
    .seats-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero .highlight {
        font-size: 1.4rem;
    }
    
    .batch-cards {
        gap: 30px;
    }
    
    form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .batch-container {
        flex-direction: column;
        align-items: center;
    }
    
    .batch-card {
        width: 100%;
        max-width: 450px;
        margin-bottom: 25px;
    }
    
    .project-list li {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    header h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .highlight {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    form {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .batch-header h3 {
        font-size: 1.7rem;
    }
    
    .seats {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    /* Header responsive styling */
    nav ul li {
        display: none;
    }
    
    nav ul li:last-child {
        display: block;
    }
    
    .nav-container {
        padding: 10px 20px;
        align-items: center; /* Ensure all items are vertically centered */
    }
}

@media (max-width: 576px) {
    body {
        padding: 0; /* Removed the 10px horizontal padding */
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    .highlights-banner {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .highlight {
        flex: 1 0 100%;
        padding: 10px;
    }
    
    .batch-header {
        padding: 20px;
    }
    
    .batch-header h3 {
        font-size: 1.3rem;
    }
    
    .seats-tag {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 10px;
        font-size: 0.75rem;
    }
    
    .project-list {
        padding: 20px;
    }
    
    .project-list li {
        font-size: 0.9rem;
    }
    
    .project-list i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .batch-footer {
        padding: 20px;
    }
    
    .batch-footer p {
        font-size: 0.85rem;
    }
    header h1 {
        font-size: 1.8rem;
    }
    
    header .tagline {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero .highlight {
        font-size: 1.1rem;
        padding: 5px 10px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about, .batches, .highlights, .enrollment {
        padding: 70px 0;
    }
    
    .program-card, .batch-card {
        min-width: 100%;
    }
    
    .modal-content {
        padding: 40px 20px;
        width: 90%;
    }
    
    .modal h2 {
        font-size: 1.6rem;
    }
}

/* Ribbon Cutting Ceremony Styles */
.ribbon-ceremony {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.ribbon-ceremony.ceremony-complete {
    opacity: 0;
    pointer-events: none;
}

.ceremony-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.ribbon-cutting-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Main Ribbon Container - Exactly like CodePen */
#ribbon {
    z-index: 999;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw;
    transform: translateY(-50%);
    background: pink;
    float: left;
    cursor: pointer;
}

/* Beautiful Ribbon Bow - Exactly like CodePen */
#ribbon .bow {
    z-index: 999;
    left: 50%;
    top: 50%;
    position: absolute;
    width: 20rem;
    height: 10rem;
    background-image: url(https://pics.clipartpng.com/midle/Beautiful_Red_Bow_PNG_Clipart-518.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 10;
}

#ribbon .bow.hide {
    z-index: 0;
    transition: transform 2s ease-in-out, opacity .1s ease 2s;
    transform: translateY(-2000rem) rotate(360deg);
    opacity: 0;
    transform-origin: top left;
}

/* Ribbon Left and Right Sections - Exactly like CodePen */
#ribbon .ribbon--r,
#ribbon .ribbon--l {
    z-index: 0;
    position: absolute;
    background-color: #a7002c;
    width: 50vw;
    height: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

#ribbon .ribbon--r {
    z-index: 0;
    right: 0;
}

#ribbon .ribbon--r.hide {
    z-index: 0;
    transition: transform 5s ease-in-out;
    transform: translateX(1000rem) translateY(-50%) rotate(90deg);
    transform-origin: bottom right;
}

#ribbon .ribbon--l {
    z-index: 0;
    left: 0;
}

#ribbon .ribbon--l.hide {
    z-index: 0;
    transition: transform 5s ease-in-out;
    transform: translateX(-1000rem) translateY(-50%) rotate(-90deg);
    transform-origin: bottom left;
}





.ceremony-text {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    animation: textFloat 2s ease-in-out infinite;
    z-index: 1001;
    position: relative;
}

.ceremony-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ceremony-text p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}



.cut-ribbon-btn {
    background: linear-gradient(45deg, #07124d, #0f1e6b);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(7, 18, 77, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

.cut-ribbon-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(7, 18, 77, 0.6);
    background: linear-gradient(45deg, #0f1e6b, #07124d);
}

.cut-ribbon-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Basic Animations */



@keyframes textFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Ceremony Footer */
.ceremony-footer {
    position: relative;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.ceremony-powered-by {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ceremony-powered-by:hover {
    opacity: 1;
}



@keyframes ribbonCut {
    0% { 
        transform: translateX(0) translateY(-50%) rotate(0deg); 
    }
    100% { 
        transform: translateX(-200px) translateY(-50%) rotate(-15deg); 
    }
}

@keyframes ribbonCutRight {
    0% { 
        transform: translateX(0) translateY(-50%) rotate(0deg); 
    }
    100% { 
        transform: translateX(200px) translateY(-50%) rotate(15deg); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ceremony-text h2 {
        font-size: 2.5rem;
    }
    
    .ceremony-text p {
        font-size: 1.2rem;
    }
    

    
    .cut-ribbon-btn {
        font-size: 1.3rem;
        padding: 18px 35px;
    }
    

    
    #ribbon .bow {
        width: 100px;
        height: 70px;
    }
    
    #ribbon .ribbon--r,
    #ribbon .ribbon--l {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .ceremony-text h2 {
        font-size: 2rem;
    }
    
    .ceremony-text p {
        font-size: 1rem;
        padding: 0 20px;
    }
    

    
    .cut-ribbon-btn {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    

    
    #ribbon .bow {
        width: 80px;
        height: 60px;
    }
    
    #ribbon .ribbon--r,
    #ribbon .ribbon--l {
        height: 14px;
    }
}
