:root {
    --primary: #84cc16;
    --primary-light: #84cc16;
    --primary-dark: #84cc16;
    --accent: #84cc16;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 5px 20px rgba(119, 195, 236, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, #e6f4fa, #cce9f5);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}


.bg {
animation:slide 3s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
bottom:0;
left:-50%;
opacity:.5;
position:fixed;
right:-50%;
top:0;
z-index:-1;
}

.bg2 {
animation-direction:alternate-reverse;
animation-duration:4s;
}

.bg3 {
animation-duration:5s;
}
@keyframes slide {
0% {
transform:translateX(-25%);
}
100% {
transform:translateX(25%);
}
}

/* Main Card */
.business-card {
    border: 5px solid #84cc16;
    width: 100%;
    max-width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Profile Section */
.profile-section {
    padding: 30px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: visible;
    background: url('/img/bg2.png') center/cover no-repeat; 
    height: 300px;
    width: 380px;
}

/* .profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} */

/* .profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid white;
    margin: 0 auto 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text h1 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.profile-text h2 {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
} */



/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: white;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
}

.call-btn {
    background: var(--accent);
}

.email-btn {
    background: var(--primary-dark);
}

.exchange-btn {
    background: #84cc16;
}

.action-btn:active {
    transform: scale(0.95);
}

/* Dropdown Sections */
.dropdown-section {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    background: white;
}

.dropdown-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-header:active {
    background: rgba(119, 195, 236, 0.1);
}

.dropdown-header h3 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.dropdown-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.dropdown-section.active .dropdown-content {
    max-height: 2000px;
}

.dropdown-section.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent);
}


/* Services List */
.services-list {
    padding: 15px;
    list-style: none;
    columns: 2;
    column-gap: 15px;
}

.services-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    font-size: 0.85rem;
    color: var(--text-dark);
    break-inside: avoid;
}

.services-list li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 15px;
    background: white;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:active {
    transform: scale(0.95);
}

/* Footer */
.card-footer {
    text-align: center;
    padding: 15px;
    background: var(--primary-light);
    color: white;
    font-size: 0.75rem;
    background-color: #84cc16;
}

/* Exchange Contact Modal */
.exchange-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exchange-modal.active {
    opacity: 1;
    visibility: visible;
}

.exchange-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.exchange-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.exchange-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(119, 195, 236, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.exchange-option:active {
    background: rgba(119, 195, 236, 0.2);
}

.exchange-option i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.exchange-option span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .business-card {
        border-radius: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-text h1 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        padding: 15px;
    }
    
    .services-list {
        columns: 1;
    }
}
/* === CSS Styles (Mostly Unchanged) === */
:root {
    --primary-color: #007bff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --slide-scroll-speed: 0.6s; /* Control smooth scroll speed */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    transition: overflow var(--transition-speed) ease;
}

body.overlay-open {
    overflow: hidden;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--dark-gray);
}

.slider-container {
    width: 95%;
    max-width: 1100px;
    margin: 30px auto; /* Added top/bottom margin */
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-color);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc var(--light-gray);
     /* Important for smooth scrolling calculations */
    scroll-behavior: smooth; /* Apply smooth scrolling via CSS */
}

.slider-container::-webkit-scrollbar { height: 8px; }
.slider-container::-webkit-scrollbar-track { background: transparent; border-radius: 4px; }
.slider-container::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 4px; border: 2px solid #fff; }
.slider-container::-webkit-scrollbar-thumb:hover { background-color: #aaa; }

.slider-track {
    display: flex;
    gap: 15px; /* Gap between images */
    padding-bottom: 10px;
}

.slider-image {
    height: 180px;
    width: auto;
    max-width: none;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease,
                filter var(--transition-speed) ease;
}

.slider-image:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    filter: brightness(0.95);
}

/* --- Fullscreen Styles (Unchanged) --- */
#fullscreen-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000; padding: 20px; box-sizing: border-box;
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility 0s linear var(--transition-speed);
}
#fullscreen-overlay.visible {
    opacity: 1; visibility: visible;
    transition: opacity var(--transition-speed) ease, visibility 0s linear 0s;
}
#fullscreen-image {
    display: block; max-width: 95%; max-height: 90%;
    object-fit: contain; box-shadow: 0 0 35px rgba(0,0,0,0.7);
    border-radius: 4px;
    transform: scale(0.95); opacity: 0;
    transition: transform var(--transition-speed) ease 0.1s, opacity var(--transition-speed) ease 0.1s;
}
#fullscreen-overlay.visible #fullscreen-image { transform: scale(1); opacity: 1; }
#close-fullscreen {
    position: absolute; top: 20px; right: 25px;
    font-size: 35px; font-weight: 300; color: rgba(255, 255, 255, 0.8);
    cursor: pointer; user-select: none; line-height: 1; padding: 5px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
#close-fullscreen:hover { color: #fff; transform: scale(1.1); }

/* --- Responsive Styles (Unchanged) --- */
@media (max-width: 768px) {
    body { padding: 10px; }
    h1 { font-size: 1.8em; margin-bottom: 25px; }
    .slider-image { height: 140px; }
    .slider-container { padding: 10px; }
    #close-fullscreen { font-size: 40px; top: 15px; right: 15px; }
}
@media (max-width: 480px) {
    .slider-image { height: 120px; }
    .slider-track { gap: 10px; } /* Slightly reduce gap */
    h1 { font-size: 1.5em; }
}

/* ========== About Coach Section ========== */
#about-coach .video-wrapper {
    position: relative;
    width: 640px;
    max-width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

#about-coach .video-wrapper iframe {
    max-width: 100%;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

#about-coach .controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

#about-coach .control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#about-coach .control-btn:hover {
    background: rgba(0,0,0,0.9);
}

#about-coach .control-btn i {
    font-size: 16px;
}

/* ========== Client Transformations Section ========== */
.dropdown-content #client-transformations .video-slider {
    position: relative;
    width: 640px;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.dropdown-content #client-transformations .video-wrapper {
    position: relative;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.dropdown-content #client-transformations .video-wrapper.active {
    display: flex;
}

.dropdown-content #client-transformations .video-wrapper iframe {
    max-width: 100%;
    display: block;
    border-radius: 100%;
    overflow: hidden;
}

.dropdown-content #client-transformations .controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown-content #client-transformations .control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content #client-transformations .nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content #client-transformations .control-btn:hover,
.dropdown-content #client-transformations .nav-btn:hover {
    background: rgba(0,0,0,0.9);
}

.dropdown-content #client-transformations .control-btn i,
.dropdown-content #client-transformations .nav-btn i {
    font-size: 16px;
}

/* Client Transformations Section Specific Styles */
.dropdown-content #client-transformations .video-slider {
    position: relative;
    width: 640px;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.dropdown-content #client-transformations .video-wrapper {
    position: relative;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.dropdown-content #client-transformations .video-wrapper.active {
    display: flex;
}

.dropdown-content #client-transformations .video-wrapper iframe {
    max-width: 100%;
    display: block;
    border-radius: 100%; /* Changed from 12px to match inline style */
    overflow: hidden;
}

.dropdown-content #client-transformations .controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown-content #client-transformations .control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content #client-transformations .nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content #client-transformations .control-btn:hover,
.dropdown-content #client-transformations .nav-btn:hover {
    background: rgba(0,0,0,0.9);
}

.dropdown-content #client-transformations .control-btn i,
.dropdown-content #client-transformations .nav-btn i {
    font-size: 16px;
}
