: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-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.15);
    --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;

    --primary-gradient: linear-gradient(135deg, #1b3c89 0%, #393391 100%);
    --secondary-gradient: linear-gradient(135deg, #FF6B35 0%, #eb3f00 100%);
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-light: #f7fafc;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.15);
    /* Typography Variables - Standardized font sizes */
    --font-size-xl: 3.5rem;
    /* 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: 1.1rem;
}

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;
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.navbar-container {
    background: var(--white);
    border-radius: 100px;
    padding: 10px 25px;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-blue) !important;
    font-size: 1.5rem;
    padding: 0 !important;

}

.navbar-brand img {
    width: 180px;
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
    display: none;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown Icon Styles */
.dropdown-icon {
    font-size: 0.8rem;
    transition: var(--transition);
    margin-left: 3px;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Active Nav Link Styles */
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
    background: var(--primary-blue);
}

.navbar-nav .nav-link.active .dropdown-icon {
    color: var(--primary-blue);
}

/* Custom Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition);
    color: var(--dark-text);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white) !important;
}

.btn-demo {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(46, 74, 139, 0.3);
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 74, 139, 0.4);
    color: var(--white);
}



/* Responsive Design for Header */
@media (max-width: 768px) {
    .navbar-container {
        margin: 0 15px;
        border-radius: 10px;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
    }

    .navbar {
        padding: 0 !important;
    }

    .navbar-brand {
        padding: 0;
    }

    .navbar-brand img {
        width: 120px;
    }
}

/* 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;
} */


/* Footer Main */
.footer-main {
    background: url("../image/footer-bg.svg");
    padding: 200px 0px 0px;
    background-position: top center;
    margin-top: -120px;
}



/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 250px;
}



.footer-logo-tagline {
    font-size: 0.9rem;
    color: #e4e4e4;
    margin-top: 5px;
}

.footer-description {
    color: #e4e4e4;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e4e4e4;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: white;
    border-color: #FF6B35;
    background: #FF6B35;
    transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f3f3f3;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e4e4e4;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #2E4A8B;
    transform: translateX(5px);
}

/* Contact Information */
.contact-item {
    display: flex;
    align-items: flex-start;
    color: #e4e4e4;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-item i {
    color: #e4e4e4;
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item a {
    color: #fff;
}

.contact-item span {
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 30px 20px;
    text-align: center;
    color: #666;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #e4e4e4;
}

/* Responsive Design */
@media (max-width: 992px) {

    .col-lg-3,
    .col-lg-2,
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .newsletter-content {
        padding: 40px 30px;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .coaching-steps {
        order: 2;
    }

    .coaching-visual {
        order: 1;
        margin-bottom: var(--spacing-lg);
    }

    .coach-image img {
        width: 250px;
        height: 300px;
    }

    .testimonial-slide {
        width: 350px;
        max-width: 350px;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 20px 0;
    }

    .stats-section {
        padding: 40px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .col-lg-3,
    .col-lg-2,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .newsletter-section {
        margin: 0 10px 40px 10px;
        border-radius: 20px;
    }

    .newsletter-content {
        padding: 30px 20px;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px !important;
    }

    .newsletter-input {
        margin-bottom: 10px;
        border-radius: 15px;
    }

    .newsletter-btn {
        border-radius: 15px;
    }

    .footer-main {
        padding: 0px 10px 40px 10px;
        background-size: cover;
        margin-top: 0;
        background-position: 20%;
    }


    .social-links {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-circle {
        width: 300px;
        height: 300px;
    }

    .color-blocks {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .color-block.large {
        grid-row: span 1;
        height: 150px;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .coaching-title {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }

    .coach-image img {
        width: 200px;
        height: 250px;
    }

    .testimonial-slide {
        width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 1.6rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-get-started,
    .btn-watch-now {
        width: 100%;
        margin-bottom: 10px;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .coaching-title {
        font-size: 1.8rem;
    }


    .stat-card {
        padding: 20px 15px;
    }

    .faq-title {
        font-size: 28px;
    }

    .accordion-button {
        font-size: 15px;
    }

    .testimonial-slide {
        width: 280px;
        max-width: 280px;
    }
}

/* Newsletter Section */
.newsletter {
    background: transparent;
    padding: 0;
    position: relative;
}

.newsletter-section {
    background: #2E4A8B;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 20px 60px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-content {
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    color: #333;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #2E4A8B;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #4A6FA5;
}

.brand-slider-container {
    padding: 40px 0;
    /* background: #f8f9fa; */
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    animation: slideShow 18s infinite linear;
}

@keyframes slideShow {
    0% {
        transform: translateX(0);
    }

    8.33% {
        transform: translateX(0);
    }

    16.66% {
        transform: translateX(-16.666667%);
    }

    25% {
        transform: translateX(-16.666667%);
    }

    33.33% {
        transform: translateX(-33.333333%);
    }

    41.66% {
        transform: translateX(-33.333333%);
    }

    50% {
        transform: translateX(-50%);
    }

    58.33% {
        transform: translateX(-50%);
    }

    66.66% {
        transform: translateX(-66.666667%);
    }

    75% {
        transform: translateX(-66.666667%);
    }

    83.33% {
        transform: translateX(-83.333333%);
    }

    91.66% {
        transform: translateX(-83.333333%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Mobile animation */
@media (max-width: 767px) {
    @keyframes slideShow {
        0% {
            transform: translateX(0);
        }

        9.09% {
            transform: translateX(0);
        }

        18.18% {
            transform: translateX(-50%);
        }

        27.27% {
            transform: translateX(-50%);
        }

        36.36% {
            transform: translateX(-100%);
        }

        45.45% {
            transform: translateX(-100%);
        }

        54.54% {
            transform: translateX(-150%);
        }

        63.63% {
            transform: translateX(-150%);
        }

        72.72% {
            transform: translateX(-200%);
        }

        81.81% {
            transform: translateX(-200%);
        }

        90.9% {
            transform: translateX(-250%);
        }

        100% {
            transform: translateX(0);
        }
    }
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.slide-item {
    flex: 0 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.slide-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.slide-item:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Desktop View - 6 images */
@media (min-width: 992px) {
    .slide-item {
        width: 16.666667%;
        /* 100% / 6 = 16.666667% */
    }
}

/* Tablet View - 4 images */
@media (min-width: 768px) and (max-width: 991px) {
    .slide-item {
        width: 25%;
        /* 100% / 4 = 25% */
    }
}

/* Mobile View - 2 images */
@media (max-width: 767px) {
    .slide-item {
        width: 50%;
        /* 100% / 2 = 50% */
    }

    .slide-item img {
        max-height: 60px;
    }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.control-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.control-btn:active {
    transform: translateY(0);
}

.pause-btn {
    background: #28a745;
}

.pause-btn:hover {
    background: #1e7e34;
}

.pause-btn.paused {
    background: #dc3545;
}

.pause-btn.paused:hover {
    background: #c82333;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #007bff;
    transform: scale(1.2);
}

.slider-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

/* Animation for smooth infinite scroll */
.slider-track.no-transition {
    transition: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.faq-title .highlight {
    color: #28a745;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    background: transparent;
}

.accordion-item:first-child {
    border-top: 1px solid #e9ecef;
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 25px 15px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    box-shadow: 0 0 10px #f4f4f4;
    border-radius: 0;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #333;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 0 25px 0;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Responsive Design */
@media (max-width: 1200px) {
    .faq-title {
        font-size: 42px;
    }

    .accordion {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .accordion {
        max-width: 100%;
        margin: 0 15px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
        line-height: 1.3;
        padding: 0 20px;
    }

    .accordion {
        margin: 0 10px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 18px 0;
        line-height: 1.4;
    }

    .accordion-body {
        font-size: 14px;
        padding: 0 0 20px 0;
        line-height: 1.5;
    }

    .accordion-button::after {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .accordion {
        margin: 0 5px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px 0;
        text-align: left;
    }

    .accordion-body {
        font-size: 13px;
        padding: 0 0 18px 0;
    }

    .accordion-item {
        margin-bottom: 2px;
    }
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-title h2 .highlight {
    color: #7cb342;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container */
.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 auto;
    width: 350px;
    max-width: 350px;
    padding: 0 8px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.08); */
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    min-height: 185px;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 10%;
    transform: rotate(27deg);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #ffffff;
    margin: 0 auto;
    margin-top: 0px;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 35px rgba(0,0,0,0.12); */
}

.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    font-weight: 400;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating .fas {
    color: #ffc107;
    font-size: 1rem;
}

.rating .far {
    color: #e9ecef;
    font-size: 1rem;
}

/* Slider Controls */
.slider-controls {
    text-align: center;
    margin-top: 50px;
}

.slider-btn {
    background: #7cb342;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #689f38;
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Decorative Background Elements */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08) 0%, rgba(124, 179, 66, 0.03) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-slide {
        width: 340px;
        max-width: 340px;
    }
}

@media (max-width: 992px) {
    .testimonial-slide {
        width: 330px;
        max-width: 330px;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        width: 300px;
        max-width: 300px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-card {
        height: 260px;
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        width: 280px;
        max-width: 280px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px 18px;
        height: 250px;
    }

    .client-avatar {
        width: 45px;
        height: 45px;
    }

    .client-details h5 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        width: 260px;
        max-width: 260px;
    }

    .testimonial-card {
        height: 240px;
    }
}

@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: 100px 0 100px;
    background: #fff;
    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-head {
    background-color: #006fde;
    color: white;
    width: fit-content;
    margin-inline: auto;
    font-size: 20px;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.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;
    }

    .hero-content {
        margin-top: 40px;
    }
}

/* 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;
    }
}



/* ---------------------------our company-------------------------------- */
.section-space--ptb_100 {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-sub-title {
    color: #6c757d;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.text-color-primary {
    color: #007bff !important;
}

.section-space--mb_40 {
    margin-bottom: 40px;
}

/* Custom Bootstrap Card Styling */
.card {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: white;
    border-bottom: 1px solid #e9ecef !important;
    border-radius: 10px 10px 0 0 !important;
    padding: 20px !important;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    text-decoration: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
    color: #007bff;
    text-decoration: none;
}

.fa-chevron-down,
.fa-chevron-up {
    transition: transform 0.3s ease;
}

.collapsed .fa-chevron-up {
    display: none;
}

.collapsed .fa-chevron-down {
    display: inline;
}

.btn-link:not(.collapsed) .fa-chevron-down {
    display: none;
}

.btn-link:not(.collapsed) .fa-chevron-up {
    display: inline;
}

.card-body {
    padding: 20px;
    color: #6c757d;
    line-height: 1.7;
}

/* Animation Container */
.rv-video-section {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ht-banner-01,
.ht-banner-02,
.ht-banner-03,
.ht-banner-04 {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
}

.animation_images {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.animation_images:hover {
    transform: scale(1.05);
}

/* Individual Banner Positions and Sizes */
.ht-banner-01 {
    top: 0px;
    left: 0px;
    width: 270px;
    height: 200px;
    z-index: 4;
}

.ht-banner-02 {
    top: 30px;
    right: 0px;
    width: 270px;
    height: 200px;
    z-index: 3;
}

.ht-banner-03 {
    bottom: 00px;
    left: 0px;
    width: 270px;
    height: 200px;
    z-index: 2;
}

.ht-banner-04 {
    bottom: 20px;
    right: 0px;
    width: 270px;
    height: 200px;
    z-index: 1;
}

/* Central Video Box */
.main-video-box img {
    width: 100%;
}

.main-video-box {
    width: 400px;
    height: 240px;
    position: relative;
    z-index: 5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.single-popup-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ht-popup-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
}

.video-button__two {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-button__two:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #007bff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Animation Classes */
.animateUpDown {
    animation: floatUpDown 3s ease-in-out infinite;
}

.ht-banner-01 .animation_images {
    animation-delay: 0s;
}

.ht-banner-02 .animation_images {
    animation-delay: 0.5s;
}

.ht-banner-03 .animation_images {
    animation-delay: 1s;
}

.ht-banner-04 .animation_images {
    animation-delay: 1.5s;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Placeholder Images with Gradients */
.placeholder-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.placeholder-img-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.placeholder-img-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.placeholder-img-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.placeholder-video {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }

    .rv-video-section {
        height: 400px;
        margin-top: 40px;
    }

    .ht-banner-01,
    .ht-banner-02,
    .ht-banner-03,
    .ht-banner-04 {
        width: 140px !important;
        height: 80px !important;
    }

    .main-video-box {
        width: 180px;
        height: 100px;
    }
}

/* --------------------------------------------about------------------------------------------ */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJtMzYgMzRjMCAxLjEwNS0uODk1IDItMiAycy0yLS44OTUtMi0yIC44OTUtMiAyLTIgMiAuODk1IDIgMiIvPjwvZz48L2c+PC9zdmc+');
    animation: float 20s ease-in-out infinite;
}

.hero-floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatRandom 15s ease-in-out infinite;
}

.hero-floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.hero-floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.hero-floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatRandom {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
    }

    75% {
        transform: translateY(-25px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Story Section */
.story-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    background-clip: text;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.story-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before {
    opacity: 0.03;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Mission Vision Section */
.mission-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.mission-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-card:nth-child(1) .mission-icon {
    background: var(--secondary-gradient);
}

.mission-card:nth-child(2) .mission-icon {
    background: var(--warning-gradient);
}

.mission-card:nth-child(3) .mission-icon {
    background: var(--secondary-gradient);
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    height: 100%;
    border: none;
    position: relative;
}

.team-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.team-avatar i {
    font-size: 3rem;
    color: white;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-info {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.values-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjIiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.5;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 0.1;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-description {
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Achievement Section */
.achievement-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: white;
}

.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.timeline-content::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px white, 0 0 0 8px var(--secondary-gradient);
    z-index: 10;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }

    .timeline-content::before {
        left: -30px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }

    .timeline-marker {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-section,
    .mission-section,
    .team-section,
    .values-section,
    .achievement-section,
    .timeline-section {
        padding: 4rem 0;
    }

    .story-card,
    .mission-card,
    .team-info {
        padding: 2rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.5rem;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline::before {
        left: 20px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}


/* -------------------------------services------------------------------------- */
/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJtMzYgMzRjMCAxLjEwNS0uODk1IDItMiAycy0yLS44OTUtMi0yIC44OTUtMiAyLTIgMiAuODk1IDIgMiIvPjwvZz48L2c+PC9zdmc+');
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: skewX(-15deg);
    animation: slide 8s ease-in-out infinite alternate;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100px) skewX(-15deg);
    }

    100% {
        transform: translateX(100px) skewX(-15deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-container {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-xl);
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7b4b;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}
.services-section h2{
    color: var(--text-primary);
}
.section-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-body);
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.digital-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    border: none;
}

.digital-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.digital-card:hover::before {
    transform: scaleX(1);
}

.digital-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-header-custom {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.card-header-custom::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.card-header-custom h4 {
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.digital-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-body-custom {
    padding: 2.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.service-list li:hover {
    padding-left: 10px;
    color: #4facfe;
}

.service-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
}

.check-icon i {
    font-size: 0.7rem;
    color: white;
}

/* ERP Modules Section */
.erp-section {
    padding: 8rem 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.erp-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjIiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.5;
}

.module-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin: 0.5rem;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-badge:hover {
    background: var(--secondary-gradient);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Digital Marketing Section */
.marketing-section {
    padding: 8rem 0;
    background: white;
}

.marketing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.marketing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.marketing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.marketing-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.marketing-icon i {
    font-size: 1.5rem;
    color: white;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.platform-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--secondary-gradient);
    color: white;
    border: none;
}

/* Why Choose Us Section */
.choose-section {
    padding: 8rem 0;
    background: var(--bg-light);
}
.choose-section h2{
color: var(--text-primary);
}

.choose-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choose-card:hover::before {
    opacity: 0.05;
}

.choose-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.choose-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
    transition: all 0.3s ease;
}

.choose-icon i {
    font-size: 2rem;
    color: white;
}

.choose-card:hover .choose-icon {
    transform: scale(1.1) rotate(-5deg);
}
.choose-card h3{
    font-size:20px;
    font-weight: 600;
}

/* Final Stats Section */
.final-stats {
    padding: 6rem 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.final-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.final-stat-item {
    margin-bottom: 2rem;
}

.final-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.final-stat-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .final-stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-section,
    .erp-section,
    .marketing-section,
    .choose-section {
        padding: 4rem 0;
    }

    .card-body-custom,
    .marketing-card {
        padding: 2rem;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .final-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .final-stat-number {
        font-size: 2rem;
    }

    .card-header-custom,
    .card-body-custom {
        padding: 1.5rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------product------------------------------------- */

 /* Hero Section */
        .hero-section {
            background: var(--primary-gradient);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJtMzYgMzRjMCAxLjEwNS0uODk1IDItMiAycy0yLS44OTUtMi0yIC44OTUtMiAyLTIgMiAuODk1IDIgMiIvPjwvZz48L2c+PC9zdmc+');
            animation: float 20s ease-in-out infinite;
        }
        
        .hero-floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatRandom 15s ease-in-out infinite;
        }
        
        .hero-floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }
        
        .hero-floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            width: 120px;
            height: 120px;
            animation-delay: 2s;
        }
        
        .hero-floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 60px;
            height: 60px;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes floatRandom {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            25% { transform: translateY(-30px) translateX(20px); }
            50% { transform: translateY(-10px) translateX(-15px); }
            75% { transform: translateY(-25px) translateX(10px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: var(--font-size-xl);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #fff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: var(--font-size-sm);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .hero-description {
            font-size: var(--font-size-body);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Products Section */
        .products-section {
            padding: 8rem 0;
            background: white;
            position: relative;
        }
        
        .section-title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background-clip: text;
            position: relative;
            color: var(--text-primary);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: var(--font-size-body);
            color: var(--text-secondary);
            margin-bottom: 4rem;
        }
        
        .product-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 2rem;
            position: relative;
            height: 100%;
            border: none;
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .product-header {
            background: var(--primary-gradient);
            color: white;
            padding: 2rem;
            border: none;
            position: relative;
            overflow: hidden;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
        }
        
        .product-header::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }
        
        .product-icon {

            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .product-icon i {
            font-size: 25px;
            color: white;
        }
        
        .product-card:hover .product-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .product-title {
            font-size: var(--font-size-sm);
            font-weight: 600;
            margin: 0;
            position: relative;
            z-index: 2;
        }
        
        .product-body {
            padding: 2.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            padding: 0.7rem 0;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:hover {
            padding-left: 10px;
            color: #4facfe;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .check-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.8rem;
            flex-shrink: 0;
        }
        
        .check-icon i {
            font-size: 0.7rem;
            color: white;
        }
        
        .btn-product {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-product:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
            color: white;
        }
        
        /* O3 ERP Featured Section */
        .featured-product {
            padding: 8rem 0;
            background: var(--bg-light);
        }
        
        .o3-card {
            background: white;
            border-radius: 25px;
            padding: 4rem;
            transition: all 0.4s ease;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }
        
        .o3-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .o3-card:hover::before {
            opacity: 0.03;
        }
        
        .o3-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .o3-logo {
            width: 120px;
            height: 120px;
            border-radius: 30px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .o3-logo span {
            font-size: 3rem;
            font-weight: 800;
            color: white;
        }
        
        .o3-card:hover .o3-logo {
            transform: scale(1.1);
        }
        
        /* Modules Grid */
        .modules-section {
            padding: 8rem 0;
            background: var(--primary-gradient);
            color: white;
            position: relative;
        }
        
        .modules-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjIiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.5;
        }
        
        .module-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .module-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .module-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .module-card:hover::before {
            opacity: 0.1;
        }
        
        .module-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-xl);
        }
        
        .module-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .module-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .module-card:hover .module-icon {
            transform: scale(1.1) rotate(10deg);
        }
        
        .module-title {
            font-size: var(--font-size-body);
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        
        /* Mobile App Section */
        .mobile-app-section {
            padding: 8rem 0;
            background: #f8f9fa;
        }
        
        .app-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .app-feature {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .app-feature::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .app-feature:hover::before {
            transform: scaleX(1);
        }
        
        .app-feature:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }
        
        .app-feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }
        
        .app-feature-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .app-feature:hover .app-feature-icon {
            transform: scale(1.1);
        }
        
        /* Contact CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--primary-gradient);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .btn-cta {
            background: white;
            color: var(--text-primary);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: var(--text-primary);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            :root {
                --font-size-xl: 3rem;
                --font-size-lg: 2rem;
                --font-size-md: 1.6rem;
                --font-size-sm: 1.3rem;
            }
        }
        
        @media (max-width: 992px) {
            :root {
                --font-size-xl: 2.5rem;
                --font-size-lg: 1.8rem;
                --font-size-md: 1.4rem;
                --font-size-sm: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --font-size-xl: 2rem;
                --font-size-lg: 1.6rem;
                --font-size-md: 1.3rem;
                --font-size-sm: 1.1rem;
            }
            
            .hero-section {
                padding: 6rem 0 4rem;
                min-height: auto;
            }
            
            .products-section, .featured-product, .modules-section, .mobile-app-section {
                padding: 4rem 0;
            }
            
            .product-body, .o3-card {
                padding: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            :root {
                --font-size-xl: 1.8rem;
                --font-size-lg: 1.4rem;
                --font-size-md: 1.2rem;
                --font-size-sm: 1rem;
            }
            
            .product-header, .product-body {
                padding: 1.5rem;
            }
        }
        
        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
      
        /* -------------------------------erp------------------------------------- */

        /* Hero Section */
        .hero-section {
            background: var(--primary-gradient);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJtMzYgMzRjMCAxLjEwNS0uODk1IDItMiAycy0yLS44OTUtMi0yIC44OTUtMiAyLTIgMiAuODk1IDIgMiIvPjwvZz48L2c+PC9zdmc+');
            animation: float 20s ease-in-out infinite;
        }
        
        .hero-floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatRandom 15s ease-in-out infinite;
        }
        
        .hero-floating-element:nth-child(1) {
            top: 15%;
            left: 10%;
            width: 100px;
            height: 100px;
            animation-delay: 0s;
        }
        
        .hero-floating-element:nth-child(2) {
            top: 70%;
            right: 15%;
            width: 80px;
            height: 80px;
            animation-delay: 2s;
        }
        
        .hero-floating-element:nth-child(3) {
            bottom: 20%;
            left: 15%;
            width: 120px;
            height: 120px;
            animation-delay: 4s;
        }
        
        .hero-floating-element:nth-child(4) {
            top: 40%;
            right: 5%;
            width: 60px;
            height: 60px;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes floatRandom {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
            50% { transform: translateY(-10px) translateX(-15px) rotate(180deg); }
            75% { transform: translateY(-25px) translateX(10px) rotate(270deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .o3-logo {
            width: 150px;
            height: 150px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: logoGlow 3s ease-in-out infinite alternate;
        }
        
        .o3-logo span {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        }
        
        @keyframes logoGlow {
            0% { box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2); }
            100% { box-shadow: 0 25px 80px rgba(255, 255, 255, 0.4); }
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #fff, #f0fff0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .hero-description {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .hero-stats {
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 0.8s ease-out forwards;
        }
        
        .stat-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: var(--shadow-xl);
        }
        
        .stat-card:nth-child(1) { animation-delay: 0.7s; }
        .stat-card:nth-child(2) { animation-delay: 0.8s; }
        .stat-card:nth-child(3) { animation-delay: 0.9s; }
        .stat-card:nth-child(4) { animation-delay: 1.0s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .btn-hero {
            background: white;
            color: var(--text-primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--text-primary);
        }
        
        /* Features Section */
        .features-section {
            padding: 8rem 0;
            background: white;
            position: relative;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 4rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-md);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px #437fe94d;
            transition: all 0.3s ease;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .feature-description {
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.7;
        }
        
        /* Modules Section */
        .modules-section {
            padding: 8rem 0;
            background: var(--bg-light);
        }
        
        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .module-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: none;
        }
        
        .module-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .module-card:hover::before {
            opacity: 0.05;
        }
        
        .module-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: var(--shadow-xl);
        }
        
        .module-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .module-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }
        
        .module-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .module-card:hover .module-icon {
            transform: scale(1.1) rotate(10deg);
        }
        
        .module-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
            position: relative;
            z-index: 2;
            color: var(--text-primary);
            text-align: left;
        }
        
        .module-features {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }
        
        .module-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .module-features li:hover {
            color: var(--text-primary);
            padding-left: 10px;
        }
        
        .module-features li::before {
            content: "✓";
            color: #43e97b;
            font-weight: bold;
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }
        
        /* Problem Solution Section */
        .problem-solution {
            padding: 8rem 0;
            background: var(--primary-gradient);
            color: white;
            position: relative;
        }
        
        .problem-solution::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjIiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.3;
        }
        
        .ps-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 3rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .ps-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-xl);
        }
        
        .ps-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }
        
        .problem-icon {
            background: var(--secondary-gradient);
        }
        
        .solution-icon {
            background: var(--success-gradient);
        }
        
        .ps-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .ps-card:hover .ps-icon {
            transform: scale(1.1);
        }
        
        .ps-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .ps-list {
            list-style: none;
            padding: 0;
        }
        
        .ps-list li {
            padding: 0.7rem 0;
            position: relative;
            padding-left: 2rem;
            opacity: 0.9;
        }
        
        .ps-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #43e97b;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        /* Mobile App Section */
        .mobile-section {
            padding: 8rem 0;
            /* background: var(--bg-light); */
        }
        
        .mobile-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .mobile-feature {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .mobile-feature::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .mobile-feature:hover::before {
            transform: scaleX(1);
        }
        
        .mobile-feature:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }
        
        .mobile-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }
        
        .mobile-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .mobile-feature:hover .mobile-icon {
            transform: scale(1.1) rotate(360deg);
        }
        
        .mobile-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            background: var(--primary-gradient);
            color: white;
            text-align: center;
            position: relative;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta {
            background: white;
            color: var(--text-primary);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--text-primary);
        }
        
        .contact-info {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-item {
            display: inline-block;
            margin: 0 2rem 1rem;
            opacity: 0.9;
        }
        
        .contact-item i {
            margin-right: 0.5rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4rem;
            }
            .section-title {
                font-size: 3rem;
            }
            .cta-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .section-title {
                font-size: 2.5rem;
            }
            .cta-title {
                font-size: 2.5rem;
            }
            .modules-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
                min-height: auto;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-section, .modules-section, .problem-solution, .mobile-section, .cta-section {
                padding: 4rem 0;
            }
            
            .feature-card, .module-card, .ps-card {
                padding: 2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .contact-item {
                display: block;
                margin: 0.5rem 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .o3-logo {
                width: 120px;
                height: 120px;
            }
            
            .o3-logo span {
                font-size: 3rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* -------------------------------loan------------------------------------- */
        /* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgZmlsbC1ydWxlPSJub256ZXJvIj48cGF0aCBkPSJtMzYgMzRjMCAxLjEwNS0uODk1IDItMiAycy0yLS44OTUtMi0yIC44OTUtMiAyLTIgMiAuODk1IDIgMiIvPjwvZz48L2c+PC9zdmc+');
    animation: float 20s ease-in-out infinite;
}

.hero-floating-element {
    position: absolute;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: floatMoney 12s ease-in-out infinite;
}

.hero-floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.hero-floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
}

.hero-floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

.hero-floating-element:nth-child(4) {
    top: 40%;
    right: 5%;
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.hero-floating-element:nth-child(5) {
    top: 70%;
    left: 40%;
    width: 90px;
    height: 90px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatMoney {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.1;
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.15;
    }

    75% {
        transform: translateY(-25px) translateX(10px) rotate(270deg);
        opacity: 0.1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.loan-logo {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.loan-logo i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 25px 80px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: var(--font-size-body);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    background: var(--secondary-gradient);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: var(--text-primary);
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.section-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background-clip: text;
    position: relative;
    
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-body);
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-description {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
}

/* Loan Types Section */
.loan-types-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.loan-type-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.loan-type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loan-type-card:hover::before {
    opacity: 0.05;
}

.loan-type-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.loan-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.loan-icon i {
    font-size: 2rem;
    color: white;
}

.loan-type-card:hover .loan-icon {
    transform: scale(1.1) rotate(10deg);
}

.loan-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.loan-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.loan-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.loan-features li:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 0.7rem;
    color: white;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjIiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.3;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(360deg);
}

.process-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-10deg);
}

.benefit-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--secondary-gradient);
    color: var(--text-primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: var(--text-primary);
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
    display: inline-block;
    margin: 0 2rem 1rem;
    opacity: 0.9;
}

.contact-item i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --font-size-xl: 3rem;
        --font-size-lg: 2rem;
        --font-size-md: 1.6rem;
        --font-size-sm: 1.3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-xl: 2.5rem;
        --font-size-lg: 1.8rem;
        --font-size-md: 1.4rem;
        --font-size-sm: 1.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-xl: 2rem;
        --font-size-lg: 1.6rem;
        --font-size-md: 1.3rem;
        --font-size-sm: 1.1rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .features-section,
    .loan-types-section,
    .process-section,
    .benefits-section,
    .cta-section {
        padding: 4rem 0;
    }

    .feature-card,
    .loan-type-card,
    .process-step {
        padding: 2rem;
    }

    .contact-item {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-xl: 1.8rem;
        --font-size-lg: 1.4rem;
        --font-size-md: 1.2rem;
        --font-size-sm: 1rem;
    }

    .loan-logo {
        width: 120px;
        height: 120px;
    }

    .loan-logo i {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}


/* ------------------------------------------contact------------------------------------------- */
.contact-hero {
            position: relative;
            background-image: url("../image/hero-bg.svg");
            background-size: cover;
            background-position: bottom;
            padding: 160px 0 200px;
            display: flex;
            align-items: center;
        }

        .contact-title {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            color: white;
            -webkit-background-clip: text;
            background-clip: text;
            animation: titleGlow 2s ease-in-out infinite alternate;
        }

        .product-hero {
            min-height: 90vh;
        }

        @keyframes titleGlow {
            from {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            }

            to {
                text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            }
        }

        .contact-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #dbdbdb;
            max-width: 800px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease-out 0.5s both;
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-heading {
            font-size: 40px;
            color: white;
            font-weight: 600;
            margin-bottom: 50px;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-custom {
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-secondary-custom {
            background: transparent;
            color: #a855f7;
            border: 2px solid #a855f7;
        }

        .btn-secondary-custom:hover {
            background: #a855f7;
            color: white;
            transform: translateY(-2px);
        }

        .contact-section {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }

        .contact-card {
            background: linear-gradient(180deg, #163D88, #413093);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 40px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px !important;
            color: #cbd5e1;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(180deg, #FF6B35, #eb3f00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            animation: iconPulse 2s ease-in-out infinite;
        }
        

        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .contact-icon i {
            color: white !important;
            margin: 0 !important;
            font-size: 1.2rem;
        }

        .contact-details h6 {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 20px;
        }

        .contact-details p {
            margin: 0;
            font-size: 16px;
            line-height: 1.4;
            color: #fff;
        }

        .form-card {
            backdrop-filter: blur(10px);
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            color: #cbd5e1;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-input {
            background: rgba(255, 255, 255, 1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 8px;
            padding: 12px 15px;
            color: black;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-input:focus {
            background: rgba(30, 41, 59, 1);
            border-color: #a855f7;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
            color: white;
        }

        .form-input::placeholder {
            color: #64748b;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row .form-group {
            flex: 1;
        }

        .map-section {
            position: relative;
            z-index: 2;
            padding: 0 20px 40px;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            animation: fadeIn 1s ease-out 1s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-hero {
                padding-top: 100px;
                margin: 0;
            }

            .contact-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 20px;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn-custom {
                width: 200px;
                text-align: center;
            }

            .contact-card,
            .form-card {
                padding: 40px 20px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .map-container {
                height: 300px;
            }

            .contact-details p {
                font-size: 14px;
            }

            .map-section {
                padding: 0 0px 40px;
            }

            .action-buttons {
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-section {
                padding: 60px 0;
            }

            .contact-section {
                padding: 40px 0;
            }

            .contact-card,
            .form-card {
                padding: 40px 10px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-icon {
                margin: 0 auto 1rem;
            }

            .contact-section {
                margin-top: 0px;
            }

            .contact-heading {
                font-size: 30px;
            }

            .contact-details {
                margin: auto;
                display: block;
            }
        }

        /* Animation delays for staggered effects */
        .contact-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .contact-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .contact-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .contact-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .form-group:nth-child(1) {
            animation: fadeInUp 0.6s ease-out 0.5s both;
        }

        .form-group:nth-child(2) {
            animation: fadeInUp 0.6s ease-out 0.6s both;
        }

        .form-group:nth-child(3) {
            animation: fadeInUp 0.6s ease-out 0.7s both;
        }

        .form-group:nth-child(4) {
            animation: fadeInUp 0.6s ease-out 0.8s both;
        }

        .form-group:nth-child(5) {
            animation: fadeInUp 0.6s ease-out 0.9s both;
        }

        .highlight {
            color: #FF6B35;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #FF6B35, #eb3f00);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
        }
