/*
Theme Name: Hello Elementor Child
Description: Child theme for Hello Elementor
Author: Sai VARAPRASAD
Template: hello-elementor
Version: 1.0.0
*/

/* Variable Font Setup */
@font-face {
    font-family: 'PlusJakartaSans';
    src: url('assets/fonts/PlusJakartaSans-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
} 

body {
    font-family: 'PlusJakartaSans', sans-serif;
}

html body {
    font-family: 'PlusJakartaSans', sans-serif !important;
}




/* HEADER BASE */
.custom-header {
    background: #ffffff;
    padding: 0px 30px;
	max-height:100px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* FLEX LAYOUT */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo {
    flex: 1;
}

.header-logo img{
    height: 70px;
    width: auto;
	padding-top:5px;
}

/* NAV CENTER */
.header-nav {
    flex: 2;
    text-align: center;
}

.primary-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* HEADER LINKS */
.custom-header a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.custom-header a:hover {
    color: #000000;
}

/* CTA */
.header-cta {
    flex: 1;
    text-align: right;
}

.cta-button {
    background: #2563eb;
    padding: 10px 22px;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

/* TOGGLE HIDDEN DESKTOP */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2563eb;
    font-size: 28px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .header-nav {
        display: none;
        width: 100%;
    }

    .header-nav.active {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        background: #ffffff;
        border: none;
        font-size: 28px;
        cursor: pointer;
        margin-left: auto;
		color: #2563eb;
    }

}


.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0f172a;
    padding: 30px 20px;
    transition: 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu li a {
    display: block;
    padding: 15px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block !important;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #2563eb;
    }
	


}

.menu-toggle {
    display: none;
}


.custom-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 60px 20px;
}

.custom-footer a {
    color: #ffffff;
    text-decoration: none;
}

.custom-footer a:hover {
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
	
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.footer-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #2563eb;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #1d4ed8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.copyrights {
	background: #0f172a;
	text-align: center;
	align-content: center;
}
.copyrights p {
	color: #FFFFFF;
}


