@import url('https://fonts.googleapis.com/css2?family=Google+Sans:opsz,wght,GRAD@17..18,700,200&family=Poppins&display=swap');

/* Theme Colors */
:root {
    /* Primary Colors */
    --primary: #c31912;
    --primary-dark: #dc2626;
    --secondary: #f5f5f5;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray-light: #e5e5e5;
    --color-gray: #6b7280;

    /* Shadow Colors */
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px 0 rgba(0, 0, 0, 0.15);

    /* Specific Shadows */
    --shadow-red: 0 2px 8px 0 rgba(239, 68, 68, 0.3);
    --shadow-red-hover: 0 4px 12px 0 rgba(239, 68, 68, 0.4);

    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* Base Styles */
html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

.title{
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "GRAD" 200;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--color-black);
}

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

nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    overflow-x: hidden;
    margin: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
}

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

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

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-cta {
    background: var(--primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow-red);
}

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-2px) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle-icon {
    width: 28px;
    height: 28px;
    transition: var(--transition-base);
}

.nav-toggle:hover .nav-toggle-icon {
    transform: scale(1.1);
}

.logo {
    width: 100%;
    max-width: 20rem;
}

.title-image {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 1rem;
}
.hero{
    background-color: var(--primary);
    scroll-snap-align: start;
    scroll-margin-top: 70px;
    max-width: 100vw;
    overflow-x: hidden;
}
.hero-desc {
    list-style: circle;
    margin-left: 1.5rem;
    font-size: 1.5rem;
}

.hero-desc li {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-white);
}

/* Why Us Section */
.why-us-section {
    min-height: 100vh;
    background: var(--secondary);
    padding: 4rem 2rem;
    scroll-snap-align: start;
    scroll-margin-top: 70px;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title img {
    height: 5rem;
    width: auto;
    vertical-align: middle;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 35px;
    }

    .nav-container {
        padding: 0 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .nav-logo-img {
        margin-left: 0.5rem;
    }

    .hero {
        padding: 1.5rem !important;
    }

    .hero-desc {
        margin-left: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--color-gray-light);
        box-shadow: var(--shadow-md);
    }

    .nav-links a {
        color: var(--color-dark) !important;
    }

    .nav-links a::after {
        background: var(--color-dark) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-section {
        padding: 3rem 1rem;
    }

    .feature-icon {
        width: 200px;
        height: 200px;
    }

    .feature-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .features-grid {
        width: 100%;
    }
}

@media (min-width: 640px) {
    .title-image {
        max-width: 25rem;
    }
}

@media (min-width: 768px) {
    .logo {
        max-width: 25rem;
    }

    .title-image {
        max-width: 30rem;
    }

    .hero-desc {
        margin-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        max-width: 30rem;
    }

    .title-image {
        max-width: 35rem;
    }
}
