.elementor-634 .elementor-element.elementor-element-d463165{--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;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-634 .elementor-element.elementor-element-d463165:not(.elementor-motion-effects-element-type-background), .elementor-634 .elementor-element.elementor-element-d463165 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-634 .elementor-element.elementor-element-d463165.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-634 .elementor-element.elementor-element-8bc757f{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-634 .elementor-element.elementor-element-8bc757f.xpro-widget-bg-overlay:before{transition:background 0.3s;}@media(max-width:767px){.elementor-634 .elementor-element.elementor-element-d463165{--width:1600px;--min-height:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(min-width:768px){.elementor-634 .elementor-element.elementor-element-d463165{--width:100%;}}@media(max-width:1024px) and (min-width:768px){.elementor-634 .elementor-element.elementor-element-d463165{--width:872.747px;}}/* Start custom CSS for html, class: .elementor-element-8bc757f *//* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header main container */
header.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: #ffffff;
    color: #1a202c;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

/* Sticky header shadow */
header.site-header.sticky {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ====== DROPDOWN + CHEVRON STYLES ====== */
.site-header nav ul li { position: relative; }

.site-header nav ul li .chevron {
    margin-left: 4px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    transition: transform .3s ease, color .3s ease;
    display: inline-block;
    vertical-align: middle;
}

.site-header nav ul li .chevron:hover {
    color: #3b82f6;
}

.menu-title:hover + .chevron {
    color: #3b82f6;
}

.site-header nav ul li.open>.chevron {
    transform: rotate(180deg);
}

/* Updated submenu styles from developer's code */
.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
    z-index: 999;
}

.site-header nav ul li.open>.submenu {
    opacity: 1;
    max-height: 500px;
}

.submenu a {
    padding: 12px 18px;
    font-size: 15px;
    color: #1a202c;
    text-decoration: none;
    background: #fff;
    transition: background .25s ease, color .25s ease;
}

.submenu a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* Mobile behaviour */
@media (max-width: 768px) {
    .site-header nav ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .site-header nav ul li .chevron {
        position: static;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .submenu {
        position: static;
        border: none;
        box-shadow: none;
        max-height: 0;
        opacity: 0;
        display: none;
    }
    .site-header nav ul li.open>.submenu {
        display: flex;
        max-height: 500px;
        opacity: 1;
    }
    .submenu a {
        padding: 10px 16px;
        font-size: 15px;
        background: #f9fafb;
        border-radius: 4px;
        margin-bottom: 4px;
    }
    .submenu a:hover {
        background: #e2e8f0;
    }
}

/* ===== Click-only menu title ===== */
.menu-title {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    transition: color 0.3s ease;
}

.menu-title:hover {
    color: #3b82f6;
}

/* Override Elementor container styles */
.elementor .site-header,
.elementor-section .site-header,
.elementor-container .site-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 24px !important;
}

/* Elementor full width fix */
.elementor-section,
.elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Logo */
.site-header .logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-header .logo img:hover {
    transform: none;
}

/* Navigation */
.site-header nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.site-header nav ul li a:hover,
.site-header nav ul li a:focus {
    color: #3b82f6;
}

/* Underline hover effect */
.site-header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.site-header nav ul li a:hover::after,
.site-header nav ul li a:focus::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    color: #1a202c;
    cursor: pointer;
    padding: 8px;
    user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    -moz-tap-highlight-color: transparent !important;
    background: none;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

/* 👉 Yahan fix add kiya hai */
.hamburger:focus,
.hamburger:active,
.hamburger.active {
    background: transparent !important; /* Elementor ka blue bg override */
    color: #1a202c !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Custom focus style for accessibility */
.hamburger:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #1a202c;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    header.site-header {
        padding: 10px 20px;
    }
    .site-header .logo img {
        height: 36px;
    }
    .site-header nav ul {
        gap: 24px;
    }
    .site-header nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    header.site-header {
        padding: 10px 16px;
    }
    .hamburger {
        display: block;
    }
    .site-header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        z-index: 999;
        animation: slideIn 0.3s ease;
    }
    .site-header nav.active {
        display: block;
    }
    .site-header nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .site-header nav ul li a {
        font-size: 16px;
        padding: 8px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    header.site-header {
        padding: 8px 12px;
    }
    .site-header .logo img {
        height: 32px;
    }
    .hamburger {
        padding: 6px;
    }
    .site-header nav ul {
        padding: 16px;
    }
    .site-header nav ul li a {
        font-size: 14px;
    }
}

@media (min-width: 1920px) {
    header.site-header {
        padding: 16px 48px;
    }
    .site-header .logo img {
        height: 48px;
    }
    .site-header nav ul {
        gap: 40px;
    }
    .site-header nav ul li a {
        font-size: 18px;
    }
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8bc757f *//* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header main container */
header.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: #ffffff;
    color: #1a202c;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

/* Sticky header shadow */
header.site-header.sticky {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ====== DROPDOWN + CHEVRON STYLES ====== */
.site-header nav ul li { position: relative; }

.site-header nav ul li .chevron {
    margin-left: 4px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    transition: transform .3s ease, color .3s ease;
    display: inline-block;
    vertical-align: middle;
}

.site-header nav ul li .chevron:hover {
    color: #3b82f6;
}

.menu-title:hover + .chevron {
    color: #3b82f6;
}

.site-header nav ul li.open>.chevron {
    transform: rotate(180deg);
}

/* Updated submenu styles from developer's code */
.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
    z-index: 999;
}

.site-header nav ul li.open>.submenu {
    opacity: 1;
    max-height: 500px;
}

.submenu a {
    padding: 12px 18px;
    font-size: 15px;
    color: #1a202c;
    text-decoration: none;
    background: #fff;
    transition: background .25s ease, color .25s ease;
}

.submenu a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

/* Mobile behaviour */
@media (max-width: 768px) {
    .site-header nav ul li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .site-header nav ul li .chevron {
        position: static;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .submenu {
        position: static;
        border: none;
        box-shadow: none;
        max-height: 0;
        opacity: 0;
        display: none;
    }
    .site-header nav ul li.open>.submenu {
        display: flex;
        max-height: 500px;
        opacity: 1;
    }
    .submenu a {
        padding: 10px 16px;
        font-size: 15px;
        background: #f9fafb;
        border-radius: 4px;
        margin-bottom: 4px;
    }
    .submenu a:hover {
        background: #e2e8f0;
    }
}

/* ===== Click-only menu title ===== */
.menu-title {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    transition: color 0.3s ease;
}

.menu-title:hover {
    color: #3b82f6;
}

/* Override Elementor container styles */
.elementor .site-header,
.elementor-section .site-header,
.elementor-container .site-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 24px !important;
}

/* Elementor full width fix */
.elementor-section,
.elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Logo */
.site-header .logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-header .logo img:hover {
    transform: none;
}

/* Navigation */
.site-header nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.site-header nav ul li a:hover,
.site-header nav ul li a:focus {
    color: #3b82f6;
}

/* Underline hover effect */
.site-header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.site-header nav ul li a:hover::after,
.site-header nav ul li a:focus::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    color: #1a202c;
    cursor: pointer;
    padding: 8px;
    user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    -moz-tap-highlight-color: transparent !important;
    background: none;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

/* 👉 Yahan fix add kiya hai */
.hamburger:focus,
.hamburger:active,
.hamburger.active {
    background: transparent !important; /* Elementor ka blue bg override */
    color: #1a202c !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Custom focus style for accessibility */
.hamburger:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #1a202c;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    header.site-header {
        padding: 10px 20px;
    }
    .site-header .logo img {
        height: 36px;
    }
    .site-header nav ul {
        gap: 24px;
    }
    .site-header nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    header.site-header {
        padding: 10px 16px;
    }
    .hamburger {
        display: block;
    }
    .site-header nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        z-index: 999;
        animation: slideIn 0.3s ease;
    }
    .site-header nav.active {
        display: block;
    }
    .site-header nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .site-header nav ul li a {
        font-size: 16px;
        padding: 8px 0;
        display: block;
    }
}

@media (max-width: 480px) {
    header.site-header {
        padding: 8px 12px;
    }
    .site-header .logo img {
        height: 32px;
    }
    .hamburger {
        padding: 6px;
    }
    .site-header nav ul {
        padding: 16px;
    }
    .site-header nav ul li a {
        font-size: 14px;
    }
}

@media (min-width: 1920px) {
    header.site-header {
        padding: 16px 48px;
    }
    .site-header .logo img {
        height: 48px;
    }
    .site-header nav ul {
        gap: 40px;
    }
    .site-header nav ul li a {
        font-size: 18px;
    }
}

/* Animation for mobile menu */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */