@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --color-primary: #0099ff;
    /* Blue */
    --color-secondary: #d63346;
    /* Red */
    --color-success: #00c853;
    /* Badge Green */
    --color-dark: #222222;
    --color-light: #ffffff;
    --color-text: #555555;

    /* Top Bar Colors */
    --topbar-bg: #00c853;
    /* Match Reference Green or Brand? User asked for Brand. Let's use Brand Secondary (Red) or Primary (Blue)? 
                           User said "based on my logo style" but reference showed Green. 
                           Plan said "Padashaala Blue & Red". Let's use Primary (Blue) for Top Bar as it's professional. */
    --topbar-bg: #0099ff;

    /* Layout */
    --header-height: 80px;
    --topbar-height: 40px;
    --container-width: 1200px;

    /* Shadows & Transitons */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile Contact Icons */
.mobile-contact-icons {
    display: none;
    /* Hidden on desktop */
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--topbar-bg);
    color: #fff;
    height: var(--topbar-height);
    font-size: 14px;
    font-weight: 500;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.contact-item i {
    margin-right: 6px;
}



/* --- Main Header --- */
.main-header {
    background: #fff;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
    position: relative;
    /* Not fixed anymore for this layout style usually, or sticky below top bar? Reference looks static. Let's make it sticky but respect top bar. */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo-box img {
    height: 55px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}



/* Spacer */
.header-spacer {
    /* If header is sticky, no spacer needed usually unless it overlaps. 
       If sticky top 0, it covers content. 
       But we have top bar. If we want header sticky, top bar usually scrolls away. 
       Let's keep header sticky. */
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--color-dark);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 968px) {
    .top-bar {
        display: none;
    }

    .mobile-contact-icons {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-left: auto;
        /* Push to right, near toggle? or center? User said "central white space". */
        margin-right: 20px;
    }

    .m-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        transition: transform 0.2s;
    }

    .m-icon:active {
        transform: scale(0.95);
    }

    .m-email {
        background-color: #EA4335;
    }

    .m-phone {
        background-color: #0099ff;
    }

    .m-whatsapp {
        background-color: #25D366;
    }

    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-menu.active {
        height: auto;
        padding-bottom: 20px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: block;
        margin-left: 0;
    }
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    /* As requested */
    overflow: hidden;
    background: #f0f0f0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Gradient Overlay */
.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 153, 255, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    /* Blue tint left side */
    z-index: 1;
}

.slide-content-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 600px;
    color: #fff;
    padding-left: 20px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-content {
    animation: fadeInUp 1s ease forwards 0.3s;
    /* Delay text slightly */
    opacity: 1;
    /* Ensure visible after animation */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-secondary);
    /* Red button */
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 51, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 51, 70, 0.5);
    background-color: #c02a3b;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    font-size: 20px;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #fff;
    color: var(--color-primary);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .hero-slide .overlay {
        background: linear-gradient(180deg, rgba(0, 153, 255, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .slide-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* --- Features Section Overlay --- */
.features-overlap {
    position: relative;
    z-index: 20;
    margin-top: -100px;
    /* Overlap amount */
    padding-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Space between blocks */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); Removed for split blocks */
}

.feature-card {
    padding: 30px 20px;
    color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 250px;
    /* Consistent height */
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card .icon-box {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Colors matching Brand */
.color-blue {
    background-color: var(--color-primary);
}

/* #0099ff */
.color-red {
    background-color: var(--color-secondary);
}

/* #d63346 */
.color-purple {
    background-color: #6f2da8;
}

.color-teal {
    background-color: #007ccb;
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-overlap {
        margin-top: 0;
        /* Remove overlap on mobile for better flow */
        padding-top: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Collage Section --- */
.about-collage-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/about/bg_pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-dark {
    display: inline-block;
    background-color: #0d2a38;
    /* Dark Green/Teal from image */
    color: #fff;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.about-collage {
    flex: 1;
    min-width: 350px;
    /* Reduced min width */
    height: 450px;
    /* Increased height */
    position: relative;
    display: flex;
    /* Center wrapper */
    justify-content: center;
    align-items: center;
}

.collage-item {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning Circles */
.item-1 {
    width: 300px;
    /* Big Main Circle */
    height: 300px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.item-2 {
    width: 160px;
    height: 160px;
    top: 30px;
    right: 40px;
    /* Closer to left */
    z-index: 1;
    /* Behind */
}

.item-3 {
    width: 140px;
    height: 140px;
    bottom: 30px;
    right: 70px;
    /* Closer to left */
    z-index: 2;
    /* Behind main */
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid orange;
    /* Theme orange */
    border-radius: 50%;
    color: orange;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: 0.3s;
}

.play-btn:hover {
    background: orange;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive About */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        margin-bottom: 20px;
    }

    .about-collage {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 40px auto 0;
        min-width: auto;
    }

    .item-1 {
        width: 200px;
        height: 200px;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
    }

    .item-2 {
        width: 100px;
        height: 100px;
        top: 0;
        right: 40px;
    }

    .item-3 {
        width: 90px;
        height: 90px;
        bottom: 20px;
        right: 60px;
    }
}

@media (max-width: 576px) {
    .about-collage {
        height: 300px;
        max-width: 300px;
    }

    .item-1 {
        width: 180px;
        height: 180px;
    }

    .item-2 {
        width: 90px;
        height: 90px;
        top: 5px;
        right: 15px;
    }

    .item-3 {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 25px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .btn-dark {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* --- Courses Section --- */
.courses-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('../images/courses/courses_bg.png');
    background-size: 300px;
    /* Repeat pattern */
    background-repeat: repeat;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Center tabs */
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #ddd;
    background: transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: #fff;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
}

.course-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.course-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

.course-badge.green {
    background-color: #28a745;
    /* Bootstrap Green */
}

.course-badge.red {
    background-color: var(--color-secondary);
}

/* Hover Overlay & Enquiry Button */
.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.enquiry-btn {
    background-color: #fff;
    color: var(--color-dark);
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.3s;
    text-decoration: none;
}

.course-card:hover .enquiry-btn {
    transform: translateY(0);
}

.enquiry-btn:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.course-content {
    padding: 20px;
}

.course-meta {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    gap: 8px;
    /* Space between rows */
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #555;
}

.meta-item {
    display: flex;
    align-items: center;
    /* Align icon to center of text */
    gap: 10px;
}

.meta-item i {
    color: var(--color-secondary);
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

/* --- Achievements Section --- */
.achievement-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.achievement-header {
    border-left: 3px solid var(--color-primary);
    /* Blue Line */
    padding-left: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Grid on mobile/tablet default */
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-grid {
        display: flex;
        /* Flex on desktop for row layout */
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        /* Distribute space */
        min-width: 150px;
        text-align: center;
        border-right: 1px solid #eee;
    }

    .stat-item:last-child {
        border-right: none;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #555;
    /* Gray icon as per ref */
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    /* Blue number */
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0 0 0;
}

.course-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Colleges Section --- */
.college-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.college-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.college-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.college-img-wrapper {
    /* Deprecated, see .college-logo-wrapper */
    display: none;
}

.college-logo-wrapper {
    height: 120px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.college-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Ensure logo fits */
}

.college-content {
    padding: 15px;
}

.college-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 5px 0;
}

.college-location {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* --- Testimonials Section (Custom Flex Layout) --- */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background-color: #f0f8ff;
    /* AliceBlue or similar light blue tint */
    padding: 50px 0;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testi-card-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.testi-left {
    flex: 0 0 400px;
    /* Fixed width for image container */
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
}

.testi-right {
    flex: 1;
    /* Take remaining space */
    text-align: left;
    max-width: 600px;
}

.testi-img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.smile-icon i {
    font-size: 3rem;
    color: var(--color-primary);
    /* Blue Theme */
    margin-bottom: 20px;
    display: block;
}

.testi-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    /* Blue Theme */
    margin: 0;
}

.testi-role {
    font-weight: 400;
    color: #666;
    font-size: 0.9rem;
}

.testi-dash {
    color: var(--color-secondary);
    margin: 0 5px;
}

.testi-rating i {
    color: #f39c12;
    /* Standard Gold Star */
    font-size: 0.85rem;
    margin-right: 2px;
}

/* Dots */
.testi-dots {
    text-align: center;
    margin-top: 40px;
}

.testi-dots .dot {
    height: 4px;
    width: 30px;
    margin: 0 4px;
    background-color: #cbd5e0;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.testi-dots .dot.active {
    background-color: var(--color-primary);
    /* Blue Theme */
    width: 45px;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-card-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testi-left {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        flex: auto;
    }

    .testi-right {
        text-align: center;
    }

    .smile-icon i {
        margin: 0 auto 15px auto;
    }
}

.college-location i {
    color: var(--color-primary);
    /* Blue Location pin */
    margin-right: 5px;
}

/* --- Footer --- */
.footer-top-strip {
    background-color: #0b3c49;
    /* Deep Teal/Dark Blue from reference */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-strip i {
    color: #fff !important;
}

.footer-top-strip h6,
.footer-top-strip small {
    color: #fff !important;
}

.main-footer {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    /* Fallback color */
    color: #fff;
    position: relative;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-text {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-contact-list {
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    opacity: 0.9;
}

.footer-contact-list i {
    margin-top: 4px;
    /* Align icon with text */
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    opacity: 0.85;
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #fff;
}

.footer-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.video-play-btn:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.copyright-bar {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(0, 0, 0, 0.1);
    /* Slightly darker bottom */
    padding-bottom: 1rem;
}

/* Scroll Top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-dark);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
    color: #fff;
}

/* --- Page Header (Common) --- */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0056b3 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    /* Pattern if available */
    opacity: 0.1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}