:root {
            --primary: #8B6B61;
            --secondary: #A1887F;
            --accent: #D7CCC8;
            --light: #ffffff;
            --white: #ffffff;
            --black: #333333;
            --dark: #5D4037;
            --gray: #777777;
            --light-gray: #f9f9f9;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif !important;
            font-weight: 600;
            line-height: 1.2;
        }
        p,a,li, span, strong{
            font-family: 'Syne', sans-serif !important;
        }
        a{
            text-decoration: none !important;
        }
        summary{
            font-family: 'Syne', sans-serif !important;
        }

        /* Sub Header */
        .subheader {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            padding: 10px 46px;
            font-size: 14px;
        }
        .subheader-left, .subheader-right {
            display: flex;
            align-items: center;
        }
        .subheader-left p {
            margin: 0;
            margin-right: 15px;
            font-weight: bold;
            color: var(--light);
        }
        .subheader-left a, .subheader-right a {
            margin-right: 15px;
            text-decoration: none;
            color: var(--light);
        }
        .subheader-left a i, .subheader-right a i {
            margin-right: 5px;
        }
        .subheader-right a:last-child {
            margin-right: 0;
        }

        .subheader-left a:hover, .subheader-right a:hover {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .subheader {
                display: none;
            }
        }

        /* Header and navigation styles */
        header {
            background: var(--light);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            max-width: 1290px;
            margin: 0 auto;
            padding: 3px 10px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 45px;
            width: auto;
        }
        
        /* Main navigation */
        .main-nav {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-item {
            position: static;
        }
        
        .nav-link {
            color: var(--dark);
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 0.95rem;
            text-transform: uppercase;
            cursor: pointer;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }

        .services-toggle, .more-toggle {
            background-color: var(--primary);
            color: var(--light);
            cursor: pointer;
        }

        .services-toggle:hover, .more-toggle:hover {
            background-color: var(--dark);
            color: var(--light);
        }
        
        /* Services Panel Styles */
        .services-panel {
            position: fixed;
            top: 0;
            left: -90%;
            width: 90%;
            height: 100vh;
            background: var(--light);
            z-index: 1001;
            transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            display: flex;
        }

        .services-panel.active {
            left: 0;
        }

        .services-menu-container {
            width: 20%;
            background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 100%);
            padding: 30px 20px;
            overflow-y: auto;
            border-right: 1px solid #e0e0e0;
        }

        .services-content-container {
            width: 80%;
            padding: 30px;
            overflow-y: auto;
            background: var(--light);
        }

        .services-panel-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1002;
        }
        
        .services-panel-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .services-panel-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
        }
        
        .services-panel-logo img {
            height: 40px;
            width: auto;
            margin-right: 15px;
        }

        .services-menu {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .services-menu-item {
            position: relative;
        }

        .services-menu-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            background-color: var(--light-gray);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .services-menu-link i {
            font-size: 14px;
            color: var(--dark);
            transition: var(--transition);
        }

        .services-menu-link:hover, .services-menu-link.active {
            background-color: var(--primary);
            color: var(--light);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .services-menu-link:hover i, .services-menu-link.active i {
            color: var(--light);
            transform: translateX(3px);
        }

        /* Services Content */
        .services-content {
            display: none;
        }

        .services-content.active {
            display: block;
        }

        .services-content-title {
            color: var(--dark);
            font-size: 24px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
            display: flex;
            align-items: center;
        }

        .services-content-title i {
            margin-right: 10px;
        }

        .services-mega-menu-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .mega-menu-column h4 {
            color: var(--dark);
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: flex;
            align-items: center;
        }
        
        .mega-menu-column h4 i {
            margin-right: 8px;
        }
        
        .mega-menu-links {
            list-style: none;
        }
        
        .mega-menu-links li {
            margin-bottom: 10px;
        }
        
        .mega-menu-links a {
            color: var(--gray);
            text-decoration: none;
            display: block;
            padding: 0px 0;
            transition: var(--transition);
            font-size: 14px;
            border-left: 2px solid transparent;
            padding-left: 10px;
        } 

        .mega-menu-links a .fas{
            color: var(--accent);
            margin-right: 3px;
        }
        
        .mega-menu-links a:hover .fas{
            color: var(--primary);
        }
        .mega-menu-links a:hover {
            color: var(--primary);
            padding-left: 15px;
            border-left: 2px solid var(--primary);
        }
        
        /* More Panel Styles */
        .more-panel {
            position: fixed;
            top: 0;
            right: -30%;
            width: 30%;
            height: 100vh;
            background: linear-gradient(135deg, var(--light) 0%, var(--light-gray) 100%);
            z-index: 1001;
            padding: 30px 20px;
            transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow-y: auto;
        }

        .more-panel.active {
            right: 0;
        }

        .more-panel-menu {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
        }

        .more-panel-link {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: var(--light-gray);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border-radius: 5px;
        }

        .more-panel-link i {
            font-size: 14px;
            margin-right: 12px;
            color: var(--dark);
        }

        .more-panel-link:hover {
            background-color: #e0e0e0;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        /* New Social Media Styles */
        .more-panel-social {
            display: flex;
            justify-content: start;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .social-icon {
            font-size: 24px;
            color: var(--light);
            background-color: var(--primary);
            padding: 5px 13px;
            transition: var(--transition);
            border-radius: 5px;
        }

        .social-icon:hover {
            color: var(--light);
            background-color: var(--dark);
            transform: scale(1.1);
        }
        
        .more-panel-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .more-panel-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .more-panel-title {
            color: var(--dark);
            font-size: 22px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--dark);
            display: flex;
            align-items: center;
        }
        
        .more-panel-title i {
            margin-right: 10px;
        }
        
        .more-image-box {
            display: block;
            height: 200px;
            overflow: hidden;
            margin-bottom: 10px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            border-radius: 8px;
        }
        
        .more-image-box:last-child {
            margin-bottom: 0;
        }
        
        .more-image-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .more-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: var(--transition);
            border-radius: 8px;
        }
        
        .more-image-box:hover img {
            transform: scale(1.05);
        }
        
        .more-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgb(0, 0, 0), transparent);
            color: white;
            border-radius: 0 0 8px 8px;
        }
        
        .more-image-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .more-image-desc {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f0f0;
            transition: var(--transition);
        }
        
        .mobile-toggle:hover {
            background: #e0e0e0;
            color: var(--dark);
        }

        /* Responsive styles */
        @media (max-width: 1100px) {
            .services-panel {
                width: 95%;
                left: -95%;
            }
            
            .more-panel {
                width: 35%;
                right: -35%;
            }
        }
        
        @media (max-width: 992px) {
            .services-panel {
                width: 100%;
                left: -100%;
                flex-direction: column;
            }
            
            .services-menu-container {
                width: 100%;
                height: 40%;
            }
            
            .services-content-container {
                width: 100%;
                height: 60%;
            }
            
            .more-panel {
                width: 40%;
                right: -40%;
            }
            
            .services-mega-menu-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--light);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                height: calc(100vh - 80px);
                overflow-y: auto;
                gap: 10px;
            }
            
            .nav-link{
                color: var(--black);
                text-align: center;
                padding: 15px;
            }
            
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .services-toggle, .more-toggle {
                background-color: var(--dark);
                color: var(--light);
                border-radius: 5px;
            }
            
            .more-panel {
                width: 85%;
                right: -85%;
            }
            
            .services-mega-menu-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .more-panel {
                width: 90%;
                right: -90%;
            }
            
            .more-image-box {
                height: 160px;
            }
        }





/* ===========Button========= */

       
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #928575;
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover {
    color: #ffffff;
}

.btn:hover:before {
    left: 0;
}


.greeting-box-banner {
            background-color: rgba(26, 75, 95, 0.1);
            padding: 8px 16px;
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border-radius: 30px;
            color: var(--secondary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        

        /* ===========Footer=========== */




        
         
.footer {
    background-color: #0e0e0e;
    color: #333;
    padding: 5rem 0 2rem;
    position: relative;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #928575, #c3922e);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-about .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo a {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-logo i {
    color: #ffffff;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.footer-about p {
    color: #ededed;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(207, 207, 207, 0.05);
    border-radius: 50%;
    color: #dcdcdc;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social a:hover {
    background-color: #ff6b6b31;
    color: #c3922e;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #928575;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e9e9e9;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #c3922e;
    transform: translateX(5px);
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    color: #c4c4c4;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-contact a{
    transition: all .3s ease;
}

.footer-contact a:hover{
    padding-left: 5px;
}

.footer-contact i {
    color: #928575;
    margin-right: 0.8rem;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ffffff47;
    color: #e4e4e4;
    max-width: 1200px;
    margin: 10px auto;
    font-size: 1rem;
}
.footer-bottom a{
    color: #e4e4e4;

    &:hover{
        color: #928575;
    }
}



    .service-tag {
            color: var(--secondary) ;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            padding-left: 15px;
            margin-bottom: 25px;
            display: inline-block;
            text-transform: uppercase;
        }

        .service-tag::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 100%;
            background-color: var(--secondary);
            border-radius: 2px;
        }