:root {
    --primary: #0e76bc;
    --secondary: #1e90ff;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #17a2b8;
    --text: #333;
    --light-gray: #e9ecef;
    --warning: #ffc107;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #495057;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-background.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ACCA 2027 Section - NEW */
.acca2027 {
    padding: 80px 0;
    background-color: white;
}

.acca2027-content {
    max-width: 1200px;
    margin: 0 auto;
}

.update-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(14, 118, 188, 0.3);
}

.update-banner i {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.update-banner h3 {
    font-size: 2rem;
    margin: 0;
}

.update-details {
    background-color: white;
}

.update-intro {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary);
}

.update-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.what-changes {
    margin-bottom: 40px;
}

.what-changes h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.change-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.change-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.change-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.change-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.change-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.impact-section {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid var(--warning);
}

.impact-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-list i {
    color: var(--success);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
}

.cva-commitment {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.cva-commitment h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.commitment-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.action-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.action-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 10px;
}

.stay-informed {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.stay-informed h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: white;
}

.course-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.course-card p {
    margin-bottom: 20px;
}

/* Faculty Section */
.faculty {
    padding: 80px 0;
    background-color: var(--light);
}

.faculty-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
}

.faculty-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    margin-bottom: 30px;
    text-align: center;
}

.faculty-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 5px solid var(--light);
}

.faculty-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.faculty-member p {
    font-style: italic;
    margin-bottom: 5px;
    color: var(--accent);
}

.faculty-member .bio {
    padding: 0 20px 20px;
    font-size: 0.9rem;
}

/* Seminars Section - NEW */
.seminars {
    padding: 80px 0;
    background-color: white;
}

.seminars-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text);
}

.seminars-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seminar-services, .venue-rental, .seminar-packages, .seminar-booking {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.seminar-services h3, .venue-rental h3, .seminar-packages h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.seminar-services h3 i, .venue-rental h3 i, .seminar-packages h3 i {
    margin-right: 15px;
}

.seminar-topics {
    margin-top: 30px;
}

.seminar-topics h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.topic-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.topic-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.topic-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.custom-seminars {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid var(--primary);
}

.custom-seminars h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.venue-features {
    margin-top: 30px;
}

.venue-features h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.features-list li {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-right: 10px;
}

.venue-options {
    margin-top: 30px;
}

.venue-options h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.rental-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.rental-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary);
}

.rental-card h5 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.package-option {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.package-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.package-option i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.package-option h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.seminar-booking {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.seminar-booking h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.seminar-booking p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.booking-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.booking-note i {
    margin-right: 10px;
}

/* Admissions Section */
.admissions {
    padding: 80px 0;
    background-color: var(--light);
}

.admissions-content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.requirements {
    flex: 1;
    padding-right: 30px;
}

.requirements h3, .fees h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.requirements ul {
    list-style-type: none;
}

.requirements ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.requirements ul li:before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.fees {
    flex: 1;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th, .fee-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.fee-table th {
    background-color: var(--primary);
    color: white;
    text-align: left;
}

.fee-table tr:hover {
    background-color: var(--light);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    padding-right: 30px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-form {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .about-text, .about-image {
        flex: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .course-card {
        width: 100%;
    }
    
    .faculty-member {
        width: calc(50% - 15px);
    }
    
    .change-grid, .topics-grid, .commitment-actions, .features-list, 
    .rental-cards, .package-grid {
        grid-template-columns: 1fr;
    }
    
    .admissions-content, .contact-content {
        flex-direction: column;
    }
    
    .requirements, .fees, .contact-info, .contact-form {
        flex: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .info-buttons, .booking-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .faculty-member {
        width: 100%;
    }
}

/* ============================================
   Student Support Services Section
   ============================================ */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--light-gray);
}

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

.service-card.featured-service {
    background-color: white;
    border-top: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(14, 118, 188, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ============================================
   Queries & Feedback Enhancements
   ============================================ */
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    background-color: white;
    font-size: 1rem;
    color: var(--text);
}

.response-promise {
    margin-top: 30px;
    background-color: white;
    border-left: 4px solid var(--accent);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.response-promise h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.response-promise i {
    margin-right: 8px;
}

.form-status {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    min-height: 1.2em;
}

@media screen and (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}
