:root{
    --primary-color: #2A3DD3;
    --secondary-color: #6A7282;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #363636;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #FFFFFF;
   border-bottom: 1px solid #E2E8F0; 
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
   /*  max-width: 1200px; */
   width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.navbar-brand {
    flex-shrink: 0;
}

.brand-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand-link:hover {
    color: var(--primary-color);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-direction: row !important;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1A202C;
}

.btn-primary{
    background-color: var(--primary-color) !important;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
}
.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
    color: #FFFFFF;
}
/* .nav-button {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
} */

/* .nav-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
    color: #FFFFFF;
} */

/* Mobile Sidebar */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-sidebar-nav {
    padding: 1rem;
}

.mobile-sidebar-nav .nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #F7FAFC;
    transition: color 0.2s ease;
}

.mobile-sidebar-nav .nav-link:hover {
    color: var(--primary-color);
}

.mobile-sidebar-nav .nav-button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-sidebar-nav .nav-button:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-nav {
        display: none !important;
    }
    
    .mobile-sidebar {
        display: block;
    }
    
    .navbar-container {
        padding: 1rem;
        justify-content: space-between;
    }
}


/* banner section */
.banner-section{
    border-bottom: 1px solid #E2E8F0;
    padding: 50px 0px;
}
.banner-container{
    .banner-content{
        h1{
            font-size: 3rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        p{
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--dark-color);
        }
        .banner-features{
            margin-top: 1rem;
            display: flex;
            flex-direction: row;
            gap: 1rem;
            span{
                font-size: 10px;
                font-weight: 400;
                color: var(--secondary-color);
            }
        }
    }

}
.banner-image{
    text-align: end;
    img{
        width: 75%;
        height: 100%;
        object-fit: contain;
    }
}
@media screen and (max-width: 768px) {
    .banner-container{
        .banner-content{
            h1{
                font-size: 2.5rem;
                font-weight: 600;
                color: var(--dark-color);
            }
        }
    }
    .banner-image{
        text-align: center;
        margin-top: 1rem;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
/* Trusted Section */
.trusted-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.trusted-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trusted-header h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin: 0;
}

.trusted-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.stat-icon {
  /*   width: 60px;
    height: 60px;
    background-color: #FFF7ED; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
   /*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.stat-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #101010;
    margin-bottom: 0.25rem;
}

.stat-subtext {
    font-size: 12px;
    font-weight: 400;
    color: #888888;
}

/* Responsive design for trusted section */
@media (max-width: 768px) {
    .trusted-section {
        padding: 2rem 0;
    }
    
    .trusted-header h2 {
        font-size: 1.25rem;
    }
    
    .trusted-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
  /*   .stat-icon img {
        width: 25px;
        height: 25px;
    } */
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-subtext {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trusted-stats {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

/* aboutt */
.section-first-content{
    h2{
        color: var(--dark-color);
    }
    p{
        color: var(--dark-color);
    }
}
.section-second-content{
    h2{
        color: var(--dark-color);
    }
    p{
        color: var(--dark-color);
    }
}
.section-third-content{
    h2{
        color: var(--dark-color);
    }
    p{
        color: var(--dark-color);
    }
}
.section-first-image{
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    .section-image{
        width: 250px;
    }
    .rect1{
        width: 250px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        z-index: -1;
    }
}
.section-second-image{
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    .section-image{
        width: 250px;
    }
    .rect1{
        width: 250px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        z-index: -1;
    }
}
.section-third-image{
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    .section-image{
        width: 250px;
    }
    .rect1{
        width: 250px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        z-index: -1;
    }
}

@media screen and (max-width: 768px) {
    .section-first-image{
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }
    .section-second-image{
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }
    .section-third-image{
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }
}

/* Templates Section */
.templates-section {
    background: linear-gradient(135deg, #F7F8FF 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.templates-header {
    text-align: center;
    margin-bottom: 3rem;
  
}

.templates-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.templates-header p {
    font-size: 14px;
    color: #4A5565;
    max-width: 600px;
    margin: 0 auto;
}

.template-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    .template-filters-container{
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        background-color: #ECECF0;
        border-radius: 30px;
        padding: 10px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 1px solid #E2E8F0;
        border-radius: 25px;
    }
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 3px 10px;
   background-color: transparent;
    border-radius: 25px;
    color: black;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.filter-btn:hover {
    background-color: #EDF2F7;
    color: #2D3748;
}

.filter-btn.active {
    background-color: white;
    color: black;
}

.filter-icon {
    font-size: 1rem;
    img{
        width: 20px;
    }
}

.template-content-sections {
    position: relative;
    margin-bottom: 3rem;
}

.template-content {
    display: none;
}

.template-content.active {
    display: block;
}

.template-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.template-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.template-image {
    position: relative;
    width: 100%;
   /*  height: 300px; */
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.main-text {
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.templates-cta {
    text-align: center;
}


.arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.browse-btn:hover .arrow-icon {
    transform: translateX(2px);
}

.templates-info {
    color: var(--secondary-color);
    font-size: 12px;
    margin: 0;
}

/* Responsive design for templates section */
@media (max-width: 768px) {
    .templates-section {
        padding: 2rem 0;
    }
    
    .templates-header h2 {
        font-size: 2rem;
    }
    
    .templates-header p {
        font-size: 1rem;
    }
    
    .template-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .template-filters-container {
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .template-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
   /*  .template-image {
        height: 250px;
    } */
    
    .template-overlay {
        padding: 0.75rem;
    }
    
    .main-text {
        font-size: 0.8rem;
    }
    
    .greeting-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .template-cards {
        grid-template-columns: 1fr;
    }
    
    .template-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        justify-content: center;
    }
}

/* How it works Section */
.how-it-works-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-label {
    display: inline-block;
    background-color: #FFEDD4;
    color: #CA3500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.how-it-works-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.how-it-works-header p {
    font-size: 14px;
    color: #4A5565;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, #E2E8F0 20%, #E2E8F0 80%, transparent);
    border-top: 2px dashed #E2E8F0;
    z-index: 1;
}

.step-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1.88px solid #0000001A;
    position: relative;
    z-index: 2;
    max-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 3;
}

.step-card:nth-child(1) .step-number {
    background-color: #FF6B35;
    box-shadow: 0px 4px 6px -4px #0000001A;

box-shadow: 0px 10px 15px -3px #0000001A;
font-size: 12px;
}

.step-card:nth-child(2) .step-number {
    background-color: #10B981;
    box-shadow: 0px 4px 6px -4px #0000001A;

box-shadow: 0px 10px 15px -3px #0000001A;
font-size: 12px;
}

.step-card:nth-child(3) .step-number {
    background-color: var(--primary-color);
    box-shadow: 0px 4px 6px -4px #0000001A;

box-shadow: 0px 10px 15px -3px #0000001A;
font-size: 12px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 14px;
    color: #4A5565;
    line-height: 1.5;
    margin: 0;
}

.time-estimate {
    background-color: #FFF7ED;
    border-radius: 12px;
    padding: 1rem 2rem;
    text-align: center;
    border: 1.88px solid #FFD6A7;
    margin: 0 auto;
    color: #101828;
    font-size: 14px;
}

.time-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.time-text {
    color: #101828;
    font-size: 14px;
    font-weight: 400;
}

.time-text strong {
    color: #FF6B35;
    font-weight: 700;
}

/* Responsive design for how it works section */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .how-it-works-header h2 {
        font-size: 2rem;
    }
    
    .how-it-works-header p {
        font-size: 1rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .time-estimate {
        padding: 0.75rem 1.5rem;
    }
    
    .time-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-header h2 {
        font-size: 1.75rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 14px;
    color: #4A5565;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(66, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.crown-icon {
    font-size: 0.75rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #101828;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A202C;
}

.price-period {
    font-size: 1rem;
    color: #4A5565;
    font-weight: 400;
}

.plan-description {
    color: #4A5565;
    font-size: 0.9rem;
    margin: 0;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.checkmark {
    color: #10B981;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #4A5565;
    font-size: 0.9rem;
}

.plan-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.free-button {
    background-color: white;
    border: 1px solid #0000001A;
    color: #0A0A0A;
}

.free-button:hover {
    background-color: white;
    border: 1px solid #0000001A;
    color: #0A0A0A;
}

.pro-button {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.pro-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

.team-button {
    background-color: white;
    border: 1px solid #0000001A;
    color: #0A0A0A;
}

.team-button:hover {
    background-color: white;
    border: 1px solid #0000001A;
    color: #0A0A0A;
}

.pricing-footer {
    text-align: center;
}

.special-offer {
    color: #4A5565;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0rem;
}

.offer-icon {
    font-size: 1rem;
}

.included-features {
    color: var(--secondary-color);
    font-size: 12px;
}

/* Responsive design for pricing section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .plan-header h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .plan-button {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Call-to-Action Section */
.cta-section {
    background-color: #142036;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 14px;
    color: #FFEDD4;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.download-btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #E2E8F0;
    min-width: 180px;
}

.android-btn {
    background-color: #FFFFFF;
    color: #FF6B35;
}

.android-btn:hover {
    background-color: #FF6B35;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.ios-btn {
    background-color: #FFFFFF;
    color: #1A202C;
}

.ios-btn:hover {
    background-color: #1A202C;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features .feature-item-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFEDD4;
    font-size: 0.9rem;
}



/* Responsive design for CTA section */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-features .feature-item {
        font-size: 0.85rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #101828;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #99A1AF;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-media {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    /* background-color: #2D3748; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background-color: #4263EB;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.nav-column h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-column li {
    margin-bottom: 0.5rem;
}

.nav-column a {
    color: #99A1AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-column a:hover {
    color: #FFFFFF;
}

.contact-section {
    background-color: #1E2939;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: #99A1AF;
    font-size: 14px;
    font-weight: 400;
}

.contact-value {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid #1E2939;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #99A1AF;
    font-size: 0.85rem;
}

.language-options {
    display: flex;
    gap: 1rem;
    color: #99A1AF;
    font-size: 0.85rem;
}

.language-options span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.language-options span:hover {
    color: #FFFFFF;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-section {
        flex-direction: row;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .contact-section {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .language-options {
        flex-direction: row;
        gap: 0.5rem;
    }
}



/* Terms and Conditions Page */
.terms-and-conditions-content-page {
    background-color: #FFFFFF;
    padding: 4rem 0;
    min-height: 100vh;
}

.terms-content {
  /*   max-width: 800px; */
    margin: 0 auto;
    line-height: 1.6;
}

.terms-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.terms-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #4A5565;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-intro {
    background-color: #F7FAFC;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.terms-intro p {
    color: #4A5565;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 0.5rem;
}

.terms-section p {
    color: #4A5568;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    color: #4A5568;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.terms-section strong {
    color: #1A202C;
    font-weight: 600;
}

.terms-footer {
    background-color: #F7FAFC;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.terms-footer p {
    color: #1A202C;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive design for terms page */
@media (max-width: 768px) {
    .terms-and-conditions-content-page {
        padding: 2rem 0;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 0.9rem;
    }
    
    .terms-footer {
        padding: 1.5rem;
    }
    
    .terms-footer p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 4rem 0 0  0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-label {
    display: inline-block;
    background-color: #FFEDD4;
    color: #CA3500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 14px;
    color: #4A5565;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 2px 28px 0px #00000008;
    border: 0.63px solid #0000001A;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 4rem !important;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: #FFB6C1;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: end;
    position: absolute;
    right: 0px;
    top: 0px;

}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #364153;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.benefit-strip {
    background-color: #FFF7ED;
    color: #CA3500  ;
    padding: 0.5rem 0.75rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.benefit-icon {
    color: #10B981;
    font-weight: 700;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #FFEDD4;
    color: #CA3500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 400;
    color: #101828;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.reviewer-title {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Swiper Navigation Customization */
.testimonials-carousel swiper-container::part(button-prev),
.testimonials-carousel swiper-container::part(button-next) {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F7FAFC;
    color: #4A5568;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    .swiper-navigation-icon{
        width: 10px !important;
    }
}


.testimonials-carousel swiper-container::part(button-prev):hover,
.testimonials-carousel swiper-container::part(button-next):hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.testimonials-carousel swiper-container::part(button-prev) {
    left: -20px;
}

.testimonials-carousel swiper-container::part(button-next) {
    right: -20px;
}

/* Navigation buttons below slides */
.testimonials-carousel {
    padding-bottom: 60px;
}

.testimonials-carousel swiper-container::part(button-prev) {
    left: 50%;
    transform: translateX(-50%) translateY(0);
    top: auto;
    bottom: 10px;
    margin-left: -30px;
}

.testimonials-carousel swiper-container::part(button-next) {
    right: 50%;
    transform: translateX(50%) translateY(0);
    top: auto;
    bottom: 10px;
    margin-right: -30px;
}

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-carousel {
        padding-bottom: 50px;
    }
    
    .testimonials-carousel swiper-container::part(button-prev) {
        left: 50%;
        transform: translateX(-50%) translateY(0);
        top: auto;
        bottom: 10px;
        margin-left: -25px;
    }
    
    .testimonials-carousel swiper-container::part(button-next) {
        right: 50%;
        transform: translateX(50%) translateY(0);
        top: auto;
        bottom: 10px;
        margin-right: -25px;
    }
}

@media (max-width: 480px) {
    .testimonials-header h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .benefit-strip {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .reviewer-name {
        font-size: 0.85rem;
    }
    
    .reviewer-title {
        font-size: 0.75rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: #FFFFFF;
    padding: 0 0 4rem 0 ;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-label {
    display: inline-block;
    background-color: #FFEDD4;
    color: #CA3500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0rem;
    width: fit-content;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1rem;
}

.contact-form-header p {
    font-size: 14px;
    color: #4A5565;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0px 2px 28px 0px #00000008;
    border: 0.63px solid #0000001A;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #101828;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    color: #101828;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit-btn {
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 99, 235, 0.3);
}

.submit-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.form-submit-btn:hover .submit-icon {
    transform: translateX(2px);
}

/* Form validation styles */
.form-input:invalid:not(:focus):not(:placeholder-shown),
.form-textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #DC2626;
}

.form-input:valid:not(:focus):not(:placeholder-shown),
.form-textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #10B981;
}

/* Responsive design for contact form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-header h2 {
        font-size: 2rem;
    }
    
    .contact-form-header p {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.6rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
}