:root {
    --primary-orange: #ff7433;
    --primary-orange-dark: #e6661a;
    --primary-orange-light: #fff5f0;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
    --white: #ffffff;
    --green: #10b981;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 10rem 1rem 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #110462;
}

.hero h1 .highlight {
    color: var(--primary-orange);
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
    animation: floats 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-card.top-left {
    top: -1rem;
    left: -1rem;
}

.floating-card.bottom-right {
    bottom: -1rem;
    right: -1rem;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.green {
    background: #dcfce7;
    color: var(--green);
}

.icon-circle.orange {
    background: var(--primary-orange-light);
    color: var(--primary-orange);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    color: #fbbf24;
}

/* Common Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #110462;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    padding: 5rem 1rem;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.solution-card.gym {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.solution-card.library {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.solution-card.pg {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-icon.gym {
    background: #dbeafe;
    color: var(--blue);
}

.solution-icon.library {
    background: #dcfce7;
    color: var(--green);
}

.solution-icon.pg {
    background: #fed7aa;
    color: var(--primary-orange);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.feature-list li i {
    color: var(--green);
}

.learn-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 1rem;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: 600;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Contact Form Section */
.contact-form {
    padding: 1rem;
    background: var(--bg-light);
    margin: 112px auto 0px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-feature h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-feature p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin: 0;
}

.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.demo-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-orange);
}

.cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: var(--white);
    padding: 20px 0px 0px 0px;
    background-image: url('../frontend-assets/images/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    padding: 30px 0px;
}

.footer-logo a {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 5px;
}

.footer-links {
    margin-left: 50px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact {
    margin-left: 50px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-contact li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    background: transparent;
    border: 1px solid #fff;
    padding: 10px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact li a:hover {
    color: var(--primary-orange);
    box-shadow: 0px 0px 15px var(--primary-orange);
    transform: translateY(-2px);
    border-color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.footer-bottom p {
    margin: 0;
    display: inline-block;
}

.footer-bottom a {
    text-decoration: none;
    color: var(--white);
    display: inline-block;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

.footer-bottom .store-buttons {
    margin-top: 0px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.modal-body p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floats {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .subscription-plans,
    .contact-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .join-point {
        grid-template-columns: 1fr !important;
        gap: 0.1rem !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .subscription-plans,
    .contact-inner,
    .ci-slide,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .join-point {
        grid-template-columns: 1fr !important;
        gap: 0.1rem !important;
    }

    .footer-links,
    .footer-contact {
        margin-left: 0px;
    }
}

/* Sliders */
.mobile-slider {
    margin-top: 60px;
}

.content-image-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 15px;
}

.ci-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #1f2937;
    padding: 50px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

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

.ci-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1f2937;
    color: white;
}

.ci-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
}

.ci-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff7433;
}

.ci-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.ci-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff7433;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ci-btn:hover {
    background: white;
    color: #ff7433;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ci-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ci-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

/* Image Only Slider */
.image-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.img-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

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

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

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

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .ci-slide {
        flex-direction: column;
    }

    .ci-content {
        padding: 40px 20px;
        order: 2;
    }

    .ci-image {
        height: 40vh;
        order: 1;
    }

    .ci-btn {
        align-self: center;
    }

    .content-image-slider {
        height: auto;
        min-height: 500px;
    }

    .hero {
        padding: 10rem 1rem 2rem;
    }


    .image-slider {
        /* display: none !important; */
    }

    .app-store-cta h3 {
        /* font-size: 32px !important; */
        max-width: 100% !important;
    }

    .app-store-cta .store-buttons a img {
        max-width: 150px !important;
    }

    .footer-bottom .store-buttons a {
        margin-bottom: 5px !important;
        display: inline-block;
    }

    .footer-bottom .store-buttons a img {
        margin-left: 0px !important;
    }
}

.app-store-cta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 45px;
}

.app-store-cta .store-buttons {
    margin-top: 30px;
}

.store-buttons a {
    text-decoration: none;
}


/* About Us */

.banner-bread {
    background: url('../image/bread-new.jpg') no-repeat;
    height: 260px;
    width: 100%;
    position: relative;
    background-position: center center;
    background-size: cover;
    padding-top: 100px;
    margin-top: 115px;
    text-align: center;
}

.banner-bread-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f2937b4;
}

.banner-bread h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.about-banner {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    padding-top: 3rem;
}

.about-content {
    padding: 5rem 1rem;
}

.about-who-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.mission-vision {
    padding: 50px 0;
    background: var(--bg-light);
}

.mission-title {
    text-align: center;
    margin-bottom: 60px;
}

.mission-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.mission-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff7433;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.mission-row.reverse {
    flex-direction: row-reverse;
}

.mission-content {
    flex: 1;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.mission-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.mission-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mission-row:hover .mission-image img {
    transform: scale(1.05);
}

.mission-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-content h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ff7433;
    bottom: -10px;
    left: 0;
    transition: all 0.4s ease;
}

.mission-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mission-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mission-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    background: #ff7433;
    border-radius: 50%;
}

.mission-row:hover .mission-content h3:after {
    width: 80px;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.mv-highlight {
    position: relative;
    display: inline-block;
}

.mv-highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: rgba(255, 116, 51, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-row:hover .mv-highlight:after {
    transform: scaleX(1);
}

.mission-row.reverse .mv-highlight:after {
    background: rgba(31, 41, 55, 0.2);
}

.mission-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 116, 51, 0.1) 0%, transparent 100%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.mission-row:hover .mission-image:before {
    opacity: 1;
}

.mission-row.reverse .mission-image:before {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.1) 0%, transparent 100%);
}

@media (max-width: 992px) {
    .mission-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .mission-row.reverse {
        flex-direction: column;
    }

    .mission-content {
        padding: 40px 20px 0;
        text-align: center;
    }

    .mission-image {
        min-height: 230px;
        width: 100%;
    }

    .mission-content h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-icon {
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .mission-content h3 {
        font-size: 1.5rem;
    }

    .mission-content p {
        font-size: 1rem;
    }
}

.join-content {
    text-align: center;
    padding: 1rem 1rem;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.join-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.join-point {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.join-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.join-highlight ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    background: #fed7aa;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    border-left: 5px solid #e6661a;
}

.join-highlight li:hover {
    background: #ff7433;
    color: var(--white);
    border-left: 0px;
}

/* features-css */

.feature-box-main {
    padding: 5rem 1rem;
}

.feature-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-intro {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-orange);
}

.feature-intro:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background-color: #ff743349;
    border: solid 2px #ff7433;
}

.feature-intro img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-page-section {
    background-color: #fff5f0;
}

.feature-page-inner {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.feature-page-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-page-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.feature-page-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff7433;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(31, 41, 55, 0.8);
}

.feature-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-page-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-page-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.feature-page-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.feature-page-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.feature-page-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.feature-page-card:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 1.0s forwards;
}

.feature-page-card:nth-child(6) {
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.feature-page-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff7433;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.feature-page-card:hover {
    background-color: #ff743349;
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: solid 1px;
    border-color: #ff7433;
}

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

.feature-page-card-icon {
    width: 80px;
    height: 80px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #ff7433;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-page-card:hover .feature-page-card-icon {
    background: #ff7433;
    color: #fff;
    transform: rotateY(180deg);
}

.feature-page-card-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 116, 51, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.feature-page-card:hover .feature-page-card-icon:before {
    transform: scale(3);
    opacity: 0;
}

.feature-page-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.feature-page-card:hover h3 {
    color: #ff7433;
}

.feature-page-card p {
    text-align: center;
    color: rgba(31, 41, 55, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-page-card:hover p {
    color: rgba(31, 41, 55, 0.9);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Floating background elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 116, 51, 0.05);
    z-index: 1;
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float-new 15s ease-in-out infinite;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float-new 20s ease-in-out infinite reverse;
}

@keyframes float-new {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }

    50% {
        transform: translate(0, 20px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .feature-page-grid {
        grid-template-columns: 1fr;
    }

    .feature-page-header h2 {
        font-size: 2.2rem;
    }

    .feature-page-card {
        padding: 30px 20px;
    }
}

.call-to-action-section {
    margin: 60px 0px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.cta-content {
    background-color: #ff7433;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
    opacity: 0;
    animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.cta-content h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #fff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.cta-btn-primary {
    background-color: #fed7aa;
    color: #1f2937;
    box-shadow: 0 10px 20px rgba(255, 116, 51, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.cta-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-5px) !important;
}

.cta-btn-primary:hover {
    box-shadow: 0 15px 30px rgba(255, 116, 51, 0.4);
    background-color: #1f2937;
    color: #fff;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

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

/* breadcrumb  SECTION */

.top-breadcrumb h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff7433;
    text-align: center;
    padding-top: 90px;
}

.dynamic-cta {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    isolation: isolate;
}

.color-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            #ff7433,
            #1f2937,
            #fff5f0,
            #ff7433);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    z-index: -2;
    opacity: 0.9;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: float 15s infinite linear;
}

.element-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 15%;
    animation-delay: -5s;
    animation-duration: 18s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }

    50% {
        transform: translate(0, 20px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

/* Pulsing animation */
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    animation: pulse 8s infinite;
}

.pulse:nth-child(2) {
    animation-delay: 2s;
}

.pulse:nth-child(3) {
    animation-delay: 4s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .dynamic-cta {
        padding: 60px 20px;
    }

    .cta-content {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact-page */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 50px 0px;
}

.contact-us-content {
    background: #ff7433;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
}

.contact-us-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 10px;
}

.contact-us-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 28px;
    text-align: justify;
}

.contact-detail {
    margin-top: 30px;
}

.contact-detail a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease-out;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-detail i {
    color: #ff7433;
    font-size: 20px;
    margin-right: 10px;
    transition: all 0.3s ease-out;
    background: #fff5f0;
    padding: 9px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease-out, background-color 0.3s ease-out;
    cursor: pointer;
    border-radius: 5px;
}

.contact-detail .whatsapp i {
    padding: 9px 12px;
}

.working-hours-new {
    max-width: 500px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 5px solid #ff914d !important;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

.working-hours-new h3 {
    color: #1f2937 !important;
}

.working-hours-new p {
    color: #1f2937;
}

.contact-form-heading {
    margin-bottom: 70px;
}

.contact-form-heading h3 {
    font-size: 28px !important;
    font-weight: 600;
    color: #1f2937 !important;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-heading p {
    text-align: center;
}

.form-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}

/* Subscription */

.subscription-main-heading {
    text-align: center;
    margin: 50px 0px;
    background: #fed7aa;
    border-radius: 10px;
    padding: 20px;
}

.subscription-main-heading h2 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscription-main-heading p {
    font-size: 1.2rem;
    color: rgba(31, 41, 55, 0.8);
    margin-bottom: 0;
}


.subscription-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 10px;
    margin-bottom: 50px;
}

.subscription-card {
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.subscription-card-top {
    /* background: linear-gradient(135deg, #1f2937 0%, #ff7433 100%); */
    /* color: #fff; */
    padding: 1rem 2rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid #ff7433;
}

.subscription-card-top .badge {
    position: absolute;
    top: 10px;
    right: 5px;
    background: #ff7433;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #fff;
}

.subscription-card-top h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subscription-card-top .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.subscription-card-top .price span {
    font-size: 1.2rem;
    font-weight: 400;
    /* color: rgba(255, 255, 255, 0.8); */
}

.subscription-discraption {
    font-size: 14px;
    /* color: #fff; */
    margin-bottom: 20px;
}

.subscription-discraption p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 22px;
    height: 4.6em;
    /* color: #fff; */
}

.subscription-discraption p span {
    /* color: #fff !important; */
}

.subscription-discraption a {
    /* color: #fff; */
    text-decoration: underline;
    font-weight: 600;
}

.subscription-card:hover {
    background: #ff743349;
    border: 1px solid;
    border-color: #ff7433;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.subscription-card:hover .subscription-card-top h3 {
    /* color: #fff; */
}

.subscription-card-bottom {
    padding: 1rem 1.5rem;
}

.subscription-list {
    list-style: none;
    margin: 16px 0 15px;
}

.subscription-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(31, 41, 55, 0.8);
    transform: translateX(-20px);
    opacity: 0;
}

.subscription-list li:nth-child(1) {
    animation: featureSlideIn 0.5s ease-out 0.6s forwards;
}

.subscription-list li:nth-child(2) {
    animation: featureSlideIn 0.5s ease-out 0.8s forwards;
}

.subscription-list li:nth-child(3) {
    animation: featureSlideIn 0.5s ease-out 1.0s forwards;
}

.subscription-list li:nth-child(4) {
    animation: featureSlideIn 0.5s ease-out 1.2s forwards;
}

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

.subscription-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #fff5f0;
    color: #ff7433;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}


.common-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #ff7433;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: btnEntrance 0.6s ease-out 1.4s forwards;
    text-align: center;
    text-decoration: none;
}

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

.common-btn:hover {
    background: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 116, 51, 0.3);
}

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

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

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


@media (max-width: 768px) {
    .contact-us-content a {
        font-size: 9px;

    }

}

.whatsapp-icon a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    transition: background-color 0.3s;
    display: flex;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon a:hover {
    background-color: #128C7E;
    color: white;
}
