        @font-face {
        font-family: 'mont-light';
        src: url(/Montserrat-Light.ttf);
        }

        @font-face {
        font-family: 'mont-regular';
        src: url(/Montserrat-Regular.ttf);
        }

        @font-face {
        font-family: 'mont-medium';
        src: url(/Montserrat-Medium.ttf);
        }

        @font-face {
        font-family: 'mont-Bold';
        src: url(/Montserrat-Bold.ttf);
        }   
        :root {
            --primary-color: #f09304;
            --secondary-color: #624f41;
            --white-color: #ffffff;
            --black-color: #000000;
            --light-gray: #f8f9fa;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--black-color);
            background-color: var(--white-color);
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation Styles */
        .navbar {
            background: var(--white-color);
            box-shadow: var(--shadow);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        .navbar-brand{
            height: 80px;
            width: 100px;
        }
        .navbar-brand img{
            height: 100%;
            width: 100%;
            padding: none;
            object-fit: cover;
        }
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            font-family: 'mont-medium';
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: var(--transition);
            position: relative;
            text-align: center;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            background: rgba(240, 147, 4, 0.1);
        }

        /* Dropdown Styles */
        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow);
            border-radius: 10px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            color: var(--secondary-color);
            padding: 0.75rem 1.5rem;
            transition: var(--transition);
            font-family: 'mont-medium';
        }

        .dropdown-item:hover {
            background: rgba(240, 147, 4, 0.1);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Search Bar */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            border: 2px solid var(--primary-color);
            border-radius: 25px 0 0 25px;
            padding: 0.5rem 1rem;
            width: 180px;
            outline: none;
            transition: var(--transition);
            border-right: none;
        }

        .search-input:focus {
            width: 200px;
            box-shadow: 0 0 10px rgba(240, 147, 4, 0.3);
        }

        .search-btn {
            background: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 0 25px 25px 0;
            width: 45px;
            height: 42px;
            color: white;
            transition: var(--transition);
            border-left: none;
        }

        .search-btn:hover {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        /* Call Button */
        .call-btn {
            background: linear-gradient(45deg, var(--primary-color), #ff6b35);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .call-btn-desktop {
            background: linear-gradient(45deg, var(--primary-color), #ff6b35);
            border: none;
            border-radius: 25px;
            padding: 0.75rem 1.5rem;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .call-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(240, 147, 4, 0.4);
            color: white;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(240, 147, 4, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(240, 147, 4, 0); }
            100% { box-shadow: 0 0 0 0 rgba(240, 147, 4, 0); }
        }

        /* Mobile Navigation */
        .navbar-toggler {
            border: none;
            outline: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2898, 79, 65, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero-section {
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 92vh;
            min-height: 500px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'mont-bold';
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'mont-regular';
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f09304;
            margin-bottom: 1rem;
            position: relative;
            font-family: 'mont-bold';
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
            display: none;
        }

        .btn-custom {
            background: var(--primary-color);
            border: none;
            border-radius: 25px;
            padding: 0.75rem 2rem;
            color: white;
            text-align: center;
            font-weight: 600;
            text-decoration: none;
           font-family: 'mont-regular';
            transition: var(--transition);
            margin: 0.5rem;
        }

        .btn-custom:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            padding: 0.75rem 2rem;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            margin: 0.5rem;
        }

        .btn-outline-custom:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(240, 147, 4, 0.3);
        }

        /* Stats Section */
        .stats-section {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: rgba(255,255,255,0.1);
            margin: 1rem 0;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            margin-top: 0.5rem;
            font-family: 'mont-regular';
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: var(--white-color);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            font-family: 'mont-regular';
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .service-card {
            background: var(--white-color);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content p {
            flex-grow: 1;
            margin-bottom: 1.5rem;
            font-family: 'mont-regular';
            text-align: center;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-align: center;
            font-family: 'mont-regular';
        }

        /* Why Choose Us Section */
        .why-choose-section {
            padding: 100px 0;
            background: var(--white-color);
        }

        .why-choose-section .row {
            margin-bottom: 0;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .feature-item h5 {
            font-family: 'mont-medium';
        }

        .feature-item p{
            font-family: 'mont-light'
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-color), #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem auto;
            font-size: 2rem;
            color: white;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .faq-item {
            margin-bottom: 1rem;
        }

        .faq-question {
            background: var(--white-color);
            border: none;
            border-radius: 10px;
            padding: 1.5rem;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--secondary-color);
            transition: var(--transition);
            box-shadow: var(--shadow);
            font-family: 'mont-medium';
        }

        .faq-question:hover {
            background: var(--primary-color);
            color: white;
        }

        .faq-answer {
            background: var(--white-color);
            padding: 1.5rem;
            border-radius: 0 0 10px 10px;
            margin-top: -10px;
            display: none;
        }

        .faq-answer p{
            font-family: 'mont-regular';
        }
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--white-color);
        }

        .contact-form {
            background: var(--white-color);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(240, 147, 4, 0.2);
        }

        .contact-info {
            padding: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 10px;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
        }

        .social-links {
            margin-top: 2rem;
        }

        .social-link {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 50px;
            margin: 0 0.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 20px 0;
        }

        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            border: none;
        }

        .modal-header {
            background: var(--primary-color);
            color: white;
            border-radius: 15px 15px 0 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .navbar-nav {
                text-align: center;
                padding: 1rem 0;
            }

            .search-container {
                margin: 1rem 0;
            }

            .search-input {
                width: 100%;
            }

            .search-input:focus {
                width: 100%;
            }

            .mobile-controls {
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .search-container {
                margin: 0;
            }

            .search-input {
                width: 150px;
                font-size: 0.875rem;
            }

            .search-input:focus {
                width: 160px;
            }

            .search-btn {
                width: 38px;
                height: 38px;
            }

            .carousel-item {
                height: 50vh;
                min-height: 400px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .gallery-item {
                height: 250px;
            }

            .contact-form {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .btn-custom, .btn-outline-custom {
                padding: 0.5rem 1.5rem;
                font-size: 0.9rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }