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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    opacity: 0;
    animation: fadeInBody 1s ease-out 0.2s forwards;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* Popup Button Styles */
.popup-button {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 1001;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup-button.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.popup-button.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px);
}

.popup-link {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    to {
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
    }
}

.popup-text {
    position: relative;
    z-index: 2;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 2s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Navbar Starts */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDownFade 0.8s ease-out 0.1s forwards;
}

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

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Profile Picture Styles */
.nav-profile {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.nav-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #000;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nav-profile-img:hover {
    transform: scale(1.1);
    border-color: #ff6b35;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    width: 100%;
    margin-left: 70px; /* Make space for profile picture */
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500; /* Reduced from 600 */
    padding: 0.75rem 1.2rem; /* Reduced horizontal padding */
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.8);
    color: #ff6b35;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-item {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
    color: #ff6b35;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navbar Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    /* Profile Picture Mobile */
    .nav-profile-img {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        margin-left: 55px;
    }
    
    .nav-left .nav-link {
        padding: 0.75rem 0.6rem;
        font-size: 0.85rem;
        font-weight: 400;
    }
    
    /* Hide More button text, show hamburger */
    .more-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Position dropdown menu properly on mobile */
    .dropdown-menu {
        right: 0;
        left: auto;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .nav-left .nav-link {
        padding: 0.75rem 0.4rem;
        font-size: 0.8rem;
        font-weight: 400;
    }
    
    .navbar {
        padding: 0.8rem;
    }
    
    .nav-menu {
        margin-left: 50px;
    }
    
    .nav-profile-img {
        width: 35px;
        height: 35px;
    }
}
/* Navbar Ends */

/* Hero Section Starts */
.hero {
    padding: 120px 2rem 60px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.6) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Main Content - Desktop Layout */
.hero-main {
    display: flex;
    align-items: center; /* Changed from stretch to center for alignment */
    gap: 2rem;
    min-height: 450px;
}

/* Hero Left Section - 50% width on desktop */
.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    gap: 1rem; /* Reduced gap between elements */
}

/* Hero Right Section - 50% width on desktop */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Top Section - Logo and Text */
.hero-top {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hero Logo */
.hero-logo {
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b3500, #f7921e00);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-logo-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

.hero-logo-img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hero Text */
.hero-text {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0;
    line-height: 1.1;
}

.hero-title-line1 {
    display: block;
    font-size: 4rem;
}

.hero-title-line2 {
    display: block;
    font-size: 4rem;
}

.hero-description {
    font-size: 1.4rem;
    color: #2d5a3d;
    font-weight: 700;
    line-height: 1.6;
    word-wrap: break-word;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
    margin-bottom: 0.5rem; /* Reduced margin */
}

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

/* Get Started Button - Enhanced Hover Effect */
.hero-cta {
    display: flex;
    justify-content: flex-start; /* Align to left on desktop */
    margin-top: 0.5rem; /* Reduced margin */
}

.get-started-btn {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3d29 100%); /* Added gradient */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.9s forwards;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.get-started-btn:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #1e3d29 0%, #0f1f14 100%);
}

/* Hero Slideshow Styles - Updated for Zoom and Crossfade */
.hero-slideshow {
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.1s forwards;
}

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

.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: #000;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-in-out, transform 3s ease-out;
}

.slide-image.active {
    opacity: 1;
}

.slide-image.zoom-out {
    transform: scale(1);
}

/* Activities Section */
.activities {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.activity-card {
    flex: 1;
    background: rgba(255, 245, 238, 0.8);
    border-radius: 12px;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    color: #0d3d1a;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #333;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

/* Hero Section Mobile Styles */
@media (max-width: 768px) {
    /* Mobile-specific ultra smooth animations */
    .hero-logo {
        opacity: 0;
        transform: scale(0.95);
        animation: fadeInScaleMobile 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    }
    
    @keyframes fadeInScaleMobile {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .hero-text {
        opacity: 0;
        transform: translateX(10px);
        animation: slideInRightMobile 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
    }
    
    @keyframes slideInRightMobile {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-description {
        opacity: 0;
        transform: translateY(5px);
        animation: slideInUpMobile 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
    }
    
    @keyframes slideInUpMobile {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .get-started-btn {
        opacity: 0;
        transform: translateY(10px);
        animation: slideInUpMobile 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
    }
    
    /* Enhanced mobile hover effect for get started button */
    .get-started-btn:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        background: linear-gradient(135deg, #1e3d29 0%, #0f1f14 100%);
    }
    
    .hero-slideshow {
        opacity: 0;
        transform: translateX(-10px);
        animation: slideInLeftMobile 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
    }
    
    @keyframes slideInLeftMobile {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .popup-button {
        top: 70px;
    }
    
    .popup-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 90px 1rem 40px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    /* Change to vertical layout on mobile */
    .hero-main {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-left {
        flex: none;
        gap: 1rem;
    }
    
    .hero-right {
        flex: none;
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center; /* Center button on mobile */
    }
    
    .get-started-btn {
        padding: 0.875rem 2rem; /* Slightly smaller on mobile */
        font-size: 1rem;
    }
    
    .hero-top {
        gap: 1rem;
    }
    
    .hero-logo-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-logo-img {
        width: 65px;
        height: 65px;
        border-radius: 50%;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-welcome {
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        text-align: center;
        padding: 0;
    }
    
    /* Mobile Slideshow */
    .hero-slideshow {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
    
    .slideshow-container {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }
    
    /* Activities Mobile Layout */
    .activities {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .activity-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 1rem;
        width: calc(100vw - 2rem);
        max-width: 100%;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .activity-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }
    
    .card-image {
        flex-shrink: 0;
        width: 35%;
        margin-bottom: 0;
        margin-right: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .card-description {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .popup-button {
        top: 65px;
    }
    
    .popup-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0.8rem 40px;
    }
    
    .hero-logo-circle {
        width: 90px;
        height: 90px;
        margin-left: 10px;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
        
    }
    
    .hero-welcome {
        font-size: 2.2rem;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .get-started-btn {
        padding: 0.75rem 1.8rem; /* Even smaller on very small screens */
        font-size: 0.95rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
}
/* Hero Section Ends */

/* About Section Starts */
.About {
    background: linear-gradient(135deg, #ff8c00, #ff6b35, #ff4500);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
}

.about-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(255, 140, 0, 0.8);
    margin-bottom: 60px;
    text-decoration: underline;
    text-decoration-color: black;
    text-underline-offset: 10px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.content-card, .founder-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    flex: 1;
    width: 0; /* Force equal width distribution */
    min-width: 0; /* Allow shrinking */
}

.scrollable-content {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}

.content-paragraph {
    color: #2d5016;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding-right: 10px;
}

.content-paragraph:last-child {
    margin-bottom: 0;
}

/* Founder card layout - photo left, text right */
.founder-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    overflow: hidden; /* Prevent content from expanding card */
}

.founder-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid black;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-info {
    flex: 1;
    min-width: 0; /* Allow text to shrink */
    overflow: hidden;
}

.mr-title {
    color: black;
}

.founder-name {
    color: #ff8c00;
    font-weight: bold;
    font-size: 2rem;
    /* margin-bottom: 10px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.founder-title {
    color: black;
    font-size: 1.1rem;
    margin: 0 0 -5px 0;
}

.academy-name {
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    word-wrap: break-word;
}

/* Animation classes */
.slide-left {
    animation: slideInLeft 1s ease-out forwards;
    animation-play-state: paused;
}

.slide-right {
    animation: slideInRight 1s ease-out forwards;
    animation-play-state: paused;
}

.slide-out-left {
    animation: slideOutLeft 0.8s ease-in forwards;
}

.slide-out-right {
    animation: slideOutRight 0.8s ease-in forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px) translateY(50px);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px) translateY(50px);
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .founder-image {
        width: 100px;
        height: 100px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .academy-name {
        font-size: 1.1rem;
    }
}

/* About Section Mobile Styles - Keep unchanged */
@media (max-width: 768px) {
    .About {
        padding: 30px 15px;
    }

    .about-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .content-card, .founder-card {
        flex: none;
        padding: 25px;
        width: auto; /* Reset width for mobile */
        min-width: auto; /* Reset min-width for mobile */
    }

    /* Maintain same layout on mobile - photo left, text right */
    .founder-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        order: -1;
        overflow: visible; /* Reset overflow for mobile */
    }

    .scrollable-content {
        height: 250px;
        -webkit-overflow-scrolling: touch;
    }

    .content-paragraph {
        font-size: 0.8rem;
    }

    .founder-image {
        width: 80px;
        height: 80px;
    }

    .founder-name {
        font-size: 1.2rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .academy-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .content-card, .founder-card {
        padding: 20px;
    }

    .scrollable-content {
        height: 200px;
    }

    .founder-card {
        gap: 20px;
    }

    .founder-image {
        width: 80px;
        height: 80px;
    }

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

    .founder-title {
        font-size: 0.8rem;
    }

    .academy-name {
        font-size: 1rem;
    }
}
/* About Section Ends */

/* Programs Section Starts */
.popular-programs {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.6) 100%);
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.programs-container {
    max-width: 1200px;
    width: 100%;
}

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.programs-header.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.programs-title {
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: #000;
    flex: 1;
}

.view-more-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 50%, #ff4500 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.programs-cards {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* New Program Card Design */
.program-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6); */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.program-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.772);
}

/* Program Image - 30% of card height, fixed aspect ratio */
.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Program Name positioned on the image */
.program-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: rgb(247, 161, 0);
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    /* background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); */
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

/* Program Points Section - Black background with orange gradient text */
.program-points-section {
    background: #000;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.program-points {
    list-style: none;
    padding: 0 50px;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.program-point {
    /* background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 50%, #ff4500 100%); */
    background-color: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
    transition: opacity 0.3s ease;
    text-align: left;
}

.program-point:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Card Shine Effect */
.card-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: cardShine 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes cardShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Slide animations for program cards */
.program-card.slide-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.program-card.slide-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.program-card.slide-out-left {
    animation: slideOutLeft 0.8s ease-in forwards;
}

.program-card.slide-out-right {
    animation: slideOutRight 0.8s ease-in forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Programs Section Mobile Styles */
@media (max-width: 768px) {
    .popular-programs {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .programs-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .programs-title {
        font-size: 2.5rem;
    }
    
    .view-more-btn {
        align-self: flex-end;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .programs-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .program-card {
        height: fit-content;
    }
    
    .program-image {
        height: 180px;
    }
    
    .program-name {
        font-size: 1.5rem;
        bottom: 12px;
        left: 12px;
    }
    
    .program-point {
        font-size: 0.95rem;
    }
    
    .program-points-section {
        padding: 20px;
    }

    .program-points {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .programs-title {
        font-size: 2rem;
    }
    
    .program-image {
        height: 160px;
    }
    
    .program-name {
        font-size: 1.3rem;
        bottom: 10px;
        left: 10px;
    }
    
    .program-point {
        font-size: 0.9rem;
    }
    
    .program-points-section {
        padding: 18px;
    }
}
/* Programs Section Ends */

/* Fade-in Animation Classes for Events, Videos, and Testimonials */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

/* Initial state for elements that will fade in */
.events-header,
.events-scroll-container,
.videos-header,
.videos-cards,
.testimonials-header,
.testimonials-cards {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Event Section Starts */
.events-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    transition: all 0.3s ease;
}

.events-section.no-events {
    min-height: auto;
    padding: 50px 20px 30px;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: sectionShine 4s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sectionShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-title {
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    color: #000;
    position: relative;
    z-index: 2;
}

.enquire-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.enquire-text {
    position: relative;
    z-index: 2;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 2s infinite;
    z-index: 1;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.events-scroll-container {
    width: 90%;
    margin: 0 auto;
    height: 500px;
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.events-scroll-container.no-events {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-scroll-container::-webkit-scrollbar {
    height: 12px;
}

.events-scroll-container::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
}

.events-scroll-container::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.events-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #ffb347;
}

.events-scroll-track {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 20px;
    gap: 30px;
    min-width: fit-content;
}

.events-scroll-track.no-events {
    justify-content: center;
    align-items: center;
}

.events-card {
    width: 350px;
    height: 450px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.events-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.events-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.events-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.events-card-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.events-card-mode {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.events-card-dates {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.events-card-location {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.events-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.events-card-btn {
    flex: 1;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.events-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.events-card-btn .shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: buttonShine 2s infinite;
    z-index: 1;
}

@keyframes buttonShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.events-card-btn span {
    position: relative;
    z-index: 2;
}

.events-no-data {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .events-section {
        padding: 40px 15px;
    }
    
    .events-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .events-title {
        font-size: 2.5rem;
    }
    
    .enquire-btn {
        align-self: flex-end;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .events-scroll-container {
        width: 100%;
        height: 420px;
    }
    
    .events-scroll-container.no-events {
        height: 120px;
    }
    
    .events-card {
        width: 300px;
        height: 380px;
    }
    
    .events-card-image {
        height: 160px;
    }
    
    .events-card-content {
        padding: 15px;
        gap: 8px;
    }
    
    .events-card-title {
        font-size: 1.3rem;
    }
    
    .events-card-mode,
    .events-card-dates,
    .events-card-location {
        font-size: 0.9rem;
    }
    
    .events-card-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .events-no-data {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .events-title {
        font-size: 2rem;
    }
    
    .events-scroll-container {
        height: 380px;
    }
    
    .events-scroll-container.no-events {
        height: 100px;
    }
    
    .events-card {
        width: 280px;
        height: 350px;
    }
    
    .events-card-image {
        height: 140px;
    }
    
    .events-card-content {
        padding: 12px;
    }
    
    .events-card-title {
        font-size: 1.2rem;
    }
    
    .events-card-mode,
    .events-card-dates,
    .events-card-location {
        font-size: 0.85rem;
    }
    
    .events-no-data {
        font-size: 1.2rem;
    }
}

/* Navigation Buttons - Add this to your existing CSS */
.events-nav-container {
    position: relative;
}

.events-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffa500 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
    line-height: 0;
    padding: 0 1px 1px;
    margin: 0;
    font-family: Arial, sans-serif;
}

.events-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.events-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.events-nav-btn.prev {
    left: -25px;
}

.events-nav-btn.next {
    right: -25px;
}

.events-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.events-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
    .events-nav-btn {
        display: none;
    }
}

/* Event Section Ends */

/* Videos Section Starts */
.videos-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-container {
    max-width: 1200px;
    width: 100%;
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.videos-title {
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: #000;
    flex: 1;
}

.videos-cards {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 350px; /* Fixed width */
    height: 280px; /* Fixed height */
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.video-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for thumbnail */
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-title-section {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 50%, #ff4500 100%);
    padding: 15px;
    text-align: center;
    height: 80px; /* Fixed height for title section */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-title {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

/* Videos Section Mobile Styles */
@media (max-width: 768px) {
    .videos-section {
        padding: 40px 15px;
    }
    
    .videos-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .videos-title {
        font-size: 2.5rem;
    }
    
    .view-more-btn {
        align-self: flex-end;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .videos-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .video-card {
        width: 320px;
        height: 260px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-title-section {
        height: 80px;
    }
    
    .video-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .videos-title {
        font-size: 2rem;
    }
    
    .video-card {
        width: 280px;
        height: 240px;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-title-section {
        height: 80px;
    }
    
    .video-title {
        font-size: 0.9rem;
    }
}
/* Videos Section Ends */

/* Testimonials Section Starts */
.testimonials-section {
    background: linear-gradient(135deg, #ff8c00, #ff6b35, #ff4500);
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-container {
    max-width: 1200px;
    width: 100%;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: bold;
    font-style: italic;
    color: white;
    flex: 1;
}

.testimonials-view-more-btn {
    background: white;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonials-cards {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    width: 360px; /* Fixed width */
    height: 200px; /* Fixed height */
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-thumbnail {
    width: 112px;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.testimonial-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 200px; /* Ensure consistent height */
}

.testimonial-title {
    color: #2d5016;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.testimonial-date {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    flex-shrink: 0;
}

.no-content {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    padding: 40px;
    font-weight: bold;
}

/* Testimonials Section Mobile Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-view-more-btn {
        align-self: flex-end;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .testimonials-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .testimonial-card {
        width: 320px;
        height: 180px;
    }
    
    .testimonial-thumbnail {
        width: 100px;
        height: 180px;
    }
    
    .testimonial-content {
        padding: 35px;
        min-height: 180px;
    }
    
    .testimonial-title {
        font-size: 1rem;
    }
    
    .testimonial-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        width: 280px;
        height: 160px;
    }
    
    .testimonial-thumbnail {
        width: 90px;
        height: 160px;
    }
    
    .testimonial-content {
        padding: 20px;
        min-height: 160px;
    }
    
    .testimonial-title {
        font-size: 0.9rem;
    }
    
    .testimonial-date {
        font-size: 0.75rem;
    }
}
/* Testimonials Section Ends */

.blue {
    height: 5px;
    width: 100%;
    background-color: rgb(0, 0, 0);
}

/* Maps Section Starts */
.map-section {
    position: relative;
    width: 100%;
    padding: 3rem 0;
    background-image: url('photos/location.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-button {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.map-card {
    display: flex;
    width: 280px;
    height: 157px; /* Maintains 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-gif-container {
    width: 50%;
    height: 100%;
    position: relative;
}

.map-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-content {
    width: 50%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.map-text-container {
    text-align: center;
    width: 100%;
}

.find-us-text {
    color: #0047c2a1;
    font-weight: bold;
    font-size: 14px;
    /* margin: 0 0 8px 0; */
    font-family: Arial, sans-serif;
}

.google-maps-text {
    margin: 0;
    font-family: 'Product Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

/* Google Colors */
.google-g { color: #4285f4; }
.google-o1 { color: #ea4335; }
.google-o2 { color: #fbbc05; }
.google-g2 { color: #4285f4; }
.google-l { color: #34a853; }
.google-e { color: #ea4335; }
.maps-text { color: #5f6368; }

/* Hover effect */
.map-button:hover .map-card {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
}

/* Float animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .map-card {
        width: 320px;
        height: 180px;
    }
    
    .find-us-text {
        font-size: 19px;
    }
    
    /* .google-maps-text {
        font-size: 18px;
    } */
}

@media (max-width: 480px) {
    .map-card {
        width: 260px;
        height: 146px;
    }
    
    .find-us-text {
        font-size: 17px;
    }
    
    .google-maps-text {
        font-size: 14px;
    }
    
    .map-content {
        padding: 10px;
    }
}
/* Maps Section Ends */

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6b35, #ff4500, #ff8c00);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff8c00;
    font-size: 1.1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
    border-radius: 1px;
}

.footer-section p {
    margin-bottom: 10px;
    color: #e0e6ed;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #e0e6ed;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 0.85rem;
}

.social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(63%) sepia(76%) saturate(2490%) hue-rotate(9deg) brightness(104%) contrast(101%);
}

.social-link:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-year {
    color: #ff8c00;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-message {
    color: #b0bec5;
    font-size: 0.75rem;
    font-style: italic;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .social-links {
        flex-direction: row;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        justify-items: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .social-links {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .social-link {
        font-size: 0.9rem;
    }
    
    .footer-year {
        font-size: 1rem;
    }
    
    .footer-message {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .social-link {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .social-link img {
        width: 16px;
        height: 16px;
    }
    
    .footer-year {
        font-size: 0.8rem;
    }
    
    .footer-message {
        font-size: 0.7rem;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: bold;
    font-size: 14px;
}

/* Pulse animation for the WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-effect {
    animation: pulse 1s ease-out;
}

/* For mobile devices */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        padding: 10px 15px;
    }
    
    .whatsapp-text {
        display: none; /* Hide text on mobile for a more compact button */
    }
    
    .whatsapp-button i {
        margin-right: 0;
        font-size: 28px;
    }
}
/* whatsapp ends */

/* Membership Card Section Styles */
.membership-section {
    background: #000;
    padding: 40px 20px;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.membership-title {
    color: #c0c0c0;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(192, 192, 192, 0.3);
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.membership-content {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    height: auto;
    align-items: flex-start;
}

.card-display, .card-details {
    flex: 1;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Display Styles */
.card-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    margin-bottom: 50px; /* Increased gap */
    perspective: 1000px;
}

.membership-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 0.6s ease-in-out;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    top: 0;
    left: 0;
}

.membership-card.active {
    opacity: 1;
    transform: rotateY(0deg);
}

/* Card Background Image */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Card Colors with Lively Glowing Effects */
.card-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}


.card-silver.active {
    box-shadow: 
        0 0 40px rgba(192, 192, 192, 0.8),
        0 0 80px rgba(192, 192, 192, 0.6),
        0 0 120px rgba(192, 192, 192, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: silverGlow 3s ease-in-out infinite alternate;
}

@keyframes silverGlow {
    0% {
        box-shadow: 
            0 0 40px rgba(192, 192, 192, 0.8),
            0 0 80px rgba(192, 192, 192, 0.6),
            0 0 120px rgba(192, 192, 192, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(192, 192, 192, 1),
            0 0 100px rgba(192, 192, 192, 0.8),
            0 0 140px rgba(192, 192, 192, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.card-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

.card-gold.active {
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 215, 0, 0.6),
        0 0 120px rgba(255, 215, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: goldGlow 3s ease-in-out infinite alternate;
}

@keyframes goldGlow {
    0% {
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(255, 215, 0, 0.6),
            0 0 120px rgba(255, 215, 0, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(255, 215, 0, 1),
            0 0 100px rgba(255, 215, 0, 0.8),
            0 0 140px rgba(255, 215, 0, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.card-diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #66d9ef 100%);
}

.card-diamond.active {
    box-shadow: 
        0 0 40px rgba(102, 217, 239, 0.8),
        0 0 80px rgba(102, 217, 239, 0.6),
        0 0 120px rgba(102, 217, 239, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: diamondGlow 3s ease-in-out infinite alternate;
}

@keyframes diamondGlow {
    0% {
        box-shadow: 
            0 0 40px rgba(102, 217, 239, 0.8),
            0 0 80px rgba(102, 217, 239, 0.6),
            0 0 120px rgba(102, 217, 239, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(102, 217, 239, 1),
            0 0 100px rgba(102, 217, 239, 0.8),
            0 0 140px rgba(102, 217, 239, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.card-emerald {
    background: linear-gradient(135deg, #50c878 0%, #2e8b57 100%);
}

.card-emerald.active {
    box-shadow: 
        0 0 40px rgba(80, 200, 120, 0.8),
        0 0 80px rgba(80, 200, 120, 0.6),
        0 0 120px rgba(80, 200, 120, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: emeraldGlow 3s ease-in-out infinite alternate;
}

@keyframes emeraldGlow {
    0% {
        box-shadow: 
            0 0 40px rgba(80, 200, 120, 0.8),
            0 0 80px rgba(80, 200, 120, 0.6),
            0 0 120px rgba(80, 200, 120, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(80, 200, 120, 1),
            0 0 100px rgba(80, 200, 120, 0.8),
            0 0 140px rgba(80, 200, 120, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.card-vip {
    background: linear-gradient(135deg, #8b00ff 0%, #4b0082 100%);
}

.card-vip.active {
    box-shadow: 
        0 0 40px rgba(139, 0, 255, 0.8),
        0 0 80px rgba(139, 0, 255, 0.6),
        0 0 120px rgba(139, 0, 255, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: vipGlow 3s ease-in-out infinite alternate;
}

@keyframes vipGlow {
    0% {
        box-shadow: 
            0 0 40px rgba(139, 0, 255, 0.8),
            0 0 80px rgba(139, 0, 255, 0.6),
            0 0 120px rgba(139, 0, 255, 0.4),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(139, 0, 255, 1),
            0 0 100px rgba(139, 0, 255, 0.8),
            0 0 140px rgba(139, 0, 255, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

/* Top Strip */
.card-strip {
    background: #000;
    height: 50px;
    margin: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Progressive font sizes for card titles */
.card-silver .card-type {
    font-size: 12px;
}

.card-gold .card-type {
    font-size: 13px;
}

.card-diamond .card-type {
    font-size: 14px;
}

.card-emerald .card-type {
    font-size: 15px;
}

.card-vip .card-type {
    font-size: 16px;
}

.card-type {
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.card-circles {
    display: flex;
    gap: 8px;
    align-items: center;
}

.person-circle, .logo-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.person-circle img, .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Card Body */
.card-body {
    display: flex;
    gap: 15px;
    padding: 15px;
    flex: 1;
    position: relative;
    z-index: 2;
    
}

.passport-photo {
    width: 100px; /* Increased size */
    height: 125px; /* Increased size */
    border: 3px solid #000;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.passport-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 125px; /* Increased to match passport photo */
}

.holder-name {
    color: #000;
    font-weight: 800;
    font-size: 18px; /* Increased size */
    margin: 0;
}

.location {
    color: #000;
    font-weight: 700;
    font-size: 16px; /* Increased size */
    margin: 0;
}

.discount {
    color: #000;
    font-weight: 700;
    font-size: 16px; /* Increased size */
    margin: 0;
}

.validity-dates {
    margin-top: 5px;
}

.valid-from, .valid-till {
    color: #000;
    font-weight: 700;
    font-size: 12px;
    margin: 2px 0;
}

/* Card-specific font color overrides */
.card-gold .holder-name,
.card-gold .location,
.card-gold .discount,
.card-gold .valid-from,
.card-gold .valid-till {
    color: #000000 !important;
}

.card-diamond .holder-name,
.card-diamond .location,
.card-diamond .discount,
.card-diamond .valid-from,
.card-diamond .valid-till {
    color: #fff !important;
    font-weight: bold;
}

.card-emerald .holder-name,
.card-emerald .location,
.card-emerald .discount,
.card-emerald .valid-from,
.card-emerald .valid-till {
    color: #fff !important;
}

.card-vip .holder-name,
.card-vip .location,
.card-vip .discount,
.card-vip .valid-from,
.card-vip .valid-till {
    color: #fff !important;
    font-weight: 900 !important;
}

/* Card ID Box - Bottom Right */
.card-id-box {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Continuous Shine Effect */
.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 3;
    pointer-events: none;
    animation: continuousShine 1s linear infinite;
}

@keyframes continuousShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Card Buttons */
.card-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.card-button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.card-button::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.3s ease;
}

.card-button:hover::before {
    left: 100%;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: #000;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000;
}

.btn-diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #66d9ef 100%);
    color: #000;
}

.btn-emerald {
    background: linear-gradient(135deg, #50c878 0%, #2e8b57 100%);
    color: #fff;
}

.btn-vip {
    background: linear-gradient(135deg, #8b00ff 0%, #4b0082 100%);
    color: #fff;
}

/* Card Details Section */
.card-details {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.overview-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.current-card-details {
    background: #222;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    width: 100%;
    transition: all 0.6s ease;
}

.current-card-details h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.current-card-details p {
    color: #ccc;
    margin: 8px 0;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.current-card-details.active h3,
.current-card-details.active p {
    opacity: 1;
    transform: translateY(0);
}

.get-card-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.get-card-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.3s ease;
}

.get-card-btn:hover::before {
    left: 100%;
}

.get-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .membership-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .membership-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .membership-content {
        flex-direction: column;
        height: auto;
        gap: 25px;
    }

    .card-display, .card-details {
        height: auto;
        padding: 20px;
    }

    .card-container {
        max-width: 320px;
        margin-bottom: 40px;
    }

    .card-buttons {
        gap: 15px; /* Increased gap */
        width: 100%;
        justify-content: center;
    }

    .card-buttons .card-button:nth-child(1),
    .card-buttons .card-button:nth-child(2),
    .card-buttons .card-button:nth-child(3) {
        width: calc(33.333% - 10px);
    }

    .card-buttons .card-button:nth-child(4),
    .card-buttons .card-button:nth-child(5) {
        width: calc(50% - 7.5px);
    }

    .card-button {
        padding: 6px 12px;
        font-size: 10px;
    }

    .card-strip {
        height: 40px;
        margin: 6px;
        padding: 0 12px;
    }

    /* Mobile progressive font sizes */
    .card-silver .card-type {
        font-size: 9px;
    }

    .card-gold .card-type {
        font-size: 10px;
    }

    .card-diamond .card-type {
        font-size: 11px;
    }

    .card-emerald .card-type {
        font-size: 12px;
    }

    .card-vip .card-type {
        font-size: 13px;
    }

    .person-circle, .logo-circle {
        width: 28px;
        height: 28px;
    }

    .card-body {
        padding: 12px;
        gap: 12px;
    }

    .passport-photo {
        width: 80px; /* Increased mobile size */
        height: 100px; /* Increased mobile size */
    }

    .card-info {
        height: 100px;
    }

    .holder-name {
        font-size: 15px; /* Increased mobile size */
    }

    .location, .discount {
        font-size: 13px; /* Increased mobile size */
    }

    .valid-from, .valid-till {
        font-size: 10px;
    }

    .card-id-box {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 10px;
    }

    .overview-text {
        font-size: 1rem;
    }

    .current-card-details {
        padding: 20px;
    }

    .current-card-details h3 {
        font-size: 1.1rem;
    }

    .current-card-details p {
        font-size: 0.9rem;
    }

    .get-card-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Mobile Glow Adjustments */
    .card-silver.active,
    .card-gold.active,
    .card-diamond.active,
    .card-emerald.active,
    .card-vip.active {
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(255, 255, 255, 0.4),
            0 0 60px rgba(255, 255, 255, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .membership-title {
        font-size: 1.8rem;
    }

    .card-container {
        max-width: 280px;
    }

    .card-strip {
        height: 35px;
        margin: 5px;
        padding: 0 10px;
    }

    /* Small mobile progressive font sizes */
    .card-silver .card-type {
        font-size: 8px;
    }

    .card-gold .card-type {
        font-size: 9px;
    }

    .card-diamond .card-type {
        font-size: 10px;
    }

    .card-emerald .card-type {
        font-size: 11px;
    }

    .card-vip .card-type {
        font-size: 12px;
    }

    .person-circle, .logo-circle {
        width: 25px;
        height: 25px;
    }

    .card-body {
        padding: 10px;
        gap: 10px;
    }

    .passport-photo {
        width: 70px; /* Increased small mobile size */
        height: 88px; /* Increased small mobile size */
    }

    .card-info {
        height: 88px;
    }

    .holder-name {
        font-size: 14px; /* Increased small mobile size */
    }

    .location, .discount {
        font-size: 12px; /* Increased small mobile size */
    }

    .valid-from, .valid-till {
        font-size: 9px;
    }

    .card-id-box {
        bottom: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 9px;
    }
}
/* membership ends */
