/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #2a4e7a;
    --primary-dark: #1a3a5a;
    --primary-light: #3a6ea5;
    --primary-opacity-10: rgba(42, 78, 122, 0.1);
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #fff;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2a4e7a, #1a3a5a);
    padding: 5rem 0;
}
.course-card {
    transition: transform 0.3s;
}
.course-card:hover {
    transform: translateY(-5px);
}
.rating .stars {
    font-size: 1.1rem;
}
.progress {
    background-color: #e9ecef;
}
.testimonial-card {
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a3a5a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Instructor Cards */
.instructor-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.initials-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    font-size: 3rem;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Methodology Cards */
.method-card {
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* ===== COURSES PAGE SPECIFIC ===== */
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    /* About Page */
    .instructor-card .col-md-5 {
        padding-bottom: 1.5rem !important;
    }
    
    /* Global */
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #1a3a5a, #152a40);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--primary-dark), #152a40);
}

.text-white-70 {
    color: rgba(255,255,255,0.7);
}

.text-white-50 {
    color: rgba(255,255,255,0.5);
}

.text-white-30 {
    color: rgba(255,255,255,0.3);
}

.border-light-10 {
    border-color: rgba(255,255,255,0.1) !important;
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
/* Success Stories Styles */
.hero-stories {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.story-card {
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.avatar-lg {
    width: 80px;
    height: 80px;
}

/* Resources Page Styles */
.hero-resources {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.resource-card {
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.resource-icon {
    display: flex;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stories, .hero-resources {
        text-align: center;
    }
    
    .hero-stories .btn, .hero-resources .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}