:root {
    /* NEW THEME: MODERN VIOLET / PURPLE (Matches your image) */
    --primary: #7C3AED;       /* Violet 500 - Main Brand Color */
    --secondary: #7c3aed;     /* Violet 600 - Darker/Hover Color */
    --accent: #dd56f8;        /* Sky Blue - Complementary Accent */
    
    /* Neutrals */
    --dark-text: #1e293b;     /* Slate 800 */
    --light-text: #64748b;    /* Slate 500 */
    --white-text: #ffffff;
    
    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: #f5f3ff;      /* Very Light Violet Tint for sections */
    
    /* UI Elements */
    --border: #e2e8f0;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px -10px rgba(139, 92, 246, 0.25); /* Purple Glow */
}

* { font-family: 'Outfit', sans-serif; }
body { text-align: left; }
.text-content h2 {
    margin-bottom: 20px;   /* Increase space below heading */
}

.text-content p {
    margin-bottom: 15px;   /* Space between paragraphs */
}
.testimonial-section {
    padding: 60px 20px;
    background: #f8f6fc;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.purple-line {
    width: 80px;
    height: 4px;
    background: #6a0dad;
    margin: 0 auto 40px;
    border-radius: 10px;
}

/* STATIC FLEX LAYOUT */
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD DESIGN */
.testimonial-card {
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.student-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    /* border: 3px solid #6a0dad; */
}

.student-name {
    font-size: 18px;
    font-weight: 600;
}

.student-designation {
    color: #6a0dad;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
    }
}

/* ================= HERO SECTION (SPLIT) ================= */
.hero-section {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; 
    padding: 120px 20px 80px;
    background: radial-gradient(circle at top, #f0f9ff 0%, #ffffff 70%);
    overflow: hidden;
}

.grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-content { 
    z-index: 10; max-width: 1200px; position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; text-align: left;
}

.hero-text { max-width: 600px; }

.badge-pill {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: #e0e7ff; color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--dark-text); letter-spacing: -2px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.25rem; color: var(--light-text); margin-bottom: 40px; }

.hero-btns { display: flex; gap: 20px; justify-content: flex-start; }
.btn-primary { padding: 14px 35px; background: var(--dark-text); color: white; border-radius: 50px; text-decoration: none; font-weight: 600; transition: transform 0.3s; }
.btn-secondary { padding: 14px 35px; background: white; border: 1px solid var(--border); color: var(--dark-text); border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* Hero Image Module */
.hero-image-module { display: flex; justify-content: center; position: relative; }
.floating-frame {
    width: 100%; max-width: 500px; height: 400px;
    background: white; padding: 15px; border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: 0.5s; border: 1px solid rgba(255,255,255,0.5);
    animation: float 6s ease-in-out infinite;
}
.floating-frame:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.floating-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

@keyframes float {
    0% { transform: translateY(0px) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateY(-5deg); }
    100% { transform: translateY(0px) rotateY(-5deg); }
}

/* ================= SECTIONS & UTILITIES ================= */
.section { padding: 40px 0; }
.bg-offset { background-color: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; letter-spacing: -1px; }
.gradient-line { width: 60px; height: 5px; margin: 0 auto 50px; background: linear-gradient(to right, var(--primary), var(--accent)); border-radius: 10px; }

.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-tag { color: var(--primary); text-transform: uppercase; font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.text-content p { color: var(--light-text); font-size: 1.1rem; margin-bottom: 30px; }

.stats-row { display: flex; gap: 50px; padding-top: 20px; border-top: 1px solid var(--border); }
.stat-item h3 { font-size: 2.5rem; color: var(--dark-text); line-height: 1; margin-bottom: 5px; }
.stat-item p { color: var(--light-text); font-size: 0.9rem; font-weight: 500; }

.clean-frame { padding: 15px; background: white; border-radius: 24px; box-shadow: var(--shadow); transform: rotate(-2deg); transition: 0.3s; }
.clean-frame:hover { transform: rotate(0deg); }
.clean-frame img { width: 100%; border-radius: 16px; display: block; }

/* ================= CARDS & GRIDS ================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } /* Reduced gap for 2x2 grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.clean-card { background: white; border: 1px solid var(--border); padding: 40px 30px; border-radius: 20px; text-align: center; transition: 0.3s; }
.clean-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: transparent; }

.icon-box { font-size: 2.5rem; color: var(--primary); margin: 0 auto 25px; background: #eef2ff; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.clean-card h3 { margin-bottom: 15px; font-size: 1.25rem; }
.clean-card p { color: var(--light-text); }

/* Review User Meta (Student Voices) */
.user-meta { margin-top: 25px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.user-meta h5 { color: var(--primary); font-size: 1.1rem; margin-bottom: 2px; font-weight: 700; }
.user-meta span { font-size: 0.85rem; color: var(--light-text); font-weight: 600; }

.wide-card { display: flex; align-items: center; gap: 25px; padding: 35px; background: white; border: 1px solid var(--border); border-radius: 20px; transition: 0.3s; }
.wide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon { font-size: 3rem; color: #f59e0b; }
.card-content h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card-content p { color: var(--light-text); font-size: 0.95rem; line-height: 1.5; }

/* ================= FACULTY (MODERN ICONS) ================= */
.profile-card {
    background: white; padding: 30px 20px; border-radius: 16px; text-align: center;
    border: 1px solid var(--border); transition: 0.3s;
}
.profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary); }

.profile-icon-box {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg, #eef2ff, #f0f9ff); 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    
    /* Modern Gradient Icon */
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    box-shadow: 0 10px 25px -10px rgba(99, 102, 241, 0.4);
    transition: 0.4s ease;
}

.profile-card:hover .profile-icon-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: white;
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.6);
}

.profile-card h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--dark-text); font-weight: 700; }
.role { font-size: 0.9rem; color: var(--primary); font-weight: 700; margin-bottom: 5px; letter-spacing: 0.5px; }
.qual { font-size: 0.85rem; color: var(--light-text); font-style: italic; }

/* ================= ACTIVITIES & SYLLABUS ================= */
.act-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.act-card:hover { transform: translateY(-5px); }
.act-card img { width: 100%; height: 220px; object-fit: cover; }
.act-details { padding: 25px; }
.act-details h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary); }
.act-details p { color: var(--light-text); font-size: 0.9rem; }

.syllabus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* COMPACT ROADMAP CARDS */
.roadmap-card { 
    background: white; 
    border-top: 5px solid var(--primary); 
    padding: 20px; /* Reduced padding */
    border-radius: 12px; 
    box-shadow: var(--shadow); 
    position: relative; 
}

.year-badge { 
    position: absolute; 
    top: 15px; /* Adjusted position */
    right: 15px; /* Adjusted position */
    background: #f1f5f9; 
    color: var(--light-text); 
    padding: 3px 8px; /* Reduced padding */
    border-radius: 6px; 
    font-size: 0.7rem; /* Reduced font size */
    font-weight: 700; 
}

.roadmap-card h4 { 
    margin-top: 0px; /* Removed top margin */
    margin-bottom: 15px; /* Reduced bottom margin */
    font-size: 1.2rem; /* Reduced font size */
}

.roadmap-card ul { list-style: none; padding: 0; }

.roadmap-card li { 
    margin-bottom: 8px; /* Reduced margin */
    display: flex; 
    align-items: center; 
    gap: 8px; /* Reduced gap */
    color: var(--light-text); 
    font-size: 0.85rem; /* Reduced font size */
}

.roadmap-card li i { 
    color: var(--secondary); 
    font-size: 1rem; /* Reduced icon size */
}



/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-btns { justify-content: center; }
    .floating-frame { height: 300px; transform: none; animation: none; }
    
    .layout-split, .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
    
    .syllabus-grid { display: flex; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; gap: 20px; }
    .roadmap-card { min-width: 280px; scroll-snap-align: center; }
    
    .stats-row { flex-wrap: wrap; gap: 30px; }
    .stat-item { flex: 1 1 40%; }
}

/* Animations */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }
.fade-in { animation: fadeIn 1s forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }


