/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
:root {
  --primary-color: #054163;
  --secondary-color: #d32629;
  --dark-color: #000000;
  --light-color: #ffffff;
  
}

/*--------------------------------------------------------------
# Global 
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

a:hover{
  text-decoration: none !important;
  color: inherit !important;
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

dl, ol, ul{
  margin: 0 !important;
  padding: 0 !important;
}

section{
 padding: 100px 0px;
} 

.logo-img .logo{
  width: 100px;
  height: 100px;
}

/* Tablet / iPad */
@media (max-width: 1024px) {
  section{
  padding: 80px 0px;
} 
}

/* Mobile */
@media (max-width: 576px) {
  section{
  padding: 60px 0px;
} 

.container{
    padding: 0 15px !important;
  }

}

p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease forwards;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1420px !important;
  }
}

.mb-130 {
  margin-bottom: 110px;
}

@media (max-width: 767px) {
  .mb-130 {
    margin-bottom: 80px;
  }
}



body {
  font-family: 'Cormorant Garamond', 'Georgia', 'serif', 'Inter', sans-serif !important;
  line-height: 1.6 !important;
  color: var(--text-color) !important;
  background-color: #f0eeeb !important;
}


/* img  */

.image {
  overflow: hidden;
  border-radius: 14px;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, opacity 0.6s ease;
}


/* Hover animation */
.image:hover img {
  transform: scale(1.08);
}

.image:hover::before {
  opacity: 1;
}


/* Text Color */
        .text-white {
            color: var(--light-color) !important;
        }

         /* Text Color */
        .text-red {
            color: var(--secondary-color) !important;
        }

        /* Text Color */
        .text-primary-1 {
            color: var(--primary-color) !important;
        }


/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background:  radial-gradient(circle at center, 
    #fffdf7 0%, 
    #fcefdc 40%, 
    #f4e5c7 70%, 
    #f2e1bd 100%
);
  
}

.preloader:after {
  position: absolute;
  /* left: 50%;
  top: 50%; */
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1s infinite linear;
  animation: pulse 1s infinite linear;
  background-image: url(../img/logo/logo.png);
  content: "";
}

.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  /* text-transform: uppercase;
  content: "Loading"; */
  -webkit-transition: none;
  transition: none;
}


/*--------------------------------------------------------------
# Global Header & footer
--------------------------------------------------------------*/

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-dark);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container.scrolled {
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header-container.scrolled .main-header {
  padding: 15px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--primary-color);
}

.header-container.scrolled .logo {
  font-size: 2rem;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#menu-main-menu-1 {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

#menu-main-menu-1 {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
}

#menu-main-menu-1 .menu-item a:hover {
  color: var(--secondary-color) !important;
}

#menu-main-menu-1 .menu-item.active {
  color: var(--secondary-color) !important;
  font-weight: 500;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.header-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.header-icon:hover {
  color: var(--secondary-color) !important;
}

.header-icon i {
  font-size: 1.1rem;
  font-weight: normal;
}


/* Cart and Wishlist Count */
.count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  min-width: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary-colore);
  cursor: pointer;
  padding: 5px;
}


/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--light-color);
  z-index: 2500;
  transition: all 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid var(--primary-color);
      background: radial-gradient(circle at center, #fffdf7 0%, #fcefdc 40%, #f4e5c7 70%, #f2e1bd 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--primary-color);
  padding: 5px;
}

.mobile-nav-menu {
  padding: 20px 0;
}

.mobile-nav-menu .menu-item {
  border-bottom: 1px solid #00000024;
}

.mobile-nav-menu .menu-item {
  display: block;
  padding: 15px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-nav-menu .menu-item:hover {
  color: var(--secondary-color) !important;
      background: radial-gradient(circle at center, #fcefdc 0%, #fcefdc 40%, #f4e5c7 70%, #f2e1bd 100%);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .header-icons .icon-text {
    display: none;
  }

  .header-icons {
    gap: 1.5rem;
  }

  .logo {
    font-size: 1.8rem;
  }

  .main-header {
    padding: 15px 0;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.6rem;
  }

  .header-icons {
    gap: 1rem;
  }

  .main-header {
    padding: 12px 0;
  }
}


/* base header (already exists) */
.header-container{
  background: var(--header-bg-initial);
  transition: background var(--header-transition-duration) ease, border-color var(--header-transition-duration) ease;
}

/* when JS adds .scrolled we apply solid BG / border */
.header-container.scrolled{
 background:  radial-gradient(circle at center, 
    #fffdf7 0%, 
    #fcefdc 40%, 
    #f4e5c7 70%, 
    #f2e1bd 100%
);
  border-bottom-style: solid;
  border-bottom-width: 1px; 
  border-bottom-color: rgba(0,0,0,0.08);
}


/*=====================================
 16. Home1 Footer Section 
========================================*/
.footer-section {
  overflow: hidden;
  background: #466b73;
}
.footer-wrapper {
  background: #2a354e;
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper {
    padding: 90px 80px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-wrapper {
    padding: 70px 40px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper {
    padding: 70px 20px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper {
    padding: 60px 20px;
  }
}
.footer-section .footer-wrapper .col-lg-3.col-md-6.col-12.line {
  border-right: 1px solid #fff;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area {
  padding: 50px 75px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}
@media (max-width: 1799px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 85px;
  }
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 75px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 45px;
  }
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 25px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area {
    flex-wrap: wrap;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area {
  max-width: 360px;
  width: 100%;
  filter: brightness(0) invert(1);
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area img {
  max-width: 200px;
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-logo img {
    width: 150px;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content {
  /* padding-top: 55px; */
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content {
    /* padding-top: 45px; */
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content {
    /* padding-top: 35px; */
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content p {
  color: #fff;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content p {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content p {
    margin-bottom: 20px;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a {
  text-align: center;
  display: block;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a i {
  color: #fff;
  transition: 0.5s;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a span {
  color: #fff;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  display: block;
  padding-top: 5px;
  transition: 0.5s;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a:hover i {
  color: var(--title-color);
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a:hover span {
  color: var(--title-color);
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.footer-section .footer-bottom .social-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}
.footer-section .footer-bottom .social-list li a i {
  color: #fff;
  transition: 0.5s;
}
.footer-section .footer-bottom .social-list li a span {
  color: #fff;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 400;
  transition: 0.5s;
}
/*@media (max-width: 1799px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-left: 60px;
  }
}*/
/*@media (max-width: 1699px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-left: 50px;
  } 
}*/
/*@media (min-width: 1400px) and (max-width: 1599px) {*/
/*  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {*/
/*    padding-left: 40px;*/
/*  }*/
/*}*/
/*@media (max-width: 1399px) {*/
/*  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {*/
/*    padding-left: 40px;*/
/*  }*/
/*}*/
@media (max-width: 767px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-left: 0;
    padding-top: 25px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area::before {
    display: none;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li {
    margin-bottom: 0;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .icon svg {
  fill: #fff;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content {
  position: relative;
  line-height: 1;
  text-align: start;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content span {
  font-family: var(--font-kanit);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
  display: inline-block;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 {
  margin-bottom: 0;
  line-height: 1;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 a {
  color: #fff !important;
  font-family: var(--font-kanit);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 a {
    font-size: 16px;
  }
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 a:hover {
  color: #fff;
}
.footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .arrow {
  margin-top: 20px;
  fill: #fff;
  margin-left: 3%;
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .footer-logo-and-contact-area .contact-area li .arrow {
    display: none;
  }
}
.footer-section .footer-wrapper .address-area {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 60px;
  width: 100%;
  border-left: 1px solid rgba(var(--primary-color-opc), 0.1);
  border-bottom: 1px solid rgba(var(--primary-color-opc), 0.1);
}
@media (max-width: 1799px) {
  .footer-section .footer-wrapper .address-area {
    padding: 60px 50px;
  }
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .address-area {
    padding: 60px 45px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .address-area {
    padding: 50px 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-wrapper .address-area {
    padding: 45px 20px;
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .address-area {
    border: unset;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .address-area {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.footer-section .footer-wrapper .address-area .single-address {
  max-width: 230px;
  width: 100%;
  padding-left: 35px;
  position: relative;
}
@media (max-width: 1799px) {
  .footer-section .footer-wrapper .address-area .single-address {
    padding-left: 25px;
  }
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .address-area .single-address {
    padding-left: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .address-area .single-address {
    padding-left: 15px;
  }
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper .address-area .single-address {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .address-area .single-address {
    padding-left: 0;
  }
}
.footer-section .footer-wrapper .address-area .single-address::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 1px;
  height: 42px;
  background-color: var(--primary-color2);
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .address-area .single-address::before {
    display: none;
  }
}
.footer-section .footer-wrapper .address-area .single-address:first-child {
  padding-left: 0;
}
.footer-section .footer-wrapper .address-area .single-address:first-child::before {
  display: none;
}
.footer-section .footer-wrapper .address-area .single-address span {
  color: var(--title-color);
  font-family: var(--font-kanit);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: underline;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-section .footer-wrapper .address-area .single-address span {
    margin-bottom: 15px;
  }
}
.footer-section .footer-wrapper .address-area .single-address a {
  color: rgba(var(--title-color-opc), 0.6);
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  transition: 0.5s;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .address-area .single-address a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-wrapper .address-area .single-address a {
    font-size: 14px;
  }
}
.footer-section .footer-wrapper .address-area .single-address a:hover {
  color: var(--title-color);
}
.footer-section .footer-wrapper .contact-banner-area {
  background-image: linear-gradient(90deg, #000000 5.18%, rgba(0, 0, 0, 0.4) 100%), url(../img/home3/footer-contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .contact-banner-area {
    padding: 64px 40px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .contact-banner-area {
    padding: 64px 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-wrapper .contact-banner-area {
    padding: 55px 20px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-wrapper .contact-banner-area {
    padding: 64px 25px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .footer-section .footer-wrapper .contact-banner-area {
    padding: 50px 20px;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .contact-banner-area {
    flex-wrap: wrap;
    padding: 55px 20px;
    gap: 20px;
  }
}
.footer-section .footer-wrapper .contact-banner-area h4 {
  color: var(--white-color);
  font-family: var(--font-kanit);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  max-width: 290px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-wrapper .contact-banner-area h4 {
    font-size: 23px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .footer-section .footer-wrapper .contact-banner-area h4 {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .contact-banner-area h4 {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .contact-banner-area form {
    width: 100%;
  }
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 4px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  min-width: 380px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .contact-banner-area form .form-inner {
    min-width: 320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-wrapper .contact-banner-area form .form-inner {
    min-width: 270px;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-wrapper .contact-banner-area form .form-inner {
    min-width: 310px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .footer-section .footer-wrapper .contact-banner-area form .form-inner {
    min-width: 245px;
    padding: 4px 10px 4px 15px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-wrapper .contact-banner-area form .form-inner {
    min-width: unset;
    padding: 4px 10px 4px 15px;
  }
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner input {
  background: transparent;
  height: unset;
  border: unset;
  padding: 0;
  color: var(--white-color);
  padding-right: 10px;
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner button {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner button svg {
  fill: var(--white-color);
  transition: 0.5s;
}
.footer-section .footer-wrapper .contact-banner-area form .form-inner button:hover {
  background-color: var(--primary-color);
}
.footer-section .footer-wrapper .footer-menu {
  padding: 50px 75px;
}
@media (max-width: 1799px) {
  .footer-section .footer-wrapper .footer-menu {
    padding: 75px 85px;
  }
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .footer-menu {
    padding: 75px 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section .footer-wrapper .footer-menu {
    padding: 65px 55px;
  }
}
@media (max-width: 1399px) {
  .footer-section .footer-wrapper .footer-menu {
    padding: 65px 45px;
  }
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .footer-menu {
    border: unset;
    padding: 0;
  }
}
.footer-section .footer-wrapper .footer-menu .footer-widget .widget-title {
  margin-bottom: 25px;
}
.footer-section .footer-wrapper .footer-menu .footer-widget .widget-title h5 {
  color: #fff;
  font-family: var(--font-kanit);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 10px;
}
.footer-section .footer-wrapper .footer-menu .footer-widget .widget-title h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 107px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90.01deg, #fff 0.01%, rgba(0, 0, 0, 0) 102.8%);
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container {
  display: flex;
  gap: 80px;
}
@media (max-width: 1699px) {
  .footer-section .footer-wrapper .footer-menu .footer-widget .menu-container {
    gap: 60px;
  }
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li {
  margin-bottom: 20px;
  line-height: 1;
  transition: 0.5s;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li {
    margin-bottom: 15px;
  }
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li:last-child {
  margin-bottom: 0;
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li a {
  color: #fff !important;
  font-family: var(--font-kanit);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li a:hover {
  color: #fff;
  background-size: 100% 1px;
  background-position: left 100%;
}
.footer-section .footer-bottom-wrap {
  padding: 20px 0;
  border-top: 1px solid rgba(var(--primary-color-opc), 0.1);
  background-color: #2a354eb5;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section .footer-bottom-wrap .footer-bottom {
    justify-content: center;
    gap: 15px;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p {
  color: #fff;
  font-family: var(--font-kanit);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  color: var(--secondary-color);
  background-size: 100% 1px;
  background-position: left 100%;
}
.footer-section .footer-bottom-wrap .footer-bottom .footer-bottom-right ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  flex-wrap: wrap;
  line-height: 1;
}
@media (max-width: 991px) {
  .footer-section .footer-bottom-wrap .footer-bottom .footer-bottom-right ul {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .footer-section .footer-bottom-wrap .footer-bottom .footer-bottom-right ul {
    gap: 15px;
    justify-content: center;
  }
}
.footer-section .footer-bottom-wrap .footer-bottom .footer-bottom-right ul li a {
  color: var(--title-color);
  font-family: var(--font-kanit);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(to bottom, var(--title-color) 0%, var(--title-color) 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section .footer-bottom-wrap .footer-bottom .footer-bottom-right ul li a:hover {
  color: var(--primary-color);
  background-size: 100% 1px;
  background-position: left 100%;
}
.footer-section.style-2 {
  background-color: #F7F7F7;
}
.footer-section.style-2 .footer-wrapper {
  padding: 110px 100px;
}
@media (max-width: 1699px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 110px 75px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 100px 45px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 100px 35px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 90px 75px;
  }
}
@media (max-width: 991px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 70px 40px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 70px 30px;
  }
}
@media (max-width: 576px) {
  .footer-section.style-2 .footer-wrapper {
    padding: 60px 10px;
  }
}
.footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area {
  align-items: center;
  padding: 0;
}
.footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
  padding-right: 110px;
}
@media (max-width: 1799px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-right: 85px;
  }
}
@media (max-width: 1699px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-right: 75px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-right: 45px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-right: 25px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area {
    padding-right: 0;
  }
}
.footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 138px;
  background-color: rgba(var(--primary-color2-opc), 0.2);
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-wrapper .footer-logo-and-contact-area .contact-area::after {
    display: none;
  }
}
.footer-section.style-2 .footer-wrapper .address-area {
  padding: 0;
  display: block;
  border: unset;
}
.footer-section.style-2 .footer-wrapper .address-area .single-address {
  padding-left: 0;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .footer-section.style-2 .footer-wrapper .address-area .single-address {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-wrapper .address-area .single-address {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-2 .footer-wrapper .address-area .single-address {
    margin-bottom: 30px;
  }
}
.footer-section.style-2 .footer-wrapper .address-area .single-address:last-child {
  margin-bottom: 0;
}
.footer-section.style-2 .footer-wrapper .address-area .single-address::before {
  display: none;
}
.footer-section.style-2 .footer-wrapper .address-area .single-address span {
  margin-bottom: 15px;
}
.footer-section.style-2 .footer-wrapper .footer-menu {
  border: unset;
  padding: 0;
  padding-left: 110px;
}
@media (max-width: 1799px) {
  .footer-section.style-2 .footer-wrapper .footer-menu {
    padding-left: 85px;
  }
}
@media (max-width: 1699px) {
  .footer-section.style-2 .footer-wrapper .footer-menu {
    padding-left: 70px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-2 .footer-wrapper .footer-menu {
    padding-left: 55px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-2 .footer-wrapper .footer-menu {
    padding-left: 45px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-2 .footer-wrapper .footer-menu {
    border: unset;
    padding: 0;
  }
}
.footer-section.style-2 .footer-bottom-wrap {
  background-color: var(--white-color);
  border: unset;
}
.footer-section.style-3 .footer-wrapper .address-area {
  padding: 0;
  display: block;
  border: unset;
}
.footer-section.style-3 .footer-wrapper .address-area .single-address {
  padding-left: 0;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .footer-section.style-3 .footer-wrapper .address-area .single-address {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-wrapper .address-area .single-address {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-3 .footer-wrapper .address-area .single-address {
    margin-bottom: 30px;
  }
}
.footer-section.style-3 .footer-wrapper .address-area .single-address:last-child {
  margin-bottom: 0;
}
.footer-section.style-3 .footer-wrapper .address-area .single-address::before {
  display: none;
}
.footer-section.style-3 .footer-wrapper .address-area .single-address span {
  margin-bottom: 15px;
}
.footer-section.style-3 .footer-wrapper .footer-menu {
  padding: 75px 60px;
}
@media (max-width: 1199px) {
  .footer-section.style-3 .footer-wrapper .footer-menu {
    padding: 0;
  }
}
.footer-section.style-4 {
  background-color: var(--primary-color);
  border-top: 3px solid var(--primary-color2);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 35px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area {
    padding: 50px 25px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area {
    flex-wrap: wrap;
  }
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content p {
  color: rgba(255, 255, 255, 0.7);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a i {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a span {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a:hover i {
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .footer-logo-area .footer-content .social-list li a:hover span {
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .icon svg {
  fill: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content span {
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section.style-4 .footer-wrapper .footer-logo-and-contact-area .contact-area li .single-contact .content h6 a:hover {
  color: var(--primary-color2);
}
.footer-section.style-4 .footer-wrapper .contact-banner-area {
  background-image: linear-gradient(90deg, #101010 20.1%, rgba(16, 16, 16, 0.5) 100%), url(../img/home3/footer-contact-bg.jpg);
}
@media (max-width: 1699px) {
  .footer-section.style-4 .footer-wrapper .contact-banner-area {
    padding: 64px 25px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-4 .footer-wrapper .contact-banner-area {
    padding: 64px 20px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .contact-banner-area {
    padding: 64px 15px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-4 .footer-wrapper .contact-banner-area h4 {
    font-size: 23px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .contact-banner-area h4 {
    font-size: 21px;
  }
}
.footer-section.style-4 .footer-wrapper .address-area {
  padding: 0;
  display: block;
  border: unset;
}
.footer-section.style-4 .footer-wrapper .address-area .single-address {
  padding-left: 0;
  margin-bottom: 45px;
}
@media (max-width: 1699px) {
  .footer-section.style-4 .footer-wrapper .address-area .single-address {
    max-width: 200px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .address-area .single-address {
    max-width: 170px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .address-area .single-address {
    margin-bottom: 40px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-4 .footer-wrapper .address-area .single-address {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .footer-section.style-4 .footer-wrapper .address-area .single-address {
    margin-bottom: 30px;
  }
}
.footer-section.style-4 .footer-wrapper .address-area .single-address:last-child {
  margin-bottom: 0;
}
.footer-section.style-4 .footer-wrapper .address-area .single-address::before {
  display: none;
}
.footer-section.style-4 .footer-wrapper .address-area .single-address span {
  margin-bottom: 15px;
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .address-area .single-address a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section.style-4 .footer-wrapper .address-area .single-address a:hover {
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-menu {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 75px 60px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .footer-section.style-4 .footer-wrapper .footer-menu {
    padding: 75px 25px;
  }
}
@media (max-width: 1399px) {
  .footer-section.style-4 .footer-wrapper .footer-menu {
    padding: 75px 20px;
  }
}
@media (max-width: 1199px) {
  .footer-section.style-4 .footer-wrapper .footer-menu {
    border-left: unset;
    padding: 0;
  }
}
.footer-section.style-4 .footer-wrapper .footer-menu .footer-widget .widget-title h5 {
  color: var(--white-color);
}
.footer-section.style-4 .footer-wrapper .footer-menu .footer-widget .widget-title h5::after {
  opacity: 0.4;
  background: linear-gradient(90.01deg, #FFFFFF 0.01%, rgba(255, 255, 255, 0) 102.8%);
}
.footer-section.style-4 .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li a {
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section.style-4 .footer-wrapper .footer-menu .footer-widget .menu-container #menu-main-menu li a:hover {
  color: var(--white-color);
  background-size: 100% 1px;
  background-position: left 100%;
}
.footer-section.style-4 .footer-bottom-wrap {
  padding: 20px 0;
  border-top: unset;
  background-color: #101010;
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p a {
  color: var(--white-color);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .copyright-area p a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .footer-bottom-right ul li a {
  color: var(--white-color);
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 100%);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0% 100%;
  transition: background-size 0.75s;
}
.footer-section.style-4 .footer-bottom-wrap .footer-bottom .footer-bottom-right ul li a:hover {
  background-size: 100% 1px;
  background-position: left 100%;
}

/*--------------------------------------------------------------
# hero section
--------------------------------------------------------------*/
      /* Hero Section */
        .hero-section {
            background: #ffffff;
            padding-top: 0px;
            margin-top: -1px;
            position: relative;
        }

        @media (max-width: 991px) {
            .hero-section {
                padding-top: 130px !important;
                padding-bottom: 80px;
            }
        }

        .hero-1 {
            position: relative;
        }

        .hero-inner{
          height: 100vh;
        }

        /* Big Background Text */
        .hero-big-text {
            position: absolute;
            bottom: -30px;
            left: 0;
            font-size: 199px;
            font-family: var(--title-font);
            font-weight: 500;
            line-height: 1;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 1px var(--primary-color);
            opacity: 0.2;
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 1500px) {
            .hero-big-text {
                font-size: 200px;
            }
        }

        @media (max-width: 1299px) {
            .hero-big-text {
                font-size: 170px;
            }
        }

        @media (max-width: 991px) {
            .hero-big-text {
                font-size: 150px;
            }
        }

        @media (max-width: 767px) {
            .hero-big-text {
                font-size: 120px;
            }
        }

        @media (max-width: 575px) {
            .hero-big-text {
                font-size: 70px;
            }
        }

        /* Swiper Slider */
        .hero-slider1 {
            max-width: 1604px;
            margin: auto;
            transform: translate(0, 165px);
            margin-top: -165px;
        }

        @media (max-width: 1500px) {
            .hero-slider1 {
                /* max-width: 1340px; */
            }
        }

        @media (max-width: 1299px) {
            .hero-slider1 {
                /* margin-left: 70px;
                margin-right: 70px; */
            }
            .hero-section {
                /* padding-bottom: 45px;
                padding-top: 110px; */
            }
        }

        @media (max-width: 991px) {
            .hero-slider1 {
                margin-left: 35px;
                margin-right: 35px;
                border-radius: 20px 20px 20px 20px;
            }
        }

        @media (max-width: 575px) {
            .hero-slider1 {
                margin-left: 15px;
                margin-right: 15px;
                border-radius: 30px;
            }
        }

        .hero-inner {
            position: relative;
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            overflow: hidden;
        }

        @media (max-width: 575px) {
            .hero-inner {
                -webkit-mask-image: none !important;
                mask-image: none !important;
            }
        }

        .th-hero-bg {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: scalein 20s infinite;
        }

        @keyframes scalein {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .th-hero-bg:after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(96deg, rgb(252 244 244 / 54%) 33.66%, rgba(13, 13, 13, 0) 121.82%);
            z-index: 1;
        }

        /* Hero Content */
        .hero-style1 {
            position: relative;
            z-index: 6;
            padding: 260px 0 190px;
        }

        @media (max-width: 1500px) {
            .hero-style1 {
                padding: 200px 0 200px 0px;
            }
        }

        @media (max-width: 1299px) {
            .hero-style1 {
                padding: 215px 0 160px 0px;
            }
        }

        @media (max-width: 1199px) {
            .hero-style1 {
                padding: 300px 0 120px 0px;
            }
        }

        @media (max-width: 991px) {
            .hero-style1 {
                padding: 120px 60px 60px;
                text-align: center;
            }
        }

        @media (max-width: 767px) {
            .hero-style1 {
                padding: 120px 30px 60px;
            }
        }

        @media (max-width: 575px) {
            .hero-style1 {
                padding: 120px 0 60px;
            }
        }

        .hero-title {
            margin-bottom: 24px;
            margin-top: -0.2em;
            font-size: 55px;
            font-weight: 800;
            line-height: 1.1;
            font-family: var(--title-font);
        }

        .hero-title span {
            display: block;
        }

        .hero-text {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 42px;
            max-width: 593px;
        }

        @media (max-width: 1299px) {
            .hero-text {
                font-size: 16px;
            }
        }

        /* Button */
        .th-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 24px 24px;
            background: var(--theme-color2);
            color: var(--theme-color);
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .th-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
        }

        .th-btn:hover:before {
            left: 0;
        }

        .th-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 216, 77, 0.4);
            color: var(--theme-color);
        }

        /* Video Play Button */
        .hero-video-wrap {
            text-align: center;
        }

        @media (max-width: 991px) {
            .hero-video-wrap {
                padding-bottom: 120px;
            }
        }

        .play-btn {
            width: 116px;
            height: 116px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .play-btn:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .play-btn:hover {
            background: var(--white-color);
            transform: scale(1.1);
        }

        .play-btn i {
            font-size: 24px;
            color: #fff;
            margin-left: 3px;
        }

        .play-btn:hover i {
            color: var(--theme-color);
        }

        /* Pagination */
        .slider-pagination {
            position: absolute;
            bottom: 48px;
            right: 32px;
            text-align: right;
            z-index: 10;
        }

        @media (max-width: 991px) {
            .slider-pagination {
                text-align: center;
                padding-right: 0;
                left: 50%;
                transform: translateX(-50%);
                right: auto;
            }
        }

        .slider-pagination .swiper-pagination-bullet {
            width: 60px;
            height: 4px;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.4);
            opacity: 1;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .slider-pagination .swiper-pagination-bullet:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid var(--white-color);
            border-radius: 2px;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            transition: transform 0.3s ease;
        }

        .slider-pagination .swiper-pagination-bullet-active {
            background: var(--theme-color2);
            width: 80px;
        }

        .slider-pagination .swiper-pagination-bullet-active:before {
            transform: scale(1.2);
        }

        /* Animations */
        .slideindown {
            animation: slideindown 0.8s ease-out both;
        }

        .slideinup {
            animation: slideinup 0.8s ease-out both;
        }

        .slideinright {
            animation: slideinright 0.8s ease-out both;
        }

        @keyframes slideindown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideinup {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideinright {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        
/*=====================================
  06. Home1 – Why Choose Us Section
======================================*/

.home1-why-choose-us-section {
  position: relative;
  /* If you want bottom space, uncomment:
  padding-bottom: 190px;
  */
}

/* Background decorative image */
.home1-why-choose-us-section .bg-img {
  position: absolute;
  bottom: 0;
  left: 24%;
  pointer-events: none;
  max-width: 100%;
}

@media (max-width: 1799px) {
  .home1-why-choose-us-section .bg-img {
    left: 22%;
  }
}

@media (max-width: 1699px) {
  .home1-why-choose-us-section .bg-img {
    left: 18%;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-why-choose-us-section .bg-img {
    left: 12%;
    width: 1150px;
  }
}

@media (max-width: 1399px) {
  .home1-why-choose-us-section {
    padding-bottom: 130px;
  }

  .home1-why-choose-us-section .bg-img {
    left: 12%;
    width: 1050px;
  }
}

@media (max-width: 1199px) {
  .home1-why-choose-us-section {
    padding-bottom: 80px;
  }

  .home1-why-choose-us-section .bg-img {
    left: 17%;
    width: 800px;
  }
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .bg-img {
    width: 620px;
  }
}

@media (max-width: 767px) {
  .home1-why-choose-us-section {
    padding-bottom: 0;
  }

  .home1-why-choose-us-section .bg-img {
    display: none;
  }
}

/* Section title spacing */
.home1-why-choose-us-section .why-choose-us-content-wrap .section-title {
  margin-bottom: 70px;
}

@media (max-width: 1399px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .section-title {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .section-title {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .section-title {
    margin-bottom: 40px;
  }
}

/* Optional: paragraph indent beside heading
.home1-why-choose-us-section .why-choose-us-content-wrap .section-title p {
  padding-left: 50px;
}
*/

@media (max-width: 1199px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .section-title p {
    padding-left: 25px;
  }
}

/* Content below title */
.home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content {
  width: 100%;
}

@media (max-width: 767px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content {
    max-width: unset;
  }
}

.home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content h5 {
  color: var(--title-color);
  font-family: var(--font-kanit);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

.home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content p {
  color: var(--paragraph-color);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content p {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .home1-why-choose-us-section .why-choose-us-content-wrap .why-choose-us-content p {
    margin-bottom: 30px;
  }
}

/* Counters */
.home1-why-choose-us-section .why-choose-counter-area .counter-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 576px) and (max-width: 767px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 425px;
  }
}

.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter {
  text-align: center;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(var(--primary-color-opc), 0.1);
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter {
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Number */
.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number h2,
.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number span {
  color: var(--primary-color);
  font-family: var(--font-inter);
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 4.5px;
  margin-bottom: 0;
  line-height: 0.8;
}

@media (max-width: 1399px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number h2,
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number span {
    font-size: 47px;
  }
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number h2,
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number span {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number h2,
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .number span {
    font-size: 50px;
  }
}

/* Counter label */
.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .content {
  background-color: var(--white-color);
  padding-top: 20px;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}

.home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .content p {
  color: var(--dark-color);
  font-family: var(--font-kanit);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .home1-why-choose-us-section .why-choose-counter-area .counter-list .single-counter .content p {
    font-size: 14px;
  }
}
      

/*=====================================
 09. Home1 Banner2 Section 
========================================*/
.home1-banner2{
  padding-bottom: 0px;
}

.home1-banner2-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home1-banner2-section {
    min-height: 700;
  }
}
@media (max-width: 1399px) {
  .home1-banner2-section {
    min-height: 650px;
  }
}
@media (max-width: 576px) {
  .home1-banner2-section {
    min-height: 80vh;
    background-attachment: unset;
  }
}
.home1-banner2-section .banner-content {
  padding: 80px 0;
  text-align: center;
  max-width: 640px;
  width: 100%;
}
.home1-banner2-section .banner-content h2 {
  color: #f2e1bd;
  font-family: var(--font-kanit);
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.home1-banner2-section .banner-content h2:nth-child(2) {
  padding-left: 20px;
}
@media (max-width: 576px) {
  .home1-banner2-section .banner-content h2:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .home1-banner2-section .banner-content h2 {
    font-size: 68px;
  }
}
@media (max-width: 767px) {
  .home1-banner2-section .banner-content h2 {
    font-size: 62px;
  }
}
@media (max-width: 576px) {
  .home1-banner2-section .banner-content h2 {
    font-size: 58px;
  }
}
.home1-banner2-section .banner-content .video-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .home1-banner2-section .banner-content .video-area {
    gap: 20px;
    display: inline-flex;
  }
}
@media (max-width: 576px) {
  .home1-banner2-section .banner-content .video-area {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.home1-banner2-section .banner-content .video-area .play-btn-1 {
  cursor: pointer;
  display: inline-block;
}
.home1-banner2-section .banner-content .video-area .play-btn-1 .icon {
  position: relative;
}
.home1-banner2-section .banner-content .video-area .play-btn-1 .icon .video-circle {
      stroke: red;
    fill: none;
    transition: 0.5s;
    background: radial-gradient(circle at center, #fffdf7 0%, #fcefdc 40%, #f4e5c7 70%, #f2e1bd 100%);
    border-radius: 50px;
}
@media (max-width: 576px) {
  .home1-banner2-section .banner-content .video-area .play-btn-1 .icon .video-circle {
    width: 68px;
  }
}
.home1-banner2-section .banner-content .video-area .play-btn-1 .icon .video-circle .top-half {
  stroke-dasharray: 430;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.home1-banner2-section .banner-content .video-area .play-btn-1 .icon .play-icon {
  fill: var(--secondary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 2px;
}
@media (max-width: 576px) {
  .home1-banner2-section .banner-content .video-area .play-btn-1 .icon .play-icon {
    width: 20px;
  }
}
.home1-banner2-section .banner-content .video-area .play-btn-1:hover .icon .video-circle .top-half {
  stroke-dashoffset: 0;
}



.residences-section {
            background: #f8f7f5;
            padding: 0;
            position: relative;
        }

        .container-custom {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0;
        }

        .residences-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 650px;
        }

        .content-side {
            background: #f0eeeb;
            padding: 80px 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .about-section .content-side {
          padding: 0px;
        }

        .kitchen-image-wrapper {
            position: relative;
            margin-bottom: 50px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .kitchen-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .kitchen-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .refined-label {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #9b8b7e;
            margin-bottom: 20px;
            font-weight: 500;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .main-title {
            font-size: 38px;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .description-text {
            font-size: 14px;
            line-height: 1.9;
            color: #7a7a7a;
            margin-bottom: 40px;
            font-family: 'Open Sans', Arial, sans-serif;
            /* max-width: 450px; */
        }

        .btn-discover {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            padding: 13px 32px;
            font-size: 10px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            font-family: 'Open Sans', Arial, sans-serif;
            align-self: flex-start;
        }

        .btn-discover:hover {
            background: var(--primary-color);
            color: #fff !important;
            border-color: #9b8b7e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(155, 139, 126, 0.25);
        }

        .living-room-side {
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .living-room-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .living-room-side:hover img {
            transform: scale(1.03);
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .content-side {
                padding: 70px 60px;
            }

            .main-title {
                font-size: 38px;
            }
        }

        @media (max-width: 1200px) {
            .residences-grid {
                min-height: 600px;
            }

            .content-side {
                padding: 60px 50px;
            }

            .main-title {
                font-size: 36px;
            }

            .kitchen-image-wrapper {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 992px) {
            .residences-grid {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .content-side {
                padding: 60px 40px;
            }

            .living-room-side {
                min-height: 500px;
            }

            .main-title {
                font-size: 34px;
            }

            .description-text {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .content-side {
                padding: 50px 30px;
            }

            .main-title {
                font-size: 30px;
            }

            .kitchen-image-wrapper {
                margin-bottom: 35px;
            }

            .description-text {
                font-size: 13px;
                margin-bottom: 35px;
            }

            .living-room-side {
                min-height: 400px;
            }
        }

        @media (max-width: 576px) {
            .content-side {
                padding: 40px 25px;
            }

            .main-title {
                font-size: 26px;
                margin-bottom: 20px;
            }

            .refined-label {
                font-size: 9px;
                letter-spacing: 2.5px;
                margin-bottom: 15px;
            }

            .description-text {
                font-size: 13px;
                margin-bottom: 30px;
            }

            .btn-discover {
                padding: 11px 26px;
                font-size: 9px;
                letter-spacing: 2px;
            }

            .kitchen-image-wrapper {
                margin-bottom: 30px;
            }

            .living-room-side {
                min-height: 350px;
            }
        }

        @media (max-width: 400px) {
            .content-side {
                padding: 35px 20px;
            }

            .main-title {
                font-size: 24px;
            }

            .living-room-side {
                min-height: 300px;
            }
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-right.active {
            opacity: 1;
            transform: translateX(0);
        }


.living-room-side {
  background-color: #f0eeeb;
}




.contact-section{
  background-color: #ffffff;
}
.contact-wrapper {
    padding: 35px;
    background-color: #f0eeeb;
    border-radius: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    align-items: center;
}

.col-left {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 12px;
}

.col-right {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0 12px;
}

.contact-content {
    padding-left: 35px;
}

.contact-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 450px;
    color: var(--primary-color);
}

.decorative-line {
    margin-left: 60px;
    margin-bottom: 70px;
    opacity: 0.2;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.single-contact:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

.contact-text {
    position: relative;
    padding-left: 30px;
}

.contact-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.15);
}

.contact-label {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.contact-value:hover {
    color: #E74C3C;
}

.contact-form-wrap {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    margin-left: 10px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 24px;
}

.form-col-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 24px;
}

.form-inner label {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-inner input,
.form-inner select,
.form-inner textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 14px;
    color: #1a1a1a;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-inner input:focus,
.form-inner select:focus,
.form-inner textarea:focus {
    border-color: #E74C3C;
}

.form-inner input::placeholder,
.form-inner textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-inner select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-inner textarea {
    min-height: 120px;
    resize: vertical;
    padding: 15px 20px;
}

.checkbox-wrapper {
    /* margin-bottom: 30px; */
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-container label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
}

.submit-btn {
    background-color: #0f4969;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .contact-wrapper {
        padding: 25px;
    }
    .contact-content {
        padding-left: 25px;
    }
    .contact-section .section-title h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .col-left,
    .col-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .col-right {
        margin-bottom: 0;
    }

    .contact-wrapper {
        padding: 35px 25px;
    }

    .contact-content {
        padding-left: 0;
    }

    .contact-section .section-title h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .decorative-line {
        margin-bottom: 40px;
    }

    .contact-list {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .single-contact {
        margin-bottom: 0;
    }

    .contact-form-wrap {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .contact-wrapper {
        padding: 35px 20px;
        border-radius: 15px;
    }

    .contact-section .section-title h2 {
        font-size: 32px;
    }

    .form-col-half {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-wrapper {
        padding: 35px 15px;
    }

    .contact-section .section-title h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .decorative-line {
        height: 100px;
        margin-bottom: 30px;
        margin-left: 0;
    }

    .contact-list {
        flex-direction: column;
        gap: 20px;
    }

    .contact-text {
        padding-left: 20px;
    }

    .contact-value {
        font-size: 12px;
    }

    .form-inner input,
    .form-inner select,
    .form-inner textarea {
        font-size: 13px;
    }

    .checkbox-container label {
        font-size: 13px;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 30px;
    }
}




/*=====================================
 74. Breadcrumb Section 
========================================*/
.breadcrumb-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 175px 0;
  position: relative;
}
@media (max-width: 1199px) {
  .breadcrumb-section {
    padding: 160px 0;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section {
    padding: 170px 0;
  }
}
.breadcrumb-section .banner-content {
  position: relative;
  z-index: 1;
}
.breadcrumb-section .banner-content span {
  color: var(--secondary-color);
  font-family: var(--font-kanit);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .breadcrumb-section .banner-content span {
    margin-bottom: 10px;
  }
}
.breadcrumb-section .banner-content span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -41px;
  width: 35px;
  height: 1px;
  background-color: var(--third-color);
}
.breadcrumb-section .banner-content h1 {
  color: var(--primary-color);
  font-family: var(--font-kanit);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section .banner-content h1 {
    font-size: 38px;
    line-height: 1.3;
  }
}
.breadcrumb-section .banner-content .breadcrumb-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}
.breadcrumb-section .banner-content .breadcrumb-list li {
  color: var(--primary-color);
  font-family: var(--font-kanit);
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding-left: 26px;
}
.breadcrumb-section .banner-content .breadcrumb-list li a {
  color: var(--primary-color);
}
.breadcrumb-section .banner-content .breadcrumb-list li::before {
  content: url("data:image/svg+xml;utf8,<svg height='16px' width='16px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path fill='%23ffffff' d='M505.183,239.544L388.819,123.179c-6.654-6.658-16.668-8.645-25.363-5.046 c-8.696,3.603-14.367,12.089-14.367,21.501v93.092H23.273C10.42,232.727,0,243.147,0,256s10.42,23.273,23.273,23.273h325.818v93.091 c0,9.413,5.669,17.9,14.367,21.501c2.878,1.193,5.904,1.773,8.901,1.773c6.056,0,12.009-2.365,16.46-6.819l116.364-116.364 C514.273,263.368,514.273,248.633,505.183,239.544z'/></svg>");
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
}

.breadcrumb-section .banner-content .breadcrumb-list li:first-child {
  padding-left: 0;
}
.breadcrumb-section .banner-content .breadcrumb-list li:first-child::before {
  content: "";
}



/* Blog Card */
.blog .blog-card-1 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
}

.blog .blog-card-1:nth-child(1) { animation-delay: 0.1s; }
.blog .blog-card-1:nth-child(2) { animation-delay: 0.2s; }
.blog .blog-card-1:nth-child(3) { animation-delay: 0.3s; }
.blog .blog-card-1:nth-child(4) { animation-delay: 0.4s; }

.blog .blog-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Blog Card Hover Overlay */
.blog .blog-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog .blog-card-1:hover::before {
    opacity: 1;
}

/* Blog Image Container */
.blog .blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

/* Blog Featured Image */
.blog .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
        
        /* Fix hover target */
.blog .blog-card-1:hover .blog-image {
    transform: scale(1.1) rotate(2deg);
}

        
/* Blog Category Badge */
.blog .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: radial-gradient(circle at center, #fffdf7 0%, #fcefdc 40%, #f4e5c7 70%, #f2e1bd 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: slideInLeft 0.5s ease;
}

/* Blog Content Area */
.blog .blog-content {
    padding: 30px;
}

/* Blog Meta Information (Date & Reading Time) */
.blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.9rem;
}

.blog .blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Blog Post Title */
.blog .blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog .blog-card:hover .blog-title {
    color: #667eea;
}

/* Blog Post Excerpt/Description */
.blog .blog-excerpt {
    color: #718096;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Blog Footer (Author & CTA) */
.blog .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Author Information Container */
.blog .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Author Profile Picture */
.blog .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.blog .blog-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
}

/* Author Name */
.blog .author-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

/* Read More Button/CTA */
.blog .read-more-btn {
        background: linear-gradient(135deg, #121a36, #121939a8);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Read More Button Ripple Effect */
.blog .read-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.read-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.read-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.read-more-btn span {
    position: relative;
    z-index: 1;
}

.read-more-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .blog .blog-footer {
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .blog .blog-footer {
        align-items: flex-start;
    }
}






.article-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.article-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 60px 40px 40px;
    color: white;
}

.article-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.article-meta-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.article-meta-item i {
    color: var(--secondary-color);
}

.article-main-wrapper {
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1199px) {
    .article-main-wrapper {
    padding: 0;
    
}
}

.article-content-box {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    margin-top: 40px;
}

.article-content-box h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
}

.article-content-box h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

.article-content-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.article-content-box blockquote {
    border-left: 5px solid var(--primary-color);
    background:linear-gradient(135deg, #f3e3c1 0%, #fdf5e8 100%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.article-content-box img {
    width: 100%;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-content-box img:hover {
    transform: scale(1.02);
}

.article-content-box ul, .article-content-box ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content-box li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.social-share-section {
    background:  radial-gradient(circle at center, 
#fffdf7 0%, 
#fcefdc 40%, 
#f4e5c7 70%, 
#f2e1bd 100%
);
    padding: 40px;
    border-radius: 30px;
    margin: 40px 0;
    text-align: center;
    color: white;
}

.social-share-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.social-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
}

.social-share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-fb { background: #3b5998; }
.social-tw { background: #1da1f2; }
.social-ln { background: #0077b5; }
.social-wa { background: #25d366; }
.social-tg { background: #0088cc; }

.writer-info-box {
    background: white;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.writer-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #667eea;
    flex-shrink: 0;
}

.writer-details h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.writer-details p {
    color: #666;
    margin-bottom: 15px;
}

.writer-social-links {
    display: flex;
    gap: 10px;
}

.writer-social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: transform 0.3s ease;
}

.writer-social-links a:hover {
    transform: translateY(-3px);
}

.similar-articles-section {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.similar-articles-section h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 30px;
    text-align: center;
}

.similar-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.similar-article-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: white;
}

.similar-article-card:hover {
    transform: translateY(-10px);
}

.similar-article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.similar-article-content {
    padding: 20px;
}

.similar-article-content h5 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.similar-article-content p {
    color: #666;
    font-size: 0.9rem;
}

.article-read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    transition: gap 0.3s ease;
}

.article-read-more:hover {
    gap: 10px;
}

.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.3);
    z-index: 9999;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.1s ease;
}

@media (max-width: 768px) {
    .article-main-title {
        font-size: 2rem;
    }
    
    .article-content-box {
        padding: 30px 20px;
    }
    
    .writer-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .writer-social-links {
        justify-content: center;
    }
}


.about-section-2 p{
  color: #000000;
}


.about-section-2 .about-col-border {
    border-left: 1px solid rgb(34 42 66);
}


.why-lothal{
  background: radial-gradient(circle at center, #fffdf7 0%, #fcefdc 40%, #f4e5c7 70%, #f2e1bd 100%);
}

.light-brochure{
 background : #ffffff;
}


.amenities-section{
  padding: 0;
}
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.image-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.content-box {
    background: #f8f7f5;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.features-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.main-heading {
    font-size: 48px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.description {
    font-size: 15px;
    line-height: 1.8;
    color: #7a7a7a;
    margin-bottom: 40px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-bottom: 45px;
}

.amenity-item {
    font-size: 15px;
    color: #4a4a4a;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.btn-outline-custom {
    border: 1px solid #c4b5a0;
    color: #8b7355;
    background: transparent;
    padding: 14px 35px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: 'Open Sans', Arial, sans-serif;
}

.btn-outline-custom:hover {
    background: #8b7355;
    color: #fff;
    border-color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-box {
        padding: 60px 50px;
    }

    .main-heading {
        font-size: 42px;
    }
}

@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .content-box {
        grid-column: 1 / -1;
        padding: 70px 50px;
    }

    .image-box {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .content-box {
        padding: 60px 40px;
    }

    .main-heading {
        font-size: 38px;
    }

    .amenities-list {
        gap: 10px 30px;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .image-box {
        min-height: 400px;
    }

    .content-box {
        padding: 50px 30px;
    }

    .main-heading {
        font-size: 34px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .description {
        font-size: 14px;
    }

    .amenity-item {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .content-box {
        padding: 40px 25px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .description {
        margin-bottom: 30px;
    }

    .amenities-list {
        margin-bottom: 35px;
    }

    .btn-outline-custom {
        padding: 12px 28px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .image-box {
        min-height: 350px;
    }
}

@media (max-width: 400px) {
    .main-heading {
        font-size: 24px;
    }

    .content-box {
        padding: 35px 20px;
    }
}

.hover-card {
  
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 10px;
  border-bottom: 2px solid #B31010;
}

.hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* DARK OVERLAY CONTENT */
.hover-content {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 34, 0.95);
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 25px;
  transform: translateY(100%);
  transition: 0.5s ease;
}

/* TITLE AT BOTTOM */
.card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  font-weight: 600;
  padding: 12px 0;
  margin-bottom: 0 !important;
}

.hover-card:hover .hover-content {
  transform: translateY(0);
}

/* #light-brochure{
  background-image: url('../img/img-section/lothal.jpg');
  background-repeat: no-repeat;
} */


.type-of-light .hover-card p{
  color: #fff;
}


/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/

.services .title-section  p{
  color: #ffffff ;
}

.service-card {
            background: radial-gradient(circle at center, 
    #fffdf7 0%, 
    #fcefdc 40%, 
    #f4e5c7 70%, 
    #f2e1bd 100%
);

            border-radius: 16px;
            padding: 50px 35px;
            height: 455px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e9ecef;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #0f4969 0%, #054163 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.25);
            border-color: transparent;
        }


        .service-content {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #054163b5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }


        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1) rotate(10deg);
        }

        .service-icon i {
            font-size: 32px;
            color: var(--light-color);
            transition: color 0.4s ease;
        }

        .service-card.featured .service-icon i {
            color: #fff;
        }

        .service-card:hover .service-icon i {
            color: #fff;
        }

        .service-number {
            position: absolute;
            top: 30px;
            right: 35px;
            font-size: 48px;
            font-weight: 700;
            color: #0b4566fa;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .service-card.featured .service-number {
            color: rgba(255, 255, 255, 0.2);
        }

        .service-card:hover .service-number {
            color: rgba(255, 255, 255, 0.2);
            transform: scale(1.2);
        }

        .service-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 18px;
            color: var(--primary-color);
            line-height: 1.4;
            transition: color 0.4s ease;
        }

        .service-card.featured .service-title {
            color: #fff;
        }

        .service-card:hover .service-title {
            color: #fff;
        }

        .service-description {
            font-size: 15px;
            line-height: 1.7;
            color: #6c757d;
            margin-bottom: 30px;
            transition: color 0.4s ease;
        }

        .service-card.featured .service-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .service-card:hover .service-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 35px 0;
        }

        .service-features li {
            padding: 10px 0;
            font-size: 15px;
            color: var(--white);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .service-card.featured .service-features li {
            color: rgba(255, 255, 255, 0.95);
        }

        .service-card:hover .service-features li {
            color: rgba(255, 255, 255, 0.95);
            transform: translateX(5px);
        }

        .service-features li i {
            color: #3d7a7a;
            margin-right: 12px;
            font-size: 16px;
            transition: color 0.4s ease;
        }

        .service-card.featured .service-features li i {
            color: #fff;
        }

        .service-card:hover .service-features li i {
            color: #fff;
        }

        .service-btn {
    padding: 14px 32px;
    background: rgb(255, 255, 255);
    color: #0f4969;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s 
ease;
    border: 2px solid #8c6d3445;
}

        .service-card.featured .service-btn {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .service-card:hover .service-btn {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: translateX(5px);
        }

        .service-btn i {
            margin-left: 10px;
            transition: transform 0.4s ease;
        }

        .service-btn:hover i {
            transform: translateX(5px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.1s; }
        .service-card:nth-child(6) { animation-delay: 0.2s; }
        .service-card:nth-child(7) { animation-delay: 0.3s; }
        .service-card:nth-child(8) { animation-delay: 0.4s; }
        .service-card:nth-child(9) { animation-delay: 0.1s; }
        .service-card:nth-child(10) { animation-delay: 0.2s; }
        .service-card:nth-child(11) { animation-delay: 0.3s; }
        .service-card:nth-child(12) { animation-delay: 0.4s; }
        .service-card:nth-child(13) { animation-delay: 0.5s; }

        @media (max-width: 768px) {
            .service-card {
                margin-bottom: 30px;
            }
        }