.header-container-cotton-houz {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-content-cotton-houz {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 15% 0 5%;
}

.navigation.desktop-nav {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
}
.logo {
justify-self: start;
}
.book-now-btn {
justify-self: end;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: white;
    font-size: 18px;
}
.social-icon:hover {
    transform: scale(1.1);
}
.social-icon.facebook {
    background: #3b5998;
}
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Burger menu styling */
.burger-menu {
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;

}

/* Hide burger and mobile nav by default */
.burger-menu, .mobile-nav {
  display: none;
}
.burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
.get-in-touch{
    padding-top: 2rem;
    color:#7e7e7e
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-item {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-item:hover,
.nav-item.active {
    color: #a77030;
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #a77030;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-icon {
    width:100px;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.logo-icon img.logo-img{
    width: 120%;    
    height: 120%;    
    object-fit: contain;
    display: block;
}

/* Book Now Button */
.book-now-btn {
    background: #a77030;
    color: white;
    padding: 12px 25px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.book-now-btn:hover {
    background: #7c5324;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Header Image*/
#hero.hauz-homepage {
  margin-top: 90px; 
  padding-top: 100px;
  padding-bottom: 50px;
}
.hauz-homepage {
  background-image: url(../img/cotton-houz/Home/Home_Cover_v2.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}
.hauz-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-hauz-content {
    position: relative;
    z-index: 2;
    left: 10vw;
    bottom: -15vh;
    height:500px;
    background: transparent;
    flex-direction: column;
    gap: 2rem;
}

.hero-business-cotton-houz{
  background-image: url(../img/cotton-houz/Our-Room/Our-Room-Cover-03.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-business-cotton-houz .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-business-cotton-houz .container {
  position: relative;
  z-index: 1;
}

.hero-business-cotton-houz .title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

.text-black {
  font-weight: bold;
  color: #000;
}

.text-link {
  color: blue;
  text-decoration: underline;
}

.booking-container {
    display: flex;
    align-items: column;
    gap: 1rem;
    max-width: 500px;
    background: transparent;  
}

.date-fields-wrapper {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.01rem;
    position:relative;
    flex:1;
}

.form-group label {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.25rem;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid  #a77030;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    height: 45px;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: white;
}

.search-button-houz {
    background-color: #a77030;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    height: 45px;
    margin-top: 0.5rem;
}

.search-button-houz:hover {
    background-color: #875b2a;
}
/* Calendar styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* For tablets */
@media (max-width: 920px) {
  .hero-content {
      left: 50%;
      transform: translateX(-50%);
      bottom: -10vh;
      width: 90%;
      max-width: none;
  }

  .logo{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-icon{
    width: 75px;
    height: 75px;
    border: 2px solid white;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .logo-text{
    font-size: 18px;
  }
  .booking-container {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: none;
  }
  .date-fields-wrapper {
    gap: 0.75rem; 
}

.form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

.search-button {
    width: 100%;
    margin-top: 0.05rem;
}
}

/* For phone */
@media (max-width: 768px) {
  .hero-content {
    bottom: -15%;
    width: 95%;
  }

.hero-business-cotton-houz {
    min-height: 250px !important;
}

.hero-business-cotton-houz .title {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-business-cotton-houz .text-bold {
    font-size: 16px;
}


  .booking-container {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
      padding-left: 5%;
      padding-right: 5%;
      max-width: none;
  }
  .date-fields-wrapper {
    gap: 1rem; 
  }


.form-group input {
  height: 40px;
  padding: 0.5rem;
}

.search-button {
  width: 100%;
  margin-top: 0.05rem;
}
}

/* For small phones */
@media (max-width: 480px) {
  .aru-homepage {
    background-position: center 60%; 
  }

.booking-container {
    gap: 0.05rem;
}

.date-fields-wrapper {
    gap: 1rem; 
    width: 100%;
}

.form-group label {
    font-size: 0.8rem;
}

.form-group input {
    height: 40px;
    padding: 0.5rem;
}

}

/* Text Content Styles */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}
.hero-main-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 10px;
    margin-bottom: 0;
}
.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    text-shadow: rgba(0, 0, 0, 0.6) 0px 2px 8px;
    font-weight: 300;
    opacity: 0.95;
}

/* Booking Form Styles */
.booking-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 500px;
    background: transparent;
    padding: 1rem 0;
}
.date-fields-wrapper {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* form-group-contact */
.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 0.01rem;
    position: relative;
    flex: 1;
}
.form-group-contact label {
    color: #333333!important;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.25rem;
}
.form-group-contact input,
.form-group-contact textarea {
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text */
    border: 1px solid #cccccc;
    padding: 12px;
    border-radius: 4px;
}
.form-group-contact input:focus,
.form-group-contact textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.form-group-contact input::placeholder,
.form-group-contact textarea::placeholder {
    color: #666666; /* Medium grey for placeholders */
}

/*search button*/
.search-button {
    background-color: #a77030;
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    height: 45px;
    margin-top: 1.6rem;
    width: 100%;
    max-width: 200px;
    display: block;
    z-index: 10;
    position: relative;
}
.search-button:hover {
    background-color: #875b2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
}

/* Logo positioning (if you want to add the logo) */
.hero-logo {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 3;
}
.hero-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.text-brown {
  color: #a77030;
}

.expertise-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #a77030;
}
.expertise-header h3 {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  color: #a77030;
}
.expertise-box2 .text-content{
    color: #000000 !important;
}
.expertise-section .text-content {
  color: #000000;
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 1px;
  font-size: 0.8rem;
  margin-top: 10px;
}
.expertise-section3 .text-content {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 1px;
  font-size: 0.8rem;
  margin-top: 10px;
}

.brown-btn {
  background-color: #a77030;
  cursor: pointer;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  color: #fff;
  border-radius: 5px;
}

.expertise-section3 {
  padding-top: 80px;
  padding-bottom: 130px;
  background: #fff4e9;
}

.why-houz-section {
  background-color: #fff4e9;
  padding: 5rem 0;
}

/* Tablet */
@media (max-width: 920px) {
.desktop-nav, .social-icons {
    display: none !important;
}

.social-icons-burger {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: white;
    font-size: 18px;
}
.social-icon-burger:hover {
    transform: scale(1.1);
}
.social-icon-burger.facebook {
    background: #3b5998;
}
.social-icon-buger.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.hero-hauz-content {
  left: 20%;
  transform: translateX(-50%);
  bottom: -10vh;
  max-width: 60vw;
  padding: 40px 16px 24px 16px; 
  margin: 0 auto;
  height: 600px;
  align-items: flex-start; 
  gap: 1.5rem;
}

/* Booking Form Styles */
  .booking-container {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem; /* Reduce gap */
  width: 100%;
}
  
.burger-menu {
    display: flex;
}
.burger-menu {
    justify-self: start; 
}

.logo {
    position: static; 
    left: auto;
    transform: none;
    margin: 0;
    justify-self: center;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
}
.book-now-btn {
    justify-self: end; 
    margin-left: 0;
}
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    z-index: 1200;
    padding: 1rem 0;
    text-align: center;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav .nav-item {
    color: #fff;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #333;
}
.search-button {
  width: 100%;
  margin-top: 0; 
}
}

@media (max-width: 768px) {
.hero-hauz-content {
  left: 20%;
  transform: translateX(-50%);
  bottom: -10vh;
  max-width: 69vw;
  padding: 40px 16px 24px 16px; 
  margin: 0 auto;
  height: 600px;
  align-items: flex-start; 
  gap: 1.5rem;
}

.booking-container {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.search-button {
  width: 100%;
  margin-top: 0; 
}
}

#why-choose .fas {
    background-color: #a77030;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 24px;
}
/* List Traveller */
.traveler-list {
list-style: none;
padding-left: 0;
}
.traveler-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.traveler-list li::before {
  content: "•";
  color: #a77030;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}
.traveler-type {
  font-weight: bold;
}

/*rooms page*/
.amenities {
  background: #a77030;
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.amenity-icon {
  width: 16px;
  height: 16px;
  margin-right: 22px;
}

.booking-policy {
  text-align: center;
  background-color: #a77030;
}

/*about page*/
.expertise-section2 {
  padding-top: 80px;
  padding-bottom: 130px;
  background: #a77030;
  align-items: center; 
  justify-content: center; 
}
.expertise-header2 h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #a77030;
}
.expertise-header2 h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  color: #a77030;
}
.expertise-section2 .text-content {
  color: #a77030;
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 1px;
  font-size: 0.8rem;
}


/*contact page*/
body {
    background-color: #f5f5f5;
    color: #333;
}
.contact-container {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    display: flex;
    min-height: 600px;
}

.form-section {
    flex: 1;
    padding: 40px 30px 30px 30px;
    background: white;
}

.map-section {
    flex: 1;
    background: #f8f9fa;
}
.map-container {
    height: 100%;
    width: 100%;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.section-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: normal;
}
.section-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 14px;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.form-group-contact {
    flex: 1;
}
.form-group-contact.full-width {
    width: 100%;
}
label {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    background: transparent;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-bottom-color: #007bff;
}
input::placeholder,
textarea::placeholder {
    color: #aaa;
    font-size: 14px;
}

textarea {
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 30px;
}
.submit-btn {
  background: #a77030;
  color: white;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
    transition: background 0.3s ease;
}
.submit-btn:hover {
    background: #9a7209;
}

.success-message,
.error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}
.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        margin: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .map-container {
        min-height: 400px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Form validation styles */
.form-group-contact.error input,
.form-group-contact.error textarea {
    border-bottom-color: #e74c3c;
}
.error-text {
    color: #e74c3c;
    font-size: 11px;
    margin-top: 5px;
    display: none;
}
.form-group-contact.error .error-text {
    display: block;
}
.loading .submit-btn {
    background: #ccc;
    cursor: not-allowed;
}
.contact-row {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 20px;
    text-align: center;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: #d4b896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: #8b7355;
}
.contact-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.contact-subtitle {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-info {
    font-weight: bold;
    color: #2c5aa0;
    text-decoration: none;
    font-size: 15px;
}
.contact-info:hover {
    text-decoration: underline;
}
.phone-icon {
    fill: #8b7355;
}
.email-icon {
    fill: #8b7355;
}
.location-icon {
    fill: #8b7355;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 991px) {
  .expertise-section3 .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .expertise-section3 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .expertise-image-wrapper3 {
    max-width: 100vw !important;
    width: 100vw !important;
    text-align: center;
    position: static !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }
  .expertise-image-wrapper3 img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
  .expertise-box3 {
    position: static !important;
    transform: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 32px 16px !important;
    box-sizing: border-box;
    background: #fff;
    border-radius: 0;
    text-align: center;
    z-index: 1;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
  }
}

@media (max-width: 768px) {
  .expertise-header h2 {
    font-size: 24px;
    text-align: center;
  }
  .expertise-header h3 {
    font-size: 18px;
    text-align: center;
  }
  .expertise-box3 {
    position: static !important;
    transform: none !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 50px 20px 50px 10px !important;
    box-sizing: border-box;
    text-align: center;
    left: auto !important;
    top: auto !important;
  }
  .expertise-header h2, .expertise-header h3,
  .expertise-section3 .text-content {
    text-align: center;
  }
  .expertise-section3 .text-content {
    font-size: 15px;
    line-height: 1.7;
  }
  .brown-btn {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .expertise-section3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .expertise-section3 .container {
    max-width: 100vw;
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  .expertise-section3 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .expertise-section3 .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .expertise-image-wrapper3 {
    max-width: 100vw;
    width: 100vw;
    text-align: center;
    position: static !important;
  }
  .expertise-image-wrapper3 img {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
  .expertise-box3 {
    margin: 0 auto !important;
    position: static !important;
    transform: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50%;
    right: auto;
    padding: 50px 20px 50px 10px !important;
    box-sizing: border-box;
    background: #fff;
    border-radius: 0;
    text-align: center;
    z-index: 1;
  }
  .expertise-header h2 {
    font-size: 24px;
  }
  .expertise-header h3 {
    font-size: 15px;
  }
  .expertise-section3 .text-content {
    font-size: 13.5px;
  }
  .expertise-section3 .text-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .expertise-header h2 {
    font-size: 24px;
  }
  .expertise-header h3 {
    font-size: 14px;
  }
  .expertise-box3 {
    margin: 0 5px !important;
    padding: 15px 10px;
  }
  .expertise-section3 .text-content p {
    font-size: 13px;
  }
  .brown-btn {
    font-size: 14px;
    padding: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .expertise-box3 {
      position: absolute;
      top: 50%;
      transform: translate(100%, -190px);
      z-index: 2;
      background: #fff;
      padding: 30px 30px;
      border-radius: 0px;
      max-width: 80%;
    }
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-cotton-houz {
  color: #fff;
  background-color: #2B2927;
  background-size: cover;
  font-size: 14px;
  position: relative;
  padding: 30px 0 30px 0;
}

.footer-cotton-houz .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
}

.footer-cotton-houz .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #a77030;
  position: relative;
  padding-bottom: 5px;
}

.footer-cotton-houz .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cotton-houz .footer-content .footer-links ul li {
  padding: 8px 0;
}
