:root{
    --primary: #B59410;
    --secondary: #192436;
    --primary-hover: #B59410;
    --primary-dark: #072860;
    --rgba-primary-1: #09154391;
    --rgba-primary-2: #09184379;
    --rgba-primary-3: #092b4367;
    --rgba-primary-4: ##C7BA657;
    --rgba-primary-5: #4309174d;
    --rgba-primary-6: #0913433d;
    --rgba-primary-7: #0c3477;
    --rgba-primary-8: #192436;
    --rgba-primary-9: #777777;
    --secondary: #000;
    --theme-text-color: #fff;
    --title: #0E2841;
}
html, body {
    padding:0px;
    margin: 0px;
    overflow-x: hidden;
}
body{
    cursor: url("/storage/home/curser/point.svg"), default !important;
}
#loading-area{
    background: #fff url('/storage/home/video/load.gif') no-repeat center center;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 999999999;
    top: 0;
}
div#pointer-ring {
    display: none;
}

.m-80{
    width:100%;
    margin-top: -80px;
}
.m-90{
    margin-top: -90px;
}

/*Header Code Start*/

.site-header {
    /*background: rgb(184 134 11 / 50%);*/
    background: linear-gradient(to bottom, #57564F, transparent);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1998;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    /*background:#cdcdcd;*/
    /*color:#000000;*/
    /*background: rgba(184, 134, 11, 0.95);*/
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-header {
    padding: 10px 0;
}

.header-content {
    min-height: 60px;
}

body {
    padding-top: 90px;
}

/* Logo */
.logo-section .logo-img {
    max-height: 50px;
    width: auto;
}

/* Desktop Navigation */
.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}
.nav-menu{
    position: fixed;
    top:15px;
    right: 8%;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link:hover {
    color: #fff;
    /*text-shadow: 0 0 5px rgba(255,255,255,0.5);*/
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: white;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* FIXED: Desktop Dropdown Menu - Removed pointer-events issue */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    display: none;
    z-index: 9999;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    color: #0E2841;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-link:hover {
    background: #f7f7f7;
    color: #8a6500;
}

/* Header Actions */
.header-actions {
    gap: 20px;
}

/* Menu Toggles */
.mobile-menu-toggle,
.sidebar-toggle {
    background: none;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #57564F;
}
.mobile-menu-toggle:hover,
.sidebar-toggle:hover {
    background: rgba(255,255,255,0.2);
}
.hamburger-line,
.toggle-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-navigation {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--primary);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 999;
}
.mobile-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.mobile-nav-link:hover {
    color: #FFD700;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-dropdown-menu.active {
    max-height: 200px;
}

.mobile-social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.mobile-social-link:hover {
    color: #FFD700;
}

/* Contact Sidebar */
.contact-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    max-width: 90vw;
    height: 100vh;
    background: #57564F;
    box-shadow: -2px 0 24px rgba(0,0,0,0.15);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    padding: 0;
}
.contact-sidebar.active {
    transform: translateX(0);
}
.sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 18px 18px 0 0;
}
.sidebar-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #FFD700;
    cursor: pointer;
    transition: color 0.2s;
}
.sidebar-close:hover {
    color: #fff;
}
.sidebar-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}
.sidebar-logo {
    /*text-align: center;*/
    margin-bottom: 18px;
}
.sidebar-logo-img {
    max-width: 100%;
    /*height: auto;*/
}
.sidebar-section {
    margin-bottom: 28px;
}
.sidebar-title {
    color: #dadada;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.sidebar-text {
    color: #fff;
    text-align: justify;
    font-size: 15px;
    line-height: 1.6;
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu-item {
    margin-bottom: 10px;
}
.sidebar-link, .sidebar-dropdown-btn {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    /*padding: 8px 0;*/
    width: 100%;
    text-align: left;
    transition: color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-link:hover, .sidebar-dropdown-btn:hover {
    color: var(--primary);
}
.sidebar-submenu {
    list-style: none;
    padding-left: 18px;
    margin: 6px 0 0 0;
    display: none;
}
.sidebar-submenu.active {
    display: block;
}
.sidebar-social {
    display: flex;
    gap: 16px;
}
.sidebar-social-link {
    /*color: #FFD700;*/
    /*font-size: 1.3rem;*/
    /*transition: color 0.2s;*/
    float: left;
    margin: 10px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: var(--primary);
    display: block;
    border-radius: 40px;
}
.sidebar-social-link:hover {
    color: var(--primary);
    background-color: #fff;
}
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /*background: rgba(0,0,0,0.35);*/
    z-index: 1999;
    /*opacity: 0;*/
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
    
    background-image: url(/storage/home/bg/bg1.jpg);
    right: 10%;
    background-repeat: no-repeat;
    background-size: contain;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.page-content{
	    margin-top: -90px;
	}
.dropdown-toggle::after {
    border-top: 0px solid;
}
/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    .mobile-navigation {
        top: 80px;
    }
    .main-header {
        padding: 10px 0;
    }
    .header-actions {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    .mobile-navigation {
        top: 70px;
    }
    .mobile-menu-hide{
        display: none;
    }
    .contact-sidebar {
        width: 98vw;
        padding: 0;
    }
    .sidebar-content {
        padding: 30px;
    }
    .m-90{
        margin-top: -70px;
    }
    .mt-5{
        margin-top: -5rem;
    }
     .company-container{
	        width: 90% !important;
    }
    .page-content{
    	    margin-top: 10px !important;
	}
}

/*Header Code End*/

/* Footer Start*/
.text-orange, .widget_getintuch ul li i, .wp-block-latest-posts li a:before, .wp-block-categories-list li a:before, .wp-block-archives-list li a:before, .widget_categories ul li a:before, .widget_archive ul li a:before, .widget_meta ul li a:before, .widget_pages ul li a:before, .widget_recent_comments ul li a:before, .widget_nav_menu ul li a:before, .widget_recent_entries ul li a:before, .widget_services ul li a:before, .footer-title{
    color: var(--primary);
}
.wp-block-latest-posts li a:hover, .wp-block-categories-list li a:hover, .wp-block-archives-list li a:hover, .widget_categories ul li a:hover, .widget_archive ul li a:hover, .widget_meta ul li a:hover, .widget_pages ul li a:hover, .widget_recent_comments ul li a:hover, .widget_nav_menu ul li a:hover, .widget_recent_entries ul li a:hover, .widget_services ul li a:hover{
    color: var(--primary);
}
.bg-secondary, #footer{
    background-color:  #57564F !important;
}
.bg-light , .site-footer.style-1 .footer-title:after, .footer-link li:before{
    background-color: var(--primary);;
}
/*.site-footer.style-1 .footer-bottom*/
section.content-inner-1.bg-light.service-area {
    background-color: #eaeaea !important;
}
.team-img {
    border-radius: 5% !important;
}
.scroltop {
    left: 15px;
    background:  var(--primary);
    color: #ffffff;
}
.testimonial-2,.test-area .testi-inner:after{
    background-color:  var(--primary);
    color: #ffffff;
}

.dz-separator.style-1{
    background-color: var(--primary);
}
.dz-bnr-inr{
    border-top: 5px solid #fff;
}
.dz-bnr-inr, .dz-bnr-inr .dz-bnr-inr-entry {
    height: 100% !important;
    padding: 20px 0px;
}
.dz-bnr-inr.style-1 h1, .dz-bnr-inr.style-1 .h1
{
    font-size: 56px !important;
}

.extra-icon-box{
    width: 0px !important;
}

/*PopUp Button Start*/
.btn-open-popup {
    position: fixed;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    width:60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    transition: background-color 0.3s ease;
}
.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
}
.popup-box {
    background: #393535;
    padding: 24px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 40%;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInUp 0.5s ease-out forwards;
}
.form-container {
    display: flex;
    flex-direction: column;
}
.popupform {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    width:80%;
    color: #fff;
    background-color: transparent;
    border:none;
    border-bottom: 1px solid #ced4da;
    border-radius: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.popup-button {
    padding: 12px 24px;
    color:#fff;
    border: 1px solid #fff;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.popup-button:hover{
    color:#081d2d;
    background: #fff;
}
.pophead{
    color:#fff;
    text-align:left;
    font-size:24px;
}
.btn-close-popup {
    background-color: transparent;
    padding: 0px 24px 5px 24px;
    color:#fff;
    border: none;
    position: fixed;
    right:5%;
}
/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animation for popup */
.overlay-container.show {
    display: flex;
    opacity: 1;
}
.hero-video {
    /*position: relative;*/
    /*inset: 0;*/
    width: 100%;
    /*height: 100%;*/
    /*object-fit: contain;*/
    /*margin-top: -170px;*/
}
.hero-content {
    position: absolute;
    top:80px;
    left: 0;
    right: 0;
    bottom: 10px;
    /*background: rgb(0 0 0 / 15%);*/
    /*background: #00000020;*/
}
/*#ffcdcd*/
.hero-content h1 {
    padding-top: 20%;
    /*color: #fff;*/
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    text-align: center;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-content h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    /*color: #ffcdcd;*/
    animation-delay: 0.6s;
    /*background: linear-gradient(to right, #fddcbc, #9f7349);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
}
.hero-content h3 {
    text-align: center;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #cce0ff;
    font-size: 4rem;
    font-weight: 700;
    /*color: #cce0ff;*/
    animation-delay: 0.6s;
}
@media screen and (min-device-width: 0px) and (max-device-width: 450px) {
    .popup-box {
        width: 90%;
    }
    .pophead{
        font-size:20px;
    }
    .header-nav .nav > li .mega-menu, .header-nav .nav > li .sub-menu{
        background-color: #fff;
    }
    .hero-video {
        width: auto;
    }
    /*#ffcdcd*/
    .hero-content h1 {
        padding-top: 45%;
        font-size: 3rem;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .hero-content h3 {
        font-size: 3rem;
    }
    .mo-left .header-nav.show {
        background: #000000;
    }
    .header-nav .dz-social-icon a {
        color: var(--primary);
    }
    .contact-sidebar {
        width: 100%; /* Full width on small screens */
        right: -100%; /* Initially hidden off-screen */
    }
}