@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    /* Color Variables - Updated to use primary & secondary gradients */
    --primary-gradient: linear-gradient(135deg, #1b3c89 0%, #393391 100%);
    --secondary-gradient: linear-gradient(135deg, #FF6B35 0%, #eb3f00 100%);
    --primary-blue: #1b3c89;
    --secondary-blue: #393391;
    --gradient-start: #1b3c89;
    --gradient-end: #393391;
    --orange-accent: #FF6B35;
    --orange-dark: #eb3f00;
    --primary-green: #FF6B35;
    --light-green: #eb3f00;
    --dark-green: #eb3f00;
    --accent-green: #eb3f00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #E0E0E0;
    --dark-gray: #757575;
    --dark-text: #2c3e50;
    --text-light: #666666;
    
    /* Typography Variables - Standardized font sizes */
    --font-primary: "maven pro", sans-serif;
    --font-size-xl: 3rem;    /* Main headings (h1) */
    --font-size-lg: 2.5rem;    /* Section headings (h2) */
    --font-size-md: 1.8rem;    /* Sub-headings (h3) */
    --font-size-sm: 1.4rem;    /* Small headings (h4, h5, h6) */
    --font-size-body: 1rem;  /* Paragraphs and body text */
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    
    /* Spacing Variables */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 3rem;
    
    /* Border Radius Variables */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
    
    /* Shadow Variables */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --box-shadow: 0 10px 30px rgba(46, 74, 139, 0.1);
    
    /* Animation Variables */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --transition: all 0.3s ease;
}
a{
    text-decoration: none !important;
    color: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary) !important;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: #fff;
}

/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 170px;
    padding-bottom: 200px;
    background-position: bottom;
    background-size: cover;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="600" r="4" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="800" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: floatBg 20s linear infinite;
} */

@keyframes floatBg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: slideInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    animation: slideInUp 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: var(--font-size-body);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: slideInUp 1s ease 0.6s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container {
    background: var(--white);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    animation: slideInUp 1s ease 0.8s both;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 20px;
}

.search-btn {
    background: var(--secondary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-gradient);
    transform: translateX(5px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease 1s both;
}

.btn-get-started, .btn-primary-custom {
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: var(--transition);
}

.btn-get-started:hover, .btn-primary-custom:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.btn-watch-now, .btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 12px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-watch-now:hover, .btn-outline-custom:hover{
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Right Side */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Coaching Service Section */
.coaching-section {
    padding: 100px 0;
    margin-top: 100px;
    position: relative;
    background-color: #f8f9fa;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.coaching-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.coaching-highlight {
    color: var(--primary-green);
}

.coaching-subtitle {
    font-size: var(--font-size-md);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coaching-steps {
    padding: var(--spacing-xl) var(--spacing-lg);
}

.step-item {
    display: flex;
    align-items: center;
    
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft var(--transition-medium) forwards;
    background: white;
    padding: 20px 20px 10px;
    border-radius: 10px;
}


.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(2) { animation-delay: 0.4s; }
.step-item:nth-child(3) { animation-delay: 0.6s; }
.step-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size:20px;
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    position: relative;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content {
    flex: 1;
    padding-top: var(--spacing-xs);
}

.step-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-text);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.coaching-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:baseline;
}

.coach-image {
    position: relative;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.coach-image img {
    width: 100%;
    margin-top: 70px;
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.decorative-element.green {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    top: 10%;
    right: 10%;
}

.decorative-element.blue {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    bottom: 20%;
    left: 5%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.start-button-container {
    text-align: center;
}

.start-now-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius-xl);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.start-now-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;
}

.start-now-btn:hover::before {
    left: 100%;
}

.start-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 350px 0 150px;
    background: var(--light-gray);
    position: relative;
    margin-top: -250px;
    z-index: -1;
}

.about-visual {
    position: relative;
}

.color-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
}

.color-block {
    height: 150px;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.color-block:hover {
    transform: translateY(-10px) scale(1.05);
}

.color-block.orange { background: var(--secondary-gradient); }
.color-block.blue { background: var(--primary-gradient); }
.color-block.large {
    grid-row: span 2;
    height: 320px;
}

.section-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--orange-accent);
}

.section-text {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.learn-more-btn {
    background: var(--secondary-gradient);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

/* Services Section */
.services-section {
    padding: 50px 0;
    position: relative;
}

.services-header {
    margin-bottom: 80px;
}

.services-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 0;
}

.services-title .text-primary {
    color: var(--primary-blue) !important;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-accent), var(--primary-blue));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 25px;
    position: relative;
}

.service-icon svg {
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary-blue);
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-arrow {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.service-arrow-blue {
    background: var(--primary-blue);
}

.service-card:hover .service-arrow {
    background: var(--orange-accent);
    transform: translateX(-50%) translateY(-5px) rotate(45deg);
}

.service-card:hover .service-arrow-blue {
    background: var(--orange-accent);
}

.service-arrow i {
    transition: var(--transition);
}

.service-card:hover .service-arrow i {
    transform: rotate(-45deg);
}


/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.stat-icon.best-rates {
    background: #e8f5e8;
    color: #28a745;
}

.stat-icon.experience {
    background: #fff3cd;
    color: #ffc107;
}

.stat-icon.experts {
    background: #d1ecf1;
    color: #17a2b8;
}

.stat-icon.rating {
    background: #f8d7da;
    color: #dc3545;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}



/* Animation delays for staggered effect */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Scroll animations */
.fade-in-up {
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service card specific animations */
.service-card {
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for service icons */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card:hover .service-icon svg {
    animation: iconPulse 2s infinite;
}

/* Arrow bounce animation */
@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.service-arrow:hover {
    animation: arrowBounce 0.6s ease infinite;
}

/* Premium Services Section */
.premium-services-section {
    padding: 100px 0;
    background: #fff;
}

.premium-services-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.premium-services-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.premium-service-row {
    margin-bottom: 150px !important;
}

.service-content {
    padding-left: 40px;
}

.service-content-right {
    padding-right: 40px;
}

.premium-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.premium-service-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.premium-feature-item {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 1rem;
}

.premium-feature-icon {
    color: var(--primary-green);
    margin-right: 10px;
}

.premium-buttons {
    display: flex;
    gap: 20px;
}

.premium-btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.premium-btn-secondary {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.premium-btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.premium-btn-secondary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* Responsive Design for Premium Services */
@media (max-width: 1200px) {
    .premium-services-title {
        font-size: 2.4rem;
    }
    
    .premium-service-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding-left: 20px;
    }
    
    .service-content-right {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .premium-services-section {
        padding: 80px 0;
    }
    
    .premium-services-title {
        font-size: 2.2rem;
    }
    
    .premium-service-title {
        font-size: 1.8rem;
    }
    
    .premium-service-row {
        margin-bottom: 80px !important;
    }
    
    .service-content,
    .service-content-right {
        padding: 30px 15px;
        text-align: center;
    }
    
    .premium-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .premium-services-section {
        padding: 60px 0;
    }
    
    .premium-services-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .premium-service-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .premium-service-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .premium-feature-item {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .premium-service-row {
        margin-bottom: 60px !important;
    }
    
    .premium-buttons {
        gap: 15px;
    }
    
    .premium-btn-primary,
    .premium-btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .premium-services-section {
        padding: 40px 0;
    }
    
    .premium-services-title {
        font-size: 1.6rem;
    }
    
    .premium-services-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .premium-service-title {
        font-size: 1.3rem;
    }
    
    .premium-service-description {
        font-size: 0.95rem;
    }
    
    .premium-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .premium-btn-primary,
    .premium-btn-secondary {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .service-content,
    .service-content-right {
        padding: 20px 10px;
    }
}

/* Complete Responsive Design for All Sections */

/* Hero Section Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 100px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-get-started,
    .btn-watch-now {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .search-container {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .search-container {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
    }
    
    .search-input {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 20px;
    }
    
    .hero-buttons {
        align-items: center;
        gap: 12px;
    }
    
    .btn-get-started,
    .btn-watch-now {
        max-width: 200px;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .search-container {
        padding: 12px;
    }
    
    .btn-get-started,
    .btn-watch-now {
        width: 100%;
        max-width: 180px;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 250px 0 100px;
        margin-top: -150px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-text {
        text-align: center;
    }
    
    .learn-more-btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 200px 0 80px;
        margin-top: -100px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .about-content {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 150px 0 60px;
        margin-top: -50px;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: 0.85rem;
    }
    
    .learn-more-btn {
        width: 100%;
        max-width: 200px;
        font-size: 0.9rem;
    }
}

/* Services Section Responsive */
@media (max-width: 992px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .services-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 20px 50px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 25px 15px 45px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .service-icon svg {
        width: 60px;
        height: 60px;
    }
}

/* Coaching Section Responsive */
@media (max-width: 1200px) {
    .coaching-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .coaching-section {
        padding: 80px 0;
        margin-top: 50px;
    }
    
    .coaching-title {
        font-size: 2rem;
    }
    
    .coaching-steps {
        padding: 20px 15px;
        margin-top: 40px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px 20px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .coach-image img {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .coaching-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .coaching-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .coaching-steps {
        padding: 15px 10px;
    }
    
    .step-item {
        padding: 20px 15px 15px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .start-now-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .coaching-section {
        padding: 40px 0;
    }
    
    .coaching-title {
        font-size: 1.3rem;
    }
    
    .step-item {
        padding: 15px 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-title {
        font-size: 13px;
    }
    
    .step-description {
        font-size: 12px;
    }
    
    .start-now-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Stats Section Responsive */
@media (max-width: 992px) {
    .stats-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-title {
        font-size: 14px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-title {
        font-size: 13px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* General Container Responsive */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Fix Image Responsiveness */
.hero-visual img,
.about-visual img,
.coach-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Navigation Spacing */
@media (max-width: 768px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* Text Alignment for Mobile */
@media (max-width: 768px) {
    .text-start {
        text-align: center !important;
    }
    
    .row .col-lg-6:last-child {
        margin-top: 30px;
    }
}