/*
Theme Name: IDA
Theme URI: https://instadotanalytics.com
Description: InstaDot Analytics - Custom WordPress Theme
Author: Siddharth - IntalliaTech24
Author URI: https://instadotanalytics.com
Version: 1.0
Requires at least: 5.5
Tested up to: 6.4
Requires PHP: 7.2
License: Proprietary
*/

/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

a {
    text-decoration: none;
}

/* ================= HEADER ================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    background: linear-gradient(90deg, #78d0ff, #04a3ec, #4fc3f7, #02a9f7);
    box-shadow: 0 4px 20px rgba(2,136,209,0.25);
}

/* ================= LOGO ================= */
.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(255,255,255,0.3));
    background-color: rgba(255, 255, 255, 0.668);
    padding: 5px 13px;
    border-radius: 5px;
    border: 1.5px solid white;
    box-shadow: inset 5px 50px 5px rgba(255, 255, 255, 0.663);
}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    z-index: 2001;
}

.nav-links a:hover {
    color: #0077ff;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.411);
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 900px;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #03a9f4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    animation: fadeIn 0.3s ease;
    z-index: 1999;
}

.dropdown:hover .dropdown-menu {
    display: grid;
}

.dropdown-menu.single {
    min-width: 300px;
    grid-template-columns: 1fr;
}

/* Dropdown Content */
.dropdown-column h3 {
    color: #0288d1;
    margin-bottom: 12px;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 8px;
}

.dropdown-column a {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    border-radius: 6px;
    color: #333;
    transition: 0.3s;
    text-decoration: none;
}

.dropdown-column a i {
    color: #03a9f4;
    margin-right: 8px;
}

.dropdown-column a:hover {
    background: #e3f2fd;
    color: #0288d1;
    padding-left: 18px;
}

/* ================= HEADER BUTTONS ================= */
.header-buttons {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2001;
}

.btn {
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    position: relative;
    z-index: 2002;
}

.outline-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.outline-btn:hover {
    background: #fff;
    color: #0288d1;
}

.solid-btn {
    background: #fff;
    color: #0288d1;
}

.solid-btn:hover {
    background: #f0f9ff;
}

/* ================= MOBILE MENU TOGGLE ================= */
.menu-toggle {
    display: none;
    background: transparent !important;
    border: none;
    color: rgb(255, 255, 255) !important;
    font-size: 24px;
    cursor: pointer;
    z-index: 2003;
}

/* ================= MOBILE SIDEBAR ================= */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 3000;
    transition: 0.3s;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #78d0ff, #04a3ec);
}

.sidebar-logo img {
    height: 40px;
}

.close-sidebar {
    background-color: rgba(255, 105, 180, 0) !important;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    padding: 20px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #e3f2fd;
    color: #ffffff;
}

/* Mobile Dropdown */
.mobile-dropdown {
    margin-bottom: 10px;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-dropdown-toggle:hover {
    background: #e3f2fd;
    color: #0288d1;
}

.mobile-dropdown-menu {
    padding: 10px 0 10px 20px;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu h3 {
    color: #0288d1;
    margin: 15px 0 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.mobile-dropdown-menu a {
    padding: 8px 15px;
    font-size: 14px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-outline-btn {
    background: transparent;
    color: #0288d1;
    border: 2px solid #0288d1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-solid-btn {
    background: #ffffff !important;
    color: rgb(0, 132, 255) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 800px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown-menu.single {
        min-width: 250px;
    }
}

@media (max-width: 1080px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links,
    .header-buttons {
        display: none !important;
    }
    
    .dropdown-menu {
        position: fixed;
        left: 5%;
        right: 5%;
        min-width: auto;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mobile-sidebar {
        width: 100%;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* ================= SECTION 1 ================= */
.section1 {
    padding: 60px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #7cc2ff, #e6f7ff, #e7f7ff, #6fd1ff);
    background-size: cover, 40px 40px, 40px 40px;
    background-position: center, center, center;
}

.section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(2, 136, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(2, 136, 209, 0.05) 0%, transparent 50%);
}

.section1-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* ================= TITLE CONTAINER ================= */
.title-container {
    margin-bottom: 15px;
}

.welcome-text {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.typing-container {
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Typing text animation */
.typing-text {
    font-size: 3rem;
    color: #0288d1;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -12px;
    color: #0288d1;
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Highlight effect for typing text */
.typing-text::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(2, 136, 209, 0.15);
    z-index: -1;
    border-radius: 4px;
}

/* ================= HERO TEXT ================= */
.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #0288d1;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.05rem;
    color: #455a64;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ================= HERO FEATURES ================= */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(2, 136, 209, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 136, 209, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(2, 136, 209, 0.15);
    border-color: rgba(2, 136, 209, 0.2);
}

.feature-item i {
    color: #0288d1;
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(2, 136, 209, 0.1);
}

.feature-item span {
    font-weight: 600;
    color: #37474f;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* ================= HERO BUTTONS ================= */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.enroll-btn {
    background: linear-gradient(135deg, #0288d1, #03a9f4);
    color: white;
    padding: 14px 32px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.25);
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 136, 209, 0.35);
    background: linear-gradient(135deg, #0277bd, #0288d1);
}

.hero-buttons .outline-btn {
    background: transparent;
    color: #0288d1;
    border: 2px solid #0288d1;
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hero-buttons .outline-btn:hover {
    background: #0288d1;
    color: white;
}

/* ================= ENQUIRY FORM ================= */
.enquiry-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 35px rgba(2, 136, 209, 0.15);
    animation: fadeInRight 0.8s ease;
    border: 1px solid rgba(2, 136, 209, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-header h2 i {
    color: #0288d1;
}

.form-header p {
    color: #78909c;
    font-size: 0.9rem;
}

/* ================= FORM STYLES ================= */
#enquiryForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

label {
    color: #37474f;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

label i {
    color: #0288d1;
    font-size: 0.9rem;
}

input, select {
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus, select:focus {
    outline: none;
    border-color: #0288d1;
    box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.1);
}

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

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230288d1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 35px;
    font-size: 0.95rem;
}

optgroup {
    font-weight: 600;
    color: #1a237e;
    font-size: 0.9rem;
}

option {
    padding: 8px;
    font-size: 0.9rem;
}

/* ================= CHECKBOX ================= */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 5px 0 10px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.85rem;
    color: #546e7a;
    cursor: pointer;
    line-height: 1.3;
}

/* ================= SUBMIT BUTTON ================= */
.submit-btn {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 14px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
    background: linear-gradient(135deg, #43a047, #4caf50);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .section1-content {
        gap: 30px;
    }
    
    .welcome-text {
        font-size: 1.8rem;
    }
    
    .typing-text {
        font-size: 2.5rem;
    }
    
    .typing-container {
        min-height: 60px;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 1080px) {
    .section1 {
        padding: 40px 5%;
        min-height: auto;
    }
    
    .section1-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .title-container {
        text-align: center;
    }
    
    .welcome-text {
        font-size: 1.6rem;
    }
    
    .typing-text {
        font-size: 2.2rem;
    }
    
    .typing-container {
        min-height: 55px;
        justify-content: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .enquiry-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .welcome-text {
        font-size: 1.4rem;
    }
    
    .typing-text {
        font-size: 1.8rem;
    }
    
    .typing-container {
        min-height: 45px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px;
    }
    
    .feature-item i {
        margin-bottom: 0;
        margin-right: 15px;
        min-width: 45px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .enroll-btn, .hero-buttons .outline-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section1 {
        padding: 30px 5%;
    }
    
    .welcome-text {
        font-size: 1.3rem;
    }
    
    .typing-text {
        font-size: 1.6rem;
    }
    
    .typing-container {
        min-height: 40px;
    }
    
    .enquiry-form {
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
}

/* ================= SECTION 2 ================= */
.section2 {
    padding: 40px 20px;
    background: 
        linear-gradient(rgba(235, 246, 255, 0.95), rgba(86, 176, 255, 0.95)),
        url('https://images.pexels.com/photos/347143/pexels-photo-347143.jpeg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Subtle Grid Overlay */
.section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, 
            transparent, 
            transparent 19px, 
            rgba(135, 206, 235, 0.05) 19px, 
            rgba(135, 206, 235, 0.05) 20px
        ),
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 19px, 
            rgba(135, 206, 235, 0.05) 19px, 
            rgba(135, 206, 235, 0.05) 20px
        );
    z-index: 0;
    pointer-events: none;
}

.section2 h1 {
    text-align: center;
    font-size: 2.2rem;
    color: #00b7ff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section2 h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    margin: 8px auto 0;
    border-radius: 2px;
    animation: growLine 0.6s ease forwards 0.3s;
    transform: scaleX(0);
    transform-origin: center;
}

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid #e3f2fd;
}

.service-card.animate {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1).animate { animation-delay: 0.1s; }
.service-card:nth-child(2).animate { animation-delay: 0.2s; }
.service-card:nth-child(3).animate { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(33, 150, 243, 0.15);
    border-color: #bbdefb;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    z-index: 2;
}

.service-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
    text-align: center;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #29b6f6;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid #e1f5fe;
}

.service-card:hover .service-icon {
    background: #29b6f6;
    color: white;
    transform: translateX(-50%) scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    color: #0288d1;
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 5px;
}

.service-description {
    color: #546e7a;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-btn {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.service-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
}

.service-btn:hover i {
    transform: translateX(3px);
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.service-btn:hover::before {
    left: 100%;
}

/* Compact Stats */
.service-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 60px;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #29b6f6;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #78909c;
    margin-top: 2px;
}

/* Responsive Design for Section 2 */
@media (max-width: 1024px) {
    .section2 {
        padding: 30px 15px;
        min-height: 90vh;
    }
    
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 900px;
    }
    
    .section2 h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 900px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .service-image {
        height: 150px;
    }
}

@media (max-width: 1080px) {
    .section2 {
        padding: 25px 12px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 20px;
    }
    
    .section2 h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .section2 {
        padding: 20px 10px;
    }
    
    .section2 h1 {
        font-size: 1.6rem;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-content {
        padding: 16px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
}

/* ================= SECTION 3 ================= */
.section3 {
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 25%, #90caf9 50%, #64b5f6 100%);
}

/* Blue grid background */
.section3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(33, 150, 243, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 150, 243, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.section3-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.section3 h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0d47a1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section3 .subtitle {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Desktop: 5 cards per row */
.students-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.student-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 105, 204, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 105, 204, 0.25);
}

.student-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2196f3, #03a9f4, #00bcd4, #0097a7);
}

.student-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.student-card:hover .student-img {
    border-color: #2196f3;
    transform: scale(1.05);
}

.student-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #0d47a1;
    font-weight: 600;
}

.student-card p {
    font-size: 16px;
    color: #2196f3;
    font-weight: 700;
    margin-bottom: 15px;
    background: #e3f2fd;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
}

.student-desc {
    font-size: 13px;
    color: #546e7a;
    margin-top: 10px;
    line-height: 1.5;
    font-style: italic;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.action-btn {
    padding: 14px 40px;
    border: none;
    background: linear-gradient(90deg, #2196f3, #03a9f4);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
    background: linear-gradient(90deg, #1976d2, #0288d1);
}

.action-btn.hidden {
    display: none;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 180px;
}

.stat-box h3 {
    font-size: 36px;
    color: #2196f3;
    margin-bottom: 5px;
}

.stat-box p {
    color: #546e7a;
    font-weight: 600;
}

/* Tablet: 3 cards per row */
@media(max-width: 1100px) {
    .students-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE: ONLY HERE 2 CARDS PER ROW */
@media(max-width: 1080px) {
    .students-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section3 h1 {
        font-size: 32px;
    }
    
    .section3 .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .stats {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .stat-box {
        min-width: 45%;
        padding: 15px 10px;
        margin-bottom: 10px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .stat-box p {
        font-size: 14px;
    }
    
    .student-card {
        padding: 15px 10px;
    }
    
    .student-img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .student-card h3 {
        font-size: 16px;
    }
    
    .student-card p {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    .student-desc {
        font-size: 12px;
    }
    
    .controls {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Very small mobile screens */
@media(max-width: 480px) {
    .students-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .section3 {
        padding: 40px 15px;
    }
    
    .stat-box {
        min-width: 48%;
        padding: 12px 8px;
    }
    
    .stat-box h3 {
        font-size: 24px;
    }
    
    .student-card {
        padding: 12px 8px;
    }
    
    .student-img {
        width: 70px;
        height: 70px;
    }
}

/* Animation for new cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.student-card.new {
    animation: fadeInUp 0.5s ease forwards;
}

/* ================= IMPACT SECTION ================= */
.ourimpact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.impact-content {
    flex: 1;
    min-width: 300px;
}

.impact-image {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight {
    color: #3a86ff;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(58, 134, 255, 0.2);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 500px;
}

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

.stat-box {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stat-box h3 {
    font-size: 20px;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3a86ff, #6baaff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-title {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a365d;
    display: inline-block;
    margin-right: 5px;
}

.percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.stat-desc {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 5px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    padding: 40px 30px 30px;
    color: white;
}

.overlay-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design for Impact Section */
@media (max-width: 992px) {
    .impact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .impact-content, .impact-image {
        width: 100%;
    }
    
    .stats-container {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .image-frame img {
        height: 400px;
    }
}

/* ================= SECTION 5 ================= */
.section5 {
    width: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    margin: 40px auto;
    max-width: 1200px;
}

.section5 h1 {
    background: linear-gradient(135deg, #a4d1ff00, #ecf3ff00);
    color: rgb(1, 187, 234);
    text-align: center;
    padding: 30px 20px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.section5 .container {
    display: flex;
    min-height: 650px;
    max-height: 80vh;
}

.image-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.2), rgba(44, 62, 80, 0.05));
    z-index: 1;
}

.form-container {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background-color: #fff;
    position: relative;
}

.form-title {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.form-description {
    color: #5a6c7d;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section5 .enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section5 .form-row {
    display: flex;
    gap: 20px;
}

.section5 .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section5 .form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.section5 .form-group label i {
    color: #3498db;
    width: 16px;
    text-align: center;
}

.section5 .form-group input,
.section5 .form-group select,
.section5 .form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #333;
}

.section5 .form-group input:focus,
.section5 .form-group select:focus,
.section5 .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background-color: white;
}

.section5 .form-group input::placeholder,
.section5 .form-group textarea::placeholder {
    color: #94a3b8;
}

.section5 .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.section5 .form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.section5 .submit-btn {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.section5 .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #27ae60);
}

.section5 .submit-btn:active {
    transform: translateY(0);
}

.success-message {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

/* Responsive adjustments for Section 5 */
@media (max-width: 992px) {
    .section5 .container {
        flex-direction: column;
        max-height: none;
    }
    
    .image-container {
        height: 300px;
    }
    
    .form-container {
        overflow-y: visible;
    }
}

@media (max-width: 576px) {
    .section5 .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .section5 h1 {
        font-size: 2rem;
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.7rem;
    }
}

/* Custom scrollbar for form container */
.form-container::-webkit-scrollbar {
    width: 8px;
}

.form-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.form-container::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.form-container::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* ================= SECTION 6 ================= */
.section6 {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    position: relative;
}

.section6 h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section6 h1:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

/* Logos Container */
.logos-container {
    margin: 60px auto 40px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Logo Row Styling */
.logo-row {
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

/* Logo Track - Infinite Scroll Container */
.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    padding: 15px 0;
}

.logo-track-right {
    animation: scrollRight 25s linear infinite;
}

/* Logo Item Styling */
.logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.logo-item:hover:before {
    left: 100%;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    this.style.zIndex = '10';
}

.logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Animation for infinite scroll */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* CTA Container */
.cta-container {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.thinking-text {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.thinking-text h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.thinking-text p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.next-text {
    text-align: center;
    margin: 0 20px;
}

.next-text h3 {
    color: #3498db;
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.next-text p {
    color: #2ecc71;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Register Button */
.register-btn {
    background: linear-gradient(to right, #3498db, #2ecc71);
    color: white;
    border: none;
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    min-width: 180px;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(to right, #2980b9, #27ae60);
}

.register-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Section 6 */
@media (max-width: 1080px) {
    .section6 {
        padding: 50px 15px;
    }
    
    .section6 h1 {
        font-size: 2.2rem;
    }
    
    .logo-item {
        width: 150px;
        height: 100px;
        margin: 0 15px;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .thinking-text {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .next-text {
        margin: 0 0 25px 0;
    }
    
    .register-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 130px;
        height: 90px;
        margin: 0 10px;
    }
    
    .logo-track {
        animation-duration: 20s;
    }
    
    .logo-track-right {
        animation-duration: 18s;
    }
    
    .section6 h1 {
        font-size: 1.8rem;
    }
}
/* ================= FOOTER ================= */
.main-footer {
  background-color: rgb(46, 46, 46);
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

/* Top animated line */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #22c55e, #0ea5e9);
  background-size: 300% 100%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= FOOTER GRID ================= */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Column */
.footer-column {
  padding: 1rem;
}

/* ================= LOGO ================= */
.footer-logo img {
  max-width: 200px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.company-description {
  color: #e5e7eb;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ================= SOCIAL ================= */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
}

/* ================= HEADINGS ================= */
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #38bdf8;
}

/* ================= LINKS ================= */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

/* ================= CONTACT ================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item i {
  color: #38bdf8;
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-item p,
.contact-item p a {
  color: #ffffff;
  margin: 0;
  text-decoration: none;
}

.contact-item p a:hover {
  color: #38bdf8;
}

/* =================================================
   NEWSLETTER (STABLE – NO JUMPING)
================================================= */
.newsletter-box {
  grid-column: 1 / -1;            /* FULL WIDTH in footer */
  background: linear-gradient(135deg, #2a3cff, #1b1f6b);
  border-radius: 18px;
  padding: 32px;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Newsletter Text */
.newsletter-text h3 {
  color: #ffffff;
  font-size: 26px;
  margin: 0 0 6px;
}

.newsletter-text p {
  color: #d6dcff;
  font-size: 15px;
  margin: 0;
  max-width: 480px;
}

/* ================= CF7 RESET ================= */
.newsletter-box .wpcf7 form,
.newsletter-box .wpcf7 p,
.newsletter-box .wpcf7 span {
  margin: 0;
  padding: 0;
}

/* ================= FORM ================= */
.newsletter-box .wpcf7 form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.newsletter-box input[type="email"] {
  height: 50px;
  padding: 0 16px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
  min-width: 220px;
}

.newsletter-box .wpcf7-submit {
  height: 50px;
  padding: 0 26px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ff8a00, #ff3d00);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

/* Success message */
.newsletter-box .wpcf7-response-output {
  margin-top: 12px;
  background: #16a34a;
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .newsletter-box {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .newsletter-box {
    padding: 24px 18px;
  }

  .newsletter-box .wpcf7 form {
    flex-direction: row; /* input + button SAME LINE */
  }

  .newsletter-box input[type="email"] {
    min-width: 0;
  }
}
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* ================= HEADER STYLES ================= */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 2000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 5%;
            background: linear-gradient(90deg, #78d0ff, #04a3ec, #4fc3f7, #02a9f7);
            box-shadow: 0 4px 20px rgba(2, 136, 209, 0.25);
        }

        .logo img {
            height: 50px;
            filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
            background-color: rgba(255, 255, 255, 0.668);
            padding: 5px 13px;
            border-radius: 5px;
            border: 1.5px solid white;
            box-shadow: inset 5px 50px 5px rgba(255, 255, 255, 0.663);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 14px;
            border-radius: 8px;
            transition: 0.3s;
            position: relative;
            z-index: 2001;
        }

        .nav-links a:hover {
            color: #0077ff;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(255, 255, 255, 0.411);
            transform: translateY(-2px);
        }

        /* ================= DROPDOWN ================= */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dropdown-toggle i {
            font-size: 12px;
            transition: 0.3s;
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 900px;
            padding: 25px;
            border-radius: 12px;
            border-top: 4px solid #03a9f4;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            animation: fadeIn 0.3s ease;
            z-index: 1999;
        }

        .dropdown:hover .dropdown-menu {
            display: grid;
        }

        .dropdown-menu.single {
            min-width: 300px;
            grid-template-columns: 1fr;
        }

        .dropdown-column h3 {
            color: #0288d1;
            margin-bottom: 12px;
            border-bottom: 2px solid #e3f2fd;
            padding-bottom: 8px;
        }

        .dropdown-column a {
            display: block;
            padding: 8px 12px;
            margin: 4px 0;
            border-radius: 6px;
            color: #333;
            transition: 0.3s;
            text-decoration: none;
        }

        .dropdown-column a i {
            color: #03a9f4;
            margin-right: 8px;
        }

        .dropdown-column a:hover {
            background: #e3f2fd;
            color: #0288d1;
            padding-left: 18px;
        }

        /* ================= HEADER BUTTONS ================= */
        .header-buttons {
            display: flex;
            gap: 12px;
            position: relative;
            z-index: 2001;
        }

        .btn {
            padding: 10px 26px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            border: none;
            position: relative;
            z-index: 2002;
        }

        .outline-btn {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .outline-btn:hover {
            background: #fff;
            color: #0288d1;
        }

        .solid-btn {
            background: #fff;
            color: #0288d1;
        }

        .solid-btn:hover {
            background: #f0f9ff;
        }

        /* ================= MOBILE MENU ================= */
        .menu-toggle {
            display: none;
            background: transparent !important;
            border: none;
            color: rgb(255, 255, 255) !important;
            font-size: 24px;
            cursor: pointer;
            z-index: 2003;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100vh;
            background: linear-gradient(135deg, #0288d1, #04a3ec);
            z-index: 2000;
            padding: 20px;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .sidebar-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .close-sidebar {
            background-color: #0028aa !important;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .mobile-nav-links a i:first-child {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-nav-links a.active,
        .mobile-nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-left: 3px solid white;
            padding-left: 20px;
        }

        .mobile-dropdown {
            margin-bottom: 10px;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            color: white;
            text-align: left;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .mobile-dropdown-toggle i:first-child {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-dropdown-toggle.active {
            background: rgba(255, 255, 255, 0.2);
            border-left: 3px solid white;
        }

        .mobile-dropdown-toggle.active i:last-child {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            margin-left: 15px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding-left: 10px;
        }

        .mobile-dropdown-menu.active {
            max-height: 1000px;
        }

        .mobile-dropdown-menu h3 {
            color: white;
            margin: 15px 0 10px 0;
            font-size: 14px;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .mobile-dropdown-menu a i {
            margin-right: 10px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .mobile-dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            border-left: 3px solid rgba(255, 255, 255, 0.7);
            padding-left: 20px;
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mobile-buttons .btn {
            width: 100%;
            padding: 15px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .mobile-outline-btn {
            background: transparent;
            color: #fff;
            border: 2px solid #fff !important;
        }

        .mobile-outline-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-solid-btn {
            background: #fff;
            color: #0288d1;
            border: none !important;
        }

        .mobile-solid-btn:hover {
            background: #f0f9ff;
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ================= COURSE HERO ================= */
        .course-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 5% 40px;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        a{
           text-decoration: none;
        }

        .course-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url("https://i.pinimg.com/736x/b1/49/32/b1493265bee651ff035128c75db88c0c.jpg") center/cover no-repeat;
            filter: blur(4px);
            transform: scale(1.1);
            z-index: 1;
        }

        .course-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgb(0, 76, 255);
            z-index: 2;
        }

        .course-hero > * {
            position: relative;
            z-index: 3;
        }

        .course-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            min-height: 100px;
        }

        .typewriter-container {
            display: inline-block;
            
        }

        .typewriter-text {
            font-size: 3.8rem;
            font-weight: 700;
            color: #ffffff;
            border-right: 3px solid #4fc3f7;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            
        }

        .course-tagline {
            font-size: 1.2rem;
            color: #ffffff;
            margin: 20px auto 30px;
            max-width: 800px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.174);
            border-radius: 12px;
            backdrop-filter: blur(5px);
            min-width: 140px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-text {
            font-size: 0.95rem;
            color: #ffffff;
            margin-top: 5px;
        }

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

        .hero-btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            border: none;
        }

        .hero-btn.primary {
            background: linear-gradient(135deg, #ff4081, #f50057);
            color: white;
        }

        .hero-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
        }

        .hero-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* ================= TOOLS SECTION ================= */
        .tools-section {
            padding: 50px 5%;
            background: white;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #04c9ff, #0084ff);
            border-radius: 2px;
        }

        .tools-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .tools-track {
            display: flex;
            gap: 30px;
            width: max-content;
            padding: 20px 0;
        }

        .tools-track.left-to-right {
            animation: scrollLeftToRight 40s linear infinite;
        }

        .tools-track.right-to-left {
            animation: scrollRightToLeft 35s linear infinite;
        }

        .tool-item {
            flex: 0 0 auto;
            width: 180px;
            background: #f8fafc;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .tool-item:hover {
            transform: translateY(-8px);
            border-color: #4fc3f7;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .tool-icon {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tool-item h3 {
            color: #1a237e;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .tool-item p {
            color: #546e7a;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        @keyframes scrollLeftToRight {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRightToLeft {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* ================= COURSE OVERVIEW ================= */
        .course-overview {
            padding: 60px 5%;
            background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .overview-text h3 {
            font-size: 1.6rem;
            color: #1a237e;
            margin-bottom: 20px;
        }

        .overview-text p {
            color: #546e7a;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .overview-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .feature-item i {
            color: #ff4081;
            font-size: 1.1rem;
        }

        .overview-image {
            text-align: center;
        }

        .overview-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* ================= CURRICULUM SECTION ================= */
        .curriculum-section {
            padding: 60px 5%;
            background: #00aeff;
        }

        .curriculum-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 10px 24px;
            background: white;
            border: 2px solid #7b1fa2;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            color: #7b1fa2;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgb(162, 31, 31);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #7b1fa2, #9c27b0);
            color: white;
            border-color: #7b1fa2;
        }

        .tab-content {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .module-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }

        .module-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            border-left: 4px solid #7b1fa2;
        }

        .module-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .module-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .module-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #7b1fa2, #9c27b0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .module-card h3 {
            color: #1a237e;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .module-topics {
            list-style: none;
        }

        .module-topics li {
            padding: 7px 0;
            border-bottom: 1px solid #eee;
            color: #546e7a;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .module-topics li:last-child {
            border-bottom: none;
        }

        .module-topics li i {
            color: #7b1fa2;
            font-size: 0.7rem;
        }

        /* ================= CAREER OUTCOMES ================= */
        .career-outcomes {
            padding: 60px 5%;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }

        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .outcome-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #ff4081;
        }

        .outcome-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .outcome-icon {
            color: #ff4081;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .outcome-card h3 {
            color: #1a237e;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .outcome-card p {
            color: #546e7a;
            line-height: 1.6;
            font-size: 0.95rem;
        }

      /* ================= INSTRUCTORS SECTION ================= */
.instructors-section {
    padding: 40px 5%;
    background: #ffffff;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* CARD */
.instructor-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.instructor-img {
    width: 100%;
    height: 240px;   /* 🔥 HEIGHT KAM KI */
    object-fit: cover;
}

/* INFO */
.instructor-info {
    padding: 15px;
    text-align: center;
}

.instructor-info h3 {
    color: #1a237e;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.instructor-info .designation {
    color: #ff4081;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.instructor-info p {
    color: #546e7a;
    line-height: 1.4;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

/* EXPERIENCE */
.instructor-exp {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.exp-item {
    text-align: center;
}

.exp-number {
    font-size: 1rem;
    font-weight: 700;
    color: #1a237e;
}

.exp-text {
    font-size: 0.75rem;
    color: #607d8b;
}


        /* ================= END FORM SECTION ================= */
        .end-form-section {
            padding: 60px 5%;
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
        }

        .end-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .end-form-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .end-form-title h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .end-form-title p {
            color: #bbdefb;
            font-size: 1rem;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #4fc3f7;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        select.form-input {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #ff4081, #f50057);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
        }

        /* ================= MODAL POPUPS ================= */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

