* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  /* font-family: 'DM Serif Text', serif; */
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.header {
  width: 100%;
  background: #000000;
  position: relative;
  z-index: 999;
}

.container {
  width: 1200px;
  margin: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  background: #000;
}

.logo img {
  height: 60px;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 15px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.menu li a:hover {
  background: #c19b76;
}

.dropdown:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  background: #222;
  top: 50px;
  left: 0;
  min-width: 220px;
  list-style: none;
  z-index: 999;
}

.submenu li a {
  padding: 12px 15px;
  border-bottom: 1px solid #333;
}

.submenu li a:hover {
  background: #c19b76;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  nav {
    display: block;
    position: absolute;
    top: 86px;
    width: 100%;
    left: 0;
  }
  .menu {
    flex-direction: column;
    display: none;
    background: #111;
    width: 100%;
  }

  .menu.active {
    display: block;
  }

  .menu li {
    width: 100%;
  }

  .submenu {
    position: relative;
    top: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto; /* margin-left: -16px; */ /* text-align: right; */
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 650px;
}

.slide-content h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 60px;
  font-family: "DM Serif Text", serif;
  text-transform: uppercase;
}
.slide-content p {
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
    font-family: "DM Serif Text", serif;
    text-transform: uppercase;
}
.slide-content span {
  color: #fac51e;
}

.slider-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #c19b76;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .slide-content {
    left: 30px;
    right: 30px;
  }

  .slide-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 415px) {
  .slide-content h1 {
    font-size: 25px;
    line-height: 40px;
  }
}

.booking-bar {
  margin-top: -87px;
  margin-bottom: 60px;
  position: relative;
  z-index: 998;
}

.booking-bar-inner {
  display: table;
  width: 100%;
  padding: 40px 30px;
  -webkit-box-shadow: 0 20px 30px 0 rgb(0 0 0 / 20%);
  box-shadow: 0 20px 30px 0 rgb(0 0 0 / 20%);
  border-radius: 4px;
  background-color: #f9c41e !important;
}

.booking-bar.booking-bar-2 {
  margin-top: 0px;
  padding: 10px 0px;
  margin-bottom: 0px;
}
.booking-bar.booking-bar-2 .booking-bar-inner {
  display: table;
  width: 100%;
  padding: 20px;
  box-shadow: none;
}

.booking-form {
  display: table-cell;
  vertical-align: middle;
}
.booking-form ul {
  list-style: none;
  display: table;
  width: calc(100% + 20px);
  margin: 0px -10px;
}
.booking-form ul li {
  display: table-cell;
  vertical-align: bottom;
  padding: 0px 10px;
}
.booking-form ul li.booking-form-btn-block {
  width: 1%;
}

.booking-form ul li .form-control {
  border-color: #fff;
  outline: none;
}

.booking-fram-name {
  display: table-cell;
  vertical-align: middle;
}

.booking-form .form-group {
  margin: 0px;
}

.booking-bar .site-button {
  display: block;
  width: 100%;
  margin-top: 30px;
}

@media only screen and (max-width: 991px) {
  .booking-form {
    padding: 0px;
  }
  .booking-bar {
    margin-top: 20px;
  }
  .booking-form .form-group {
    margin-bottom: 30px;
  }

  .booking-fram-name,
  .booking-form {
    display: block;
  }
  .booking-form {
    margin-top: 30px;
  }
  .booking-form ul li {
    display: block;
    float: left;
  }

  .booking-form ul li.date-cal-block,
  .booking-form ul li.room-type-block {
    width: 100%;
  }

  .booking-form ul li.adult-type-block {
    width: 50%;
  }
  .booking-form ul li.children-type-block {
    width: 50%;
  }
  .booking-form ul li.booking-form-btn-block {
    width: 100%;
  }
  .booking-form ul li.booking-form-btn-block button {
    width: 100%;
  }
  .booking-form ul li.booking-form-btn-block button span {
    width: 100%;
    margin: 0px;
    padding: 0px;
    transform: none;
  }
  .booking-form ul li.booking-form-btn-block button em {
    display: none;
  }
  .booking-form ul li.booking-form-btn-block.site-button {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 420px) {
  .booking-bar {
    margin-bottom: 5px;
  }
}
/*Select bar*/
.select-box {
  position: relative;
}
.select-box:after {
  content: "";
  position: absolute;
  right: 13px;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #999;
}
.select-box select {
  border: 1px solid #ddd;
  padding: 8px 10px;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.m-a0 {
  font-weight: normal;
  font-size: 26px;
  line-height: 40px;
  color: #262423;
  margin-bottom: -10px;
  margin-right: 10px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #fff;
  width: 500px;
  margin: 8% auto;
  padding: 30px;
  position: relative;
  border-radius: 5px;
}

.modal-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}
.form-group label {
  color: #000;
}
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
}
.btn-half {
  cursor: pointer;
  background-color: #000;
  z-index: 0;
  display: inline-block;
  position: relative;
  padding: 11px 30px;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #000000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background: #000;
}
.rooms-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 400;
  font-family: "DM Serif Text", serif;
}

.rooms-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.container {
  width: 1200px;
  margin: auto;
}

.slider-wrapper {
  overflow: hidden;
}

.room-slider {
  display: flex;
  transition: 0.5s;
}

.room-card {
  min-width: 33.33%;
  padding: 15px;
  box-sizing: border-box;
}

.room-card-inner {
  background: #fff;
}

.room-image {
  position: relative;
}

.room-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-image h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

.room-info {
  padding: 20px;
  border: 2px solid black;
}

.price {
  color: #c19b76;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.room-info ul {
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.view-btn {
  color: #c19b76;
  text-decoration: none;
  font-weight: bold;
}

.book-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* slider dots */

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots span.active {
  background: #c19b76;
}
.view-btn {
  display: inline-block;
  color: #c19b76;
  font-weight: bold;
  text-decoration: none;
}
.book-btn {
     width: auto; 
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 40px;
}
.room-card {
  flex: 0 0 33.33%;
}

@media (max-width: 992px) {
  .room-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .room-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }
}
.about-section {
  padding: 25px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  font-family: "DM Serif Text", serif;
}

/*.top-title {*/
/*  font-size: 58px;*/
/*}*/

.top-title span {
  color: #d8a01a;
}

.about-content p {
  /* text-align: justify; */
  line-height: 28px;
  margin-top: 3px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}

.feature-box .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 25px;
  background: #d8a01a;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
}

.btn.dark {
  background: #000;
}

h2 {
  font-weight: normal;
  font-size: 35px;
  line-height: 46px;
  color: #262423;
  padding: 10px 0px;
}
h3 {
  font-weight: normal;
  font-size: 34px;
  line-height: 40px;
  color: #262423;
  margin-bottom: 20px;
}
h4 {
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
}


.img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .top-title {
    font-size: 36px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
.services-section {
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  border: 1px solid #ddd;
  padding: 30px 10px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  transition: 0.4s;
  font-family: "DM Serif Text", serif;
}

.service-card img {
  width: 50px;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.service-card h4 {
  font-size: 14px;
  z-index: 2;
  position: relative;
}

/* hover background image */

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/background/bg-5.png");
  opacity: 0;
  background-repeat: repeat;
  transition: 0.4s;
  z-index: 1;
}
.service-card:hover {
  background-color: #bf9975;
}
.service-card:hover::before {
  opacity: 0.85;
}

.service-card:hover {
  color: #fff;
}

.view-more {
  margin-top: 20px;
}

.view-more a {
  color: #d8a01a;
  font-weight: bold;
  text-decoration: none;
}
.blogs-section {
  padding: 10px 0;
  background: #fff;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-author {
  position: absolute;
  top: 60%;
  right: 20px;
  transform: translateY(-50%);
  background: #d8a01a;
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-title a {
  text-decoration: none;
  color: #000;
}

.blog-content p {
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  font-weight: 700;
  color: #d8a01a;
}
@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 220px;
  }
}
.banquet-section {
  padding: 30px 0;
  background: #f5f5f5;
}

.banquet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.banquet-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.banquet-text h4 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #c19b76;
}

.banquet-text p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.booking-btn {
  display: inline-block;
  background: #c19b76;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
}

.banquet-slider {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  border-radius: 5px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 80px;
  cursor: pointer;
  opacity: 0.6;
}

.thumbs img.active {
  opacity: 1;
  border: 2px solid #c19b76;
}
.banquet-slider {
  position: relative;
}

.banquet-slide {
  display: none;
}

.banquet-slide.active {
  display: block;
}

.banquet-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.banquet-prev,
.banquet-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.banquet-prev {
  left: 10px;
}

.banquet-next {
  right: 10px;
}

.banquet-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.banquet-thumbs img {
  width: 80px;
  cursor: pointer;
  opacity: 0.6;
}

.banquet-thumbs img.active {
  opacity: 1;
  border: 2px solid #c19b76;
}
@media (max-width: 768px) {
  .banquet-grid {
    grid-template-columns: 1fr;
  }

  .thumbs img {
    width: 60px;
  }
}
.specialization-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.special-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/background/room.webp") center/cover;
  transition: 0.5s;
  z-index: 1;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.specialization-section .container {
  position: relative;
  z-index: 3;
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
}

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  font-family: "DM Serif Text", serif;
}

.special-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "DM Serif Text", serif;
}

.special-text p {
  line-height: 1.7;
  font-family: "DM Serif Text", serif;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stats h3 {
  color: #fac51e;
  font-size: 30px;
  font-family: "DM Serif Text", serif;
}

.special-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.special-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;

   display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;
}

.special-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.special-card h4 {
  color: #fff;
  font-family: "DM Serif Text", serif;
}
@media (max-width: 768px) {
  .special-grid {
    grid-template-columns: 1fr;
  }

  .special-cards {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
  }
}
.couple-section {
  padding: 30px 0;
  background: #f5f5f5;
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.couple-text h4 {
  color: #c19b76;
  margin-bottom: 10px;
}

.couple-text h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.couple-text p {
  line-height: 1.7;
  text-align: justify;
}

.couple-image {
  overflow: hidden;
  border-radius: 5px;
}

.couple-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.5s;
}

.couple-image:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .couple-grid {
    grid-template-columns: 1fr;
  }

  .couple-image img {
    height: 300px;
  }
}
.ability-section {
  padding: 30px 0;
  background: #fff;
  text-align: center;
}

.section-head {
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 32px;
  text-align: left;
}

.ability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ability-card {
  background: #f5f5f5;
  padding: 40px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

.ability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ability-card h3 {
  font-size: 38px;
  color: #c19b76;
  margin-bottom: 10px;
}

.ability-card p {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .ability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ability-grid {
    grid-template-columns: 1fr;
  }
}
.lux-testimonial {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.lux-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/background/bg-2.jpg") center/cover;
  z-index: 1;
}

.lux-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.lux-testimonial .container {
  position: relative;
  z-index: 3;
}

.lux-head {
  margin-bottom: 50px;
}

.lux-head h2 {
  font-size: 38px;
}

.line {
  width: 60px;
  height: 3px;
  background: #c19b76;
  margin-top: 10px;
}

.lux-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.lux-slider {
  display: flex;
  transition: 0.5s;
}

.lux-item {
  flex: 0 0 50%;
  padding: 20px;
}

.lux-card {
  display: flex;
  gap: 30px;
  align-items: center;
}

.lux-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
}

.lux-text h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
}

.lux-text p {
  line-height: 1.7;
  margin-bottom: 10px;
}

.lux-text span {
  letter-spacing: 2px;
  font-size: 12px;
  color: #c19b76;
}

/* arrows */

.lux-prev,
.lux-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  /* background: #f9c41e; */
  width: 30px;
}

.lux-prev {
  left: -9px;
}
.lux-next {
  right: -9px;
}
@media (max-width: 768px) {
  .lux-item {
    flex: 0 0 100%;
  }

  .lux-card {
    flex-direction: column;
    text-align: center;
  }
}
.gallery-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.view-btn {
  background: #c19b76;
  border: none;
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
}

/* lightbox */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding: 30px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item .icon {
  font-size: 22px;
  color: #c19b76;
}

.contact-item h5 {
  margin-bottom: 5px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
}

.contact-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  outline: none;
}

.form-btn {
  text-align: right;
}

.form-btn button {
  background: #c19b76;
  border: none;
  color: #fff;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 600;
}

.form-btn button:hover {
  background: #000;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-btn {
    text-align: left;
  }
}
.footer {
  background: #111;
  color: #ccc;
  padding-top: 60px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: #c19b76;
}
.footer p {
  margin-top: 10px;
}
.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.newsletter-right form {
  display: flex;
}

.newsletter-right input {
  padding: 12px;
  border: none;
  width: 250px;
}

.newsletter-right button {
  background: #c19b76;
  border: none;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}
.text-white {
  color: #fff !important;
}
.text-dark {
  color: #000;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links h4 {
  color: #fff;
}
.footer-links li {
  margin-bottom: 8px;
  padding-top: 8px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  background: #222;
  padding: 6px 12px;
  font-size: 13px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #333;
  background: #0c0c0c;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-right form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-right input {
    width: 100%;
    margin-bottom: 10px;
  }
}


.margin-form-data{
  margin-top: 6px;
}