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

:root {
    --primary: #FAC013;
    --primary-dark: #d4a310;
    --secondary: #1e293b;
    --dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--dark);
    /* Sleek dark background */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links .nav-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    color: var(--white);
    /* White for best contrast on transparent/dark header */
}

/* Dropdown Menu Styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-item i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-item-container:hover .nav-item i {
    transform: rotate(180deg);
}

.nav-item-container:hover .nav-item {
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #272727; /* Matching the screenshot's dark gray */
    padding: 10px 0;
    list-style: none;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    margin-top: 15px;
}

.nav-item-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: none; /* Sub-items usually not uppercase for readability */
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.dropdown-menu li a:hover {
    background: rgba(250, 192, 19, 0.1);
    color: var(--primary);
    padding-left: 25px;
}

/* Adjustments for the associate button when it's part of a dropdown */
.btn-associate-container {
    margin-left: 10px;
}

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

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

.btn-associate {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn-associate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

/* Full Height Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.3));
    z-index: 1;
}

.hero-slide.no-overlay::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 140px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.hero-arrows {
    position: absolute;
    bottom: 40px;
    right: 140px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
}

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

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin-top: 20px;
    opacity: 0.7;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Sophisticated Benefits Section */
.benefits-section {
    background: #0f172a;
    /* Deep Charcoal/Blue */
    padding: 120px 0;
    position: relative;
}

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

.benefit-card-sophisticated {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card-sophisticated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(250, 192, 19, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.benefit-card-sophisticated:hover::before {
    transform: translateX(100%);
}

.benefit-card-sophisticated:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(250, 192, 19, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(250, 192, 19, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.benefit-card-sophisticated:hover .benefit-icon-wrapper {
    background: var(--primary);
    transform: rotate(10deg);
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card-sophisticated:hover .benefit-icon-wrapper i {
    color: var(--dark);
}

.benefit-card-sophisticated h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.benefit-card-sophisticated p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.steps-container {
    padding: 100px 0;
    background: #fff;
}

.steps-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 20px 0 50px;
    gap: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.steps-wrapper::-webkit-scrollbar {
    height: 6px;
}

.steps-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.step-card {
    min-width: 320px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-num-large {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(250, 192, 19, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
}

.step-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}



h1.aos-animate {
    color: #ff9900;
}