 :root {
            --theme-primary-color: #F58F47;
            --theme-secondary-color: #555555;
            --theme-dark-color: #181A1D;
            --theme-light-color: #F8F8F8;
            --theme-gray-color: #E7E7E8;
            --theme-white-color: #FFFFFF;
            --theme-border-color: #EEEEEE;
            --theme-general-color: #7B7C7E;
            --text-light-color: #B5B5B5;
            --text-gray-color: #8F8F8F;
            --theme-general-font: 'Roboto', sans-serif;
            --theme-primary-font: 'Outfit', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--theme-general-font);
            color: var(--theme-general-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
        }

        /* Header Styles */
        .header-style-default {
            background: transparent;
            position: absolute;
            width: 100%;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .main-nav {
            padding: 10px 0;
        }

        .navbar-brand img {
            width: 70px;
            height: auto;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
            font-family: var(--theme-primary-font);
            font-size: 16px;
            font-weight: 400;
            padding: 0 20px !important;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--theme-primary-color) !important;
        }


        .search-pop {
            position: relative;
        }

        .search-pop .toggle-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            padding: 10px;
        }

        .search-form {
            position: absolute;
            top: 100%;
            right: 0;
            width: 300px;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
        }

        .search-form.show {
            display: block;
        }

        .searchform {
            position: relative;
        }

        .searchform input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

        .btn-search {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--theme-primary-color);
        }

        /* Sticky Header */
        .header-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #e9e9e9;
            z-index: 10;
            padding: 10px 0;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-sticky.show {
            transform: translateY(0);
        }

        .header-sticky .navbar-nav .nav-link {
            color: #333 !important;
        }

        .header-sticky .navbar-nav .nav-link:hover,
        .header-sticky .navbar-nav .nav-link.active {
            color: var(--theme-primary-color) !important;
        }

        .header-sticky .search-pop .toggle-icon {
            color: #353535;
        }

        /* Hero Section */
        .hero-slider {
            height: 950px;
            min-height: 700px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--theme-secondary-color) 0%, #4d4d4d 100%);
        }

        .hero-slide {
            height: 1000px;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 12;
            color: #fff;
            padding: 8vh;
            padding-top: 0vh;
            padding-right: 0vh;
        }

        .hero-content h1 {
            font-family: var(--theme-primary-font);
            font-size: 4rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 30px;
            text-transform: capitalize;     
        }

        .hero-content p {
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .btn-primary {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            padding: 12px 30px;
            border-radius: 25px;
            font-family: var(--theme-primary-font);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #fff;
            color: #000;
        }

        /* Sections */
        .section-padding {
            padding: 80px 0;
        }

        .section-padding1 {
            padding: 50px 0;
        }

        .tagline {
            color: var(--theme-primary-color);
            font-family: var(--theme-primary-font);
            font-size: 20px;
            font-weight: 00;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
        }

        .main-title {
            font-family: var(--theme-primary-font);
            font-weight: 700;
            color: var(--theme-secondary-color);
            margin-bottom: 30px;
        }

        h3.main-title {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        h4.main-title {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        .main-title1 {
            font-family: var(--theme-primary-font);
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
        }

        h3.main-title1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }

        /* About Section */
        .about-section {
            background-color: var(--theme-light-color);
        }

        /* Services Section */
        .services-section {
            background-color: rgb(255, 255, 255);
            color: rgb(255, 250, 250);
        }

        .services-section .main-title,
        .services-section p {
            color: #555555;
        }
        
        .service-card {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: rgba(255, 254, 254, 0.1);
        }

        .service-icon {
            font-size: 48px;
            color: var(--theme-primary-color);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h5 {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            color: #555555;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #555555;
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 20px;
        }

        .btn-link {
            color: var(--theme-primary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-link:hover {
            color: #744d31;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--theme-light-color);
        }

        .accordion {
            border: none;
        }

        .accordion-item {
            border: 1px solid var(--theme-border-color);
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header button {
            background: #fff;
            border: none;
            padding: 20px;
            width: 100%;
            text-align: left;
            font-family: var(--theme-primary-font);
            font-weight: 600;
            font-size: 16px;
            color: var(--theme-secondary-color);
        }

        .accordion-header button:not(.collapsed) {
            background: white;
            color: #000000;
        }

        .accordion-body {
            padding: 20px;
            background: #fff;
        }

        /* Contact Form */
        .contact-form {
            background: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 1px solid var(--theme-border-color);
            border-radius: 3px;
            padding: 12px 15px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .form-control:focus {
            border-color: var(--theme-primary-color);
            box-shadow: 0 0 0 0.2rem rgba(245, 143, 71, 0.25);
        }

        .btn-submit {
            background: var(--theme-primary-color);
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 3px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
            background: var(--theme-secondary-color);
            transform: translateY(-2px);
        }

        /* Gallery Section */
        .gallery-section {
            background: #101A38;
            color: white;
        }

        .gallery-section .main-title1 {
            color: white;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            margin-bottom: 30px;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(245, 143, 71, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: #fff;
            font-size: 24px;
        }

        /* Counter Section */
        .counter-section {
            background: #101A38;
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }

        .counter-item {
            padding: 20px 10px;
        }

        .counter-number {
            font-size: 48px;
            font-weight: 700;
            font-family: var(--theme-primary-font);
            color: var(--theme-primary-color);
            margin-bottom: 10px;
            display: block;
        }

        .counter-title {
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: var(--theme-light-color);
        }

        .testimonial-item {
            text-align: center;
            padding: 40px 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 15px;
            height: 100%;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-family: var(--theme-primary-font);
            font-weight: 600;
            color: var(--theme-secondary-color);
            margin-bottom: 5px;
        }

        .testimonial-designation {
            color: var(--theme-primary-color);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .testimonial-content {
            font-style: italic;
            color: var(--theme-general-color);
            line-height: 26px;
        }

        /* Footer */
         .footer {
            background: #0e1621;
            color: var(--theme-general-color);
            padding: 50px 0 0;
        }

        .footer-widget {
            margin-bottom: 30px;
        }


        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 130px;
        }

        .widget-title {
            color: #fff;
            font-family: var(--theme-primary-font);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #8b8b8e;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--theme-primary-color);
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--theme-primary-color);
            color: #fff;
        }

        /* Copyright */
        .copyright {
            background: #0b0b16;
            text-align: center;
            padding: 20px 0;
            color: var(--theme-general-color);
            margin-top: 50px;
        }

        .copyright a {
            color: var(--theme-primary-color);
            text-decoration: none;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Owl Carousel Navigation */
        .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }

        .owl-prev, .owl-next {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            color: white !important;
            font-size: 20px !important;
        }

        .owl-prev:hover, .owl-next:hover {
            background: var(--theme-primary-color) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 20px;
        }

        .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px;
            background: #ddd !important;
            display: block;
            border-radius: 50%;
        }

        .owl-dot.active span {
            background: var(--theme-primary-color) !important;
        }

        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .carousel-control-prev {
            left: 0;
        }
        
        .carousel-control-next {
            right: 0;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: #0d6efd;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--theme-primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--theme-secondary-color);
            transform: translateY(-3px);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .hero-slider {
                height: 70vh;
                min-height: 500px;
            }
            
            .hero-slide {
                height: 70vh;
                min-height: 500px;
            }
            
            .hero-content {
                padding: 20px;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }
            
            .hero-content p {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .btn-primary {
                padding: 10px 25px;
                font-size: 14px;
            }

            .section-padding {
                padding: 50px 0;
            }
            
            .section-padding1 {
                padding: 30px 0;
            }
            
            h3.main-title, h3.main-title1 {
                font-size: 1.8rem;
            }
            
            .tagline {
                font-size: 16px;
            }

            .service-card {
                padding: 20px 15px;
                margin-bottom: 20px;
            }
            
            .service-icon {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .accordion-header button {
                padding: 15px;
                font-size: 14px;
            }
            
            .accordion-body {
                padding: 15px;
                font-size: 14px;
            }
            
            .contact-form {
                padding: 20px;
                margin-top: 30px;
            }
            
            .gallery-carousel {
                padding: 0 15px;
            }
            
            .gallery-item img {
                height: 200px;
            }
            
            .carousel-control-prev, .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .carousel-indicators {
                bottom: -40px;
            }
            
            .counter-item {
                margin-bottom: 20px;
            }
            
            .counter-number {
                font-size: 36px;
            }
            
            .counter-title {
                font-size: 14px;
            }
            
            .testimonial-item {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .testimonial-avatar {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }
            
            .footer {
                padding: 40px 0 0;
            }
            
            .footer-widget {
                margin-bottom: 30px;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-info li {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 991px) {
            .header-sticky {
                display: none; 
            }
            
            .form-control {
                font-size: 16px; 
            }
            
            .accordion-button::after {
                flex-shrink: 0;
            }
            
            .carousel-item {
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }
            
            .navbar-toggler {
                border: none;
                padding: 5px 10px;
            }
            
            .navbar-toggler:focus {
                box-shadow: none;
            }
            
            .navbar-collapse {
                background: rgba(0, 0, 0, 0.9);
                padding: 15px;
                margin-top: 10px;
                border-radius: 5px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
            
            .search-pop {
                margin-top: 15px;
                text-align: center;
            }
            
            .search-form {
                position: static;
                width: 100%;
                margin-top: 10px;
            }
        }