@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --green-theme-color: #46d754;
    --green-theme-color-dark: #46d754;
    --black-color: #131313;
    --gray: #d9d9d9;
    --padding-inline-section: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: var(--padding-inline-section);
    overflow: hidden;
}

.flex {
    display: flex;
    align-items: center;
}

.hover-links {
    color: var(--primary-text-color);
    transition: 0.2s ease-out;
}

.hover-links:hover {
    color: var(--green-theme-color-dark);
}

.primary-btn {
    background-color: var(--black-color);
    border-radius: 8px;
    font-weight: 600;
    color: white;
    padding: 14px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn:hover {
    background-color: var(--green-theme-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 215, 84, 0.4);
}

.secondary-btn {
    background-color: var(--green-theme-color);
    border: 2px solid var(--green-theme-color-dark);
    border-radius: 8px;
    font-weight: 600;
    color: white;
    padding: 14px 32px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: white;
    border-color: var(--green-theme-color);
    color: var(--green-theme-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 215, 84, 0.3);
}

.top-banner {
    background-color: var(--green-theme-color-dark);
    background-size: 300px;
}

.banner-text {
    color: white;
    padding: 15px 30px;
    text-align: center;
}

nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

nav:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.main-nav {
    margin-top: 0;
    padding: 20px 0;
    justify-content: space-between;
    position: relative;
}

.company-logo h2 {
    font-size: 2rem;
    color: var(--black-color);
    transition: color 0.3s ease;
}

.company-logo h2 b {
    font-weight: 900;
    color: var(--green-theme-color);
}

.company-logo:hover h2 {
    color: var(--green-theme-color);
}

.nav-links ul {
    justify-content: end;
    gap: 40px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--green-theme-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 30px;
}

header {
    padding: 100px var(--padding-inline-section) 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.header-section {
    justify-content: center;
    gap: 50px;
}

.header-right img {
    width: 100%;
    border-radius: 20px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-right img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.header-left h1 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.header-left {
    max-width: 40vw;
}

.get-started-btn {
    margin-top: 20px;
}

.features-section {
    padding: 100px var(--padding-inline-section);
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
    position: relative;
}

.features-container {
    max-width: 1300px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 12px;
}

.features-header p {
    font-size: 1.15rem;
    color: var(--secondary-text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(70, 215, 84, 0.15);
    border-color: var(--green-theme-color);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(70, 215, 84, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-number {
    color: rgba(70, 215, 84, 0.25);
    transform: scale(1.1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(70, 215, 84, 0.1), rgba(70, 215, 84, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(70, 215, 84, 0.2), rgba(70, 215, 84, 0.1));
    transform: scale(1.05);
}

.feature-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
    flex-grow: 1;
}

.feature-arrow {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--green-theme-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.big-features-section {
    padding: 100px var(--padding-inline-section);
}

.big-feature-container {
    gap: 50px;
    align-items: center;
}

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

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: 15px;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Features */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px var(--padding-inline-section);
    }

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

    .features-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .feature-box {
        padding: 30px 25px;
        min-height: 280px;
    }

    .feature-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .features-section {
        padding: 60px var(--padding-inline-section);
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-header p {
        font-size: 0.95rem;
    }

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

    .feature-box {
        padding: 30px 25px;
        min-height: auto;
    }

    .feature-number {
        font-size: 1.8rem;
    }

    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .feature-icon-wrapper svg {
        width: 36px;
        height: 36px;
    }

    .feature-box h3 {
        font-size: 1.15rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

.feature-desc {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 20px;
}

.cta-section {
    padding: 120px var(--padding-inline-section);
    background: linear-gradient(135deg, #46d754 0%, #3bc248 100%);
}

.cta-section-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    color: white;
}

.cta-section-container h2 {
    color: white;
}

.cta-section-container p {
    color: white;
    max-width: 800px;
}

footer {
    padding-block: 80px;
    background-color: #1a1a1a;
}

.footer-container {
    align-items: flex-start;
    justify-content: space-between;
}

.footer-container .company-logo h3 {
    color: white;
    font-size: 1.5rem;
}

.footer-container .company-logo h3 b {
    font-weight: 900;
}

.link-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.link-col h3 {
    color: white;
    margin-bottom: 10px;
}

.link-col .hover-links {
    color: #d9d9d9;
}

.link-col .hover-links:hover {
    color: var(--green-theme-color);
}

.sub-footer {
    background-color: #0d0d0d;
    padding: 20px var(--padding-inline-section);
}

.sub-footer-con {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #d9d9d9;
}

.sub-footer-con .hover-links {
    color: #d9d9d9;
    font-size: 1.5rem;
}

/* AI Features Showcase Section */
.ai-features-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-features-showcase::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.ai-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ai-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.ai-badge-large i {
    font-size: 1.5rem;
}

.ai-showcase-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.ai-showcase-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.ai-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ai-showcase-card {
    background: white;
    color: var(--primary-text-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ai-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ai-card-icon i {
    font-size: 2.2rem;
    color: white;
}

.ai-showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.ai-showcase-card p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ai-features-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.ai-features-list li {
    padding: 10px 0;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-features-list i {
    color: var(--green-theme-color);
    font-size: 1rem;
}

.ai-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ai-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ai-stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* AI Showcase Responsive */
@media (max-width: 1200px) {
    .ai-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ai-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ai-features-showcase {
        padding: 60px var(--padding-inline-section);
    }
    
    .ai-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ai-showcase-header h2 {
        font-size: 2rem;
    }
    
    .ai-showcase-header p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}
