.elementor-129 .elementor-element.elementor-element-2a08952{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c86fc8d */:root {
    --primary: #3A5F7D;
    --secondary: #F4E8D8;
    --accent: #F26827;
    --green: #305F37;
    --dark: #1E223C;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* STICKY HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        url('https://rishiprabhakar.com/wp-content/uploads/2026/04/shutterstock_1008222754-1-scaled.jpg') center/cover no-repeat;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(58, 95, 125, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(30, 34, 60, 0.1);
}

.header-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    display: block;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1.5rem;
    }

    .logo {
        height: 38px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    nav a {
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 35px;
    }
}/* End custom CSS */