@charset "UTF-8";

/* Cross-browser reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    padding: 0 clamp(12px, 3vw, 20px);
}

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

.navbar {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.6rem 1.5rem;
    padding: 0.6rem clamp(1rem, 3vw, 2rem);
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nav-brand {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 1.2rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: bold;
    color: #2c3e50;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    gap: 0.4rem;
}

.nav-brand .logo {
    height: 52px;
    height: clamp(40px, 6vw, 65px);
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    display: block;
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: -webkit-flex;
    display: flex;
    list-style: none;
    gap: 1.4rem;
    gap: clamp(0.8rem, 1.5vw, 2rem);
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #008B8B;
}

.nav-icons {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 1rem;
}

.consultation-btn {
    background: #008B8B;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    -webkit-appearance: none;
    appearance: none;
}

.consultation-btn:hover {
    background: #006666;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: -webkit-linear-gradient(135deg, #008B8B, #20B2AA);
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 2rem 2rem;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    margin-top: 90px;
}

/* Page Hero for individual menu pages */
.page-hero {
    background: -webkit-linear-gradient(135deg, #ff6b35, #f7931e);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5rem 0 3rem;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
    margin-top: 90px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content {
    -webkit-flex: 1;
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-size: clamp(1.6rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.cta-btn:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 10rem;
    opacity: 0.3;
}

/* Menu Section */
.menu-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ff6b35;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.menu-item p {
    color: #666;
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b35;
}

.add-to-cart {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #e55a2b;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color: #333;
}

.about-text {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.feature p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color: #333;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 30px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    -webkit-box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 1001;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    -webkit-flex: 1;
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.empty-cart {
    text-align: center;
    color: #666;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #e55a2b;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 0.8rem;
    }

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-image {
        font-size: 5rem;
        margin-top: 2rem;
    }

    .menu-categories {
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-btn.primary,
    .cta-btn.secondary {
        width: 100%;
        text-align: center;
    }

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

    .nav-brand span {
        display: none;
    }
}

/* Research Website Specific Styles */

/* Updated Hero Section */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: #008B8B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    -webkit-appearance: none;
    appearance: none;
}

.cta-btn.primary:hover {
    background: #006666;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #008B8B;
    border: 2px solid #008B8B;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.secondary:hover {
    background: #008B8B;
    color: white;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

/* Services Section */
.services-section {
    padding: 3.5rem 0;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    -webkit-box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #008B8B;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: -webkit-linear-gradient(135deg, #008B8B, #2c3e50);
    background: linear-gradient(135deg, #008B8B, #2c3e50);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-btn {
    background: #008B8B;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
    -webkit-appearance: none;
    appearance: none;
}

.service-btn:hover {
    background: #006666;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Updated About Section with new colors */
.feature i {
    color: #008B8B;
}

/* Credentials Section Styles */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 2rem;
}

.credential-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.credential-icon {
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.credential-icon i {
    font-size: 2rem;
    color: white;
}

.credential-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.credential-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Research Themes Styles */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.theme-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #008B8B;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.theme-icon {
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.theme-icon i {
    font-size: 1.5rem;
    color: white;
}

.theme-card h3 {
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1.1rem;
}

.theme-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item i {
    color: #008B8B;
}

/* Contact Section Enhancement */
.consultation-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.consultation-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.consultation-cta p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.consultation-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
}

.close-modal:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008B8B;
}

.submit-btn {
    width: 100%;
    background: #008B8B;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.submit-btn:hover {
    background: #006666;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Page Hero for Seminars and Courses */
.page-hero {
    background: -webkit-linear-gradient(135deg, #2c3e50, #008B8B);
    background: linear-gradient(135deg, #2c3e50, #008B8B);
    color: white;
    padding: 6rem 0 3rem;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(2rem, 4vw, 4rem);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-size: clamp(1.6rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.05rem;
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    opacity: 0.9;
    padding: 0 1rem;
}

/* Seminars Page Styles */
.seminars-section {
    padding: 3.5rem 0;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.seminars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    gap: clamp(1rem, 2vw, 2rem);
    margin-bottom: 4rem;
}

.seminar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.seminar-card.featured {
    border-color: #f39c12;
}

.seminar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.seminar-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.seminar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008B8B, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.seminar-icon i {
    font-size: 1.5rem;
    color: white;
}

.seminar-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.seminar-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.seminar-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.detail-item i {
    color: #008B8B;
}

.seminar-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.seminar-btn {
    width: 100%;
    background: #008B8B;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seminar-btn:hover {
    background: #006666;
    transform: translateY(-2px);
}

/* Seminar Packages */
.seminar-packages {
    margin: 4rem 0;
}

.seminar-packages h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: linear-gradient(135deg, #008B8B, #2c3e50);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.package-price {
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
}

.savings {
    display: block;
    background: #f39c12;
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.package-btn {
    background: white;
    color: #008B8B;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Upcoming Schedule */
.upcoming-schedule h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.schedule-date {
    background: #008B8B;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.schedule-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.schedule-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.schedule-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.schedule-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.seats-left {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Courses Page Styles */
.courses-section {
    padding: 3.5rem 0;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.courses-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    color: #7f8c8d;
    border: 2px solid #ecf0f1;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: #008B8B;
    color: white;
    border-color: #008B8B;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    gap: clamp(1rem, 2vw, 2rem);
    margin-bottom: 4rem;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.course-card.featured {
    border: 2px solid #f39c12;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-image {
    background: linear-gradient(135deg, #008B8B, #2c3e50);
    padding: 2rem;
    text-align: center;
}

.course-image i {
    font-size: 3rem;
    color: white;
}

.course-content {
    padding: 2rem;
}

.course-level {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.course-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.course-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.course-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    padding: 0;
}

.course-features .feature i {
    color: #008B8B;
    font-size: 1rem;
}

.course-curriculum h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.course-curriculum ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course-curriculum li {
    color: #7f8c8d;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.course-curriculum li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.course-btn {
    width: 100%;
    background: #008B8B;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #006666;
    transform: translateY(-2px);
}

/* Learning Paths */
.learning-paths {
    margin: 4rem 0;
}

.learning-paths h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.path-card {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.path-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.path-courses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.path-courses span {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.path-courses i {
    color: white;
    opacity: 0.7;
}

.path-price {
    margin-bottom: 2rem;
}

.path-btn {
    background: white;
    color: #9b59b6;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.path-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Course Benefits */
.course-benefits {
    background: #f8f9fa;
    padding: 4rem 0;
    border-radius: 20px;
    margin: 2rem 0;
}

.course-benefits h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #008B8B;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

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

    .cta-btn.primary,
    .cta-btn.secondary {
        width: 100%;
        text-align: center;
    }

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

    .seminars-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid,
    .paths-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .consultation-btn span {
        display: none;
    }

    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }

    .path-courses {
        flex-direction: column;
        gap: 0.5rem;
    }

    .path-courses i {
        transform: rotate(90deg);
    }

    .course-features {
        grid-template-columns: 1fr;
    }
}

/* Enrollment Modal Styles */
.enrollment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.enrollment-modal.active {
    display: flex;
}

.enrollment-modal .modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.enrollment-modal .modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    background: -webkit-linear-gradient(135deg, #008B8B, #20B2AA);
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    border-radius: 15px 15px 0 0;
}

.enrollment-modal .modal-header h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
}

.enrollment-modal .close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.enrollment-modal .close-modal:hover {
    opacity: 1;
}

.enrollment-modal .modal-body {
    padding: 2rem;
}

.enrollment-modal .form-group {
    margin-bottom: 1.5rem;
}

.enrollment-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.enrollment-modal .form-group input,
.enrollment-modal .form-group select,
.enrollment-modal .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
}

.enrollment-modal .form-group input:focus,
.enrollment-modal .form-group select:focus,
.enrollment-modal .form-group textarea:focus {
    outline: none;
    border-color: #008B8B;
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.enrollment-modal .form-group input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.enrollment-modal .submit-btn {
    width: 100%;
    background: -webkit-linear-gradient(135deg, #008B8B, #20B2AA);
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.enrollment-modal .submit-btn:hover {
    background: -webkit-linear-gradient(135deg, #006666, #008B8B);
    background: linear-gradient(135deg, #006666, #008B8B);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.enrollment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.enrollment-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive design for enrollment modal */
@media (max-width: 768px) {
    .enrollment-modal .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-height: calc(100vh - 2rem);
    }

    .enrollment-modal .modal-body {
        padding: 1.5rem;
    }

    .enrollment-modal .modal-header {
        padding: 1rem 1.5rem;
    }
}

/* Enhanced About Section Styles - Using Services Layout */
.credentials-section {
    margin: 3rem 0;
    margin: clamp(2rem, 4vw, 4rem) 0;
    padding: 0;
    background: #f8f9fa;
    border-radius: 20px;
}

.research-themes,
.excellence-section {
    margin: 3rem 0;
    margin: clamp(2rem, 4vw, 4rem) 0;
    padding: 3rem 1.5rem;
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
    background: #f8f9fa;
    border-radius: 20px;
}

.credentials-section h2,
.research-themes h2,
.excellence-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Remove old custom styling since we're using services-grid now */

/* =============================================
   RESEARCH SPECIALIZATIONS ACCORDION
   ============================================= */
.specializations-intro {
    text-align: center;
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.spec-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
}

.spec-accordion:hover {
    box-shadow: 0 4px 16px rgba(0,139,139,0.12);
}

.spec-header {
    width: 100%;
    background: white;
    border: none;
    padding: 1.2rem 1.5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
}

.spec-header:hover {
    background: #f0fbfb;
}

.spec-accordion.open .spec-header {
    background: -webkit-linear-gradient(135deg, #008B8B, #20B2AA);
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
}

.spec-accordion.open .spec-header .spec-category,
.spec-accordion.open .spec-header .spec-faculty {
    color: white;
}

.spec-accordion.open .spec-header .spec-chevron {
    color: white;
}

.spec-header-left {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 1rem;
}

.spec-icon {
    width: 48px;
    height: 48px;
    background: -webkit-linear-gradient(135deg, #008B8B, #2c3e50);
    background: linear-gradient(135deg, #008B8B, #2c3e50);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.spec-accordion.open .spec-icon {
    background: rgba(255,255,255,0.25);
}

.spec-icon i {
    font-size: 1.2rem;
    color: white;
}

.spec-category {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.spec-faculty {
    display: block;
    font-size: 0.85rem;
    color: #008B8B;
    font-weight: 500;
}

.spec-chevron {
    font-size: 1rem;
    color: #008B8B;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.spec-accordion.open .spec-chevron {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spec-body {
    display: none;
    padding: 1.5rem;
    background: #fafffe;
    border-top: 1px solid #e0f5f5;
}

.spec-accordion.open .spec-body {
    display: block;
}

.spec-tags-section {
    margin-bottom: 1.2rem;
}

.spec-tags-section:last-child {
    margin-bottom: 0;
}

.spec-tags-section h4 {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.spec-tags-section h4 i {
    color: #008B8B;
}

.spec-tags {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-tag {
    background: #e8f8f8;
    color: #006666;
    border: 1px solid #b2dfdf;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.spec-tag.tool-tag {
    background: #eef2ff;
    color: #3730a3;
    border-color: #c7d2fe;
}

.spec-tag.level-tag {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.spec-tag.highlight-tag {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

@media (max-width: 768px) {
    .spec-header {
        padding: 1rem;
    }

    .spec-category {
        font-size: 1rem;
    }

    .spec-faculty {
        font-size: 0.8rem;
    }

    .spec-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .spec-header-left {
        gap: 0.7rem;
    }

    .spec-category {
        font-size: 0.9rem;
    }

    .spec-tag {
        font-size: 0.78rem;
        padding: 0.3rem 0.6rem;
    }
}

/* =============================================
   TABLET BREAKPOINT (769px – 1024px)
   ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 0.8rem 1.2rem;
    }

    .nav-brand .logo {
        height: 60px;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

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

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

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

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

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

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

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

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
}

/* =============================================
   ENHANCED MOBILE BREAKPOINT (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

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

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

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

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

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

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

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

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

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .services-section h2,
    .seminar-packages h2,
    .learning-paths h2,
    .upcoming-schedule h2,
    .course-benefits h2 {
        font-size: 1.8rem;
    }

    .nav-brand .logo {
        height: 45px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .cta-btn.primary,
    .cta-btn.secondary {
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}