/* Custom styles for Kubis Aviation School website */

/* General styling */
body {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f8f8; /* Light gray background for entire site */
}

/* Global text styling */
p, li, span, div, a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

:root {
    --primary-color: #b70013; /* Maroon color */
    --primary-dark: #94000f;
    --primary-light: #d4001a;
    --bg-light: #f8f8f8; /* Light background color */
    --bg-white: #ffffff; /* White for cards and contrasting elements */
    --bg-light-accent: #f2f2f2; /* Slightly darker background for alternating sections */
}

/* Site Wrapper */
.site-wrapper {
    position: relative;
    padding-top: 80px; /* Height of the header */
}

/* Add padding to inner pages to account for fixed header */
.inner-page {
    padding-top: 80px; /* Header height plus some buffer */
}

/* Header and Navigation */
.site-header {
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Home page header style */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1001;
    transition: background-color 0.3s ease;
}

/* Scrolled state for home header */
.home-header.scrolled {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-header.scrolled .nav-menu a,
.home-header.scrolled .lang-switch,
.home-header.scrolled .mobile-toggler {
    color: #212529;
}

.home-header .main-navbar {
    background-color: transparent;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.home-header.scrolled .main-navbar {
    padding: 15px 0;
}

.home-header .nav-menu a, 
.home-header .lang-switch, 
.home-header .logo-text {
    color: white;
}

.home-header .nav-menu a:hover {
    color: var(--primary-color);
}

.home-header .mobile-toggler {
    color: white;
}

.main-navbar {
    padding: 0;
    background-color: transparent;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    max-width: 120px; /* Limit logo container width */
}

.logo-img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

/* Search Bar Styles */
.search-bar {
    display: flex;
    align-items: center;
    margin-right: 15px;
    position: relative;
}

.search-input {
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0 40px 0 15px;
    width: 180px;
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.search-input:focus {
    width: 220px;
    border-color: var(--primary-color);
    outline: none;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-button:hover {
    color: var(--primary-color);
}

/* Mobile Navigation Styles */
.mobile-toggler {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-toggler i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

body.menu-active {
    overflow: hidden;
}

@media (max-width: 991px) {
    .mobile-toggler {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        color: #333;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    .nav-menu a:hover {
        color: var(--primary-color);
    }

    .nav-right {
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
        margin: 10px 0;
    }

    .lang-switch {
        margin: 10px 0;
    }

    .desktop-apply {
        display: none;
    }
    
    .mobile-apply-container {
        display: block;
    }
    
    .navbar-content {
        padding: 10px 15px;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        max-width: 100px; /* Even smaller on mobile */
        z-index: 1001;
    }
    
    .logo-img {
        max-height: 40px;
    }
}

.mobile-apply-container {
    display: none; /* Hide by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-apply {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-weight: 300;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
}

/* Improved Media Query for Mobile Navigation */
@media (max-width: 991px) {
    .navbar-content {
        padding: 10px 15px;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        max-width: 100px; /* Even smaller on mobile */
        z-index: 1001;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -300px; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        flex-direction: column;
        padding: 80px 0 0;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-wrapper.active {
        right: 0;
    }
    
    .mobile-toggler {
        display: block;
        z-index: 1001;
        position: relative;
    }
    
    body.menu-active {
        overflow: hidden;
    }
    
    /* Add extra space for content below fixed header */
    .site-wrapper {
        padding-top: 70px;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .play-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .welcome-heading {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .welcome-text h3 {
        font-size: 18px;
    }
    
    .welcome-right p {
        font-size: 14px;
    }
    
    .courses-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .discover-more-btn {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        display: block;
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Changed from 95vh to 100vh for full viewport height */
    width: 100%;
    overflow: hidden;
    margin-top: -80px; /* Negative margin to counteract the padding-top */
}

/* Inner page hero section */
.inner-page .hero-section {
    padding-top: 0; /* Remove padding as we're using body padding instead */
    height: 50vh; /* Shorter hero section for inner pages */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(183, 0, 19, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-content-bottom {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    margin-top: 20px;
}

.play-btn {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 300;
    display: inline-block;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Main content */
.main-content {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-light-accent);
    padding: 20px 0;
    width: 100%;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: var(--bg-light-accent);
}

.welcome-heading {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.welcome-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-left {
    width: 45%;
    display: flex;
    position: relative;
}

.red-line, .maroon-line {
    width: 3px;
    background-color: var(--primary-color);
    margin-right: 25px;
}

.welcome-text {
    font-family: 'Times New Roman', Times, serif;
}

.welcome-text h3 {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.welcome-right {
    width: 45%;
}

.welcome-right p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive styles */
@media (max-width: 992px) {
    .navbar-content {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .nav-menu li {
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-section {
        height: 70vh;
    }

    .welcome-content {
        flex-direction: column;
    }
    
    .welcome-left, .welcome-right {
        width: 100%;
        margin-bottom: 30px;
    }

    .welcome-heading {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .welcome-text h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .lang-switch {
        margin-right: 15px;
    }

    .hero-section {
        height: 60vh;
    }

    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-heading {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .welcome-text h3 {
        font-size: 22px;
    }
    
    .welcome-right p {
        font-size: 16px;
    }

    .course-image {
        height: 180px;
    }
    
    /* Fix for Apply button on mobile */
    .desktop-apply {
        display: none;
    }
    
    .mobile-apply-container {
        display: block;
    }
}

/* Courses Section */
.courses-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.section-title {
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    transform: none;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.discover-more-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 300;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.discover-more-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.discover-more-btn i {
    margin-left: 8px;
}

.courses-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
    padding: 20px 0;
    margin: 0 -15px;
}

.courses-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.course-card {
    min-width: 300px;
    max-width: 300px;
    margin: 0 15px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 20px;
}

.course-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: 'Times New Roman', Times, serif;
}

.course-description {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.course-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: background-color 0.3s;
}

.course-btn:hover {
    background-color: var(--primary-dark);
}

.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.slider-prev, .slider-next {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Adjustments for Course Cards */
@media (max-width: 768px) {
    .course-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .course-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .course-card {
        min-width: 220px;
        max-width: 220px;
        margin: 0 10px;
    }
    
    .course-image {
        height: 160px;
    }
    
    .course-content {
        padding: 15px;
    }
}

/* Explore Our College Section */
.explore-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--bg-light);
}

.explore-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.red-line-vertical, .maroon-line-vertical {
    width: 3px;
    height: 80px;
    background-color: var(--primary-color);
    margin-right: 20px;
}

.explore-titles {
    flex: 1;
}

.explore-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
}

.explore-title {
    font-size: 38px;
    font-weight: 400;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    line-height: 1.2;
}

.explore-content {
    position: relative;
    display: flex;
    margin-top: 30px;
}

.facility-image {
    width: 70%;
    height: 400px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    background: var(--bg-white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.facility-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.facility-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.explore-link {
    color: var(--primary-color);
    font-weight: 300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.explore-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.explore-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments for Explore Section */
@media (max-width: 992px) {
    .facility-image {
        width: 60%;
        height: 350px;
    }
    
    .facility-card {
        width: 50%;
        padding: 30px;
    }
    
    .explore-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .explore-content {
        flex-direction: column;
    }
    
    .facility-image {
        width: 100%;
        height: 300px;
    }
    
    .facility-card {
        position: relative;
        width: 100%;
        top: -30px;
        transform: none;
        margin: 0 15px;
    }
    
    .explore-title {
        font-size: 28px;
    }
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--bg-light-accent);
}

.lifestyle-content {
    position: relative;
    display: flex;
    margin-top: 30px;
    flex-direction: row-reverse;
}

.lifestyle-image {
    width: 70%;
    height: 400px;
    overflow: hidden;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    background: var(--bg-white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.lifestyle-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.lifestyle-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.campus-link {
    color: var(--primary-color);
    font-weight: 300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.campus-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.campus-link:hover .arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments for Lifestyle Section */
@media (max-width: 992px) {
    .lifestyle-image {
        width: 60%;
        height: 350px;
    }
    
    .lifestyle-info {
        width: 50%;
        padding: 30px;
    }
    
    .lifestyle-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .lifestyle-content {
        flex-direction: column;
    }
    
    .lifestyle-image {
        width: 100%;
        height: 300px;
    }
    
    .lifestyle-info {
        position: relative;
        width: 100%;
        top: -30px;
        transform: none;
        margin: 0 15px;
    }
}

/* Partners & Accreditations Section */
.partners-section {
    padding: 80px 0;
    background-color: #fff;
}

.partners-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.accreditations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.accreditation-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(33.333% - 20px);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accreditation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accreditation-icon {
    margin-right: 20px;
    font-size: 36px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: rgba(224, 26, 34, 0.1);
    border-radius: 50%;
}

.accreditation-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.accreditation-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Adjustments for Partners Section */
@media (max-width: 992px) {
    .accreditation-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .partners-intro {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .accreditation-item {
        width: 100%;
        max-width: 400px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(50% - 15px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.3;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #777;
}

/* Responsive Adjustments for Testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }
}

/* Application Journey Section */
.application-section {
    background: #001f3f; /* Navy blue */
    padding: 50px 0;
    position: relative;
    color: white;
    overflow: hidden;
}

.application-content {
    display: flex;
    align-items: stretch;
    position: relative;
}

.application-image {
    width: 40%;
    overflow: hidden;
    height: 350px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.application-info {
    width: 60%;
    padding: 30px 20px 30px 30px;
    margin-left: 40%;
}

.application-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
}

.application-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
}

.intake-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.intake-card {
    background: white;
    border-radius: 10px;
    padding: 10px;
    flex: 1;
    color: #333;
}

.intake-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-color);
}

.intake-year {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.intake-status {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

.intake-deadline {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.application-notice {
    display: flex;
    align-items: flex-start;
    background: rgba(30, 65, 114, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.notice-icon {
    font-size: 18px;
    margin-right: 10px;
    color: #ffffff;
}

.application-notice p {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    color: white;
}

.apply-now-wrapper {
    margin-top: 20px;
}

.apply-now-btn {
    display: inline-flex;
    align-items: center;
    background-color: #d4a017;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-now-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.apply-now-btn:hover {
    background-color: #c19015;
}

.apply-now-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments for Application Section */
@media (max-width: 992px) {
    .application-content {
        flex-direction: column;
    }
    
    .application-image {
        width: 100%;
        height: 250px;
        position: relative;
        left: auto;
        bottom: auto;
    }
    
    .application-info {
        width: 100%;
        padding: 25px;
        margin-left: 0;
    }
    
    .application-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .intake-cards {
        flex-direction: column;
        gap: 10px;
    }
    
    .application-info {
        padding: 20px;
    }
    
    .application-title {
        font-size: 22px;
    }
    
    .application-subtitle {
        font-size: 14px;
    }
}

/* Google Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 15px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #444;
    font-size: 16px;
}

.google-badge i {
    color: #4285F4;
    margin-right: 8px;
    font-size: 18px;
}

.rating {
    margin-bottom: 30px;
    color: #FFC107;
    font-size: 20px;
}

.rating span {
    margin-left: 8px;
    color: #333;
    font-weight: 600;
}

.reviews-slider-container {
    position: relative;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 auto;
    width: 380px;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    margin: 0 0 5px;
    color: #333;
}

.review-rating {
    color: #FFC107;
    font-size: 14px;
}

.review-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.review-prev, .review-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover, .review-next:hover {
    background-color: var(--primary-color);
    color: white;
}

.write-review-btn, .view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.write-review-btn {
    background-color: var(--primary-color);
    color: white;
}

.view-all-btn {
    background-color: #4285F4; /* Google blue */
    color: white;
}

.write-review-btn i, .view-all-btn i {
    margin-right: 8px;
}

.write-review-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.view-all-btn:hover {
    background-color: #3367d6; /* Darker Google blue */
    color: white;
}

/* Responsive Adjustments for Reviews Section */
@media (max-width: 992px) {
    .reviews-slider {
        gap: 20px;
    }
    
    .review-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 280px;
        padding: 20px;
    }
    
    .reviewer-image {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-info h4 {
        font-size: 16px;
    }
    
    .review-content p {
        font-size: 14px;
    }
}

/* Site Footer */
.site-footer {
    background-color: #1a1a2e;
    color: #fff;
    font-size: 14px;
    position: relative;
}

.footer-top {
    background-color: #1a1a2e;
    padding: 60px 0 30px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 0;
}

.footer-links ul li i {
    font-size: 10px;
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-newsletter form {
    position: relative;
    margin-top: 10px;
}

.footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 80px 6px 15px;
    width: 100%;
    height: 40px;
    border-radius: 10px 0 0 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: var(--primary-color);
    font-size: 14px;
    padding: 0 15px;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 10px 10px 0;
    font-weight: 300;
    cursor: pointer;
}

.footer-newsletter input[type="submit"]:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    background: #151524;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer Responsive Improvements */
@media (max-width: 991px) {
    .footer-top .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-info, .footer-links, .footer-contact {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-newsletter form {
        display: flex;
        max-width: 100%;
    }
    
    .footer-newsletter input[type="email"] {
        flex: 1;
    }
    
    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    
    .footer-bottom .row {
        flex-direction: column;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .footer-bottom-links {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-links, .footer-contact {
        margin-top: 0;
    }
    
    .office-block {
        margin-bottom: 20px;
    }
    
    .office-block h5 {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-links a {
        display: block;
        margin: 0 0 10px 0;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
    /* Multi-row slider responsive adjustment */
    .slider-row-2 {
        margin-top: 10px !important;
    }
    
    /* Courses section responsive fixes */
    .courses-header {
        margin-bottom: 20px;
    }
    
    /* Image slider section padding adjustment */
    .image-slider-section {
        padding: 50px 0;
    }
    
    /* Welcome section adjustment */
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-content {
        flex-direction: column;
    }
    
    .welcome-heading {
        margin-bottom: 30px;
    }
    
    /* Review cards responsive fixes */
    .review-card {
        padding: 15px;
    }
    
    /* Application section responsive fixes */
    .application-image {
        height: 200px;
    }
    
    .intake-cards {
        flex-direction: column;
    }
    
    .intake-card {
        margin-bottom: 10px;
    }
}

/* Floating Social Media Buttons */
.floating-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Add spacing between icons */
    z-index: 9999;
}

.floating-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--primary-color);
    border-radius: 10px;
    margin: 0; /* Remove any default margin */
    text-decoration: none; /* Remove underline */
    border-bottom: none; /* Remove any bottom border */
}

.floating-social .social-icon i {
    text-decoration: none;
    border-bottom: none;
}

.floating-social .social-icon:hover {
    width: 50px;
    background-color: var(--primary-dark);
}

/* Remove any bottom styling specifically for Twitter icon */
.floating-social .twitter i {
    border-bottom: none;
    box-shadow: none;
}

/* Remove individual social media brand colors */
.floating-social .facebook,
.floating-social .twitter,
.floating-social .instagram,
.floating-social .whatsapp {
    /* All use theme color defined above */
    text-decoration: none;
    border-bottom: none;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .floating-social {
        display: none; /* Hide on mobile or make it smaller/different */
    }
    
    .desktop-apply {
        display: none !important;
    }
    
    .mobile-apply-container {
        display: block;
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.text-underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Team Section */
.team-section {
    background-color: var(--bg-light-accent);
}

/* Accreditation Section */
.accreditation-section {
    background-color: var(--bg-light);
}

/* Dropdown styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 4px;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    transition: background 0.2s;
}

.nav-menu .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .mobile-toggler {
        display: block;
        z-index: 1001;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        flex-direction: column;
        padding: 80px 20px 20px;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li {
        display: block;
        margin: 0;
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 12px 15px;
        color: #333 !important; /* Force dark text color */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-right {
        display: block;
        width: 100%;
        padding: 15px 0;
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .search-bar {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .lang-switch {
        display: block;
        margin-bottom: 15px;
        color: #333 !important; /* Force dark text color */
    }
    
    .desktop-apply {
        display: none;
    }
    
    .mobile-apply-container {
        display: block;
    }
    
    body.menu-active {
        overflow: hidden;
    }
    
    /* Menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Button styles */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.btn,
.apply-btn,
.course-btn,
.play-btn,
.discover-more-btn,
.explore-link,
.campus-link,
.apply-now-btn,
.write-review-btn,
.view-all-btn,
.search-button,
.mobile-toggler,
.footer-newsletter input[type="submit"],
.slider-prev,
.slider-next,
.review-prev,
.review-next,
.social-links a,
.footer-links ul a,
.nav-menu a,
.lang-switch {
    font-family: 'Times New Roman', Times, serif !important;
}

/* Image Slider Section */
.image-slider-section {
    padding: 80px 0;
    background-color: var(--bg-light-accent);
    overflow: hidden;
}

/* Multi-Image Slider Styles */
.multi-image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.slider-track {
    display: flex;
    width: calc(250px * 10); /* Width of single item * number of items */
    animation: slide 30s linear infinite;
}

.slider-track.reverse {
    animation: slide-reverse 30s linear infinite;
}

.slider-item {
    width: 250px;
    height: 180px;
    flex-shrink: 0;
    padding: 0 10px;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.slider-item:hover .slider-img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation keyframes */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Half the total width */
    }
}

@keyframes slide-reverse {
    0% {
        transform: translateX(calc(-250px * 5)); /* Start from middle */
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive styles for image slider */
@media (max-width: 992px) {
    .slider-item {
        width: 220px;
        height: 160px;
    }
    
    .slider-track {
        width: calc(220px * 10);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 5));
        }
    }
    
    @keyframes slide-reverse {
        0% {
            transform: translateX(calc(-220px * 5));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 768px) {
    .slider-item {
        width: 180px;
        height: 140px;
    }
    
    .slider-track {
        width: calc(180px * 10);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 5));
        }
    }
    
    @keyframes slide-reverse {
        0% {
            transform: translateX(calc(-180px * 5));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 576px) {
    .slider-item {
        width: 150px;
        height: 120px;
    }
    
    .slider-track {
        width: calc(150px * 10);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
    
    @keyframes slide-reverse {
        0% {
            transform: translateX(calc(-150px * 5));
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* Pause animation on hover */
.multi-image-slider:hover .slider-track {
    animation-play-state: paused;
}

/* Restore footer contact details and office locations styles */
.office-locations {
    margin-bottom: 20px;
}

.office-block {
    margin-bottom: 15px;
}

.office-block h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.office-block p, .contact-details p {
    margin-bottom: 10px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    margin-top: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
}

/* Add back menu overlay and responsive menu styles */
@media (max-width: 991px) {
    /* Overlay for when menu is active */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Menu positioning and styling */
    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        display: block;
        font-size: 16px;
    }
    
    /* Search and Apply button styling */
    .nav-right {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        align-items: flex-start;
        margin-top: auto; /* Push to bottom of side menu */
    }
    
    .search-bar {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .search-input {
        width: 100%;
    }
    
    .lang-switch {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .desktop-apply {
        display: none !important;
    }
    
    .mobile-apply-container {
        display: block !important;
    }
    
    /* Hero title responsive adjustment */
    .hero-content h1 {
        font-size: 36px;
    }
}

/* Regular styles for desktop navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.nav-menu a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

.lang-switch {
    margin-right: 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

/* Apply button styles */
.apply-btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.apply-btn:hover {
    background-color: var(--primary-dark) !important;
    color: white !important;
    text-decoration: none;
}

.desktop-apply {
    margin-left: 15px;
}

/* Fix mobile apply button */
.mobile-apply-container {
    background-color: var(--primary-color);
}

/* Fix for Apply button in mobile menu */
@media (max-width: 991px) {
    .nav-right .apply-btn {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Lightbox Customization */
.lb-close {
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 20px !important;
    right: 20px !important;
    transition: all 0.3s ease !important;
}

.lb-close:hover {
    background-color: var(--primary-color) !important;
    transform: scale(1.1) !important;
}

.lb-close::before {
    content: '×' !important;
    color: white !important;
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 300 !important;
}

/* Make lightbox overlay darker */
.lb-overlay {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* About Page Hero Section */
.about-hero {
    height: 80vh;
    background-image: url('../images/abouthero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -80px;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.2rem;
    }
}

.hero-header {
    height: 600px;
    background-image: url('../images/abouthero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    margin-top: 0;
    padding-top: 0;
}

/* About Page Specific Styles */
.about-section {
    padding: 80px 0;
}

.about-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.about-text p {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px !important;
    line-height: 1.6;
    color: #555;
}

.about-text h2.section-title {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 42px !important;
    margin-bottom: 15px;
}

.about-text h3, 
.about-text h4 {
    font-family: 'Times New Roman', Times, serif !important;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #b70013;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #b70013;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #b70013;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #b70013;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #b70013;
    border-width: 10px 10px 10px 0;
    border-color: transparent #b70013 transparent transparent;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-container::before {
        left: 60px;
        border: medium solid #b70013;
        border-width: 10px 10px 10px 0;
        border-color: transparent #b70013 transparent transparent;
    }

    .left::after, .right::after {
        left: 15px;
    }
    
    .right {
        left: 0%;
    }
}

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        .timeline-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid var(--primary-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::after {
            right: -10px;
        }
        .right::after {
            left: -10px;
        }
        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .gallery-img {
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .gallery-img:hover {
            transform: scale(1.03);
        }
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin: 60px 0;
        }
        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }
        .parallax-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        .core-value-card {
            height: 100%;
            transition: transform 0.3s ease;
        }
        .core-value-card:hover {
            transform: translateY(-5px);
        }
        .about-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .about-image-container img {
            transition: transform 0.5s ease;
        }
        .about-image-container:hover img {
            transform: scale(1.05);
        }
        .story-container {
            position: relative;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        /* Updated hero header styles */
        .hero-header {
            height: 600px;
            background-image: url('../images/abouthero.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            margin-top: 0;
            padding-top: 0;
        }
        
        .hero-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 70% opacity */
            z-index: 1;
        }
        
        .hero-header-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            max-width: 800px;
        }
        
        .hero-header h1 {
            font-size: 42px; /* Reduced from 60px */
            font-weight: 700;
            margin-bottom: 15px; /* Reduced from 20px */
            font-family: 'Times New Roman', Times, serif;
            color: white;
        }
        
        .hero-header p {
            font-size: 16px; /* Reduced from 20px */
            margin-bottom: 20px; /* Reduced from 30px */
            max-width: 600px;
            color: white;
        }
        
        .hero-buttons .btn {
            padding: 10px 25px; /* Reduced from 12px 30px */
            margin-right: 15px;
            border-radius: 10px;
            font-weight: 300;
            text-transform: uppercase;
            font-size: 14px; /* Added smaller font size */
        }
        
        .hero-buttons .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .hero-buttons .btn-outline {
            color: white;
            border: 2px solid white;
            background-color: transparent;
        }
        
        .hero-buttons .btn-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }
        
        @media screen and (max-width: 767px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-container::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            .left::after, .right::after {
                left: 15px;
            }
            .right {
                left: 0%;
            }
            .hero-header {
                height: 300px; /* Reduced from 400px */
            }
            .hero-header h1 {
                font-size: 28px; /* Reduced from 36px */
            }
            .hero-header p {
                font-size: 14px; /* Reduced from 16px */
            }
            .hero-buttons .btn {
                padding: 8px 15px; /* Reduced from 10px 20px */
                margin-bottom: 10px;
                margin-right: 10px;
                font-size: 12px; /* Smaller font size for mobile */
            }
        }
   
/* Clean Hero Section */
.clean-hero {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.clean-hero .hero-header-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.clean-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.clean-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.clean-hero .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.clean-hero .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.clean-hero .btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
}

@media (max-width: 768px) {
    .clean-hero {
        padding: 60px 0;
    }
    
    .clean-hero h1 {
        font-size: 2rem;
    }
    
    .clean-hero p {
        font-size: 1rem;
    }
    
    .clean-hero .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .clean-hero .btn {
        width: 100%;
        max-width: 250px;
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #b70013;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 40px;
}

.back-to-top:hover {
    background: #94000f;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Privacy Policy, Terms of Service, and Site Map Styles */
.privacy-content,
.terms-content,
.sitemap-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px;
    font-family: 'Times New Roman', Times, serif;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.content-wrapper ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-wrapper ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

/* Site Map Specific Styles */
.sitemap-section {
    margin-bottom: 30px;
}

.sitemap-section h2 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sitemap-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-section ul li {
    margin-bottom: 10px;
}

.sitemap-section ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.sitemap-section ul li a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
    }

    .content-wrapper h2 {
        font-size: 20px;
    }

    .content-wrapper p,
    .content-wrapper ul li,
    .sitemap-section ul li a {
        font-size: 14px;
    }
}
   
   