/* =========================================
   VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    /* Colors */
    --primary-color: #0A192F; /* Deep Navy Blue for prestige */
    --primary-light: #112240;
    --accent-color: #FDB827; /* GIFTT Yellow/Orange */
    --accent-hover: #E5A31C;
    
    --text-main: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    
    --bg-light: #FFFFFF;
    --bg-grey: #F8F9FA;
    --bg-dark: #0A192F;
    
    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-color) !important; }
.text-light { color: var(--text-white) !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.small-text { font-size: 0.85rem; }

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.align-center { align-items: center; }

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 184, 39, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-link {
    color: var(--text-white);
    font-weight: 500;
    margin-right: 1.5rem;
    border-bottom: 1px solid transparent;
}
.text-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Section Defaults */
section {
    padding: 5rem 0;
}
.section-light { background-color: var(--bg-light); }
.section-grey { background-color: var(--bg-grey); }
.section-dark { 
    background-color: var(--bg-dark); 
    color: var(--text-white);
}
.section-dark h2, .section-dark h3 {
    color: var(--text-white);
}

.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   COMPONENTS
========================================= */

/* Navbar */
.navbar {
    background-color: var(--bg-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 800;
}

.nav-links a {
    color: var(--primary-color);
    margin: 0 1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 900px) {
    .nav-links { display: none; }
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-text h1 {
    color: var(--text-white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-secondary-cta {
    font-size: 0.9rem;
}

/* Form Card */
.form-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--text-main);
}

.form-card h3 {
    margin-bottom: 0.5rem;
}

.form-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary-light);
    padding: 2rem 0;
    border-bottom: 4px solid var(--accent-color);
}

.trust-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .trust-content {
        justify-content: center;
        gap: 1.5rem;
    }
    .trust-item {
        flex: 1 1 40%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .trust-item img, .trust-item i {
        height: 40px !important;
        font-size: 2rem;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 184, 39, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* Transformation Pathway */
.transformation-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.trans-step {
    flex: 1;
}

.trans-box {
    background: white;
    color: var(--text-main);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.trans-box h4 {
    border-bottom: 2px solid var(--bg-grey);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.trans-box ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.trans-box.current i { color: #e74c3c; }
.trans-box.program i { color: var(--primary-color); }
.trans-box.future i { color: var(--accent-color); }

.trans-box.future {
    background: var(--primary-light);
    color: white;
}
.trans-box.future h4 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.1);
}

.trans-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}
.mobile-only { display: none; }

@media (max-width: 768px) {
    .transformation-path { flex-direction: column; }
    .trans-box { width: 100%; }
    .trans-arrow .fa-chevron-right { display: none; }
    .mobile-only { display: block; margin: 1rem 0; }
}

/* Career Roadmap */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-dot.accent {
    background: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.timeline-item.highlight .timeline-content {
    border-left: 4px solid var(--accent-color);
}

.timeline-content h3 { margin-bottom: 0.25rem; font-size: 1.25rem; }

/* Faculty & Profiles */
.profile-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.profile-card:hover { transform: translateY(-5px); }

.profile-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-info {
    padding: 1.5rem;
    text-align: center;
}

.profile-info h3 { margin-bottom: 0.25rem; }
.profile-info .role { color: var(--primary-color); font-weight: 500; font-size: 0.9rem; }
.profile-info .exp { color: var(--text-light); font-size: 0.85rem; margin-bottom: 1rem; }
.linkedin-link {
    display: inline-block;
    color: #0077b5;
    font-weight: 500;
}

/* Features/Career Support */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

/* Salary & Employers */
.salary-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.salary-list li:last-child { border: none; }
.salary-list li span:last-child { font-weight: 600; color: var(--accent-color); }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.emp-logo {
    background: white;
    color: var(--primary-color);
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}
.quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(253, 184, 39, 0.2);
}
.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.author h4 { margin-bottom: 0; }
.author span { color: var(--text-light); font-size: 0.9rem; }
@media (max-width: 768px) { .testimonial-slider { grid-template-columns: 1fr; } }

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.compare-table th, .compare-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--bg-grey);
}
.compare-table th:first-child, .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
}
.compare-table th {
    background: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
}
.compare-table .highlight-col {
    background: rgba(253, 184, 39, 0.1);
    font-weight: 700;
}
.compare-table th.highlight-col {
    background: var(--accent-color);
    color: var(--primary-color);
}
.text-success { color: #27ae60; }
.text-danger { color: #e74c3c; opacity: 0.5; }

/* Pricing */
.pricing-card {
    background: white;
    color: var(--text-main);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
}
.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.price {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0 0.5rem;
}
.currency { font-size: 1.5rem; font-weight: 600; margin-top: 0.5rem; }
.amount { font-size: 4rem; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.emi-text { color: #27ae60; font-weight: 600; margin-bottom: 2rem; border-bottom: 1px solid #eee; padding-bottom: 1.5rem; }
.bonus-list li { margin-bottom: 0.75rem; }
.bonus-list i { width: 20px; text-align: center; margin-right: 0.5rem; }

/* Countdown */
.countdown {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.cd-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}
.cd-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-color);
}
.cd-item small { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }

/* FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h3, .footer-col h4 { color: var(--primary-color); margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-main); transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--accent-color); }
.footer-col ul li i { width: 25px; color: var(--accent-color); }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-grey);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
}
.social-links a:hover {
    background: var(--accent-color);
    color: var(--bg-light);
}
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}
