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

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.alert {
    padding: 15px 40px 15px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    position: relative;
}

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

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

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.close-alert {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-alert:hover {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

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

.btn-outline:hover {
    background: white;
    color: #1a2a4a;
}

.btn-secondary {
    background: #1a2a4a;
    color: white;
}

.btn-secondary:hover {
    background: #ff6b35;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: white;
}

.section-tag {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    margin: 0 auto;
    border-radius: 2px;
}

.underline.left {
    margin: 0;
    margin-bottom: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

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

.logo i {
    font-size: 32px;
    color: #ff6b35;
}

.navbar.scrolled .logo {
    color: #1a2a4a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: #333;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
    background: #1a2a4a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2a4a 0%, #2d4a7c 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ff6b35;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
}

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

.stat-item h3 {
    font-size: 36px;
    color: #ff6b35;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.graduation-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.graduation-icon i {
    font-size: 50px;
    color: white;
}

.image-card h3 {
    color: #1a2a4a;
    margin-bottom: 5px;
}

.image-card p {
    color: #666;
}

/* Popular Programs */
.popular-programs {
    padding: 100px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon i {
    font-size: 30px;
    color: #ff6b35;
}

.program-card h4 {
    color: #1a2a4a;
    margin-bottom: 10px;
}

.program-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.learn-more {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-img-wrapper {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-badge i {
    font-size: 40px;
    color: #ff6b35;
    display: block;
    margin-bottom: 10px;
}

.about-badge span {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a4a;
}

.about-text h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-stat i {
    font-size: 40px;
    color: #ff6b35;
}

.about-stat h4 {
    font-size: 24px;
    color: #1a2a4a;
}

.about-stat p {
    font-size: 14px;
    margin: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.feature-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-img i {
    font-size: 40px;
    color: white;
}

.feature-card h4 {
    color: #1a2a4a;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

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

.classroom-img {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #1a2a4a, #2d4a7c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classroom-img i {
    color: rgba(255, 255, 255, 0.3);
}

.why-text h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.why-points {
    margin-top: 30px;
}

.why-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-point i {
    font-size: 24px;
    color: #ff6b35;
    margin-top: 5px;
}

.why-point h4 {
    color: #1a2a4a;
    margin-bottom: 5px;
}

.why-point p {
    color: #666;
    font-size: 14px;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a4a, #2d4a7c);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ff6b35;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.course-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 25px 20px;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a2a4a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.course-header h4 {
    color: white;
    font-size: 16px;
}

.course-body {
    padding: 25px 20px;
}

.course-body p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.course-body i {
    color: #ff6b35;
    width: 20px;
}

.course-card .btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
}

/* Enquiry Section */
.enquiry {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.enquiry-text h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.enquiry-text p {
    color: #666;
    margin-bottom: 30px;
}

.enquiry-features {
    display: flex;
    gap: 30px;
}

.eq-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eq-feature i {
    font-size: 24px;
    color: #ff6b35;
}

.eq-feature span {
    font-weight: 500;
    color: #1a2a4a;
}

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enquiry-form h3 {
    color: #1a2a4a;
    margin-bottom: 25px;
    font-size: 24px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.enquiry-form .btn {
    width: 100%;
}

/* Facilities Section */
.facilities {
    padding: 100px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.facility-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.facility-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.facility-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.facility-card h4 {
    color: #1a2a4a;
    margin-bottom: 8px;
}

.facility-card p {
    color: #666;
    font-size: 13px;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a4a, #2d4a7c);
}

.success-stories .section-header h2 {
    color: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.story-icon {
    margin-bottom: 15px;
}

.story-icon i {
    font-size: 30px;
    color: #ff6b35;
}

.story-card > p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 20px;
}

.story-author h5 {
    color: #1a2a4a;
    margin-bottom: 3px;
}

.story-author span {
    color: #666;
    font-size: 13px;
}

.story-card.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.featured-badge {
    text-align: center;
    margin-bottom: 20px;
}

.featured-badge i {
    font-size: 50px;
    margin-bottom: 10px;
}

.featured-badge h3 {
    margin-bottom: 5px;
}

.story-card.featured ul {
    padding-left: 0;
}

.story-card.featured li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Principal Message */
.principal-message {
    padding: 100px 0;
    background: #f8f9fa;
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

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

.principal-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.principal-avatar i {
    color: white;
}

.principal-image h4 {
    color: #1a2a4a;
    margin-bottom: 5px;
}

.principal-image p {
    color: #666;
    font-size: 14px;
}

.message-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #ff6b35;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #1a2a4a;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2a4a, #2d4a7c);
    color: white;
    padding: 60px 0 0;
}

.footer-map {
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    color: #ff6b35;
    font-size: 30px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 i {
    color: #ff6b35;
    font-size: 20px;
}

.footer-col h5 {
    color: #ff6b35;
    font-size: 15px;
    margin-bottom: 8px;
    margin-top: 15px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-col ul li:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #ff6b35;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6b35;
}

.office-info {
    margin-top: 15px;
}

.office-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.office-info p i {
    color: #ff6b35;
    margin-top: 3px;
    min-width: 16px;
}

.office-info a {
    color: #ff6b35;
    text-decoration: underline;
}

.office-info a:hover {
    color: white;
}

.phone-list {
    margin: 10px 0;
}

.phone-list p {
    margin-bottom: 8px;
}

.branch-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.quick-links {
    margin-top: 15px;
}

.quick-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links li a i {
    font-size: 10px;
}

.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;
    color: white;
    transition: all 0.3s;
}

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

.mt-4 {
    margin-top: 25px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .about-content,
    .why-content,
    .enquiry-content,
    .contact-content,
    .message-content {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .courses-grid,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: #333 !important;
    }

    .navbar .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .programs-grid,
    .courses-grid,
    .facilities-grid,
    .features-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2,
    .about-text h2,
    .why-text h2,
    .enquiry-text h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .enquiry-features {
        flex-direction: column;
        gap: 15px;
    }

    .program-tabs {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .message-content {
        gap: 30px;
    }

    .disciplines-grid,
    .funding-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

/* PhD Disciplines Section */
.phd-disciplines {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a4a, #2d4a7c);
}

.phd-disciplines .section-header h2 {
    color: white;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.discipline-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.discipline-card i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.discipline-card h4 {
    color: #1a2a4a;
    margin-bottom: 10px;
    font-size: 16px;
}

.discipline-card p {
    color: #666;
    font-size: 13px;
}

/* PhD Process Timeline */
.phd-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.step-content h4 {
    color: #1a2a4a;
    margin-bottom: 8px;
    font-size: 16px;
}

.step-content p {
    color: #666;
    font-size: 13px;
}

/* PhD Funding Section */
.phd-funding {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.funding-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.funding-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.funding-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.funding-icon i {
    font-size: 35px;
    color: white;
}

.funding-card h4 {
    color: #1a2a4a;
    margin-bottom: 15px;
    font-size: 18px;
}

.funding-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.funding-card strong {
    color: #ff6b35;
    font-size: 16px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .disciplines-grid,
    .funding-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .disciplines-grid,
    .funding-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
}
