@font-face {
    font-family: 'Kyoto';
    src: url('../fonts/kyoto-northern.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'hps';
    src: url('../fonts/hps.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
}

/* Hero Section */
.hero {
    padding: 8rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 0;
    }
    
    .hero-content {
        padding-top: 0;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
    padding-top: 0;
}

.hero-image {
    flex: 1;
    padding: 0rem;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Feature Cards Section */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #7c5dfa;
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #f5f3ff 0%, #e9e5ff 100%); /* Light Purple */
}
.feature-card:nth-child(1):hover {
    border-color: #7c5dfa;
}
.feature-card:nth-child(1) i {
    color: #9381ff; /* Deeper purple */
}
.feature-card:nth-child(1):hover .feature-icon {
    background: #9381ff;
    border: 2px solid #7c5dfa;
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe4e4 100%); /* Light Coral */
}
.feature-card:nth-child(2):hover {
    border-color: #b91c1c;
}
.feature-card:nth-child(2) i {
    color: #dc2626; /* Deeper coral */
}
.feature-card:nth-child(2):hover .feature-icon {
    background: #dc2626;
    border: 2px solid #b91c1c;
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #fff7ed 0%, #f8f5f0 100%); /* Warm Beige */
}
.feature-card:nth-child(3):hover {
    border-color: #78350f;
}
.feature-card:nth-child(3) i {
    color: #92400e; /* Deeper beige */
}
.feature-card:nth-child(3):hover .feature-icon {
    background: #92400e;
    border: 2px solid #78350f;
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); /* Light Green */
}
.feature-card:nth-child(4):hover {
    border-color: #059669;
}
.feature-card:nth-child(4) i {
    color: #16a34a; /* Deeper green */
}
.feature-card:nth-child(4):hover .feature-icon {
    background: #16a34a;
    border: 2px solid #059669;
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); /* Light Blue */
}
.feature-card:nth-child(5):hover {
    border-color: #1e40af;
}
.feature-card:nth-child(5) i {
    color: #1d4ed8; /* Deeper blue */
}
.feature-card:nth-child(5):hover .feature-icon {
    background: #1d4ed8;
    border: 2px solid #1e40af;
}

.feature-card:nth-child(6) {
    background: linear-gradient(135deg, #fef3ff 0%, #f8e9ff 100%); /* Light Lilac */
}
.feature-card:nth-child(6):hover {
    border-color: #7c3aed;
}
.feature-card:nth-child(6) i {
    color: #8b5cf6; /* Deeper lilac */
}
.feature-card:nth-child(6):hover .feature-icon {
    background: #8b5cf6;
    border: 2px solid #7c3aed;
}

.feature-card:nth-child(7) {
    background: linear-gradient(135deg, #fef9e7 0%, #fde6c9 100%); /* Light Yellow */
}
.feature-card:nth-child(7):hover {
    border-color: #b4825a;
}
.feature-card:nth-child(7) i {
    color: #d4a373; /* Deeper yellow */
}
.feature-card:nth-child(7):hover .feature-icon {
    background: #d4a373;
    border: 2px solid #b4825a;
}

.feature-card:nth-child(8) {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%); /* Light Sky Blue */
}
.feature-card:nth-child(8):hover {
    border-color: #0683a0;
}
.feature-card:nth-child(8) i {
    color: #0891b2; /* Deeper sky blue */
}
.feature-card:nth-child(8):hover .feature-icon {
    background: #0891b2;
    border: 2px solid #0683a0;
}

.feature-card:nth-child(9) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); /* Light Aqua */
}
.feature-card:nth-child(9):hover {
    border-color: #0284c7;
}

.feature-card:nth-child(9):hover .feature-icon {
    background: #0ea5e9;
    border: 2px solid #0284c7;
}

.feature-card:nth-child(10) {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe4e4 100%); /* Light Coral */
}
.feature-card:nth-child(10):hover {
    border-color: #b91c1c;
}
.feature-card:nth-child(10) i {
    color: #dc2626; /* Deeper coral */
}
.feature-card:nth-child(10):hover .feature-icon {
    background: #dc2626;
    border: 2px solid #b91c1c;
}

.feature-card:nth-child(11) {
    background: linear-gradient(135deg, #fff7ed 0%, #f8f5f0 100%); /* Warm Beige */
}
.feature-card:nth-child(11):hover {
    border-color: #78350f;
}
.feature-card:nth-child(11) i {
    color: #92400e; /* Deeper beige */
}
.feature-card:nth-child(11):hover .feature-icon {
    background: #92400e;
    border: 2px solid #78350f;
}

.feature-card:nth-child(12) {
    background: linear-gradient(135deg, #fff7ed 0%, #f8f5f0 100%); /* Warm Beige */
}
.feature-card:nth-child(12):hover {
    border-color: #78350f;
}
.feature-card:nth-child(12) i {
    color: #9381ff; /* Deeper beige */
}
.feature-card:nth-child(12):hover .feature-icon {
    background: #92400e;
    border: 2px solid #78350f;
}

.feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card i {
    font-size: 2rem;
    display: block;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .feature-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    .stat-card .stat-number {
        display: block;
        font-size: 1rem !important ;
        margin-top: 1.5rem;
        color: var(--text-color);
    }
    .stat-card .stat-label {
        display: block;
        color: #6b7280;
        font-size: 10px !important ;
    }
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: -0.5rem;
    margin: 0.3rem 0;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 0.3rem;
    border-radius: 10px;
    width: 30%;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}



.stat-card:nth-child(1) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe4e4 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.stat-card:nth-child(1) i {
    color: #1e40af;
}

.stat-card:nth-child(2) i {
    color: #d63384;
}

.stat-card:nth-child(3) i {
    color: #d4a373;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0.1rem 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.6rem;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 0.1rem;
    display: inline-block;
    vertical-align: middle;
}

.stat-label i {
    font-size: 0.7rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.1rem;
    vertical-align: middle;
}



.trusted-by {
    margin-top: 3rem;
}

.company-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.company-logos img {
    max-height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content {
        order: 3;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 2rem 0;
        margin-top:-60px;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding:0;
        margin:0;
    }

    .stat-card {
        padding:0px;
        margin:0;
        width: 90px;
    }

    .company-logos {
        display:flex;
        justify-content: center;
        align-items: center;
        gap:10px;
    }

    .company-logos img {
        max-height: 20px;
    }
}

body {
    background-color: var(--white);
    color: var(--text-color);
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Mobile menu styles */
.mobile-full-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-full-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Ensure logo is always visible */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.logo {
    z-index: 1002;
    position: relative;
    margin-left:50px;
}

.mobile-menu-toggle {
    z-index: 1002;
    position: relative;
}

.mobile-full-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mobile-close-btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Mobile menu content */
.mobile-menu-content {
    padding: 0 1rem;
}

/* Navigation links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.mobile-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mobile-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-link:hover i {
    color: var(--white);
}

/* Modules section */
.mobile-menu-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.mobile-menu-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Module grid */
.module-item1 {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--light-bg);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.module-item1 i {
    font-size: 1.2rem;
    color: #ffc90d;
    margin-right: 0.75rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-item1 span {
    font-size: 1rem;
    font-weight: 500;
}

.module-item1:hover {
    background: #ffc90d;
    color: var(--white);
}

.module-item1:hover i,
.module-item1:hover span {
    color: var(--white);
}

.module-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.module-item:hover i,
.module-item:hover span {
    color: var(--white);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .module-grid {
        display: block;
    }
    .logo {
       
        margin-left:10px;
    }
    
    
}

/* Primary button styling */
.mobile-link.primary-button {
    background: var(--primary-color);
    color: var(--white);
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    font-weight: 600;
}

.mobile-link.primary-button:hover {
    background: var(--primary-dark);
}

.mobile-link.primary-button i {
    color: var(--white);
}

/* Mobile menu visibility */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 6px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
    }
    
}

/* Mobile menu styles */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-menu-header h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-link i {
    font-size: 1.2rem;
}

.mobile-link:hover {
    background-color: var(--light-bg);
}

.mobile-menu-section {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-section h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.module-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.module-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile menu visibility */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 6px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 0 1.5rem;
    max-width: 2000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0; /* Prevents flex items from overflowing */
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #6f92c0;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

@media (max-width: 2000px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: -0.5rem;
    margin: 0.3rem 0;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 0.3rem;
    border-radius: 10px;
    width: 30%;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}



.stat-card:nth-child(1) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #fff3f3 0%, #ffe4e4 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.stat-card:nth-child(1) i {
    color: #1e40af;
}

.stat-card:nth-child(2) i {
    color: #d63384;
}

.stat-card:nth-child(3) i {
    color: #d4a373;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0.1rem 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.6rem;
    color: #475569;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 0.1rem;
    display: inline-block;
    vertical-align: middle;
}

.stat-label i {
    font-size: 0.7rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.1rem;
    vertical-align: middle;
}



.trusted-by {
    margin-top: 3rem;
}

.company-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.company-logos img {
    max-height: 40px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content {
        order: 3;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 2rem 0;
        margin-top:-60px;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding:0;
        margin:0;
    }

    .stat-card {
        padding:0px;
        margin:0;
        width: 90px;
    }

    .company-logos {
        display:flex;
        justify-content: center;
        align-items: center;
        gap:10px;
    }

    .company-logos img {
        max-height: 20px;
    }
}

body {
    background-color: var(--white);
    color: var(--text-color);
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Mobile menu styles */
.mobile-full-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-full-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Ensure logo is always visible */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.logo {
    z-index: 1002;
    position: relative;
    margin-left:50px;
}

.mobile-menu-toggle {
    z-index: 1002;
    position: relative;
}

.mobile-full-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mobile-close-btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Mobile menu content */
.mobile-menu-content {
    padding: 0 1rem;
}

/* Navigation links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.mobile-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mobile-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-link:hover i {
    color: var(--white);
}

/* Modules section */
.mobile-menu-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.mobile-menu-section h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Module grid */
.module-item1 {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--light-bg);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.module-item1 i {
    font-size: 1.2rem;
    color: #ffc90d;
    margin-right: 0.75rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-item1 span {
    font-size: 1rem;
    font-weight: 500;
}

.module-item1:hover {
    background: #ffc90d;
    color: var(--white);
}

.module-item1:hover i,
.module-item1:hover span {
    color: var(--white);
}

.module-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.module-item:hover i,
.module-item:hover span {
    color: var(--white);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .module-grid {
        display: block;
    }
    .logo {
       
        margin-left:10px;
    }
    
    
}

/* Primary button styling */
.mobile-link.primary-button {
    background: var(--primary-color);
    color: var(--white);
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    font-weight: 600;
}

.mobile-link.primary-button:hover {
    background: var(--primary-dark);
}

.mobile-link.primary-button i {
    color: var(--white);
}

/* Mobile menu visibility */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 6px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
    }
}

/* Mobile menu styles */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-menu-header h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-link i {
    font-size: 1.2rem;
}

.mobile-link:hover {
    background-color: var(--light-bg);
}

.mobile-menu-section {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-section h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.module-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.module-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile menu visibility */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 6px 0;
        transition: 0.3s;
    }

    .nav-links {
        display: none;
    }

    .mobile-full-menu {
        display: none;
    }

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'hps';
}

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

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

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: 'hps';
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.dropdown-btn:hover {
    color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 5px;
    padding: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    width: 25%;
    margin: 0.3rem 0.1rem;
    text-align: center;
    border-radius: 5px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dropdown-content a i {
    font-size: 1.2rem;
    margin: 0;
    color: #3498db;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content a:hover i {
    color: white;
    background-color: #3498db;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 1rem;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
        margin-top: 0.5rem;
    }

    .dropdown-content a {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown-content a:last-child {
        border-bottom: none;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
.mobile-menu-toggle {
display: block;
background: none;
border: none;
cursor: pointer;
padding: 1rem;
z-index: 1002;
}

.mobile-menu-toggle span {
display: block;
width: 25px;
height: 3px;
background-color: var(--text-color);
margin: 5px 0;
transition: all 0.3s ease;
}

.nav-links {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(255, 255, 255, 0.95);
flex-direction: column;
padding: 2rem 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 1001;
transform: translateX(100%);
transition: transform 0.3s ease;
}

.nav-links.active {
display: flex;
transform: translateX(0);
}

.nav-links a {
width: 100%;
text-align: center;
padding: 1rem;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
color: var(--text-color);
text-decoration: none;
}

.nav-links a:last-child {
border-bottom: none;
}

.nav-links .primary-button {
width: 100%;
padding: 1rem;
border-radius: 5px;
margin-top: 1rem;
text-align: center;
display: block;
background-color: var(--primary-color);
color: white;
text-decoration: none;
}

    .nav-links .dropdown {
        width: 100%;
    }

    .nav-links .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links .dropdown-content a {
        padding: 1rem;
        display: block;
        text-align: center;
        color: var(--text-color);
        text-decoration: none;
    }

    .nav-links .dropdown-content a:last-child {
        border-bottom: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.tagline {
    display: block;
    margin: 0;
    padding: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #6b7280;
}

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

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

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
#hero {
    padding: 8rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-content .trusted-by h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 2rem;
}

.company-logos {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0.2rem;
    flex-wrap: wrap;
}

.company-logos img {
    max-height: 150px;
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .company-logos {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .company-logos img {
        width: 45%;
        margin: 0 5%;
    }
}

@media (max-width: 768px) {
    .company-logos {
        display:flex;
        flex-wrap: wrap;
        justify-content: center;
        gap:5px
    }
    
    .company-logos img {
        width:60px !important;
    }
}

.company-logos img {
    max-height: 150px;
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.primary-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.primary-button:hover {
    background-color: var(--secondary-color);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Module Pages */
:-webkit-any(article, aside, nav, section) h1 {
    font-size: 1.5em;
    margin: 0;
}

.module-page {
    padding-top: 40px;
}

.container {
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Contact Form Styles */
.contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-inf.module {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    height: 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6f92c0;
    margin-right: 1rem;
}

.contact-item p {
    margin: 0;
    color: #1f2937;
}

.social-links{
    display: flex;
    gap: 0.75rem;
}
.social-links a {
    font-size: 1.5rem;
    color: #6f92c0;
    transition: color 0.3s ease;
}


.contact-form {
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6f92c0;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.checkbox-label a {
    color: #6f92c0;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

.module-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #6f92c0 0%, #000040 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.module-hero h1 {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.2;
}

.module-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.module-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trusted-by {
    margin-top: 3rem;
}

.trusted-by h3 {
    margin-bottom: 1.5rem;
}



.company-log.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.company-logos img {
    max-width: 80px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin: 0 0.25rem;
}

.company-logos img:hover {
    opacity: 1;
}

.module-details {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.module-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #6f92c0;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.benefit-icon span {
    font-size: 0.875rem;
    color: #000;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.stat-card {
    text-align: center;
    margin: 5px;
    position: relative;
    width: 30%;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0.5rem;
}

.stat-card .stat-number {
    display: block;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-color);
}

.stat-card .stat-label {
    display: block;
    color: #6b7280;
    font-size: 15px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #ffc107;
}

.rating-stars i {
    margin: 0 0.2rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

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

.section-header h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .section-header p {
        white-space: normal;
        overflow: visible;
    }
}

.about-section {
    padding: 6rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.about-content {
    margin-top: 3rem;
}

.about-text {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
}

.about-text p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.about-features li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-features strong {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Features Section */
#features {
    padding: 5rem 5%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

#features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.feature-card:hover .feature-icon {
    background: #3498db;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.feature-content h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.feature-content p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.feature-benefits {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.benefit-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6f92c0;
    transition: all 0.3s ease;
    margin-bottom: 0rem;
    width: 100%;
    height: 70px;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    margin-bottom: 0rem;
}

.benefit-icon span {
    color: #000;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.benefit-icon:hover span {
    color: #fff;
}

.feature-card:nth-child(1) .benefit-icon:hover {
    background-color: #7c5dfa;
}

.feature-card:nth-child(2) .benefit-icon:hover {
    background-color: #b91c1c;
}

.feature-card:nth-child(3) .benefit-icon:hover {
    background-color: #78350f;
}

.feature-card:nth-child(4) .benefit-icon:hover {
    background-color: #059669;
}

.feature-card:nth-child(5) .benefit-icon:hover {
    background-color: #1e40af;
}

.feature-card:nth-child(6) .benefit-icon:hover {
    background-color: #7c3aed;
}

.feature-card:nth-child(7) .benefit-icon:hover {
    background-color: #b4825a;
}

.feature-card:nth-child(8) .benefit-icon:hover {
    background-color: #0683a0;
}

.feature-card:nth-child(9) .benefit-icon:hover {
    background-color: #0284c7;
}

.feature-card:nth-child(10) .benefit-icon:hover {
    background-color: #b91c1c;
}

.feature-card:nth-child(11) .benefit-icon:hover {
    background-color: #78350f;
}

.feature-card:nth-child(12) .benefit-icon:hover {
    background-color: #78350f;
}

.benefit-icon i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    text-align: center;
    font-size: 0.5rem;
}

.benefit-icon span {
    font-size: 0.5rem;
    display: block;
}

.benefit-icon:hover {
    background: #3498db;
    color: white;
}

.benefit-icon i {
    color: #3498db;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.benefit-icon:hover i {
    color: white;
}

.module {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    height: 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.module i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.module h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.module p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Solutions Section */
#solutions {
    padding: 5rem 5%;
}

#solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.solution-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Pricing Section */
#pricing {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

#pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card ul li {
    margin: 1rem 0;
    color: #4b5563;
}

.pricing-button {
    background-color: #ffc90d;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.pricing-button:hover {
    background-color: #385a64;
    color:#fff;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #e5e7eb;
    text-decoration: none;
}



.social-links a {
    color: white;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Hero Section Centering */
#hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers direct children of .hero-content */
    text-align: center;  /* Centers text within block elements like h2, p */
    width: 100%;
}

#hero .hero-stats {
    display: flex;
    justify-content: center; /* Centers the stat cards within .hero-stats */
    align-items: center;
    flex-wrap: wrap;
    gap: 0rem; /* Adjust as needed for spacing between stat cards */
    margin-top: 1.5rem;
    width: 100%; /* Ensures the container itself can be centered or use full width */
}

#hero .trusted-by {
    margin-top: 2rem; /* Or your preferred spacing */
    width: 100%;
    text-align: center; /* Ensures the 'Trusted by' heading is centered */
}

#hero .company-logos {
    display: flex;
    justify-content: center; /* Centers the logo images */
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem; /* Adjust as needed for spacing between logos */
    margin-top: 1rem; /* Spacing below the 'Trusted by' heading */
}

.pricing-main {
    padding: 4rem 0;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
}

.pricing-plans {
    padding: 4rem 0;
}

.pricing-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2563eb;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

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

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid #2563eb;
}

.plan-header {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.price-period {
    font-size: 1.2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: #2563eb;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    padding: 1rem;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.table-body {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    gap: 0;
}

.table-row {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 1rem;
    padding: 0 2rem;
    max-width: 2000px;
    margin: 2rem auto;
}

/* Feature Card Styles */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #6f92c0;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Benefit Icons */
.feature-benefits {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.benefit-icon {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive Adjustments */
@media (max-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}
/* Update these styles in your styles.css file */
.feature-card {
    /* existing styles */
    padding: 1.25rem; /* Reduced from 1.5rem */
}

.feature-icon {
    font-size: 1.rem; /* Reduced from 2rem */
    margin-bottom: 0.75rem; /* Reduced from 1rem */
}

.feature-content h3 {
    font-size: 1rem; /* Reduced from 1.1rem */
    margin-bottom: 0.4rem; /* Slightly reduced */
}

.feature-content p {
    font-size: 0.85rem; /* Slightly reduced from 0.9rem */
    line-height: 1.4; /* Slightly tighter */
    margin-bottom: 0.75rem; /* Reduced from 1rem */
}

/* Adjust benefit icons */
.benefit-icon {
    font-size: 0.5rem; /* Reduced from 0.8rem */
    gap: 0.25rem; /* Slightly reduced gap */
}

/* For larger screens, you might want to adjust the minimum size */
@media (min-width: 1600px) {
    .features-grid {
        grid-template-columns: repeat(6, minmax(140px, 1fr)); /* Slightly reduced min size */
    }
}
/* Add this to your CSS */
.feature-card {
    position: relative;  /* Add this line */
    /* ... other existing styles ... */
}

.feature-card .card-number {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0px;
}

.feature-card .card-number i {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
}

.feature-card:hover .card-number i {
    opacity: 1;
}
/* Card number and arrow colors - matching card icons */
.feature-card:nth-child(1) .card-number span,
.feature-card:nth-child(1) .card-number i {
    color: #9381ff;
}

.feature-card:nth-child(2) .card-number span,
.feature-card:nth-child(2) .card-number i {
    color: #dc2626;
}

.feature-card:nth-child(3) .card-number span,
.feature-card:nth-child(3) .card-number i {
    color: #92400e;
}

.feature-card:nth-child(4) .card-number span,
.feature-card:nth-child(4) .card-number i {
    color: #16a34a;
}

.feature-card:nth-child(5) .card-number span,
.feature-card:nth-child(5) .card-number i {
    color: #1d4ed8;
}

.feature-card:nth-child(6) .card-number span,
.feature-card:nth-child(6) .card-number i {
    color: #8b5cf6;
}

.feature-card:nth-child(7) .card-number span,
.feature-card:nth-child(7) .card-number i {
    color: #d4a373;
}

.feature-card:nth-child(8) .card-number span,
.feature-card:nth-child(8) .card-number i {
    color: #0891b2;
}

.feature-card:nth-child(9) .card-number span,
.feature-card:nth-child(9) .card-number i {
    color: #10b981;
}

.feature-card:nth-child(10) .card-number span,
.feature-card:nth-child(10) .card-number i {
    color: #b91c1c;
}

.feature-card:nth-child(11) .card-number span,
.feature-card:nth-child(11) .card-number i {
    color: #78350f;
}

.feature-card:nth-child(12) .card-number span,
.feature-card:nth-child(12) .card-number i {
    color: #9381ff;
}

/* Hover states */
.feature-card:nth-child(1):hover .card-number span,
.feature-card:nth-child(1):hover .card-number i {
    color: #7c5dfa  !important;
}

.feature-card:nth-child(2):hover .card-number span,
.feature-card:nth-child(2):hover .card-number i {
    color: #b91c1c  !important;
}

.feature-card:nth-child(3):hover .card-number span,
.feature-card:nth-child(3):hover .card-number i {
    color: #78350f  !important;
}

.feature-card:nth-child(4):hover .card-number span,
.feature-card:nth-child(4):hover .card-number i {
    color: #059669  !important;
}

.feature-card:nth-child(5):hover .card-number span,
.feature-card:nth-child(5):hover .card-number i {
    color: #1e40af  !important;
}

.feature-card:nth-child(6):hover .card-number span,
.feature-card:nth-child(6):hover .card-number i {
    color: #7c3aed  !important;
}

.feature-card:nth-child(7):hover .card-number span,
.feature-card:nth-child(7):hover .card-number i {
    color: #b4825a !important;
}

.feature-card:nth-child(8):hover .card-number span,
.feature-card:nth-child(8):hover .card-number i {
    color: #0683a0  !important;
}

.feature-card:nth-child(9):hover .card-number span,
.feature-card:nth-child(9):hover .card-number i {
    color: #10b981  !important;
}

.feature-card:nth-child(10):hover .card-number span,
.feature-card:nth-child(10):hover .card-number i {
    color: #991b1b  !important;
}

.feature-card:nth-child(11):hover .card-number span,
.feature-card:nth-child(11):hover .card-number i {
    color: #5c2a14  !important;
}

.feature-card:nth-child(12):hover .card-number span,
.feature-card:nth-child(12):hover .card-number i {
    color: #9381ff  !important;
}
.feature-card:nth-child(9) {
    background: #F0FFF0 !important;  /* vibrant emerald */
  
}
.feature-card:nth-child(9) .feature-icon {
    background: #fff!important;  /* mint */
    color: #10b981 !important;       /* deep teal for icon */
    border-color: #10b981 !important;
}

.feature-card:nth-child(9):hover .feature-icon {
    background: #10b981 !important;  /* mint */
    color: #fff !important;       /* deep teal for icon */
}

.feature-card:nth-child(9):hover {
    border-color: #10b981 !important;
}


.feature-card:nth-child(12) {
    background: linear-gradient(135deg, #f5f3ff 0%, #e9e5ff 100%); /* Light Purple */
  
}
.feature-card:nth-child(12) .feature-icon {
    background: #fff!important;  /* mint */
    color: #9381ff !important;       /* deep teal for icon */
    border-color: #9381ff !important;
}

.feature-card:nth-child(12):hover .feature-icon {
    background: #9381ff !important;  /* mint */
    color: #fff !important;       /* deep teal for icon */
}

.feature-card:nth-child(12):hover {
    border-color: #9381ff !important;
}
.primary-button{
    background-color: #ffc90d;
    transition: background-color 0.3s ease;
    color:#000;
}

.primary-button:hover{
    background-color: #385a64;
    transition: background-color 0.3s ease;
    color:#fff !important; 
}
.nav-links a:hover{
    color:#ffc90d;
}
.benefit-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    overflow: visible; /* Ensure stars aren't clipped */
}

/* Style for the star icons in benefit cards */
.benefit-card .fa-star {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffc90d;
    font-size: 16px;
    visibility: visible !important; /* Override any inline styles */
    opacity: 1 !important; /* Ensure full visibility */
}
/* Add this to your existing .social-links class */
.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start; /* Ensure default alignment is set */
}

/* Add this media query at the end of your CSS file */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        width: 100%;
    }
}
.feature-card:hover i {
    color: #fff !important;
}