/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #103c61;
    --secondary-color: #ff6f00;
    --accent-color: #00bcd4;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --gradient-primary: linear-gradient(135deg, #103c61 0%, #1a5080 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background-color: #103c61;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar-right a {
    margin-left: 15px;
    color: var(--white);
    font-size: 16px;
}

.top-bar-right a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: var(--white);
    border: none;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-dark {
    background: #1f2937;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.btn-dark:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* New Hero Section */
.hero-new {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content-new {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-new {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle-new {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: var(--white);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-we-are-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.who-we-are-content {
    padding: 0 20px;
}

.who-we-are-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.who-we-are-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.who-we-are-content .btn {
    margin-top: 20px;
}

/* Identity, Vision, Mission Section */
.identity-vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 50%, #8b5cf6 100%);
}

.ivm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ivm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    color: var(--white);
    transition: all 0.3s ease;
}

.ivm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ivm-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.ivm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Why RounaU Section */
.why-rounau {
    padding: 100px 0;
    background: var(--white);
}

.why-rounau-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.why-rounau-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.why-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.why-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 24px;
    color: #7c3aed;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.why-cta {
    text-align: center;
    margin-top: 50px;
}

/* Faculties and Programmes Section */
.faculties-programmes {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.faculties-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.faculties-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: #1f2937;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.faculties-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.faculties-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.faculty-card-new {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faculty-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.faculty-card-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    min-height: 60px;
}

.faculty-card-new p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 30px;
    min-height: 80px;
}

.faculty-card-new .btn {
    width: auto;
}

/* Academic Excellence Section */
.academic-excellence {
    padding: 100px 0;
    background: #f9fafb;
}

.academic-excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.academic-excellence-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.academic-excellence-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.academic-excellence-content .btn {
    margin-top: 20px;
}

.academic-excellence-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

/* Our Programmes Section */
.our-programmes {
    padding: 100px 0;
    background: #e5e7eb;
}

.programmes-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

/* Programme Tabs */
.programme-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.programme-tab {
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.programme-tab:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.programme-tab.active {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: var(--white);
}

/* Programme Cards Container */
.programme-cards-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.programme-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.programme-nav-btn:hover {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.programme-nav-btn.prev-prog {
    left: 0;
}

.programme-nav-btn.next-prog {
    right: 0;
}

.programme-cards-wrapper {
    overflow: hidden;
}

.programme-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease;
}

.programme-card-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.programme-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.programme-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.programme-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.programme-card-item:hover .programme-card-image img {
    transform: scale(1.1);
}

.programme-card-content {
    padding: 30px;
}

.programme-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.programme-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.programme-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #7c3aed;
}

.programme-meta i {
    font-size: 18px;
}

.programme-meta span {
    font-size: 14px;
    font-weight: 500;
}

.programme-pricing-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-old {
    font-size: 16px;
    color: #fbbf24;
    text-decoration: line-through;
    font-weight: 500;
}

.price-new {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Leadership and Governance Section */
.leadership-governance {
    padding: 100px 0;
    background: #000000;
    color: var(--white);
}

.leadership-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.leader-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.leader-info {
    padding: 25px 20px;
}

.leader-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.leader-info p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section (New Design) */
.faq-new {
    padding: 100px 0;
    background: var(--white);
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.faq-subtitle {
    color: #9ca3af;
    font-weight: 400;
}

.faq-list-new {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item-new {
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}

.faq-item-new:last-child {
    border-bottom: none;
}

.faq-question-new {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    color: #7c3aed;
}

.faq-question-new i {
    font-size: 16px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-question-new i {
    transform: rotate(45deg);
    color: #7c3aed;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item-new.active .faq-answer-new {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer-new p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* CTA Register Section */
.cta-register {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-image {
    flex: 0 0 250px;
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-text .btn {
    min-width: 180px;
}

/* Footer New Design */
.footer-new {
    background: #f9fafb;
    padding: 60px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo-new {
    margin-bottom: 20px;
}

.footer-logo-new img {
    width: 120px;
    height: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.footer-links-section h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section ul li {
    margin-bottom: 12px;
}

.footer-links-section ul li a {
    font-size: 14px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.footer-links-section ul li a:hover {
    color: #7c3aed;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact p i {
    margin-right: 8px;
    color: #7c3aed;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6b46c1;
    transform: translateY(-3px);
}

.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom-new p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 14px;
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #7c3aed;
}

/* Original Hero Section (kept for fallback) */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 188, 212, 0.3) 0%,
        rgba(16, 60, 97, 0.45) 50%,
        rgba(16, 60, 97, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.9;
}

/* Accreditation */
.accreditation {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
}

.accreditation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.accreditation-icon {
    font-size: 48px;
    color: var(--secondary-color);
}

.accreditation h2 {
    font-size: 28px;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-label {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Featured Event */
.featured-event {
    background-color: var(--bg-light);
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 111, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
}

.play-button i {
    color: var(--white);
    font-size: 32px;
    margin-left: 5px;
}

.event-content h2 {
    font-size: 36px;
    color: #103c61;
    margin-bottom: 20px;
}

.event-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    height: 250px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
    text-align: left;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-programme {
    font-size: 14px;
    color: var(--text-light);
}

/* Programmes */
.programmes {
    background-color: var(--bg-light);
    text-align: center;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.programme-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.programme-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programme-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.programme-content {
    padding: 30px;
    text-align: left;
}

.programme-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.programme-pricing {
    margin-bottom: 25px;
}

.pricing-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-original {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

/* MBA Callout */
.mba-callout {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.mba-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mba-content p {
    font-size: 20px;
    margin-bottom: 15px;
}

.mba-session {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px !important;
}

/* FAQ */
.faq {
    text-align: center;
}

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

.contact-method {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-method:hover .contact-icon {
    color: var(--white);
}

.contact-method h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-method a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-method:hover a {
    color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #8ebdab;
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(0, 0, 0, 0.7);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo p {
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-legal {
    text-align: right;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin-left: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        display: none;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left span {
        display: block;
        margin-bottom: 5px;
    }

    .nav-wrapper {
        padding: 10px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 40px;
        width: 40px;
    }

    .logo span,
    .logo {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        width: 100%;
    }

    .nav-actions .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 400px;
        min-height: 400px;
        padding: 60px 0 40px;
    }

    .hero-new {
        height: 450px;
        min-height: 450px;
        padding: 60px 0 40px;
    }

    .hero-title-new {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-subtitle-new {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons-new {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons-new .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .who-we-are {
        padding: 60px 0;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-image img {
        height: 350px;
    }

    .who-we-are-content {
        padding: 0;
    }

    .who-we-are-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .who-we-are-content p {
        font-size: 16px;
    }

    .identity-vision-mission {
        padding: 60px 0;
    }

    .ivm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ivm-card {
        padding: 35px 25px;
    }

    .ivm-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .ivm-card p {
        font-size: 15px;
    }

    .why-rounau {
        padding: 60px 0;
    }

    .why-rounau-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .why-rounau-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }

    .faculties-programmes {
        padding: 60px 0;
    }

    .faculties-header {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .faculties-header h2 {
        font-size: 32px;
    }

    .faculties-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faculty-card-new h3 {
        font-size: 20px;
        min-height: auto;
    }

    .faculty-card-new p {
        font-size: 14px;
        min-height: auto;
    }

    .carousel-controls {
        align-self: flex-end;
    }

    .academic-excellence {
        padding: 60px 0;
    }

    .academic-excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .academic-excellence-image {
        order: -1;
    }

    .academic-excellence-image img {
        height: 350px;
    }

    .academic-excellence-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .academic-excellence-content p {
        font-size: 16px;
    }

    .our-programmes {
        padding: 60px 0;
    }

    .programmes-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .programme-tabs {
        gap: 15px;
        margin-bottom: 40px;
    }

    .programme-tab {
        padding: 12px 25px;
        font-size: 14px;
    }

    .programme-cards-container {
        padding: 0 60px;
    }

    .programme-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programme-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .programme-card-content h3 {
        font-size: 20px;
    }

    .programme-card-content p {
        font-size: 14px;
    }

    .leadership-governance {
        padding: 60px 0;
    }

    .leadership-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .leader-image {
        height: 250px;
    }

    .leader-info h3 {
        font-size: 15px;
    }

    .leader-info p {
        font-size: 12px;
    }

    .faq-new {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-question-new {
        font-size: 16px;
    }

    .faq-answer-new p {
        font-size: 14px;
    }

    .cta-register {
        padding: 60px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-image {
        flex: 0 0 auto;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .footer-content-new {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .event-grid,
    .card-grid,
    .programme-grid,
    .faculty-grid,
    .testimonial-grid,
    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .page-header {
        padding: 80px 0 40px;
        height: 350px;
    }

    .page-header h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        width: 100%;
    }

    .campus-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-new {
        height: 400px;
        min-height: 400px;
    }

    .hero-title-new {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle-new {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .who-we-are {
        padding: 40px 0;
    }

    .who-we-are-content h2 {
        font-size: 28px;
    }

    .who-we-are-content p {
        font-size: 15px;
    }

    .identity-vision-mission {
        padding: 40px 0;
    }

    .ivm-card {
        padding: 30px 20px;
    }

    .ivm-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .ivm-card p {
        font-size: 14px;
    }

    .why-rounau {
        padding: 40px 0;
    }

    .why-rounau-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-card {
        padding: 25px 20px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-icon i {
        font-size: 20px;
    }

    .why-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 13px;
    }

    .why-cta {
        margin-top: 35px;
    }

    .faq-new {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-list-new {
        margin-top: 30px;
    }

    .faq-item-new {
        padding: 20px 0;
    }

    .faq-question-new {
        font-size: 15px;
    }

    .faq-answer-new p {
        font-size: 13px;
    }

    .cta-register {
        padding: 40px 0;
    }

    .cta-content {
        gap: 25px;
    }

    .cta-image {
        flex: 0 0 200px;
    }

    .cta-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-new {
        padding: 40px 0 20px;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo-new img {
        width: 60px;
        height: 60px;
    }

    .footer-links-section h4,
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .faculties-programmes {
        padding: 40px 0;
    }

    .faculties-header h2 {
        font-size: 28px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .faculty-card-new {
        padding: 30px 20px;
    }

    .faculty-card-new h3 {
        font-size: 18px;
    }

    .academic-excellence {
        padding: 40px 0;
    }

    .academic-excellence-content h2 {
        font-size: 28px;
    }

    .academic-excellence-content p {
        font-size: 15px;
    }

    .academic-excellence-image img {
        height: 300px;
    }

    .our-programmes {
        padding: 40px 0;
    }

    .programmes-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .programme-tabs {
        gap: 10px;
        padding: 0 10px;
    }

    .programme-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .programme-cards-container {
        padding: 0 50px;
    }

    .programme-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .programme-card-image {
        height: 180px;
    }

    .programme-card-content {
        padding: 20px;
    }

    .programme-card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .programme-card-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .price-old {
        font-size: 14px;
    }

    .price-new {
        font-size: 18px;
    }

    .leadership-governance {
        padding: 40px 0;
    }

    .leadership-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .leader-image {
        height: 300px;
    }

    .leader-info {
        padding: 20px 15px;
    }

    .leader-info h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .leader-info p {
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-actions .btn {
        padding: 8px 15px;
        font-size: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .card {
        padding: 20px;
    }

    .logo span,
    .logo {
        font-size: 12px;
    }
}

