
:root{
  --heading-color-custom: #4a2c1d;
}
/* =================================================== */
/* WhatsApp section start*/
/* =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    background-color: #1ebd5a;
}
.whatsapp-float img {
    width: 40px;
    height: 40px;
    display: block;
}
/* =================================================== */
/* WhatsApp end*/
/* =================================================== */

/* =================================================== */
/* Chatbot start*/
/* =================================================== */
#chatbot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    max-width: 90%;
    /* background-color: #4A2B28; */
    background-color: rgba(255, 255, 255, 0.2);
    /* background-color: #2575FC; */
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}
#chatbot.minimized {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#chatbot .chat-header {
    background-color: #2575FC;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    cursor: pointer;
}

#chatbot .chat-body {
    padding: 12px 16px;
    max-height: 300px;
    overflow-y: auto;
    /* opacity: 0.8; */
    /* background-color: #E8D9C7; */
    /* background-color: #fffdf9; */
    background-color: rgba(255, 255, 255, 0.7);
}
#chatbot .chat-footer {
    display: flex;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #E8D9C7;
}
#chatbot input[type="text"] {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0px;
    /* border-radius: 0; */
    background-color: white;
    color: #4A2B28;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* border: 1px solid ; */
}
#chatbot button.send-btn {
    /* background-color: #ffa903; */
    background-color: #2575FC;
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
    border-top-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#chatbot button.send-btn:hover {
    background-color: #ffa903;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#chatbot .message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
}
#chatbot .message.user {
    background-color: #ffa903;
    /* background-color: #d8a47f; */
    color: black;
    /* color: wh; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    align-self: flex-end ;
    margin-left: auto;
}
#chatbot .message.bot {
    background-color: white;
    color: black;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    align-self: flex-start;
    line-height: 25px;
}
#chatbot .chat-body::-webkit-scrollbar {
    width: 6px;
}
#chatbot .chat-body::-webkit-scrollbar-thumb {
    background-color: #C89C5D;
    border-radius: 3px;
}
#chatbot.minimized .chat-header,
#chatbot.minimized .chat-body,
#chatbot.minimized .chat-footer {
    display: none;
}
.minimized-icon {
    font-size: 24px;
    color: #C89C5D;
    background-color: #2575FC;
    display: none;
}
#chatbot.minimized .minimized-icon {
    display: block;
}
.minimized-img{
  padding: 5px ;
}
.chart-inner{
  width: 45px;
  border-radius: 50%;
}
            .chart-img-container{
                position: relative;
            }
            .active-div{
                position: absolute;
                bottom: 0;
                right: 0;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: green;
            }
            .off-online{
                font-size: 12px;
                line-height: 1;
                font-weight: 200;
            }
            .chart-container{
                position: relative;
                margin-left: 15px;
                width: 100%;
            }
            .chat-close {
                position: absolute;
                top: -8px;
                right: -10px;
                background: none;
                border: none;
                color: white;
                font-size: 25px;
                cursor: pointer;   
                line-height: 1 
            }
            .support-container{
                /* border: 1px solid red; */
                /* display: flex; */
                flex-wrap: nowrap;
                margin-bottom: 3px;
            }
            .img-support{
                width: 25px;
                height: 25px;
                border: 1px solid black;
                border-radius: 50%;
            }
            .message-container {
  margin-bottom: 12px;
}

.msg-label {
  font-size: 12px;
  font-weight: bold;
  color: #777;
}

.user-container .msg-label {
  text-align: right;

                color: black;
                font-size: 14px;
                line-height: 25px ;
}

.bot-container .msg-label {
  text-align: left;

                color: black;
                font-size: 14px;
                line-height: 25px ;
}

.message {
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 75%;
}

.message.user {
  background: #2575fc;
  color: white;
  margin-left: auto;
}

.message.bot {
  background: #f1f1f1;
  color: #333;
  margin-right: auto;
}

/* =================================================== */
/* Chatbot end*/
/* =================================================== */

/* =================================================== */
/* nav start*/
/* =================================================== */
/* .header .mainnav {
    margin-left: 185px !important;
} */
 .logos{
  /* border: 1px solid peachpuff; */
  width: 210px;
  height: 80px;
 }
 .mode_logos{
  /* border: 1px solid red; */
  display: inline-block;
  width: 100%;
  height: inherit;
 }
 .logo-img{
  /* border: 1px solid red; */
  width: 100%;
  height: 65px;
  padding-top: 10px;
 }
.header {
  position: relative;
  z-index: 999;
}
.top_bar {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.middle_bar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1;
}
.header .top_bar {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.header .middle_bar {
  transition: top 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.header.scrolled .top_bar {
  transform: translateY(-100%);
  opacity: 0;
}
.header.scrolled .middle_bar {
  top: 0;
  background-color: #1e1410;
}
.header .phone i {
    background: #ffa903 !important;
}
.header .schedule i{
  padding-top: 5px;
  color: #2B1C14 !important;
}
.header .header_social h6{
  color: #2B1C14 ;
}
.dark-theme .header .top_bar {
  background-color: #FFA903 !important;
}
.header .header_info .free_contact a {
  color: White !important;
}
/* =================================================== */
/* nav end*/
/* =================================================== */

/* =================================================== */
/* Offcanvas start*/
/* =================================================== */
.offcanvas .sub-menu {
  display: none;
  padding-left: 15px;
  margin: 5px 0;
  list-style: none; 
}
.offcanvas .sub-menu li a {
  display: block;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
}
.offcanvas .sub-menu li a:hover {
  background: #C89C5D;
  color: #fff;
}
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.submenu-toggle .arrow {
  font-weight: bold;
  transition: transform 0.3s ease;
}
.submenu-toggle.open .arrow {
  transform: rotate(45deg);
}
/* =================================================== */
/* Offcanvas end*/
/* =================================================== */

/* =================================================== */
/* banner start*/
/* =================================================== */

.theme_slider_1,
.theme_slider_1 .swiper,
.theme_slider_1 .swiper-wrapper,
.theme_slider_1 .swiper-slide {
  height: 100vh; 
  min-height: 800px; 
}
.banner-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-slide .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: background 300ms ease, opacity 300ms ease;
  opacity: 1;
}
.banner-slide .overlay--dark {
  background: black;
  /* background: #330e14 ; */
  
  /* background: rgba(232, 217, 199, 0.45); */
  /* background: rgba(200, 156, 93, 0.45); */
  opacity: 0.4;
}
.banner-slide .overlay--gold {
  background: rgba(200, 156, 93, 0.45);
}
.banner-slide .overlay--beige {
  background: rgba(232, 217, 199, 0.45);
}
.banner-slide .overlay--gradient {
  background: linear-gradient(180deg, rgba(74,43,40,0.6) 0%, rgba(74,43,40,0.25) 50%, rgba(74,43,40,0) 100%);
}
.banner-slide .container,
.banner-slide .slide_content {
  position: relative;
  z-index: 2;
}
.swiper-pagination-bullet {
  background: #C89C5D;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.swiper-button-prev,
.swiper-button-next {
  opacity: 0;
  visibility: hidden;
  color: #ffffff !important;
  transition: all 0.3s ease;
}
.theme_slider_1:hover .swiper-button-prev,
.theme_slider_1:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.swiper-button-prev { transform: translateX(-20px); }
.swiper-button-next { transform: translateX(20px); }
.theme_slider_1:hover .swiper-button-prev { transform: translateX(0); }
.theme_slider_1:hover .swiper-button-next { transform: translateX(0); }

@media (max-width: 767px) {
  .theme_slider_1,
  .theme_slider_1 .swiper-slide {
    height: 360px;
  }
}
/* =================================================== */
/* banner end*/
/* =================================================== */

/* =================================================== */
/* services start*/
/* =================================================== */
.services_content_flex_cenrer p{
    color: #fff;
}
.img1 img{
  max-width: 70% !important;
  padding-top: 66px;
}
/* =================================================== */
/* services end*/
/* =================================================== */

/* =================================================== */
/* projects start*/
/* =================================================== */
.project_cards {
  background-color: #f7f1ea;
  padding: 60px 20px;
}
.project-card {
  background: #fffdf9;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(85, 60, 40, 0.2);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(60, 40, 20, 0.3);
}
.card-img-wrapper {
  position: relative;
  overflow: hidden;
}
.card-img-wrapper img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}
.card-img-wrapper .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(70, 40, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-img-wrapper:hover .overlay {
  opacity: 1;
}
.card-img-wrapper .overlay .btn {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.card-img-wrapper .overlay .btn:hover {
  background: #fff;
  color: #4a2c1a;
}
.card-body {
  padding: 16px;
  flex: 1;
}
.card-title {
  color: #5a3620;
  font-weight: 700;
}
.text-muted {
  color: #8b5e3c !important;
}
.card-text {
  font-size: 14px;
  color: #4a3a2a;
}
.card-footer {
  background: #f3ece7;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #5a3620;
  text-align: center;
}
/* .section_sub_title1 {
  color: #8b5e3c;
  font-weight: 600;
  letter-spacing: 1px;
} */
.section.project_cards {
  /* background: #f9f4ef !important; */
  background: #F6F5ED !important;
  padding: 110px 0 !important;
}
.section_sub_title1 {

  color: #ffa903 !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}
.section_title1 {
  color: var(--heading-color-custom);
  /* font-weight: 700; */
  font-size: 30px;
  /* margin-bottom: 40px; */

    font-family: "mulish", sans-serif;
    font-weight: 300;
    line-height: 45px;
    letter-spacing: 0.5px;
}
.project-card {
  background: #fffaf7 !important;
  border: 1px solid #e3d6cd !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.project-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 8px 18px rgba(139, 94, 60, 0.2) !important;
}
.card-img-wrapper {
  position: relative !important;
  overflow: hidden !important;
  border-bottom: 1px solid #e3d6cd !important;
}
.card-img-wrapper img {
  width: 100% !important;
  transition: transform 0.4s ease !important;
}
.project-card:hover .card-img-wrapper img {
  transform: scale(1.05) !important;
}
.card-img-wrapper:hover .overlay {
  opacity: 1 !important;
}
.overlay .btn {
  border: 2px solid #fff !important;
  color: #fff !important;
  background: transparent !important;
  padding: 8px 18px !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
}
.overlay .btn:hover {
  background: #fff !important;
  color: #4a2c1d !important;
}
.card-body {
  padding: 20px !important;
}
.card-title {
  font-size: 20px;
  color: #8b5e3c !important;
  font-weight: 600 !important;
}
.card-text {
  color: #6b4a33 !important;
  font-size: 15px !important;
  line-height: 25px;
}
.text-muted {
  font-size: 17px;
  color: #9c7d66 !important;
}
.card-footer {
  background: #ffa903 !important;
  border-top: 1px solid #e3d6cd !important;
  /* color: #4a2c1d !important; */
  color: #6b4a33 !important;
  /* text-shadow: ; */
   /* text-shadow: 
    2px 2px 5px rgba(0,0,0,0.3),
    -2px -2px 5px rgba(255, 169, 3,0.5); */
}
/* =================================================== */
/* projects end*/
/* =================================================== */

/* =================================================== */
/* footer start*/
/* =================================================== */
.footer {
  background: linear-gradient(360deg, #7e5535, #5c3521, #3e2723, #1b0f0a);
  color: #e4d5c9 !important;
}
.footer .widget_title {
  color: WHITE !important;
  padding-bottom: 5px;
  border-bottom: 2px solid #b97a57 !important;
}
.footer p,
.footer li,
.footer a,
.footer span {
  color: #e4d5c9 !important;
}
.footer a:hover {
  color: #ffa903 !important;
}
.footer_above {
  padding-bottom: 70px !important;
}
.footer_bottom {
  background: #ffa903 !important;
  border-top: 1px solid #4b3326 !important;
}
.footer_bottom_inner {
  color: #e4d5c9 !important;
}
.footer_bottom_inner a {
  color: #c7aa95 !important;
}
.footer_bottom_inner a:hover {
  color: #ffddc1 !important;
}
.side_footer_social ul li a {
  color: #e4d5c9 !important;
}
.side_footer_social ul li a:hover {
  color: #d8a47f !important;
}
.copyright p {
  color: white !important;
}
.totop a {
  background: #b97a57 !important;
  color: #fffdf9 !important;
  border-radius: 50% !important;
  transition: background 0.3s ease !important;
}
.totop a:hover {
  background: #d8a47f !important;
  color: #2b1c14 !important;
}
.footer .footer_bottom {
  padding: 10px 30px !important;
}
.side_footer_social .bottom_social {
  margin-top: -20px !important;
}
.fb1:before{
  font-size: 35px;
  margin-top: 3px;
}
.link1:before {
  font-size: 35px;
  margin-top: 3px;
}
.footer_partners {
  flex-wrap: wrap;
}
.partner-logo img {
  width: 90px;      
  height: 60px;
  object-fit: contain;
  background: #fff; 
  /* border-radius: 6px; */
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.partner-logo img:hover {
  transform: scale(1.05);
}
.footerlogo {
    max-width: 180px !important;
    margin-top: -37px;
    margin-bottom: 10px;
}
/* =================================================== */
/* footer end*/
/* =================================================== */

/* =================================================== */
/* experience start */
/* =================================================== */
.experience.section {
  /* background-color: #ede0d4 !important; */
  background-color: #F1EFE6 !important;
  color: #3e2c24 !important;
}
/* .experience.section .section_sub_title {
  color: #7f5539 !important; 
} */
.experience.section .section_title {
  color: var(--heading-color-custom);
}
.experience.section .section_desc {
  color: #5c4033 !important;
}
.experience.section .about_below_content h5 {
  color: #3e2c24 !important; 
}
.experience.section .about_below_content p {
  color: #7f5539 !important; 
}
.experience.section .button {
  background-color: #330e14 !important;
  color: #fff !important;
}
.experience.section .button:hover{
  background-color: #532022 !important;
}
/* =================================================== */
/* experience end*/
/* =================================================== */

/* =================================================== */
/* partners start*/
/* =================================================== */
.partners {
  background: #f8f3ef;
  background: #F6F5ED;
  padding-bottom: 4rem !important;
  padding-top: 10rem !important;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #4b2e2e; 
}
.partner-card {
  background: #F9F9F5;
  border: 1px solid #d2b48c; /* latte tone */
  border-radius: 1px;
  box-shadow: 0 4px 10px rgba(75, 46, 46, 0.1);
  transition: transform 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
}
.partner-card img {
  width: 100%;
  max-width: 217px;
  height: 140px;
  object-fit: contain;
  filter: sepia(20%) contrast(95%);
}
/* =================================================== */
/* partners end*/
/* =================================================== */

