html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}



.header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    background: transparent; /* Default background */
    transition: background 0.3s ease-in-out;
    z-index: 1000;
}

.header-content.scrolled {
    background: #fff; /* White background when scrolled */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: none;
    color: #000;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}
.header-right a{
    text-decoration: none;
    background-color: #3b98d5;
    padding: 5px 10px;
    font-size: 1.6rem;
    border-radius: 30px;
    color: #fff;
    font-weight:bold;
    margin-right: 10px;
}
/* @media (max-width:650px){
    .header-right{
        display: none;
    }

} */
#menu-btn-1{
   color: #fff;
    font-size: 3rem;
}



.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    margin-right: 10px;
}
@media (min-width:650px){
    .icon-btn{
        display: none;
    }
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo img{
    width: 150px;
}
@media (max-width:650px){
    .logo img{
        width: 100px;
    }
}
.logo span {
    color: #000;
    margin: 0 2px;
}



/* ========================menu========================= */
.menu{
    color: #3b98d5 !important;
    background: none !important;
    border-radius: 0 !important;

}
@media (max-width:650px){
    .menu{
        display: none !important;
    }
}

/* Primary Navigation (Visible on Large Screens) */
.primary-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background: none !important;
}
@media (max-width:650px){
    .primary-nav{
        display: none;
    }
}
.primary-nav a {
    text-decoration: none;
    color: #ffbb00;
    font-size: 16px;
    font-weight: bold;

    padding: 5px 5px;

}

.primary-nav a:hover {
    color: #1ed94f;
    border-bottom: 3px solid #1ed94f;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: all 1s;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.close-sidebar{
    color: #8a4e00 !important;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    text-decoration: none;
    color: #3b98d5;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: bold;
}

.sidebar-nav a:hover {
    background: #f0f0f0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .primary-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-btn {
        padding: 5px;
        font-size: 12px;
    }
}
/* ================================ */
.description{
    font-size: 18px !important;
    font-family: 'Times New Roman', Times, serif;
}
/* ================================================================ */
/* General styles for the carousel */
.container-paint {
    display: inline-flex;
    align-items: center;
}

.cursor {
    display: inline-block;
    font-weight: bold;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.typer::after {
    content: "Interior"; /* Default word */
    animation: changeWord 6s infinite steps(1);
    color: #3b98d5;
    margin-left: 5px;
}

@keyframes changeWord {
    0%, 33% { content: "Interior"; }
    34%, 66% { content: "Exterior"; }
    67%, 100% { content: "Residential"; }
}
#bootstrapCarousel {
    height: 100vh !important;
    border-radius: 0 !important;
    /* Default height for larger screens */
}
#bootstrapCarousel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.carousel-caption h1{
    font-size: 3rem !important;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.carousel-caption p{
    color: #f0f0f0;
    font-size: 2rem;
}


.carousel-caption a{
    border: 1px solid #3b98d5;
    padding: 5px 20px;
    font-size: 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    text-align: center !important;
    justify-content: center;
    background-color: #3b98d5;
}
.carousel-caption a:hover{
    background-color: #4ca2dc;
    transition: all 0.3s;
}
@media (max-width: 650px) {
    .carousel-caption a{
        font-size: 1.7rem !important;
        line-height: 1.4; /* Optional: Adjust spacing */
    }
}
#bootstrapCarousel .carousel-item {
    height: 100vh !important;
    border-radius: none !important;
    /* Default height for each slide */
}



#bootstrapCarousel .carousel-item img {
    object-fit: cover;
    border-radius: none !important;
    /* Ensures the image scales properly */
    width: 100%;
    height: 100vh;

}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #bootstrapCarousel {
        height: 60vh;
        /* Reduce height on smaller devices */
    }

    #bootstrapCarousel .carousel-item {
        height: 60vh;
        /* Reduce slide height */
    }

    #bootstrapCarousel .carousel-caption {
        bottom: 10%;
        /* Adjust caption position */
        font-size: 14px;
        /* Smaller text for captions */
    }
}

@media (max-width: 576px) {
    #bootstrapCarousel {
        height: 50vh;
        /* Further reduce height for very small devices */
    }

    #bootstrapCarousel .carousel-item {
        height: 50vh;
        /* Further reduce slide height */
    }

    #bootstrapCarousel .carousel-caption {
        bottom: 5%;
        /* Adjust caption position further */
        font-size: 12px;
        /* Even smaller text for captions */
    }
}

/* =========================================================== */
/* Styling the Pagination Links */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover {
    background-color: #007bff;
    color: white;
}

.pagination li.active span {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
}

/* ===============================about-info============================ */
/* .about-info p {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;

} */
 .about-infoo img{
margin-top: 2rem;
 }
 .about-img{
    border-radius: 10px;
 }
p{
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}
.main-title {
font-size: 4rem;
font-weight: bold;
    color: #3b98d5;
}

.sub-title {
    color: rgb(0, 190, 0);
}
.about-text a{
    text-decoration: none;
    font-size: 2.5rem;
    color: #fff;

    width: 450px !important;
    padding: 3px 80px;
}
.about-link{
    width: 95%;
    margin: 0 auto;
    background-color: #3b98d5;
    text-align: center;
    margin-top: 2rem;
    border-radius: 30px;
    transition: all 2s;
}
.about-link:hover{
    width: 95%;
    font-size: 2.5rem;
    color: #fff;
    background-color: #000;
    width: 450px !important;
    padding: 3px 80px;
}
/* ===================== */
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.hero {
    position: relative;
    background: linear-gradient(#0000004e,#00000082),url('../../hero.jpg') no-repeat center center/cover;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h3 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff; /* Gold color */
}

.hero h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.hero .btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background: #3b98d5;
    color: #fff;
}
/* ============================Menus========================== */

.card {
    position: relative;
    width: 100%;
    height: 80vh !important;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.card img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;

}



.card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
    transition: transform 0.4s ease-in-out;
}

.card-content h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.card-content p {
    opacity: 0;
    font-size: 16px;
    transition: opacity 0.4s ease-in-out;
}

.card:hover img {
    transform: scale(1.1);
    transition: all 1s;
}

.card:hover .card-content p {
    opacity: 1;
}
.all-serivces{
    text-decoration: none;
    margin: 2rem 0 !important;
    color: #3b98d5;
    font-size: 2.6rem;
    border: 2px solid #3b98d5;
    padding: 5px 10px;
    border-radius: 30px;
}
.all-serivces:hover{
    background-color:#3b98d5;
    text-decoration: none;
    color: #fff;
}
/* ==============Facility=================================== */
.facility-box{
    display: flex;
}
@media (max-width:650px){
   .facility-box{
    display: block;
   }
}
.facility{
    background: #3b98d5;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 2px 5px;

}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #454035;
    border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    width: 100%;
    height: 300px;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.chefs .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.chefs .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.chefs .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}
.chefs .member .member-info-content p {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}


.chefs .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.chefs .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.chefs .member .social a:hover {
    color: #cda45e;
}

.chefs .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.chefs .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.chefs .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
}

.chefs .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
    width: 100%;
}

.book-a-table .php-email-form .form-group {
    padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.book-a-table .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
    margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.book-a-table .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
}

.book-a-table .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background: #ffffff;
    border-color: #625b4b;
    color: rgb(0, 0, 0);
}

.book-a-table .php-email-form input::-webkit-input-placeholder,
.book-a-table .php-email-form textarea::-webkit-input-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
    color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
    border-color: #cda45e;
}

.book-a-table .php-email-form input {
    height: 44px;
}

.book-a-table .php-email-form textarea {
    padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
    background: #8a4e00;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 16px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
    background: #d3af71;
}

/* ==================================blogs====================================== */
/* Container styling */
.slider-container {
   width: 100% !important;
    height: 80vh;
    margin: 0 auto;
    padding: 0 !important;
    box-sizing: border-box;
}
@media (max-width:650px){
    .slider-container {
        width: 100%;
         height: 50vh;
         margin: 0 auto;
         box-sizing: border-box;
     }
}

/* Slide styling */
.slide {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 450px !important;

}
.slide-image{
width: 100%;
height: 250px;
overflow: hidden;
}
.slide-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 1.2s;
}
.slide-image img:hover{
    transform: scale(1.2);
}
/* Add spacing between slides */
.slick-slide {
    margin: 0 1px;
    display: block;
    /* Adjust the value as needed */
}

.slide-content {
    padding: 15px;
}

.slide-content span {
    font-size: 18px;
    color: #777;
}

.slide-content h3 {
    font-size: 3rem !important;
    margin: 10px 0;
    color: #333;
}

.slide-content p {
    font-size: 15px;
    color: #777;
}

.slide-content a {
    color: #3b98d5;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none !important;

}

.slide-content a:hover {
    text-decoration: underline;
}

/* Arrows styling */
.slick-prev,
.slick-next {
    font-size: 0;
    color: transparent;
    background: #1ed94f;
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px !important;
    color: #3b98d5 !important;


    width: 40px !important;
    height: 40px !important;

}

.slick-prev {
    left: 0px !important;
    width: 40px !important;
    height: 40px !important;
    z-index: 1;
}

.slick-next {
    right: 0px !important;
    width: 40px !important;
    height: 40px !important;
}
.blogimg {
    position: relative; /* Allows absolute positioning inside */
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Prevents unwanted scrollbars */
}

.blogimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1; /* Ensures the overlay is below the text */
}

.blogimg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the div */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Ensures the image is below the overlay */
}

.blogimg h4, .blogimg h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centers horizontally */
    color: white;
    text-align: center;
    width: 80%; /* Ensures text doesn’t overflow */
    z-index: 2; /* Ensures text is above the overlay */
}

.blogimg h4 {
    top: 40%; /* Adjust this value to position above */
    font-size: 20px;
    font-weight: normal;
}

.blogimg h2 {
    top: 50%; /* Centers text */
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
  }

  .contact .info i {
    color: #fff;
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background: #3b98d5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }

  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
  }

  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 16px;
    color: #bab3a6;
  }

  .contact .info .open-hours, .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }

  .contact .php-email-form {
    width: 100%;
  }

  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }





  .contact .php-email-form .sent-message {
    display: none;
    color: #000;
    background: #3b98d5;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
  }

  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #cda45e;
    border-top-color: #1a1814;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;

    border-color: #625b4b;
    color: 000;
  }

  .contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
    color: #a49b89;
  }

  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #cda45e;
  }

  .contact .php-email-form input {
    height: 44px;
  }

  .contact .php-email-form textarea {
    padding: 10px 12px;
  }

  .contact .php-email-form button[type="submit"] {
    background: #3b98d5;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 16px;
  }

  .contact .php-email-form button[type="submit"]:hover {
    background: #4da4df;
  }

  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;

  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: white;
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
  }

  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d3af71;
    font-size: 26px;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #26231d;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cda45e;
  }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #3b98d5;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    width: 100%;
    overflow: hidden !important;
  }

  #footer .footer-top {
    background: #3b98d5;
    border-top: 1px solid #37332a;
    border-bottom: 1px solid #28251f;
    padding: 60px 0 30px 0;
  }

  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }

  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    color: #fff;
  }
  #footer .footer-top .footer-info .social-links{
    display: flex;
    align-items: center;
}
  #footer .footer-top .social-links a {
    font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
    background: #fff;
    color: #000;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }

  #footer .footer-top .social-links a:hover {

    color: #4d4d4d;
    text-decoration: none;
  }

  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }

  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
  }

  #footer .footer-top .footer-links ul a:hover {
    color: #cda45e;
  }

  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #28251f;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #454035;
  }

  #footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    background: #28251f;
    color: white;
  }

  #footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #cda45e;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
  }

  #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #d3af71;
  }

  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }

  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
/* ==================================================== */
.banner{
    width: 100%;
    height: 80vh;
    position: relative;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner a{
    text-decoration: none;
}
.banner p, .banner h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
    text-align: center;
}

.banner h1 {
    margin-top: 10px;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.banner p {
    font-size: 18px;
    top: 42%; /* Slightly above the H1 */
    color:#007bff;
}

/* ========================================= */
.bannerd{
    width: 100%;
    height: 100vh !important;
    position: relative;
}
.bannerd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bannerd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
}
.bannerd a{
    text-decoration: none;
}
.bannerd p, .bannerd h1, .bannerd a{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
    text-align: center;
}

.bannerd h1 {
    margin-top: 10px;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.bannerd p {
    font-size: 18px;
    top: 42%; /* Slightly above the H1 */
    color:#3b98d5;
}
.bannerd a{
    margin-top: 75px !important;
    font-size: 2.5rem;
    color: #fff;
    background: #3b98d5;
    padding: 5px 10px;
    border: 2px solid #3b98d5;
    border-radius: 30px;
}
.bannerd a:hover{
    color: #d2d2d2;
    background-color: #3b98d5;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #cda45e;
  }

  .back-to-top i {
    font-size: 28px;
    color: #cda45e;
    line-height: 0;
  }

  .back-to-top:hover {
    background: #cda45e;
    color: #1a1814;
  }

  .back-to-top:hover i {
    color: #444444;
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  /* ================================== */
  .sociallinks{
    display: flex;
    justify-content: center;
    gap: 5px;
  }
  .sociallinks a{
    color: #000;
    transition: all 1s;
  }
.sociallinks a:hover{

    color: #626262;
}
/* ========================================= */
.blog-box img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.blog-link{
    text-decoration: none;
    color: #343a40;
}
/* ================================================== */
/* =====    textimonials============= */
/* ============================================= */
.test{
    background: none;
}
.custom-slider{
    width: 100%;
    height: 60vh;
}
@media (max-width:650px){
    .custom-slider{
        height: 40vh;
    }
}
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    padding: 0;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.2);
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #000;
  }

  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0 45px;
  }

 .testimonials .testimonial-item h5 {
    font-size: 12px;
   font-style: italic;
    margin: 10px 0 5px 45px;
    color: 000;
  }
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d3af71;
    font-size: 26px;
  }

  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0  0;
width: 100%;
    background: #ededed6e;
    position: relative;
    border-radius: 6px;
    position: relative;
    color: #000 !important;
    z-index: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #cda45e;
  }

/* ====================Search============================ */
.search-container {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}
.search-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}
.search-button {
    background-color: #007bff;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-button i {
    color: white;
    font-size: 16px;
}
.search-button:hover {
    background-color: #0056b3;
}
/* ===================================================== */

/*--------------------------------------------------------------
# About----vision-mision-value
--------------------------------------------------------------*/
.why-us .box {
    padding: 5px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: #8a4e00;
  }

  .why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1ed94f;
  }

  .why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 2px 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
  }

  .why-us .box:hover {
    background: #1ed94f;
    padding: 3px 3px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  }

  .why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
    color: #fff;
  }

  .Write a{
    text-decoration: none;
    border: 2px solid #3b98d5;
    border-radius: 20px;
    font-size: 2rem;
    padding: 5px 10px;
    color: #3b98d5;
  }

  .Write a:hover{
    background-color: #3b98d5;
    color: #fff;
  }
  /* ============================ */
.activee{
    border-bottom: 2px solid #000 !important;
}



