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

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Header Styles */
header {
    background-color: #1a365d;
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: #f0a500;
}

.institution-name {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 2px;
    font-weight: 400;
}

/* Social Media Top */
.social-media-top {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f0a500;
    transform: translateY(-3px);
}

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

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
}

nav ul li a:hover, nav ul li a.active {
    color: #f0a500;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.8)), url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.cta-button {
    display: inline-block;
    background-color: #f0a500;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d18f00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
    position: relative;
    font-size: 2.2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #f0a500;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Upcoming Batches */
.upcoming-batches {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.batch-box {
    padding: 30px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.batch-box:hover {
    transform: translateY(-10px);
}

/*.batch-box.box1 {
    background: linear-gradient(135deg, #1a365d, #2c5282);
}

.batch-box.box2 {
    background: linear-gradient(135deg, #2d3748, #4a5568);
}

.batch-box.box3 {
    background: linear-gradient(135deg, #744210, #b7791f);
}*/

.batch-date {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.batch-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.batch-box p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.batch-btn {
    display: inline-block;
    background-color: white;
    color: #1a365d;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.batch-btn:hover {
    background-color: #f0a500;
    color: white;
}

/* Courses Section */
.courses-section {
    padding: 60px 0;
}

.course-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.course-tab {
    padding: 12px 24px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.course-tab:hover, .course-tab.active {
    background-color: #1a365d;
    color: white;
    border-color: #1a365d;
}

.course-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: none;
}

.course-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.course-name {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.course-info-btn {
    background-color: #f0a500;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.course-info-btn:hover {
    background-color: #d18f00;
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.course-description {
    font-size: 1.1rem;
    color: #555;
}

.course-description h3 {
    color: #1a365d;
    margin-bottom: 15px;
}

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

.course-video {
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-placeholder:hover {
    background-color: #444;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #f0a500;
}

/* Demo Videos Section */
.demo-videos {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.videos-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.video-scroll-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.video-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.video-item {
    flex: 0 0 calc(25% - 23px);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.video-item h3 {
    padding: 20px 20px 10px;
    color: #1a365d;
    font-size: 1.2rem;
}

.video-item p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 54, 93, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    z-index: 10;
}

.scroll-btn:hover {
    background-color: #1a365d;
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Resources Section */
.resources-section {
    padding: 60px 0;
}

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

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

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f0a500;
}

.resource-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(240, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #f0a500;
}

.resource-card h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.about-text h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat h4 {
    color: #f0a500;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #f0a500;
}

/* Carrier Section */
.carrier-section {
    padding: 60px 0;
}

.carrier-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.carrier-info h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.carrier-info p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
}

.carrier-list {
    margin-bottom: 30px;
}

.carrier-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f0a500;
}

.carrier-item h4 {
    color: #1a365d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carrier-item h4 i {
    color: #f0a500;
}

.carrier-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.apply-now-btn {
    margin-top: 10px;
}

.carrier-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.carrier-form h3 {
    color: #1a365d;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.carrier-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carrier-form input,
.carrier-form select,
.carrier-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

/* Footer */
footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #f0a500;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f0a500;
}

.footer-logo h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.footer-logo span {
    color: #f0a500;
}

.social-media-footer {
    margin-top: 25px;
}

.social-media-footer h4 {
    margin-bottom: 15px;
    color: #f0a500;
}

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

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Popup Forms */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    display: none;
}

.popup-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.popup-form h2 {
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
}

.popup-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

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

.rating span {
    font-weight: 600;
    color: #1a365d;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ddd;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.stars i.active,
.stars i:hover {
    color: #f0a500;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

/* Action Buttons */
.action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feedback-btn {
    background-color: #1a365d;
}

.whatsapp-btn-fixed {
    background-color: #25D366;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .batch-container,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .course-details,
    .about-content,
    .carrier-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .video-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .about-image {
        height: 300px;
    }
    
    .social-media-top {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    nav {
        width: 100%;
        display: none;
        margin-top: 20px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 8px 0;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .batch-container,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .action-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .course-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .course-content {
        padding: 25px;
    }
    
    .course-name {
        font-size: 1.8rem;
    }
    
    .course-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .course-info-btn {
        margin-top: 15px;
    }
    
    .videos-scroll-container {
        padding: 0 20px;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .popup-form {
        padding: 25px;
        width: 95%;
    }
}

/* Image Slider Section */
.image-slider-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
}

.slide.active {
    display: flex;
    animation: slideFade 0.8s ease;
}

@keyframes slideFade {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.slide-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    color: white;
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.slide-overlay p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.slide-link {
    display: inline-block;
    background-color: #f0a500;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.slide-link:hover {
    background-color: #d18f00;
    transform: translateY(-2px);
}

.slide-content {
    padding: 30px;
    background-color: white;
    flex-grow: 1;
}

.slide-content h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.slide-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.slide-content h3 a:hover {
    color: #f0a500;
}

.slide-content p {
    color: #555;
    line-height: 1.6;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 54, 93, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: #1a365d;
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #f0a500;
    transform: scale(1.2);
}

.dot:hover {
    background-color: white;
}

/* Auto-play Indicator */
.auto-play-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    z-index: 10;
}

.auto-play-toggle {
    width: 40px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.auto-play-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #f0a500;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.auto-play-toggle.paused::after {
    transform: translateX(20px);
}

/* Responsive Styles for Slider */
@media (max-width: 768px) {
    .slide-image {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-overlay {
        padding: 20px;
        transform: translateY(0);
        opacity: 1;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .slide-image {
        height: 250px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .prev-slide {
        left: 10px;
    }
    
    .next-slide {
        right: 10px;
    }
}

/* 3-Image Scroll Box */
.image-scroll-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    border: 1px solid #eaeaea;
}

.scroll-title {
    color: #1a365d;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.scroll-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f0a500;
}

.scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.images-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.image-item {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.image-item.active {
    opacity: 1;
    transform: scale(1);
}

.image-link {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 280px;
    text-decoration: none;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-link:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    color: white;
    padding: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-link:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.image-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: white;
}

.image-overlay p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.view-btn {
    display: inline-block;
    background: #f0a500;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Scroll Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 54, 93, 0.85);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-arrow:hover {
    background: #1a365d;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Scroll Dots */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f0a500;
    transform: scale(1.3);
}

.dot:hover {
    background: #1a365d;
}

/* Auto Scroll Indicator */
.auto-scroll-info {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auto-toggle {
    width: 36px;
    height: 18px;
    background: #e0e0e0;
    border-radius: 9px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.auto-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.auto-toggle.active {
    background: #f0a500;
}

.auto-toggle.active::after {
    transform: translateX(18px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .image-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .image-scroll-box {
        padding: 20px;
    }
    
    .image-item {
        flex: 0 0 100%;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .image-link {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .scroll-title {
        font-size: 1.3rem;
    }
    
    .image-link {
        height: 220px;
    }
    
    .image-overlay {
        padding: 15px;
        transform: translateY(0);
        opacity: 1;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(26, 54, 93, 0.03);
    color: #f0a500;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #f0a500;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* Download App Section */
.download-app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content .section-title {
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.app-content .section-title::after {
    left: 0;
    transform: none;
    background-color: #f0a500;
}

.app-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature i {
    font-size: 2rem;
    color: #f0a500;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn.google-play {
    background: #000;
    color: white;
}

.download-btn.app-store {
    background: #fff;
    color: #000;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 1.3rem;
}

.app-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.2rem;
    color: #f0a500;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* App Preview */
.app-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 450px;
    background: #222;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 20px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.back-btn, .menu-btn {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-article {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: auto;
}

.app-article h5 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.app-article p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.app-nav {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    border-radius: 15px;
    margin-top: auto;
}

.app-nav span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.7;
    cursor: pointer;
}

.app-nav span.active {
    opacity: 1;
    color: #f0a500;
}

.app-nav i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0a500;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #1a365d;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #f0a500;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-more {
    color: #f0a500;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

.blog-comments {
    color: #777;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: #1a365d;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a365d;
}

.view-all-btn:hover {
    background: transparent;
    color: #1a365d;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .app-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-content .section-title {
        text-align: center;
    }
    
    .app-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .download-app-section,
    .blog-section {
        padding: 60px 0;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .app-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .app-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}
/* YouTube Videos Section */
.youtube-videos {
    padding: 80px 0;
    background-color: #fff;
}

.youtube-videos .section-title {
    color: #1a365d;
}

.youtube-videos .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.video-card:hover .video-wrapper iframe {
    transform: scale(1.02);
}

.video-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #1a365d;
    font-weight: 600;
}

.video-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-meta i {
    color: #f0a500;
}

.video-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.watch-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.youtube-cta {
    text-align: center;
    margin-top: 40px;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a365d;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a365d;
}

.youtube-channel-btn:hover {
    background: transparent;
    color: #1a365d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.15);
}

.youtube-channel-btn i {
    font-size: 1.3rem;
    color: #ff0000;
}

/* YouTube Video Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal {
    width: 90%;
    max-width: 900px;
    background: #1a365d;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-modal {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .youtube-videos {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .video-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .youtube-channel-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .video-modal {
        width: 98%;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
}
/* Comprehensive Courses Section */
.comprehensive-courses {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #1a365d;
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f0a500;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Courses Grid */
.main-courses-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.main-course-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.4s ease;
    position: relative;
}

.main-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
    border-color: rgba(240, 165, 0, 0.3);
}

.main-course-header {
    padding: 30px 30px 20px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.main-course-card:hover .course-icon {
    background: #f0a500;
    transform: scale(1.05) rotate(5deg);
}

.course-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #f0a500;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.course-tag.featured {
    background: #ff4444;
}

.main-course-header h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.course-brief {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.course-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.course-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-meta-info i {
    color: #f0a500;
}

/* Sub Courses Container */
.sub-courses-container {
    padding: 25px 30px;
    background: #fafbfc;
}

.sub-courses-container h4 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-badge {
    background: #28a745;
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sub-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .sub-courses-grid {
        grid-template-columns: 1fr;
    }
}

.sub-course-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.sub-course-item:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.08);
    transform: translateY(-3px);
    border-color: #f0a500;
}

.sub-course-icon {
    width: 45px;
    height: 45px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a500;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sub-course-details {
    flex: 1;
}

.sub-course-details h5 {
    color: #1a365d;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.sub-course-details p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sub-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #777;
}

.sub-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sub-meta i {
    color: #f0a500;
}

.sub-link {
    color: #1a365d;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.sub-link:hover {
    color: #f0a500;
    gap: 8px;
}

/* Course Footer */
.course-footer {
    padding: 20px 30px 30px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
}

.price span {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.course-btn {
    background: #1a365d;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid #1a365d;
}

.course-btn:hover {
    background: transparent;
    color: #1a365d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
}

/* View All Container */
.view-all-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f0a500;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid #f0a500;
    margin-bottom: 15px;
}

.view-all-btn:hover {
    background: transparent;
    color: #f0a500;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(240, 165, 0, 0.2);
}

.courses-note {
    color: #777;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-course-header h3 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .comprehensive-courses {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .main-course-header h3 {
        font-size: 1.4rem;
    }
    
    .course-meta-info {
        gap: 12px;
    }
    
    .course-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .course-btn {
        width: 100%;
        justify-content: center;
    }
    
    .course-tag {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .main-course-header,
    .sub-courses-container,
    .course-footer {
        padding: 20px;
    }
    
    .course-meta-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .sub-course-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sub-course-icon {
        margin-bottom: 5px;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .price span {
        font-size: 1rem;
    }
}

/* Courses & Attractive Features Section */
.courses-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.courses-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a365d, #f0a500, #1a365d);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #1a365d;
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f0a500;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Courses Features Grid */
.courses-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .courses-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Course Feature Card */
.course-feature-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.course-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
    border-color: transparent;
}

.course-feature-card.csat-card:hover {
    box-shadow: 0 20px 40px rgba(240, 165, 0, 0.15);
}

.course-feature-card.essay-card:hover {
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
}

.course-feature-card.ethics-card:hover {
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

/* Course Header */
.course-header {
    padding: 25px 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #f8f9fa;
}

.course-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s;
}

.csat-card .course-icon {
    background: linear-gradient(135deg, #f0a500, #ffb726);
}

.essay-card .course-icon {
    background: linear-gradient(135deg, #28a745, #34ce57);
}

.ethics-card .course-icon {
    background: linear-gradient(135deg, #2196F3, #42a5f5);
}

.course-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
}

.course-badge {
    background: #f8f9fa;
    color: #1a365d;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #eaeaea;
}

/* Courses Section */
.courses-section {
    padding: 20px 25px;
}

.section-heading {
    color: #1a365d;
    font-size: 1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-heading i {
    color: #f0a500;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.course-item:hover {
    background: white;
    border-left: 3px solid #f0a500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.course-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-info i {
    color: #f0a500;
    font-size: 1rem;
    width: 20px;
}

.course-info span {
    font-weight: 600;
    color: #1a365d;
    font-size: 0.95rem;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.duration {
    font-size: 0.8rem;
    color: #666;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.badge.urgent {
    background: #ffebee;
    color: #c62828;
}

.badge.new {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge.featured {
    background: #fff3e0;
    color: #ef6c00;
}

.course-link {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s;
}

.course-link:hover {
    background: #f0a500;
    color: white;
    transform: translateX(3px);
}

/* Features Section */
.features-section {
    padding: 0 25px 20px;
    flex-grow: 1;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item.premium {
    border-left: 4px solid #f0a500;
}

.feature-item.free {
    border-left: 4px solid #28a745;
}

.feature-item.highlight {
    background: linear-gradient(135deg, #fff8e7, white);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #f0a500;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a500;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item.free .feature-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-details {
    flex: 1;
}

.feature-details h4 {
    color: #1a365d;
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-details p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.feature-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    background: #f0f0f0;
    border-radius: 12px;
    color: #666;
    display: inline-block;
}

.feature-tag.free-tag {
    background: #28a745;
    color: white;
}

.feature-link {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.feature-link:hover {
    background: #f0a500;
    color: white;
    transform: scale(1.1);
}

/* Card Footer */
.card-footer {
    padding: 20px 25px 25px;
    background: white;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #1a365d;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid #1a365d;
}

.explore-btn:hover {
    background: transparent;
    color: #1a365d;
    gap: 15px;
}

.csat-card .explore-btn {
    background: #f0a500;
    border-color: #f0a500;
}

.csat-card .explore-btn:hover {
    background: transparent;
    color: #f0a500;
}

.essay-card .explore-btn {
    background: #28a745;
    border-color: #28a745;
}

.essay-card .explore-btn:hover {
    background: transparent;
    color: #28a745;
}

.ethics-card .explore-btn {
    background: #2196F3;
    border-color: #2196F3;
}

.ethics-card .explore-btn:hover {
    background: transparent;
    color: #2196F3;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
}

.section-cta p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-cta i {
    color: #f0a500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .courses-features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .course-name {
        font-size: 1.5rem;
    }
    
    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-details h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .course-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .course-badge {
        align-self: flex-start;
    }
    
    .course-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .course-meta {
        width: 100%;
        justify-content: flex-start;
    }
    
    .course-link {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .course-item {
        position: relative;
    }
    
    .section-cta {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Faculty Section Styles */
.faculty-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faculty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a365d, #f0a500, #1a365d);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(240, 165, 0, 0.1);
    color: #f0a500;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    color: #1a365d;
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f0a500;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Faculty Grid - 3x1 */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Faculty Card */
.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faculty-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
    border-color: transparent;
}

/* Faculty Image */
.faculty-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.faculty-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.08);
}

/* Faculty Social Links Overlay */
.faculty-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.9), transparent);
    transition: bottom 0.4s ease;
    z-index: 2;
}

.faculty-card:hover .faculty-social {
    bottom: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    background: #f0a500;
    color: white;
    transform: translateY(-5px);
}

/* Faculty Info */
.faculty-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 1;
}

.faculty-name {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.faculty-designation {
    color: #f0a500;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Faculty Badges */
.faculty-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.faculty-badge {
    background: #f8f9fa;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.faculty-badge i {
    color: #f0a500;
}

/* Faculty Bio */
.faculty-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Faculty Stats */
.faculty-stats {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.faculty-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Faculty Courses Tags */
.faculty-courses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.course-tag {
    background: rgba(240, 165, 0, 0.1);
    color: #f0a500;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.course-tag:hover {
    background: #f0a500;
    color: white;
    transform: translateY(-2px);
}

/* Faculty CTA Button */
.faculty-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a365d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    width: fit-content;
}

.faculty-cta:hover {
    color: #f0a500;
    gap: 12px;
    border-bottom-color: #f0a500;
}

/* View All Faculty CTA */
.faculty-cta-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-faculty {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a365d;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s;
    border: 2px solid #1a365d;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.view-all-faculty:hover {
    background: transparent;
    color: #1a365d;
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(26, 54, 93, 0.15);
    gap: 18px;
}

.view-all-faculty i {
    font-size: 1rem;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faculty-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.faculty-card:nth-child(1) {
    animation-delay: 0.1s;
}

.faculty-card:nth-child(2) {
    animation-delay: 0.3s;
}

.faculty-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .faculty-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .faculty-image-wrapper {
        height: 300px;
    }
    
    .faculty-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .faculty-image-wrapper {
        height: 320px;
    }
    
    .faculty-badges {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .faculty-stats {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faculty-info {
        padding: 20px;
    }
    
    .faculty-name {
        font-size: 1.2rem;
    }
    
    .faculty-bio {
        font-size: 0.9rem;
    }
    
    .view-all-faculty {
        padding: 15px 25px;
        font-size: 1rem;
    }
}


/* Online Presence Section */
.online-presence {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.online-presence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a365d, #f0a500, #1a365d);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(240, 165, 0, 0.1);
    color: #f0a500;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    color: #1a365d;
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f0a500;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Presence Grid - 2x1 */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .presence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Presence Card */
.presence-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.presence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
    border-color: transparent;
}

.app-card:hover {
    box-shadow: 0 25px 50px rgba(240, 165, 0, 0.15);
}

.website-card:hover {
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 25px 15px;
    border-bottom: 2px solid #f0f0f0;
}

.header-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.app-card .header-icon {
    background: linear-gradient(135deg, #f0a500, #ffb726);
}

.website-card .header-icon {
    background: linear-gradient(135deg, #1a365d, #2c5282);
}

.header-text {
    flex: 1;
}

.header-text h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.header-text p {
    color: #666;
    font-size: 0.9rem;
}

.header-badge .badge-new {
    background: #f0a500;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Mobile Mockup */
.app-preview-container {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-mockup {
    margin-bottom: 25px;
}

.mobile-frame {
    width: 260px;
    height: 520px;
    background: #121212;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.mobile-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #121212;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-screen::-webkit-scrollbar {
    width: 3px;
}

.mobile-screen::-webkit-scrollbar-thumb {
    background: #f0a500;
    border-radius: 3px;
}

.app-screen-content {
    padding: 15px;
}

/* App Content Styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-header-left i,
.app-header-right i {
    color: #666;
    font-size: 1rem;
}

.app-logo {
    font-weight: 700;
    color: #1a365d;
    font-size: 0.9rem;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    color: white;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.greeting-text h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.greeting-text p {
    font-size: 0.7rem;
    opacity: 0.9;
}

.progress-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #666;
}

.progress-percent {
    color: #f0a500;
    font-weight: 700;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f0a500, #ffb726);
    border-radius: 3px;
}

.progress-details {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    color: #666;
}

.progress-details i {
    color: #f0a500;
    margin-right: 3px;
}

.quick-access h4 {
    color: #1a365d;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.access-item {
    text-align: center;
}

.access-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 1.1rem;
}

.access-item span {
    font-size: 0.65rem;
    color: #666;
}

.recommended-course {
    margin-bottom: 20px;
}

.course-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}

.course-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.mini-details {
    flex: 1;
}

.mini-details h5 {
    color: #1a365d;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.mini-details p {
    color: #666;
    font-size: 0.65rem;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #999;
    font-size: 0.65rem;
    cursor: pointer;
}

.nav-item i {
    font-size: 1rem;
    margin-bottom: 3px;
}

.nav-item.active {
    color: #f0a500;
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 160px;
}

.download-btn.google-play {
    background: #1a1e2b;
    color: white;
}

.download-btn.app-store {
    background: #000;
    color: white;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.download-btn i {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.65rem;
    opacity: 0.9;
}

.btn-text strong {
    font-size: 0.95rem;
}

/* App Stats */
.app-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 50px;
    width: 100%;
}

.app-stats .stat-item {
    text-align: center;
}

.app-stats .stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.2;
}

.app-stats .stat-label {
    font-size: 0.65rem;
    color: #666;
}

/* Laptop Mockup */
.website-preview-container {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-mockup {
    width: 100%;
    max-width: 450px;
    margin-bottom: 25px;
}

.laptop-frame {
    position: relative;
    width: 100%;
}

.laptop-screen {
    width: 100%;
    height: 280px;
    background: #121212;
    border-radius: 15px 15px 0 0;
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.website-screen-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow-y: auto;
    overflow-x: hidden;
}

.website-screen-content::-webkit-scrollbar {
    width: 4px;
}

.website-screen-content::-webkit-scrollbar-thumb {
    background: #f0a500;
    border-radius: 4px;
}

.laptop-base {
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, #868e96, #6c757d);
    border-radius: 0 0 15px 15px;
    position: relative;
    z-index: 1;
}

.laptop-base::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 5px;
    background: #495057;
    border-radius: 0 0 3px 3px;
}

/* Browser Header */
.browser-header {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f1f3f4;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-address {
    flex: 1;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #ddd;
}

.browser-menu {
    margin-left: 10px;
    color: #666;
}

/* Website Content */
.website-content {
    padding: 12px;
}

.website-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.nav-logo {
    font-size: 0.9rem;
    font-weight: 700;
}

.logo-blue { color: #1a365d; }
.logo-gold { color: #f0a500; }

.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.65rem;
}

.nav-links a.active {
    color: #f0a500;
    font-weight: 600;
}

.nav-auth {
    display: flex;
    gap: 8px;
}

.nav-auth a {
    font-size: 0.65rem;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 4px;
}

.login {
    color: #1a365d;
}

.signup {
    background: #f0a500;
    color: white;
}

.website-hero {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    border-radius: 8px;
    padding: 15px;
    color: white;
    margin-bottom: 15px;
}

.hero-text h2 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hero-text p {
    font-size: 0.65rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.hero-btn {
    font-size: 0.6rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-btn.primary {
    background: #f0a500;
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    gap: 15px;
}

.hero-stat .stat-value {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f0a500;
}

.hero-stat .stat-label {
    font-size: 0.5rem;
    opacity: 0.8;
}

.website-courses {
    margin-bottom: 15px;
}

.course-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.course-mini-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: #f8f9fa;
    border-radius: 6px;
}

.card-left {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.card-right h4 {
    color: #1a365d;
    font-size: 0.65rem;
    margin-bottom: 2px;
}

.card-right p {
    color: #666;
    font-size: 0.55rem;
}

.website-footer-preview {
    border-top: 1px solid #eaeaea;
    padding-top: 8px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-links span {
    color: #666;
    font-size: 0.55rem;
    cursor: pointer;
}

.website-footer-preview p {
    color: #999;
    font-size: 0.5rem;
}

/* Website CTA Buttons */
.website-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.visit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.visit-btn.primary {
    background: #1a365d;
    color: white;
}

.visit-btn.secondary {
    background: #f0a500;
    color: white;
}

.visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.visit-btn i {
    font-size: 1.1rem;
}

/* Website Stats */
.website-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 50px;
    width: 100%;
}

.website-stats .stat-item {
    text-align: center;
}

.website-stats .stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.2;
}

.website-stats .stat-label {
    font-size: 0.65rem;
    color: #666;
}

/* Bottom CTA */
.presence-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 30px;
    border: 2px dashed #f0a500;
}

.cta-text {
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-text i {
    color: #f0a500;
    font-size: 1.3rem;
}

.qr-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.qr-code {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a365d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.qr-code i {
    font-size: 2.5rem;
    color: #1a365d;
}

.qr-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.qr-text span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
}

.qr-text small {
    color: #666;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text {
        text-align: center;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .website-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .visit-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .app-stats, .website-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        border-radius: 20px;
        padding: 20px;
    }
    
    .qr-section {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-text {
        text-align: center;
    }
    
    .cta-text {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
}
