:root {
    --purple: #6a1b9a;
    --light-purple: #f3e5f5;
    --green: #2ecc71;
    --light-green: #e8f8f5;
    --orange: #f39c12;
    --light-orange: #fef5e7;
    --blue: #3498db;
    --light-blue: #ebf5fb;
    --yellow: #f1c40f;
    --dark-text: #2c3e50;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
}

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

/* Typography */
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; color: #1a2a3a; margin-bottom: 15px; }
.text-purple { color: var(--purple); }

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 
    padding: 20px;
    */
}

.testimonials-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;    
    justify-content: center;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #444;
    margin: 0 15px;
    font-weight: 600;
}

/* Buttons */
button {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary-purple { background: var(--purple); color: white; }
.btn-outline { background: transparent; border: 2px solid var(--purple); color: var(--purple); }
.btn-yellow { background: var(--yellow); color: #222; }

/* Grid Layouts */
.hero-grid, .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 15px 0;
    background-color: #f7f9fd;
}

.marquee-container {
    background-color: #f7f9fd;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 15px;
}

/* Cards */
.card {
    padding: 1px;
    border-radius: 10px;
    text-align: center;
}

.card-purple { background: var(--light-purple); }
.card-green { background: var(--light-green); }
.card-orange { background: var(--light-orange); }
.card-blue { background: var(--light-blue); }

.icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Features Row */
.features-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item { text-align: center; font-weight: 600; font-size: 0.9rem; }

.small-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
}

.purple-bg { background: var(--purple); }
.green-bg { background: var(--green); }
.pink-bg { background: #e91e63; }

/* Footer Banner */
.footer-cta {
    background: var(--purple);
    color: white;
    padding: 40px 0;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* General responsive rules */
img {
    max-width: 100%;
    height: auto;
}

.container {
    padding: 0 15px; /* Reduce padding on small screens */
}

/* Mobile-first: Base styles assume mobile, then override for larger screens */
@media (min-width: 768px) {
    .container {
        padding: 0 20px; /* Restore original padding on tablets+ */
    }
}

/* Navigation responsiveness */
.nav-container {
    flex-direction: column; /* Stack on mobile */
    align-items: center; /* Center content */
}

nav {
    display: none; /* Hide by default on mobile */
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

nav a {
    display: block;
    margin: 10px 0;
}

/* Hamburger button */
.hamburger {
    display: block; /* Show on mobile */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #444;
    margin-top: 10px;
}

/* Show nav when active */
nav.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-container {
        flex-direction: row; /* Horizontal on larger screens */
        align-items: center;
    }

    nav {
        display: flex; /* Always show on desktop */
        flex-direction: row;
        width: auto;
        margin-top: 0;
    }

    nav a {
        margin: 0 15px;
    }

    .hamburger {
        display: none; /* Hide on desktop */
    }
}

/* Hero responsiveness */
.hero-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
    padding: 20px 0;
}

.hero-content {
    text-align: center; /* Center content */
}

.hero-content h1 {
    font-size: 2.5rem; /* Smaller on mobile */
}

.hero-btns {
    flex-direction: column; /* Stack buttons */
    gap: 10px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
        gap: 50px;
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 3.5rem; /* Restore original */
    }

    .hero-btns {
        flex-direction: row;
    }
}

/* Value props responsiveness */
.props-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
}

@media (min-width: 480px) {
    .props-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small tablets */
    }
}

@media (min-width: 768px) {
    .props-grid {
        grid-template-columns: repeat(5, 1fr); /* 4 columns on desktop */
        gap: 10px;
        padding-bottom: 15px;
        padding-top: 10px;
    }
}

/* About responsiveness */
.about-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
}

.about-image img {
    width: 100%; /* Full width on mobile */
}

.features-row {
    flex-direction: column; /* Stack features */
    gap: 15px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
        gap: 50px;
    }

    .features-row {
        flex-direction: row;
        gap: 30px;
    }
}

/* Testimonials responsiveness */
.testimonial-grid {
    grid-template-columns: 1fr; /* Single column on mobile and small tablets */
    gap: 15px;
    padding-bottom: 20px;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        gap: 20px;
        padding-bottom: 15px;
    }

    .testimonial-slider {
        display: block; /* No slider on desktop */
    }

    .testimonial-card {
        width: auto; /* Reset for grid */
        transition: none;
    }
}

/* Footer CTA responsiveness */
.banner-inner {
    flex-direction: column; /* Stack on mobile */
    text-align: center;
    gap: 20px;
}

.banner-btns {
    flex-direction: column; /* Stack buttons */
    gap: 10px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

@media (min-width: 768px) {
    .banner-inner {
        flex-direction: row; /* Horizontal on larger screens */
        justify-content: space-between;
        text-align: left;
    }

    .banner-btns {
        flex-direction: row;
    }
}

.my-logo {
    width: 250px;
    height: 130px;
}

@media (max-width:768px) {
    .my-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .wide-image-d {
        display: none;
    }

    .wide-image-m {
        display: inline-block;
    }    
}

.wide-image-d {
    display: inline-block;
}

.wide-image-m {
    display: none;
}

.gradient-text {
  background: -webkit-linear-gradient(right,#F27D16, #0511F2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
