/* Color Palette & Variables */
:root {
    --primary-blue: #0ea5e9;
    --primary-blue-hover: #0284c7;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-muted: #64748b;

    /* Logo Colors */
    --logo-green: #84cc16;
    --logo-red: #e11d48;
    --logo-blue: #1d4ed8;

    /* UI Elements */
    --form-bg: rgba(255, 255, 255, 0.95);
    --input-border: #cbd5e1;
    --input-focus: #3b82f6;
    --error: #ef4444;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigation Bar Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.main-header .nav-link {
    color: var(--text-light);
}

.main-header .mobile-menu-btn {
    color: var(--text-light);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.main-header.scrolled .nav-link {
    color: var(--text-dark);
}

.main-header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    background: #fff;
    padding: 5px 10px;
    border-radius: 8px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-contact {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.btn-nav-contact::after {
    display: none;
}

.btn-nav-contact:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.4);
}

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

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        gap: 5px;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        color: var(--text-dark) !important;
    }

    .nav-link.btn-nav-contact {
        width: auto;
        padding: 12px 32px;
        margin-top: 10px;
        color: white !important;
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 40px;
    overflow: hidden;
}

/* Background */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Education/Students related high-quality image */
    background: url('assets/gallery/IMG_20230525_104937.jpg') no-repeat center center/cover;
    z-index: -2;
    transform: scale(1.05);
    /* Slight zoom for potential animation */
    transition: opacity 0.8s ease-in-out;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient overlay to make text pop */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.6) 100%);
    z-index: -1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

/* Left Content Styles */
.banner-text {
    flex: 1;
    min-width: 320px;
    color: var(--text-light);
}

/* Logo Design */
.logo {
    display: inline-block;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-num {
    font-size: 4rem;
    font-weight: 900;
    color: var(--logo-green);
    line-height: 0.8;
    /* Adding a yellow stroke effect using text-shadow */
    text-shadow:
        -1.5px -1.5px 0 #fbbf24,
        1.5px -1.5px 0 #fbbf24,
        -1.5px 1.5px 0 #fbbf24,
        1.5px 1.5px 0 #fbbf24;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-crore {
    color: var(--logo-red);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.logo-projects {
    color: var(--logo-blue);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* Typography */
.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.banner-text p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #f1f5f9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    line-height: 1.6;
}

/* Call Button */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 16px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.call-btn:hover {
    background: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.call-icon {
    font-size: 1.4rem;
    color: var(--primary-blue);
    animation: wiggle 2s linear infinite;
}

/* Form Styles (Premium Light Glassmorphism Design) */
.banner-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.banner-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-icon {
    background: linear-gradient(135deg, #F59E0B, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    animation: wiggle 2s linear infinite;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #EC4899;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder {
    color: #94a3b8;
}

/* Custom Select Dropdown Arrow styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    /* FontAwesome angle-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.custom-select option {
    background-color: #ffffff;
    color: #1e293b;
}

/* reCAPTCHA Mock */
.recaptcha-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--input-focus);
}

.recaptcha-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recaptcha-logo img {
    height: 28px;
    margin-bottom: 4px;
}

.recaptcha-logo span {
    font-size: 0.55rem;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* Submit Button Premium */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #6D28D9 0%, #EC4899 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(236, 72, 153, 0.5);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover i {
    transform: translateX(5px) translateY(-5px);
}

/* Decorative Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.blob-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #3b82f6;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-2 {
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #8b5cf6;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0);
    }
}

/* Stats Cards in Banner (Premium Split Design) */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.stat-card-glass {
    flex: 1;
    min-width: 110px;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(49, 46, 129, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(109, 40, 217, 0.4);
    border-color: rgba(236, 72, 153, 0.4);
}

.stat-icon-small {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #6D28D9, #9333EA);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.stat-card-glass:hover .stat-icon-small {
    background: linear-gradient(135deg, #9333EA, #EC4899);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.6);
    transform: scale(1.1);
}

.stat-card-glass h3 {
    font-size: 1.8rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 2px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card-glass span {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(to right, #F59E0B, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: top;
}

.stat-card-glass p {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none !important;
}

@media (max-width: 600px) {
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .stat-card-glass {
        flex: 1 1 45%;
        padding: 15px 10px;
    }
    .stat-card-glass h3 {
        font-size: 1.5rem;
    }
}

/* Info Section */
.info-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    align-items: start;
}

/* Left Content */
.info-content {
    width: 100%;
}

.image-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-slider img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: white;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.info-content h2 {
    color: #0284c7;
    /* Matching blue */
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content>p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefits-list i {
    color: #64748b;
    font-size: 1.2rem;
    margin-top: 5px;
}

.benefits-list div {
    color: #334155;
    line-height: 1.6;
}

.benefits-list strong {
    color: #1e293b;
}

/* Right Sidebar */
.info-sidebar {
    position: sticky;
    top: 40px;
}

.duration-card {
    background-color: #0284c7;
    /* Primary blue from logo/theme */
    color: white;
    padding: 20px 15px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.2);
}

.duration-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.duration-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.btn-contact {
    background-color: #a855f7;
    /* Purple */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-contact:hover {
    background-color: #9333ea;
}

.btn-call {
    background-color: white;
    color: #1e293b;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-call:hover {
    background-color: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        position: static;
    }

    .banner-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .banner-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-text h1 {
        font-size: 3rem;
    }

    .banner-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-form-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .banner-text h1 {
        font-size: 2.25rem;
    }

    .banner-text p {
        font-size: 1.1rem;
    }

    .logo-num {
        font-size: 3rem;
    }

    .logo-crore,
    .logo-projects {
        font-size: 1.2rem;
    }

    .banner-form {
        padding: 24px;
    }

    .form-header {
        font-size: 1.1rem;
    }

    .call-btn {
        font-size: 1.1rem;
        padding: 14px 24px;
    }
}

/* Third Section Slider */
.third-slider-section {
    width: 100%;
    padding: 20px 0 30px 0;
    background-color: #ffffff;
}

.full-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-slide.active {
    opacity: 1;
    z-index: 1;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.main-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 3.5rem;
    color: #000;
    z-index: 10;
    padding: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    opacity: 0.7;
}

.main-slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.main-slider-btn.prev-btn {
    left: 10px;
}

.main-slider-btn.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .main-slider {
        aspect-ratio: 16/9;
    }

    .main-slider-btn {
        font-size: 2rem;
        padding: 10px;
    }
}

/* Content Section (Fourth Section) */
.content-section {
    padding: 15px 0 0 0;
    background-color: #ffffff;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.blue-subheading {
    color: #0284c7;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.section-heading {
    color: #111827;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.text-content p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.mt-40 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 15px;
}

/* Skyline Graphic Transition */
.skyline-wrapper {
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #ffffff 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.skyline-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('assets/gallery/IMG_20230704_100626.jpg') repeat-x bottom left;
    background-size: contain;
    opacity: 0.8;
    filter: invert(45%) sepia(85%) saturate(3015%) hue-rotate(185deg) brightness(97%) contrast(100%);
}

/* Action Section (Fifth Section) */
.action-section {
    padding: 20px 0 40px 0;
    background-color: #dbeafe;
    /* Light blue/gray from the transition */
}

.list-container {
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

.list-heading {
    color: #0284c7;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.6;
}

.custom-list li i {
    color: #0284c7;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-purple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #a855f7;
    color: white;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-purple:hover {
    background-color: #9333ea;
}

@media (max-width: 768px) {
    .text-content p {
        text-align: left;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}

/* Features Grid Section */
.features-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.mb-50 {
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    background: #f4fafe;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    min-height: 140px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* subtle wave lines background using repeating gradient */
    background-image: repeating-radial-gradient(circle at 100% 0,
            transparent 0,
            transparent 25px,
            rgba(14, 165, 233, 0.05) 25px,
            rgba(14, 165, 233, 0.05) 26px);
}

.feature-content {
    flex: 1;
    padding: 25px;
    z-index: 2;
}

.feature-content h3 {
    color: #111827;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content .divider {
    width: 25px;
    height: 3px;
    background-color: #111827;
    margin-bottom: 15px;
}

.feature-content p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-wrapper-left {
    width: 50px;
    background-color: #575757;
    margin: 10px 0;
    border-radius: 25px 0 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.icon-wrapper-right {
    width: 50px;
    background-color: #575757;
    margin: 10px 0;
    border-radius: 0 25px 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.icon-wrapper-left i,
.icon-wrapper-right i {
    color: #0ea5e9;
    font-size: 1.4rem;
}

.corner-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background-color: #0ea5e9;
    transform: rotate(45deg);
    z-index: 1;
    border-radius: 15px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Photo Gallery Section (Sixth Section) */
.gallery-section {
    padding: 0 0 20px 0;
    background-color: #ffffff;
}

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

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Matching the slight gap in the reference image */
}

.photo-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 3px solid #7dd3fc;
    /* Distinct light blue border like the image */
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
    border-color: #0ea5e9;
}

@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Gallery Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

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

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(14, 165, 233, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    padding-left: 5px;
    /* Visual center for play icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
    /* Let the click fall through to the container */
}

.video-item:hover .custom-play-btn {
    background-color: #0284c7;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Benefits Slider Section (Seventh Section) */
.benefits-slider-section {
    padding: 20px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.benefits-slider {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px 15px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    flex: 1;
    position: relative;
    max-width: 380px;
}

.benefit-card.active {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.diamond-icon {
    width: 70px;
    height: 70px;
    background: #0284c7;
    /* Match the diamond color in the screenshot */
    margin: 0 auto 15px;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.diamond-icon i {
    transform: rotate(-45deg);
    color: #ffffff;
    font-size: 2rem;
}

.benefit-card h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Floating Action Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.floating-whatsapp a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

.floating-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.floating-phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #0000ff;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-phone a:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .benefits-slider {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card.active {
        transform: scale(1);
    }
}

/* Services Section (Eighth Section) */
.services-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    /* Light gray border */
    border-radius: 8px;
    padding: 20px 25px;
    text-align: center;
    width: calc(25% - 22.5px);
    /* Exactly 4 items per row */
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card h3 {
    color: #111827;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .service-card {
        width: calc(33.333% - 20px);
        /* 3 items per row on smaller screens */
    }
}

@media (max-width: 900px) {
    .service-card {
        width: calc(50% - 15px);
        /* 2 items per row on tablets */
    }
}

@media (max-width: 600px) {
    .service-card {
        width: 100%;
        /* 1 item per row on mobile */
    }
}

/* Secondary Photo Gallery (Ninth Section) */
.secondary-gallery-section {
    padding: 0 0 20px 0;
    background-color: #ffffff;
}

.photo-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-grid-4 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.photo-grid-4 img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
}

@media (max-width: 1024px) {
    .photo-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Final Year Projects Section (Tenth Section) */
.projects-offering-section {
    padding: 20px 0;
    background-color: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    padding: 15px;
}

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

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-card-content {
    padding: 15px 10px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
}

.project-card-content h3 {
    color: #1e293b;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.project-card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    flex: 1;
}

.btn-enquiry {
    display: inline-block;
    background-color: #15803d;
    /* Dark green matching screenshot */
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-enquiry:hover {
    background-color: #166534;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Framed Photo Gallery (Eleventh Section) */
.framed-gallery-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.photo-grid-framed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-grid-framed img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 8px solid #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid-framed img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
    position: relative;
}

@media (max-width: 1024px) {
    .photo-grid-framed {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid-framed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-grid-framed {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section (Twelfth Section) */
.how-it-works-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.work-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.text-blue {
    color: #0284c7;
    /* Light blue matching screenshot */
}

.work-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.work-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (max-width: 600px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* Achievements Section (Thirteenth Section) */
.achievements-section {
    padding-top: 20px;
    background-color: #ffffff;
}

.achievements-section .section-heading {
    margin-bottom: 20px;
}

.achievements-banner {
    background-color: #f8fafc;
    /* Very light gray */
    padding: 15px 0;
}

.achievements-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.achievement-col {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

/* Vertical dividers */
.achievement-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e2e8f0;
    /* Light gray border */
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0284c7;
    /* Blue */
    margin-bottom: 10px;
}

.achievement-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.achievement-col p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .achievements-row {
        flex-direction: column;
        align-items: center;
    }

    .achievement-col {
        width: 100%;
        max-width: 500px;
        padding: 15px 20px;
    }

    /* Remove vertical borders and add horizontal ones */
    .achievement-col:not(:last-child)::after {
        right: 10%;
        bottom: 0;
        top: auto;
        width: 80%;
        height: 1px;
    }
}

/* Features Timeline Section (Fourteenth Section) */
.features-timeline-section {
    padding: 20px 0;
    background-color: #ffffff;
    border-top: 2px solid #0ea5e9;
    /* Thin blue line at top */
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Connecting vertical line */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    /* Center of the icon (approx 60px width / 2) */
    top: 60px;
    /* Below the icon */
    bottom: -40px;
    /* Reach the next item */
    width: 1px;
    background-color: #94a3b8;
    /* Subtle gray line */
    z-index: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    /* Keep above the line */
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #64748b;
}

.timeline-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .timeline-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Image Carousel Section (Fifteenth Section) */
.image-carousel-section {
    padding: 15px 0;
    background-color: #ffffff;
}

.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    min-width: calc(33.333% - 13.33px);
    /* 3 slides with 20px gap */
    height: 300px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #475569;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #ffffff;
    color: #0ea5e9;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 1024px) {
    .carousel-slide {
        height: 250px;
    }
}

@media (max-width: 900px) {
    .carousel-slide {
        min-width: calc(50% - 10px);
        /* 2 slides */
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        min-width: 100%;
        /* 1 slide */
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

/* FAQ Section (Sixteenth Section) */
.faq-section {
    padding: 20px 0;
    background-color: #f4f4f5;
    /* Light gray background matching screenshot */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f4f4f5;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 15px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8fafc;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 15px 25px 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section (Seventeenth Section) */
.cta-section {
    padding: 15px 0 15px 0;
    background-color: #ffffff;
}

.cta-blue-box {
    background-color: #0284c7;
    padding: 20px;
}

.cta-white-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-white-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
}

.btn-call-black {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-call-black i {
    margin-right: 10px;
}

.btn-call-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.cta-requirements p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

/* View More Area */
.view-more-area {
    padding: 20px 0 20px 0;
    background-color: #ffffff;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0284c7;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-view-more i {
    margin-left: 8px;
}

.btn-view-more:hover {
    background-color: #0369a1;
    color: #ffffff;
}

/* Locations Section */
.locations-section {
    background-color: #0284c7;
    padding: 15px 0;
    color: #ffffff;
}

.locations-heading {
    color: #facc15;
    /* Yellow */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.locations-list {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #f8fafc;
}

.locations-note {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    color: #f8fafc;
}

@media (max-width: 768px) {
    .cta-blue-box {
        padding: 20px;
    }

    .cta-white-card {
        padding: 15px 20px;
    }

    .cta-white-card h2 {
        font-size: 1.5rem;
    }
}

/* Students Gallery Section (Eighteenth Section) */
.students-gallery-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    width: calc(33.333% - 20px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.video-item iframe {
    display: block;
    width: 100%;
}

@media (max-width: 900px) {
    .video-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .video-item {
        width: 100%;
    }
}

/* Student Reviews Section (Nineteenth Section) */
.student-reviews-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
}

.reviews-track-container {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.reviews-slide {
    min-width: calc(20% - 12px);
    /* 5 slides, 4 gaps of 15px */
    height: 450px;
}

.reviews-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reviews-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #cbd5e1;
    /* Very light gray chevron */
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.reviews-btn:hover {
    color: #94a3b8;
}

.reviews-carousel-wrapper .prev-btn {
    left: 10px;
}

.reviews-carousel-wrapper .next-btn {
    right: 10px;
}

@media (max-width: 1200px) {
    .reviews-slide {
        min-width: calc(25% - 11.25px);
        /* 4 slides */
    }
}

@media (max-width: 900px) {
    .reviews-slide {
        min-width: calc(33.333% - 10px);
        /* 3 slides */
    }
}

@media (max-width: 600px) {
    .reviews-slide {
        min-width: calc(50% - 7.5px);
        /* 2 slides */
        height: 350px;
    }
}

@media (max-width: 400px) {
    .reviews-slide {
        min-width: 100%;
        /* 1 slide */
        height: 400px;
    }
}

/* Photo Gallery Section (Twentieth Section) */
.photo-gallery-section {
    padding: 15px 0;
    background-color: #ffffff;
}

.photo-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-card {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .photo-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .photo-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.site-footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 25px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    display: block;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #0ea5e9;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #0ea5e9;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 10px;
    color: #0ea5e9;
}

.footer-links a:hover {
    color: #0ea5e9;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: #0ea5e9;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #020617;
    padding: 20px 0;
    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom strong {
    color: #f8fafc;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}