/* Base Styles with Modern Color Palette - Responsive Version */
:root {
    --primary-color: #1874ab;
    --primary-dark: #126192;
    --secondary-color: #35a0cf;
    --accent-color: #ff7e5f;
    --light-text: #ffffff;
    --dark-text: #2d3748;
    --light-bg: #f8fafc;
    --gradient-bg: linear-gradient(135deg, #1874ab 0%, #35a0cf 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Dashboard Button */
.dashboard-floating-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.back-to-dashboard {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.back-to-dashboard:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

/* Hero Section with Gradient */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--light-text);
    margin-bottom: 25px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 126, 95, 0.3);
    z-index: -1;
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-shapes {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
}

.shape {
    position: absolute;
    opacity: 0.2;
}

.shape.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent-color);
    top: 0;
    left: 0;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid var(--light-text);
    top: 50px;
    left: 100px;
}

.shape.square {
    width: 80px;
    height: 80px;
    background-color: var(--primary-dark);
    top: 120px;
    left: 30px;
}

/* Founder Section */
.founder-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.founder-container {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.founder-image {
    flex: 1;
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-content {
    flex: 1.5;
}

.founder-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
}

.founder-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.founder-content p {
    margin-bottom: 20px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
}

.founder-logos {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: clamp(60px, 8vw, 100px);
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(100%);
}

.logo-img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Problem Section */
.problem-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--light-bg);
}

.problem-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(24, 116, 171, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title span {
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.problem-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.problem-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 116, 171, 0.1) 0%, rgba(53, 160, 207, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover .problem-card-bg {
    opacity: 1;
}

.icon-box {
    width: clamp(60px, 6vw, 70px);
    height: clamp(60px, 6vw, 70px);
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin-bottom: 25px;
    transition: var(--transition);
}

.problem-card:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
    background-color: var(--accent-color);
}

.problem-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.problem-card ul {
    margin-top: 20px;
}

.problem-card li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    padding-left: 30px;
}

.problem-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.problem-card li i {
    color: var(--light-text);
    font-size: 0.7rem;
    position: absolute;
    left: 4px;
    top: 11px;
    z-index: 1;
}

/* Solution Section with Diagonal Cut */
.solution-section {
    position: relative;
    padding: 150px 0 120px;
    background-color: white;
    overflow: hidden;
}

.solution-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--light-bg);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.solution-content {
    flex: 1;
    padding-right: 50px;
}

.solution-point {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-point:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.solution-point .icon {
    width: clamp(50px, 5vw, 60px);
    height: clamp(50px, 5vw, 60px);
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    flex-shrink: 0;
    transition: var(--transition);
}

.solution-point:hover .icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.solution-point h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.solution-image {
    flex: 1;
    position: relative;
}

.solution-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.solution-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: var(--dark-text);
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background-color: var(--light-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    color: var(--light-text);
}

.feature-card:hover .feature-hover {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover .icon,
.feature-card:hover li {
    color: var(--light-text);
}

.feature-card .icon {
    width: clamp(70px, 7vw, 80px);
    height: clamp(70px, 7vw, 80px);
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon {
    background-color: var(--accent-color);
    transform: rotate(15deg) scale(1.1);
}

.feature-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 20px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.feature-card ul {
    text-align: left;
    margin-top: 20px;
}

.feature-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    transition: var(--transition);
    color: var(--dark-text);
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover li::before {
    background-color: var(--light-text);
}

/* CTA Section with Parallax */
.final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: var(--light-text);
    overflow: hidden;
}

.cta-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.final-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.final-cta p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 116, 171, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--light-text);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--light-text);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .founder-container {
        flex-direction: column;
    }
    
    .solution-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .solution-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-floating-btn {
        top: 15px;
        left: 15px;
    }
    
    .back-to-dashboard {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .solution-point {
        flex-direction: column;
        text-align: center;
    }
    
    .solution-point .icon {
        margin: 0 auto 15px;
    }
    
    .solution-point h3 {
        text-align: center;
    }
    
    .problem-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .founder-logos {
        justify-content: center;
    }
    
    .solution-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

li{
    list-style: none;
}