:root {
    --primary-color: #1e3a5f;
    --secondary-color: #e8491d;
    --accent-color: #f4b41a;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background: #78c6ff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.navbar .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
}

.navbar .btn-primary:hover {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.85)),
        url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 15px;
}

.hero .btn-outline-light {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-stats {
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-img img {
    width: 100%;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 15px;
}

/* History Section - Clean Grid Design */
.history-section {
    background: linear-gradient(180deg, #0a1628 0%, #1e3a5f 100%);
    padding: 100px 0;
}

.history-section .section-title h2 {
    color: #fff;
}

.history-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.history-section .section-title::after {
    background: var(--accent-color);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.history-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.history-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.history-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.history-item:hover::before {
    opacity: 1;
}

.history-year-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(232, 73, 29, 0.4);
}

.history-item-icon {
    width: 70px;
    height: 70px;
    background: rgba(244, 180, 26, 0.15);
    border: 2px solid rgba(244, 180, 26, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.history-item:hover .history-item-icon {
    background: rgba(244, 180, 26, 0.25);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.history-item-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.history-item h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.history-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.history-stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.history-stat-box {
    text-align: center;
}

.history-stat-box .number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.history-stat-box .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8a 100%);
    color: #fff;
}

.why-choose .section-title h2 {
    color: #fff;
}

.why-choose .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose .section-title::after {
    background: var(--accent-color);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    /* text-align: center; */
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.9;
    margin: 0;
}

/* Mission Vision */
.mission-vision {
    background: var(--light-bg);
}

.mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card .icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-card .icon i {
    font-size: 45px;
    color: #fff;
}

.mv-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: #fff;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 25px;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card .btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.service-card .btn-link:hover {
    color: var(--primary-color);
}

/* Staff Section */
.staff-section {
    background: var(--light-bg);
}

.staff-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-10px);
}

.staff-img {
    position: relative;
    overflow: hidden;
}

.staff-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.staff-card:hover .staff-img img {
    transform: scale(1.1);
}

.staff-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(30, 58, 95, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s;
}

.staff-card:hover .staff-social {
    bottom: 0;
}

.staff-social a {
    color: #fff;
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.staff-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.staff-info {
    padding: 25px;
    text-align: center;
}

.staff-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.staff-info p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

/* Events Section */
.events-section {
    background: #fff;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-img {
    position: relative;
}

.event-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.event-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f8a 100%);
    color: #fff;
}

.testimonials-section .section-title h2 {
    color: #fff;
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .section-title::after {
    background: var(--accent-color);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-card .quote {
    font-size: 50px;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--accent-color);
}

.testimonial-author h5 {
    margin: 0;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
    background: var(--light-bg);
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h4 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.blog-content .read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-content .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.blog-content .read-more:hover i {
    margin-left: 10px;
}

/* Contact Section */
.contact-section {
    background: #fff;
}

.contact-info-card {
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-card p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.contact-item h5 {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.contact-form-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-form-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form .form-control {
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(232, 73, 29, 0.2);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form .btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
}

.contact-form .btn-primary:hover {
    background: var(--primary-color);
}

/* Map Section */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(232, 73, 29, 0.9), rgba(232, 73, 29, 0.9)),
        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn-light {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-section .btn-outline-light {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 15px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: #fff;
    padding-top: 80px;
}

.footer-widget h4 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact li i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact li span {
    opacity: 0.8;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 0 30px 30px 0;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
}

/* Gallery Lightbox */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin-left: 30px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .timeline-dot {
        left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .btn-primary,
    .hero .btn-outline-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-section .btn-light,
    .cta-section .btn-outline-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}