/*
Theme Name: Online Degree Academy
Theme URI: https://onlinedegree.academy
Author: Online Degree Academy Team
Author URI: https://onlinedegree.academy
Description: A modern, responsive WordPress theme designed specifically for online education platforms. Features Bootstrap 5 integration, mobile-first design, and optimized for educational content delivery.
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: online-degree-academy
Tags: education, online-learning, bootstrap, responsive, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, portfolio, news
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Public+Sans:wght@300;400;500;600;700;800&display=swap');

/* Import Bootstrap CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Custom CSS Variables */
:root {
    --primary-color: #262626;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #17a2b8;
    --light-color: #ecf0f1;
    --dark-color: #262626;
    --text-color: #333;
    --body-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c3e50, #3498db);
    --gradient-secondary: linear-gradient(135deg, #3498db, #2980b9);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --orange-accent: #FA8039;
    --orange-hover: #e55a2b;
    --grey-light: #f8f9fa;
    --grey-medium: #737373;
    --grey-dark: #3D3D3D;
}

/* Global Styles */
body {
    font-family: 'Inter';
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Public Sans';
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Top Bar - Removed for clean design */

/* Header Styles - Clean & Minimalist */
.site-header {
    background: white;
    color: var(--text-color);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.site-branding {
    display: flex;
    align-items: center;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--orange-accent);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--grey-dark);
}

.site-title a {
    color: var(--grey-dark);
    text-decoration: none;
    transition: var(--transition);
}

.site-title a:hover {
    color: var(--orange-accent);
    text-decoration: none;
}

.site-description {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--grey-medium);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: lowercase;
}

/* Navigation - Removed for clean design */

/* Header Flexbox Layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-branding-wrapper {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.header-actions-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Responsive adjustments for header flexbox */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: row;
        gap: 1rem;
        text-align: center;
    }
    
    .site-branding-wrapper {
        flex: none;
    }
    
    .header-actions-wrapper {
        flex: none;
    }
}

.btn-enquire {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 0.63rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-enquire:hover {
    background: var(--orange-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

/* Page Header */
.page-header {
    background: var(--grey-light);
    color: var(--text-color);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

.breadcrumb-nav {
    margin-top: 1rem;
}

.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--grey-medium);
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--grey-dark);
}

/* Content Area */

.page-content-wrapper {
    padding: 2rem 0;
}

.content-area {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.page-article {
    margin-bottom: 3rem;
}

.entry-thumbnail-wrapper {
    position: relative;
}

.entry-thumbnail img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.entry-excerpt {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-light);
}

.entry-footer {
    border-top: 2px solid var(--light-color);
}

.edit-link-wrapper {
    text-align: center;
}

/* Related Content */
.related-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.related-content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.related-item {
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-item .card-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.related-item .card-title a:hover {
    color: var(--secondary-color);
}

/* Comments Section */
.comments-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.comments-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Sidebar */
.widget-area {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
}

.widget {
    margin-bottom: 2.5rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: 'Public Sans', sans-serif;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.widget-content {
    color: #666;
}

/* Page Widgets */
.page-widgets {
    margin-top: 2rem;
}

.quick-contact-widget {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.quick-contact-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.quick-contact-widget .widget-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.program-highlights-widget {
    background: white;
    border: 2px solid var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.highlights-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

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

.highlights-list i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Footer */
.site-footer {
    background: #292929;
    color: white;
    padding: 3.5rem 0 0rem;
    position: relative;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h3, .footer-widget h4, .footer-widget h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-desc-text{
    color: #686868;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 70%;
}

.footer-brand h3 {
    margin-bottom: 2.2rem;
}

.footer-brand i {
    color: var(--secondary-color);
}

.footer-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter';
    color: #CCC;
}

.copyright-text{
   margin: 90px 0; 
   color: #fff;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: rgba(255,255,255,0.8);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Button Styles */
.btn-primary, .btn-secondary, .btn {
    font-family: 'Public Sans';
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .header-actions {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .content-area {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .brand-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .header-actions {
        margin-top: 1rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    .copyright-text {
        margin: 0px 0 70px;
    }
    
    .social-links {
        justify-content: center;
    }
    .footer-desc-text{
        max-width: 100%;
    }
}

/* Font Loading Optimization */
.font-display {
    font-display: swap;
}

/* Typography Enhancements */
.entry-content {
    font-size: 1rem;
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h2 + p, .entry-content h3 + p, .entry-content h4 + p {
    margin-top: 0.5rem;
}

/* Card Typography */
.card-title {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
}

.card-body {
    font-family: 'Inter', sans-serif;
}

/* Additional Typography Elements */
.page-title, .archive-title, .search-title {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
}

.entry-meta, .entry-footer {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.comment-author, .comment-meta {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
}

.comment-content {
    font-family: 'Inter', sans-serif;
}

/* Form Elements */
input, textarea, select {
    font-family: 'Inter', sans-serif;
}

/* Pagination */
.pagination .page-link {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
}

/* WordPress Specific Styles */
.alignleft {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.wp-caption {
    max-width: 100%;
    margin: 1rem 0;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Comments */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.search-form button {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
}

/* Page Links */
.page-links-wrapper {
    margin: 2rem 0;
    text-align: center;
}

.page-links {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.page-links a {
    padding: 0.5rem 1rem;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.page-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.page-links .current {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* Old Homepage Styles - Replaced with MBA Hero */

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: white;
}

.program-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.program-image {
    position: relative;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.program-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.program-level {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-content {
    padding: 1.5rem;
}

.program-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-meta i {
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.author-info h5 {
    color: white;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: var(--secondary-color);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--secondary-color);
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .program-content {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .news-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 0 1rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-section,
    .programs-section,
    .testimonials-section,
    .news-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Homepage Styles */
.hero-section-mba {
    background: #FFF2EB;
    padding: 4.7rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* .info-panel {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: normal;
}

.text-dark {
    color: var(--grey-dark);
}

.text-orange {
    color: var(--orange-accent);
}

.hero-description {
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-medium);
    margin-bottom: 3.5rem;
    line-height: normal;
}

.partnered-colleges {
    margin-bottom: 3.5rem;
}

.colleges-heading {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter';
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
}

.university-logo img {
    width: 80%;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.university-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--grey-dark);
    text-align: center;
    line-height: 1.2;
}

.hero-cta {
    margin-top: auto;
}

.btn-counseling {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-counseling:hover {
    background: var(--orange-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Graduate Image Section */
.graduate-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.graduate-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.graduate-image img {
    width: 100%;
    height: auto;
}

/* Content Sections */
.content-sections {
    padding: 4rem 0;
    background: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--grey-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--grey-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--orange-accent);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

.feature-card p {
    color: var(--grey-medium);
    line-height: 1.6;
    margin: 0;
}

/* Program Overview Cards */
.program-overview-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.program-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-icon {
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 3rem;
    color: var(--orange-accent);
}

.program-overview-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

.program-overview-card p {
    color: var(--grey-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--grey-medium);
    font-size: 0.9rem;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features li::before {
    content: '✓';
    color: var(--orange-accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive Design for MBA Hero */
@media (max-width: 992px) {
    .hero-section-mba {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .universities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .university-logo {
        padding: 0.75rem;
    }
    
    .university-logo img {
        width: 100%;
    }
    
    .university-name {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .hero-section-mba {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .hero-description {
        text-align: left;
        font-size: 1.1rem;
    }
    
    .colleges-heading {
        text-align: left;
    }
    
    .universities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .university-logo {
        padding: 0.5rem;
    }
    
    .university-logo img {
        width: 100%;
    }
    
    .university-name {
        font-size: 0.6rem;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .graduate-image-container {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .graduate-image::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-width: 2px;
        border-radius: 30px;
    }
    
    .graduate-image img {
        border-radius: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .university-logo {
        padding: 1rem;
    }
    
    .university-logo img {
        width: 100%;
    }
    
    .university-name {
        font-size: 0.7rem;
    }
    
    .btn-counseling {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Programs Section Styles */
.programs-section {
    padding: 4.7rem 0;
    background-color: var(--body-bg);
}

.section-title {
    font-size: 1.5rem;
    font-family: Inter;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: left;
}

.program-card {
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #F0F0F0;
    background: #FFF;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.university-image {
    position: relative;
    max-height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .university-image img {
    transform: scale(1.05);
}

.university-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    color: white;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(1px);
}

.university-overlay .university-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.program-details {
    padding-top: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.specialization {
    color: var(--grey-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.program-info {
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--orange-accent);
    border-radius: 4px;
    background: #FBFBFB;
    gap: 6px;
    padding: 0.5rem;
    width: fit-content;
    text-wrap-mode: nowrap;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.info-row .info-item {
    margin-bottom: 0;
    flex: 1;
}

.info-item i {
    margin-right: 0.75rem;
    color: var(--orange-accent);
    width: 16px;
    text-align: center;
}

.pricing {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(255, 239, 230, 0.07) 0%, #FFEFE6 50%, rgba(255, 239, 230, 0.00) 100%);
    padding: 0.75rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: 'Public Sans';
}

.original-price {
    color: rgba(250, 128, 57, 0.48);
    text-decoration: line-through;
}

.discounted-price {
    color: var(--primary-color);
}

.btn-enquire {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.btn-enquire:hover {
    background: var(--orange-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 128, 57, 0.3);
}

.btn-enquire i {
    font-size: 0.9rem;
}

/* Responsive adjustments for programs section */
@media (max-width: 768px) {
    .programs-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .program-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .university-image {
        height: 180px;
    }

    
    .discounted-price {
        font-size: 1.25rem;
    }
    
    .btn-enquire {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin-top: 0;
    }
}
