/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Larger container for tutors listing page */
.tutors-listing-section .container {
    max-width: 1400px;
}

/* Unified Hero Section */
.unified-hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../assets/images/hero-background.jpg'), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-background.jpg'), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Top Bar */
.top-bar {
    position: relative;
    z-index: 2;
    padding: 10px 0;
    font-size: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
}

.top-bar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Gradient fade indicators for scrollable content on mobile */
@media (max-width: 768px) {
    .top-bar::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3));
        pointer-events: none;
        z-index: 3;
    }
    
    .top-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 100%;
        background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.3));
        pointer-events: none;
        z-index: 3;
    }
}

.top-bar .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: max-content;
    transition: transform 0.3s ease;
}

.need-help {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.need-help i {
    color: #3b82f6;
}

.need-help .phone-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(45%) sepia(96%) saturate(2000%) hue-rotate(210deg) brightness(100%) contrast(100%);
}

.custom-icon {
    display: inline-block;
    vertical-align: middle;
}

.fallback-icon {
    display: none;
}

.phone-number {
    color: #3b82f6;
    font-weight: 600;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    white-space: nowrap;
}

.register-link,
.login-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
}

.register-link:hover,
.login-link:hover {
    color: #3b82f6;
    background-color: rgba(255, 255, 255, 0.05);
}

.register-link:active,
.login-link:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.register-link:hover,
.login-link:hover {
    color: #3b82f6;
}

.divider {
    color: #666;
    flex-shrink: 0;
}

.profile-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3b82f6;
    flex-shrink: 0;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
}

.profile-image:hover {
    transform: scale(1.1);
    border-color: #60a5fa;
}

.profile-image:active {
    transform: scale(0.95);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #3b82f6;
    display: block;
    pointer-events: none;
}

/* Main Navbar */
.main-navbar {
    position: relative;
    z-index: 10;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

.nav-menu {
    margin-left: auto;
    margin-right: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    /* width: auto;
    height: 45px; */
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #60a5fa;
}

.nav-menu a.active {
    text-decoration: underline;
    text-decoration-color: #60a5fa;
    text-underline-offset: 5px;
}

.nav-menu a.active {
    text-decoration: underline;
    text-decoration-color: #2563eb;
    text-underline-offset: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    position: relative;
}

.mobile-menu-toggle .menu-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: calc(5vh - 1px);
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
    max-width: 900px;
}

.hero-search-container {
    display: flex;
    gap: 0;
    border-radius: 10px !important;
    max-width: 700px;
    margin: 0;
    align-items: stretch;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.search-box i,
.search-box .search-icon {
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 18px;
    z-index: 1;
}

.search-box .search-icon {
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.search-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.get-started-btn {
    padding: 18px 40px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    margin: 3px;
    border-radius: 6px 6px 6px 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
}

.get-started-btn:hover {
    background-color: #1d4ed8;
}

/* About Us Page Title */
.about-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.about-title-accent {
    width: 4px;
    height: 80px;
    background-color: #2563eb;
    flex-shrink: 0;
}

.about-page-title {
    font-size: 42px;
    font-weight:600;
    color: #fff;
    text-align: start;
    margin: 0;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 768px) {
    .about-page-title {
        font-size: 48px;
    }
    
    .about-title-accent {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .about-page-title {
        font-size: 36px;
    }
    
    .about-title-accent {
        height: 45px;
        width: 3px;
    }
    
    /* .about-title-wrapper {
        gap: 15px;
    } */
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-images {
    position: relative;
}

.decorative-shapes {
    position: absolute;
    z-index: 1;
}

.shapes-left {
    top: -20px;
    left: -20px;
}

.parallel-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 15px;
}

.parallel-lines::before,
.parallel-lines::after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: #9ca3af;
    transform: rotate(15deg);
}

.parallel-lines::before {
    margin-bottom: 3px;
}

.overlapping-rectangles {
    position: relative;
    width: 80px;
    height: 60px;
}

.rect-blue {
    position: absolute;
    width: 50px;
    height: 40px;
    background-color: #2563eb;
    border-radius: 3px;
    z-index: 2;
}

.rect-green {
    position: absolute;
    width: 50px;
    height: 40px;
    background-color: #10b981;
    border-radius: 3px;
    z-index: 2;
}

.rect-transparent {
    position: absolute;
    width: 50px;
    height: 40px;
    border: 2px solid #9ca3af;
    border-radius: 3px;
    top: 10px;
    left: 10px;
    background-color: transparent;
    z-index: 1;
}

.shapes-right {
    top: -20px;
    right: -20px;
}

.image-stack {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
}

.stacked-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.stacked-image img {
    width: 100%;
    height: auto;
    display: block;
}

.img-1 {
    z-index: 3;
    transform: rotate(-2deg);
    margin-bottom: 0;
    width: 100%;
}

.img-2 {
    z-index: 2;
    transform: rotate(1deg);
    margin-bottom: -30px;
    margin-left: 20px;
}

.img-3 {
    z-index: 1;
    transform: rotate(-1deg);
    margin-left: 40px;
}

/* Image styling */
.stacked-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 250px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

/* Fallback for missing images */
.stacked-image img[src=""],
.stacked-image img:not([src]) {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 250px;
}

.about-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-title .highlight {
    color: #2563eb;
}

.about-paragraphs {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.about-paragraphs p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
        background: transparent;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
    }
    
    .top-bar .container {
        flex-wrap: nowrap;
        gap: 15px;
        padding: 0 20px;
        min-width: max-content;
    }
    
    .top-bar-left {
        flex: 0 0 auto;
        min-width: max-content;
    }
    
    .need-help {
        font-size: 11px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .top-bar-right {
        gap: 12px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .register-link,
    .login-link {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .profile-image {
        width: 28px;
        height: 28px;
    }
    
    .main-navbar {
        background: transparent;
        position: relative;
        z-index: 1000;
    }
    
    .navbar-content {
        padding: 12px 0;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 9999;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Backdrop overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        width: 100%;
        padding: 15px 0;
        color: #fff !important;
        display: block;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s, padding-left 0.3s;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #60a5fa !important;
        padding-left: 10px;
    }
    
    .nav-menu a:active {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        display: none;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        margin-top: 5px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: #fff !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: #60a5fa !important;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 10002;
        position: relative;
        cursor: pointer;
    }
    
    .main-navbar {
        background: transparent;
        position: relative;
        z-index: 1000;
    }
    
    .top-bar {
        position: relative;
        z-index: 999;
    }
    
    .top-bar {
        background: transparent;
    }
    
    .unified-hero-section {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        min-height: calc(100vh - 150px);
        justify-content: center;
        /* padding: 40px 0; */
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-headline {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-search-container {
        flex-direction: column;
        gap: 10px;
        margin: 0 auto;
        max-width: 100%;
        justify-content: center;
    }
    
    .get-started-btn {
        width: 100%;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .decorative-shapes {
        display: none;
    }
    
    .image-stack {
        margin-top: 0;
    }
    
    .img-1,
    .img-2,
    .img-3 {
        transform: none;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .main-navbar {
        position: relative;
        z-index: 1000;
    }
    
    .navbar-content {
        z-index: 1001;
    }
    
    .mobile-menu-toggle {
        z-index: 10002;
    }
    
    .top-bar {
        font-size: 10px;
        padding: 6px 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
        z-index: 999;
    }
    
    .top-bar .container {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        padding: 0 15px;
        min-width: max-content;
        justify-content: flex-start;
        display: flex;
    }
    
    .top-bar-left {
        flex: 0 0 auto;
        min-width: max-content;
        display: flex;
        align-items: center;
    }
    
    .top-bar-right {
        flex: 0 0 auto;
        min-width: max-content;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .need-help {
        font-size: 10px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .phone-number {
        font-size: 10px;
        white-space: nowrap;
    }
    
    .register-link,
    .login-link {
        font-size: 10px;
        white-space: nowrap;
        padding: 6px 10px;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
        border-radius: 4px;
        transition: background-color 0.2s;
    }
    
    .register-link:active,
    .login-link:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .profile-image {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .divider {
        display: none;
    }
    
    .main-navbar {
        background: transparent;
    }
    
    .navbar-content {
        padding: 10px 0;
    }
    
    .logo-img {
        max-height: 35px;
    }
    
    .nav-menu {
        top: 0;
        padding: 80px 15px 20px;
        height: 100vh;
        z-index: 9999;
    }
    
    .main-navbar {
        z-index: 1000;
    }
    
    .mobile-menu-toggle {
        z-index: 10002;
    }
    
    .unified-hero-section {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        min-height: calc(100vh - 120px);
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 20px;
        margin-bottom: 25px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
    }
    
    .hero-search-container {
        margin: 0 auto;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input,
    .get-started-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .get-started-btn {
        width: 100%;
        margin: 0;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-paragraphs {
        font-size: 14px;
    }
    
    .about-paragraphs p {
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Tutors Section */
.tutors-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #2563eb;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
}

.tutors-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.tutors-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-bottom: 40px;
    will-change: transform;
}

.tutor-card {
    flex: 0 0 calc(25% - 22.5px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 100%;
    min-width: 0;
}

.tutor-card:hover {
    transform: translateY(-5px);
}

.tutor-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.tutor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.tutor-info {
    padding: 25px 20px;
}

.tutor-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tutor-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    color: #64748b;
    font-size: 14px;
}

.tutor-details {
    margin-bottom: 20px;
}

.tutor-details p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tutor-details strong {
    color: #1e293b;
    font-weight: 600;
}

.book-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.book-btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.book-btn-primary:hover {
    background-color: #1d4ed8;
}

.book-btn-outline {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.book-btn-outline:hover {
    background-color: #2563eb;
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #2563eb;
}

/* Tutors Listing Section */
.tutors-listing-section {
    padding: 100px 0;
    background-color: #fff;
}

.tutors-listing-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    position: relative;
}

.tutors-main {
    position: relative;
    min-width: 0; /* Prevents grid item from overflowing */
}

.tutors-decorative-shapes {
    position: absolute;
    z-index: 1;
}

.tutors-main .shapes-left {
    top: -20px;
    left: -20px;
}

.tutors-main .shapes-right {
    top: 60px;
    right: -20px;
}

.rect-blue-outline {
    width: 60px;
    height: 60px;
    border: 2px solid #2563eb;
    position: relative;
}

.rect-blue-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 80%;
    height: 2px;
    background: #fff;
}

.rect-blue-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 80%;
    height: 2px;
    background: #fff;
}

/* Filters Section */
.tutors-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.results-count {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.filters-group {
    display: flex;
    gap: 15px;
}

.filter-dropdown {
    padding: 10px 40px 10px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    background-color: #f9fafb;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e293b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s;
}

.filter-dropdown:hover {
    border-color: #2563eb;
    background-color: #fff;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Tutors Grid */
.tutors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.tutors-grid .tutor-card {
    flex: none;
    width: 100%;
    min-width: 0; /* Prevents card from overflowing */
}

.tutors-sidebar {
    position: relative;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: #fff;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    position: relative;
}

.blog-main {
    position: relative;
}

.blog-decorative-shapes {
    position: absolute;
    z-index: 1;
}

.blog-main .shapes-left {
    top: -20px;
    left: -20px;
}

.blog-sidebar .shapes-right {
    top: -20px;
    right: -20px;
}

.blog-title {
    font-size: 72px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1;
}

.featured-post {
    position: relative;
    margin-bottom: 60px;
}

.post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-date-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.post-date {
    flex-shrink: 0;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.date-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.post-content {
    flex: 1;
    padding: 0;
}

.post-title {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.post-excerpt {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-btn {
    padding: 12px 30px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background-color: #1d4ed8;
}

/* Blog Sidebar */
.blog-sidebar {
    position: relative;
}

.sidebar-section {
    margin-bottom: 50px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.course-list,
.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-item,
.post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.course-thumbnail,
.post-thumbnail {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.course-thumbnail img,
.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-info,
.post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.course-name,
.post-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.course-price {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
}

.post-item-date {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
}

/* Responsive for Tutors and Blog */
@media (max-width: 1024px) {
    .tutor-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .tutors-listing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .tutors-section {
        padding: 60px 0;
    }
    
    .tutors-listing-section {
        padding: 60px 0;
    }
    
    .tutors-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filters-group {
        width: 100%;
        flex-direction: column;
    }
    
    .filter-dropdown {
        width: 100%;
    }
    
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .tutor-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-title {
        font-size: 40px;
    }
    
    .tutors-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .tutors-decorative-shapes {
        display: none;
    }
    
    /* Teacher Page Responsive */
    .become-tutor-section {
        padding: 60px 0;
    }
    
    .become-tutor-title {
        font-size: 36px;
    }
    
    .become-tutor-content {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-title {
        font-size: 32px;
    }
    
    .tutor-image-stack {
        height: 400px;
    }
    
    .who-can-become-hero {
        padding: 60px 0;
    }
    
    .who-can-become-title {
        font-size: 32px;
    }
    
    .who-can-become-content {
        padding: 60px 0;
    }
    
    .who-can-become-wrapper {
        grid-template-columns: 1fr;
    }
    
    .take-first-step-title {
        font-size: 28px;
    }
    
    .feature-cards-section {
        padding: 60px 0;
    }
    
    .feature-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-section {
        padding: 100px 0;
        min-height: 400px;
    }
    
    .cta-banner-title {
        font-size: 36px;
    }
    
    .cta-decorative-clips {
        display: none;
    }
    
    .post-image {
        height: 300px;
    }
    
    .post-date-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-date {
        min-width: auto;
    }
    
    .post-meta {
        gap: 20px;
    }
    
    .blog-decorative-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .tutor-card {
        flex: 0 0 100%;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .post-title {
        font-size: 22px;
    }
    
    .post-date-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-number {
        font-size: 36px;
    }
    
    .course-item,
    .post-item {
        flex-direction: column;
    }
    
    .course-thumbnail,
    .post-thumbnail {
        width: 100%;
        height: 200px;
    }
}

/* Contact Us Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 16px;
    color: #64748b;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card-highlight {
    border-bottom: 4px solid #10b981;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #fff;
}

.address-icon {
    background-color: #2563eb;
}

.phone-icon {
    background-color: #10b981;
}

.timer-icon {
    background-color: #fbbf24;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

.contact-card-text p {
    margin-bottom: 8px;
}

.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Become A Tutor Section */
.become-tutor-section {
    padding: 100px 0;
    background-color: #fff;
}

.become-tutor-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.become-tutor-decorative-shapes {
    position: absolute;
    z-index: 1;
}

.become-tutor-header .shapes-left {
    top: -20px;
    left: -20px;
}

.become-tutor-header .shapes-right {
    top: -20px;
    right: -20px;
}

.become-tutor-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.become-tutor-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.become-tutor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.become-tutor-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.become-tutor-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.become-tutor-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tutor-feature-block {
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 10px;
}

.tutor-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.tutor-feature-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background-color: #fff;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.how-it-works-header {
    margin-bottom: 60px;
}

.lightbulb-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 20px;
}

.lightbulb-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #e5e7eb;
    border-radius: 50px;
    background-color: #fff;
}

.lightbulb-icon {
    font-size: 48px;
    color: #fbbf24;
    position: relative;
    z-index: 1;
    display: block;
}

.how-it-works-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.how-it-works-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.explore-link:hover {
    color: #1d4ed8;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-01,
.step-icon-02,
.step-icon-03 {
    background-color: #10b981;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.how-it-works-images {
    position: relative;
}

.tutor-image-stack {
    position: relative;
    height: 600px;
}

.stacked-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px !important;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.stacked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-image-stack .img-1 {
    width: 70%;
    height: 50%;
    top: 0;
    left: 0;
    z-index: 3;
}

.tutor-image-stack .img-2 {
    width: 65%;
    height: 45%;
    top: 30%;
    right: 0;
    z-index: 2;
}

.tutor-image-stack .img-3 {
    width: 60%;
    height: 40%;
    bottom: 0;
    left: 20%;
    z-index: 1;
}

/* Who Can Become Section */
.who-can-become-section {
    background-color: #fff;
}

.who-can-become-hero {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}

.who-can-become-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.who-can-become-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.who-can-become-content {
    padding: 100px 0;
    background-color: #fff;
}

.who-can-become-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-can-become-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.who-can-become-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.take-first-step-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.take-first-step-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.requirement-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.requirement-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e7eb;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.requirement-content {
    flex: 1;
}

.requirement-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.requirement-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Approved Tutors Section */
.approved-tutors-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.approved-tutors-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 100px 0;
    background-color: #fff;
}

.feature-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-money {
    border-bottom: 4px solid #10b981;
}

.card-verified {
    border-bottom: none;
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 40px;
    color: #fff;
}

.money-icon {
    background-color: #10b981;
}

.verified-icon {
    background-color: #fbbf24;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 120px 0;
    background-color: #f5f5f0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.02) 1px, rgba(0,0,0,0.02) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0,0,0,0.02) 1px, rgba(0,0,0,0.02) 2px);
    position: relative;
    overflow: visible;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner-section .container {
    position: relative;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.3;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
}

.cta-get-started-btn {
    padding: 16px 45px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    letter-spacing: 0.8px;
    display: inline-block;
    margin-top: 10px;
}

.cta-get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
    background: #059669;
}

.cta-decorative-clips {
    position: absolute;
    right: 8%;
    top: 12%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
}

.clip {
    width: 30px;
    height: 40px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.clip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background-color: inherit;
    border-radius: 0 0 2px 2px;
    opacity: 0.85;
}

.clip::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 9px;
    background-color: inherit;
    border-radius: 2px 2px 0 0;
    clip-path: polygon(28% 0%, 72% 0%, 100% 100%, 0% 100%);
}

.clip-1 {
    background-color: #ec4899;
    transform: rotate(10deg);
}

.clip-2 {
    background-color: #f97316;
    transform: rotate(-6deg);
}

.clip-3 {
    background-color: #84cc16;
    transform: rotate(15deg);
}

/* Footer */
.main-footer {
    background-color: #2079C1;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li {
    display: flex;
    align-items: center;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav-list a:hover {
    color: #fff;
}

.footer-nav-list i {
    font-size: 10px;
    margin-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive for Contact and Footer */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .contact-map iframe {
        height: 400px;
    }
    
    .main-footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }
    
    .contact-subtitle {
        font-size: 13px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-card-title {
        font-size: 18px;
    }
    
    .contact-card-text {
        font-size: 13px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .tutors-section {
        padding: 40px 0;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-title {
        font-size: 32px;
    }
    
    .tutor-card {
        flex: 0 0 100%;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}

/* FAQs Section */
.faqs-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.faqs-content {
    position: relative;
}

.faqs-decorative-shapes {
    position: absolute;
    z-index: 1;
}

.faqs-decorative-shapes.shapes-left {
    top: -20px;
    left: -20px;
}

.faqs-decorative-shapes.shapes-right {
    top: -20px;
    right: -20px;
}

.faqs-decorative-shapes.shapes-bottom-left {
    bottom: -20px;
    left: -20px;
}

.faqs-parallel-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 15px;
}

.faqs-line {
    width: 60px;
    height: 2px;
    background-color: #9ca3af;
    transform: rotate(15deg);
}

.faqs-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faqs-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.faqs-subtitle {
    font-size: 16px;
    color: #64748b;
}

.most-asked-section {
    position: relative;
    z-index: 2;
}

.most-asked-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: left;
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background-color: #f3f4f6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    background-color: #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    flex: 1;
}

.faq-arrow {
    color: #64748b;
    font-size: 14px;
    margin-left: 15px;
    transition: transform 0.3s;
}

.faq-item:hover .faq-arrow {
    color: #2563eb;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: #2563eb;
}

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

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

.faq-answer p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Responsive for FAQs */
@media (max-width: 768px) {
    .faqs-section {
        padding: 60px 0;
    }
    
    .faqs-main-title {
        font-size: 32px;
    }
    
    .faqs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faqs-decorative-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .faqs-main-title {
        font-size: 28px;
    }
    
    .most-asked-title {
        font-size: 20px;
    }
    
    .faq-item {
        padding: 15px 20px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    /* Teacher Page Responsive */
    .become-tutor-title {
        font-size: 32px;
    }
    
    .become-tutor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tutor-image-stack {
        height: 400px;
    }
    
    .who-can-become-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-title {
        font-size: 32px;
    }
    
    .cta-decorative-clips {
        display: none;
    }
}

