/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --teal-primary: #14b8a6;
    --teal-dark: #0f766e;
    --teal-light: #2dd4bf;
    --white: #ffffff;
    --black: #000000;
    --dark-red: #7a2828;
    --overlay-teal: rgba(20, 184, 166, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    
    /* Spacing */
    --navbar-height: 80px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--white);
}

/* ===========================
   NAVBAR STYLES
   =========================== */
.navbar {
    background: rgb(16 141 127 / 85%) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    /* background: rgba(20, 184, 166, 0.15); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 252, 252, 0.1);
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s var(--transition-smooth);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-menu a:hover {
    color: var(--teal-light);
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(20, 184, 166, 0.98);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 2rem;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 1rem 0;
    transition: all 0.3s var(--transition-smooth);
}

.mobile-menu a:hover {
    padding-left: 10px;
    color: var(--teal-light);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
   
    padding: calc(var(--navbar-height) + 2rem) 2rem 2rem;
}

.hero-card {
    /* max-width: 1300px; */
    width: 100%;
    height: 570px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===========================
   LEFT COLUMN
   =========================== */
.hero-left {
    background: var(--overlay-teal);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s var(--transition-smooth) 0.2s forwards;
}

.main-heading {
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 0.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 0.8s var(--transition-smooth) 0.4s forwards;
}

.sub-heading {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideIn 0.8s var(--transition-smooth) 0.6s forwards;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s var(--transition-smooth) 0.8s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s var(--transition-smooth) 1s forwards;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--dark-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===========================
   RIGHT COLUMN - SLIDER
   =========================== */
.hero-right {
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s var(--transition-smooth),
                transform 1s var(--transition-smooth);
    transform: scale(1.1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.slider-arrow-left {
    left: 2rem;
}

.slider-arrow-right {
    right: 2rem;
}

/* Vertical Decorative Control */
.vertical-control {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 9;
    pointer-events: none;
}

/* Play Button */
.play-button {
    /* position: absolute; */
    /* bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px; */
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(15px);
    /* border: 2px solid rgba(255, 255, 255, 0.4); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25),
                inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.play-button svg {
    margin-left: 3px;
}

/* Slider Bullets */
.slider-bullets {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    padding: 0;
}

.bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.bullet.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
}

/* ===========================
   VIDEO MODAL
   =========================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    transform: scale(0.9);
    transition: transform 0.3s var(--transition-smooth);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
    padding: 0.5rem;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax effect is handled in JavaScript */
.slide.parallax-active {
    transition: transform 0.1s ease-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 2rem;
    }
    
    .hero-card {
        height: auto;
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .hero-left {
        padding: 3rem 2rem;
        min-height: 500px;
    }
    
    .main-heading {
        font-size: 4.5rem;
    }
    
    .sub-heading {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .hero-right {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
   
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .navbar-container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding: calc(var(--navbar-height) + 1rem) 1rem 1rem;
    }
    
    .hero-card {
        border-radius: 20px;
    }
    
    .hero-left {
        padding: 2.5rem 1.5rem;
        min-height: 450px;
    }
    
    .main-heading {
        font-size: 3.5rem;
    }
    
    .sub-heading {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-right {
        min-height: 400px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: 1rem;
    }
    
    .slider-arrow-right {
        right: 1rem;
    }
    
    .play-button {
        /* width: 55px; */
        /* height: 55px; */
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .vertical-control {
        display: none;
    }
    
    .slider-bullets {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 70px;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-left {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
    
    .kicker {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .main-heading {
        font-size: 2.8rem;
        letter-spacing: -2px;
    }
    
    .sub-heading {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-right {
        min-height: 350px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-close {
        top: -45px;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================
   NEW CARDS SECTION - ADDED BELOW
   DO NOT MODIFY ABOVE CODE
   =========================== */

/* Cards Section Container */
.cards-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
    position: relative;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cards-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cards-subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Card */
.destination-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 72px;
}

/* Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

/* Card Button */
.card-btn {
    background: var(--white);
    color: var(--teal-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.card-btn:hover {
    background: var(--teal-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.card-btn:active {
    transform: translateY(0);
}

/* Responsive Cards */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-section {
        padding: 3rem 1.5rem;
    }

    .cards-heading {
        font-size: 2.2rem;
    }

    .cards-subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-image {
        height: 220px;
    }

    .card-description {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .cards-section {
        padding: 2.5rem 1rem;
    }

    .cards-heading {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-btn {
        width: 100%;
        text-align: center;
    }
}

/* END OF NEW CARDS SECTION CSS */

/* ===========================
   ONLINE BOOKING FORM - DevYogTour Style
   DO NOT MODIFY ABOVE CODE
   =========================== */

/* Booking Section Container */
.booking-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.booking-container {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
                0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* Booking Header */
.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.booking-subheading {
    font-size: 1.05rem;
    color: rgba(15, 118, 110, 0.85);
    font-weight: 500;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

/* Form Labels with Icons */
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label svg {
    color: var(--teal-primary);
    flex-shrink: 0;
}

.form-group label .optional {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(15, 118, 110, 0.6);
    font-style: italic;
}

/* Form Inputs - DevYogTour Style */
.form-group input,
.form-group select {
    padding: 0.50rem 1.1rem;
    border-radius: 50px;
    border: 2px solid rgba(20, 184, 166, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: var(--teal-dark);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder {
    color: rgba(15, 118, 110, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--teal-primary);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.15),
                0 0 0 4px rgba(20, 184, 166, 0.08);
    transform: translateY(-1px);
}

/* Select dropdown - Custom Arrow */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%2314b8a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--white);
    color: var(--teal-dark);
    padding: 0.5rem;
}

/* Error Messages */
.error-message {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: -0.25rem;
    margin-left: 1rem;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
    animation: shake 0.3s ease-in-out;
}

.form-group.error input,
.form-group.error select {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form Actions */
.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.booking-submit-btn {
    padding: 1.1rem 3.5rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3),
                0 2px 8px rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.booking-submit-btn:hover::before {
    left: 100%;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, var(--teal-light) 0%, #5eead4 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4),
                0 4px 12px rgba(20, 184, 166, 0.3);
}

.booking-submit-btn:active {
    transform: translateY(-1px);
}

.booking-submit-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-submit-btn:hover svg {
    transform: translateX(5px);
}

.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===========================
   SCROLL-TRIGGERED FADE-UP ANIMATIONS
   =========================== */

.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.fade-in-element:nth-child(1) { transition-delay: 0.05s; }
.fade-in-element:nth-child(2) { transition-delay: 0.1s; }
.fade-in-element:nth-child(3) { transition-delay: 0.15s; }
.fade-in-element:nth-child(4) { transition-delay: 0.2s; }
.fade-in-element:nth-child(5) { transition-delay: 0.25s; }
.fade-in-element:nth-child(6) { transition-delay: 0.3s; }
.fade-in-element:nth-child(7) { transition-delay: 0.35s; }
.fade-in-element:nth-child(8) { transition-delay: 0.4s; }
.fade-in-element:nth-child(9) { transition-delay: 0.45s; }
.fade-in-element:nth-child(10) { transition-delay: 0.5s; }
.fade-in-element:nth-child(11) { transition-delay: 0.55s; }

/* Responsive Booking Form */
@media (max-width: 768px) {
    .booking-section {
        padding: 3rem 1.5rem;
    }

    .booking-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .booking-heading {
        font-size: 2rem;
    }

    .booking-subheading {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.85rem 1rem;
        border-radius: 12px;
    }

    .booking-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 2.5rem 1rem;
    }

    .booking-container {
        padding: 1.5rem 1rem;
    }

    .booking-heading {
        font-size: 1.7rem;
    }

    .booking-subheading {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .booking-submit-btn {
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
    }
}

/* END OF ONLINE BOOKING FORM CSS */

/* ====================================
   ABOUT US + STATS SECTION STYLES
   ==================================== */

.about-stats-section {
    width: 100%;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(45, 212, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    border-radius: 2px;
}

/* Two Column Layout: Image Slider + Content */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

/* Left: Auto Image Slider Section */
.about-slider-wrapper {
    position: relative;
}

.about-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
    height: 500px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-slider:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(20, 184, 166, 0.3);
}

/* Slider Slides */
.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.3) 0%, rgba(20, 184, 166, 0.2) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Slider Navigation Dots */
.about-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.about-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.about-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

/* Image Badge */
.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #0f766e;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-badge:hover {
    transform: scale(1.05);
}

.image-badge svg {
    color: #14b8a6;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Right: Content Section */
.about-content-wrapper {
    padding: 2rem 0;
}

/* About Content */
.about-content {
    text-align: left;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 1.25rem 0;
    font-weight: 400;
}

.about-paragraph:last-child {
    margin-bottom: 1.5rem;
}

/* Features List */
.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #334155;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.about-features li:hover {
    color: #14b8a6;
    transform: translateX(8px);
}

.about-features li svg {
    flex-shrink: 0;
    color: #14b8a6;
    stroke-width: 2.5;
}

.about-features li:hover svg {
    color: #0f766e;
    transform: scale(1.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Stat Card */
.stat-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.18);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

/* Stat Icon */
.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(45, 212, 191, 0.1) 100%);
    border-radius: 50%;
    color: #14b8a6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Stat Number */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #14b8a6;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

/* Stat Label */
.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f766e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Stat Description */
.stat-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
}

/* Fade Up Animation for Stats */
.fade-up-element {
    color: white;
    /* opacity: 0; */
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation for Grid Items */
.stat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-card:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-card:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ====================================
   RESPONSIVE: ABOUT US + STATS SECTION
   ==================================== */

/* Tablets & Small Laptops (1024px) */
@media screen and (max-width: 1024px) {
    .about-stats-section {
        padding: 5rem 1.5rem;
    }

    .about-heading {
        font-size: 2.25rem;
    }

    .about-two-column {
        gap: 3rem;
    }

    .about-slider {
        height: 450px;
    }

    .image-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .about-slider-dots {
        bottom: 1.5rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

    .about-features li {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Tablets Portrait (768px) */
@media screen and (max-width: 768px) {
    .about-stats-section {
        padding: 4rem 1.25rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-two-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-slider {
        height: 400px;
    }

    .image-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .about-slider-dots {
        bottom: 1.5rem;
        gap: 0.6rem;
    }

    .about-dot {
        width: 10px;
        height: 10px;
    }

    .about-dot.active {
        width: 28px;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-features li {
        font-size: 0.9rem;
    }

    .stats-grid {
        gap: 1.25rem;
    }

    .stat-card {
        padding: 2rem 1.25rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .stat-icon svg {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Mobile (480px) */
@media screen and (max-width: 480px) {
    .about-stats-section {
        padding: 3rem 1rem;
    }

    .about-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .about-heading::after {
        width: 80px;
        height: 3px;
        bottom: -0.5rem;
    }

    .about-two-column {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .about-slider {
        height: 300px;
    }

    .image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .image-badge svg {
        width: 24px;
        height: 24px;
    }

    .about-slider-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .about-dot {
        width: 8px;
        height: 8px;
    }

    .about-dot.active {
        width: 24px;
    }

    .about-paragraph {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .about-features {
        margin-top: 1.5rem;
    }

    .about-features li {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .about-features li svg {
        width: 18px;
        height: 18px;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.75rem 1rem;
        border-radius: 16px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .stat-icon svg {
        width: 36px;
        height: 36px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.875rem;
    }
}

/* END OF ABOUT US + STATS SECTION CSS */

/* ====================================
   CUSTOMER TESTIMONIALS SECTION
   Premium Design with Auto Slider
   ==================================== */

.testimonials-section {
    width: 100%;
    padding: 6rem 2rem;
    background: #ffffff;
    position: relative;
}

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

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    position: relative;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(1, 6, 5, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #14b8a6;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f766e;
    margin: 0 0 0.5rem 0;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating svg {
    width: 16px;
    height: 16px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: #14b8a6;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.testimonial-location {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Slider Navigation Dots (Hidden on Desktop) */
.testimonial-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(20, 184, 166, 0.5);
}

.testimonial-dot:hover {
    background: rgba(20, 184, 166, 0.6);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #14b8a6;
    width: 32px;
    border-radius: 6px;
}

/* ====================================
   RESPONSIVE: TESTIMONIALS SECTION
   ==================================== */

/* Tablets & Small Laptops (1024px) */
@media screen and (max-width: 1024px) {
    .testimonials-section {
        padding: 5rem 1.5rem;
    }

    .testimonials-heading {
        font-size: 2.25rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }
}

/* Tablets Portrait (768px) - Enable Slider */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.25rem;
    }

    .testimonials-heading {
        font-size: 2rem;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-wrapper {
        overflow: hidden;
    }

    .testimonials-grid {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 100%;
        flex-shrink: 0;
        padding: 1.5rem;
    }

    .testimonial-dots {
        display: flex;
    }

    .customer-avatar {
        width: 55px;
        height: 55px;
    }

    .customer-name {
        font-size: 1.05rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Mobile (480px) */
@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-heading {
        font-size: 1.75rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        border-radius: 20px;
        gap: 1rem;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
        border-width: 2.5px;
    }

    .customer-name {
        font-size: 1rem;
    }

    .star-rating svg {
        width: 14px;
        height: 14px;
    }

    .testimonial-text {
        font-size: 0.875rem;
        padding-left: 1.25rem;
    }

    .testimonial-text::before {
        font-size: 2.5rem;
        top: -0.25rem;
    }

    .testimonial-location {
        font-size: 0.8rem;
    }

    .testimonial-dots {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-dot.active {
        width: 28px;
    }
}

/* END OF CUSTOMER TESTIMONIALS SECTION CSS */

/* ====================================
   FOOTER SECTION STYLES
   Modern, Clean & Responsive
   ==================================== */

.footer-section {
    width: 100%;
    background: #0a0f14;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    position: relative;
}

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

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, transparent);
    border-radius: 2px;
}

/* Company Description */
.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #14b8a6;
    color: #ffffff;
    transform: scale(1.15) translateY(-3px);
    border-color: #14b8a6;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #14b8a6;
}

.footer-links li a:hover {
    color: #14b8a6;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    left: 0;
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #14b8a6;
}

.footer-contact li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #14b8a6;
}

.footer-contact li span {
    color: #94a3b8;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

/* ====================================
   RESPONSIVE: FOOTER SECTION
   ==================================== */

/* Tablets & Small Laptops (1024px) */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-section {
        padding: 3.5rem 1.5rem 2rem;
    }
}

/* Tablets Portrait (768px) */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-heading {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .whatsapp-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile (480px) */
@media screen and (max-width: 480px) {
    .footer-section {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-grid {
        gap: 1.75rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .footer-heading::after {
        width: 40px;
        height: 2.5px;
    }

    .footer-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 0.875rem;
    }

    .footer-contact li {
        gap: 0.6rem;
    }

    .footer-contact li svg {
        width: 16px;
        height: 16px;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.875rem;
        margin-top: 1.25rem;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-copyright {
        font-size: 0.825rem;
        line-height: 1.5;
    }
}

/* END OF FOOTER SECTION CSS */

/* ====================================
   TAXI SERVICE CARDS SECTION CSS
   Modern Cab Service Showcase
   ==================================== */

.taxi-services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.taxi-services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.taxi-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.taxi-services-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.taxi-services-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Slider Controls */
.taxi-slider-controls {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 0;
}

.taxi-slider-arrow {
    position: absolute;
    top: 180px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #14b8a6;
}

.taxi-slider-arrow:hover {
    background: #14b8a6;
    color: white;
    transform: scale(1.1);
}

.taxi-slider-prev {
    left: -60px;
}

.taxi-slider-next {
    right: -60px;
}

/* Slider Wrapper */
.taxi-slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.taxi-cards-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.taxi-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 320px;
    width: 240px;
    flex-shrink: 0;
}

.taxi-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.taxi-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.taxi-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: background 0.4s ease;
}

.taxi-card:hover .taxi-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(20, 184, 166, 0.3) 0%,
        rgba(20, 184, 166, 0.6) 60%,
        rgba(15, 118, 110, 0.85) 100%
    );
}

.taxi-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
}

.taxi-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.taxi-card:hover .taxi-card-title {
    transform: translateY(-3px);
}

.taxi-card-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Indicators */
.taxi-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.taxi-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.taxi-indicator.active {
    background: #14b8a6;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Design */

/* Tablets and Medium Devices */
@media (max-width: 1024px) {
    .taxi-services-section {
        padding: 80px 20px;
    }

    .taxi-services-heading {
        font-size: 2.25rem;
    }

    .taxi-services-subtitle {
        font-size: 1rem;
    }

    .taxi-slider-arrow {
        width: 45px;
        height: 45px;
    }

    .taxi-slider-prev {
        left: -50px;
    }

    .taxi-slider-next {
        right: -50px;
    }

    .taxi-card {
        height: 280px;
        width: 220px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .taxi-services-section {
        padding: 60px 20px;
    }

    .taxi-services-header {
        margin-bottom: 40px;
    }

    .taxi-services-heading {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .taxi-services-subtitle {
        font-size: 0.938rem;
        padding: 0 10px;
    }

    .taxi-slider-arrow {
        width: 40px;
        height: 40px;
        top: 140px;
    }

    .taxi-slider-prev {
        left: 10px;
    }

    .taxi-slider-next {
        right: 10px;
    }

    .taxi-card {
        height: 260px;
        width: 200px;
    }

    .taxi-card-content {
        padding: 24px 20px;
    }

    .taxi-card-title {
        font-size: 1.5rem;
    }

    .taxi-card-subtitle {
        font-size: 0.938rem;
    }

    .taxi-indicator {
        width: 10px;
        height: 10px;
    }

    .taxi-indicator.active {
        width: 24px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .taxi-services-section {
        padding: 50px 15px;
    }

    .taxi-services-heading {
        font-size: 1.625rem;
    }

    .taxi-services-subtitle {
        font-size: 0.875rem;
    }

    .taxi-card {
        height: 240px;
    }

    .taxi-card-title {
        font-size: 1.375rem;
    }
}

/* END OF TAXI SERVICE CARDS SECTION CSS */

/* ===========================
   HIGHWAY SECTION CONTAINER
   =========================== */
.highway-section {
    
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  background: linear-gradient(to bottom, #366493, #dde7f0);
}

/* ===========================
   SKYLINE (BUILDINGS)
   =========================== */
.skyline-layer {
    position: absolute;
    width: 100%;
    height: 140px;
    bottom: 100px;
    z-index: 1;
}

.skyline-svg {
    width: 100%;
    height: 100%;
}

/* Back Skyline - Lighter & Slower */
.skyline-back {
    color: rgba(180, 190, 200, 0.3);
    z-index: 1;
    animation: parallaxBack 60s linear infinite;
}

/* Front Skyline - Darker & Faster */
.skyline-front {
    color: rgba(150, 160, 170, 0.45);
    z-index: 2;
    bottom: 105px;
    animation: parallaxFront 40s linear infinite;
}

@keyframes parallaxBack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10%);
    }
}

@keyframes parallaxFront {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-15%);
    }
}

/* ===========================
   GREEN GROUND
   =========================== */
.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #7CB342 0%, #689F38 100%);
    z-index: 3;
}

/* ===========================
   HIGHWAY ROAD
   =========================== */
.road {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #424242 0%, #2e2e2e 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 4;
}

/* ===========================
   LANE DIVIDER
   =========================== */
.lane-divider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        to right,
        white 0px,
        white 30px,
        transparent 30px,
        transparent 60px
    );
    animation: moveDivider 2s linear infinite;
    z-index: 1;
}

@keyframes moveDivider {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        transform: translateY(-50%) translateX(-60px);
    }
}

/* ===========================
   ROADSIDE SIGNBOARDS
   =========================== */
.signboard {
    position: absolute;
    bottom: 52px;
    left: -200px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}

/* Signboard Content Box */
.signboard-content {
    padding: 8px 16px;
    background: #ffffff;
    border: 3px solid #1a1a1a;
    border-radius: 6px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.signboard-content::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1a1a1a;
}

.signboard-content span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.3;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Signboard Pole */
.signboard-pole {
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #555 0%, #333 100%);
    border-radius: 2px;
    box-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        inset -1px 0 1px rgba(0, 0, 0, 0.3);
    margin-top: 5px;
}

/* ===========================
   CARS
   =========================== */
.car {
    position: absolute;
    width: 70px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
}

.car-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Car 1 - Bottom Lane (Faster) */
.car-1 {
    bottom: 28px;
    animation: driveCar1 14s linear infinite;
}

@keyframes driveCar1 {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

/* Car 2 - Top Lane (Slower) */
.car-2 {
    bottom: 48px;
    animation: driveCar2 20s linear infinite;
    animation-delay: 4s;
}

@keyframes driveCar2 {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

/* ===========================
   MOTION BLUR EFFECT
   =========================== */
.car::after {
    content: '';
    position: absolute;
    top: 0;
    left: -18px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 215, 0, 0.15) 100%);
    filter: blur(6px);
    z-index: -1;
    opacity: 0.6;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (max-width: 768px) {
    .highway-section {
        height: 260px;
    }
    
    .skyline-layer {
        height: 120px;
        bottom: 90px;
    }
    
    .skyline-front {
        bottom: 95px;
    }
    
    .ground {
        height: 90px;
    }
    
    .road {
        height: 55px;
        bottom: 18px;
    }
    
    .car {
        width: 60px;
    }
    
    .car-1 {
        bottom: 25px;
    }
    
    .car-2 {
        bottom: 43px;
    }
    
    .signboard {
        bottom: 48px;
    }
    
    .signboard-pole {
        height: 25px;
        width: 3px;
    }
    
    .signboard-content {
        padding: 6px 12px;
        border-width: 2.5px;
    }
    
    .signboard-content span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
    
    @keyframes moveSignboard {
        0% {
            left: -180px;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 110%;
            opacity: 0;
        }
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 480px) {
    .highway-section {
        height: 240px;
    }
    
    .skyline-layer {
        height: 100px;
        bottom: 80px;
    }
    
    .skyline-front {
        bottom: 85px;
    }
    
    .ground {
        height: 80px;
    }
    
    .road {
        height: 50px;
        bottom: 15px;
    }
    
    .car {
        width: 50px;
    }
    
    .car-1 {
        bottom: 22px;
    }
    
    .car-2 {
        bottom: 38px;
    }
    
    .signboard {
        bottom: 42px;
    }
    
    .signboard-pole {
        height: 22px;
        width: 3px;
    }
    
    .signboard-content {
        padding: 5px 10px;
        border-width: 2px;
    }
    
    .signboard-content span {
        font-size: 9px;
        letter-spacing: 0.6px;
    }
    
    .lane-divider {
        height: 2px;
    }
    
    @keyframes moveSignboard {
        0% {
            left: -150px;
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            left: 110%;
            opacity: 0;
        }
    }
}
