/**
* Template Name: EstateAgency
* Template URL: https://bootstrapmade.com/real-estate-agency-bootstrap-template/
* Updated: Aug 09 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
----------------------------------------------------------F----*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1b1b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7a4410; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #7a4410; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.fst-italic {
    /* font-style: italic !important; */
    /* font-weight: 300; */
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-transform: uppercase;
    font-weight: 700;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #7a4410;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #7a4410;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}
/* ===== Navbar Base ===== */
.navbar {
  padding: 12px 0;
  background-color: #ea933d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.navbar .nav-link {
  position: relative;
  color: #fff;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: #b28a4e;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar .nav-link:hover {
  color: #b28a4e;
}

.navbar .nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}


/* Book Now Button */
.btn-book {
  background-color: #b28a4e;
  color: #fff !important;
  padding: 8px 20px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
}
.btn-book:hover {
  background-color: #a57b3c;
  transform: translateY(-2px);
}

/* ===== Navbar Scroll Effect (Optional) ===== */
.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  transition: 0.3s ease-in-out;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
  /* Navbar collapse background */
  .navbar-collapse {
    background-color: #b28a4e;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Links spacing inside dropdown */
  .navbar .nav-link {
    display: block;
    text-align: center;
    margin: 10px 0;
    font-size: 16px;
  }

  /* Book button alignment */
  .btn-book {
    display: block;
    margin: 15px auto;
    text-align: center;
    width: 80%;
  }
}

.senht {
  margin-top: 65px;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Laptop View: Medium to Large Screens (≥992px) */
@media (min-width: 992px) {
  .senht {
    margin-top: 65px;
    font-size: 1.5rem;
  }
}

/* Tablet View: Medium Screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .senht {
    margin-top: 50px;
    font-size: 1.4rem;
  }
}

/* Mobile View: Small Screens (≤767px) */
@media (max-width: 767px) {
  .senht {
    margin-top: 40px;
    font-size: 1.25rem;
    text-align: center;
  }
}

/* ===== Smaller Mobile Screens ===== */
@media (max-width: 576px) {
  .navbar .nav-link {
    font-size: 15px;
  }

  .btn-book {
    padding: 8px 18px;
    font-size: 15px;
  }
}

/* Hero Slider */
#hero {
  margin-top: 90px;
}
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s ease;
}
.carousel-item.active .hero-slide {
  transform: scale(1.1); /* Zoom effect */
}
.carousel-caption {
  bottom: 40%;
}
.carousel-caption h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ===== Navbar Styling ===== */
.navbar {
  padding: 12px 0;
  background-color: #b28a4e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  animation: fadeDown 0.8s ease;
  margin-bottom: -100px;
}

/* Logo Animation */
.navbar-brand img {
  height: 50px;
  transition: transform 0.4s ease;
}

/* ===== Nav Links ===== */
.navbar .nav-link {
  position: relative;
  font-weight: 600;
  color: #222 !important;
  margin: 0 15px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* Hover underline animation */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #b28a4e;
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
.navbar .nav-link:hover {
  color: #b28a4e !important;
}

/* ===== Dropdown Menu ===== */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  margin-top: 0;
  min-width: 200px;
  z-index: 1050;
}

.navbar .dropdown-item {
  color: #333;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #f8f4ef;
  color: #b28a4e;
}

.navbar .dropdown-toggle::after {
  margin-left: 6px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
  }
}

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

/* ===== Social Icons ===== */
.social-icons a {
  color: #b28a4e;
  font-size: 18px;
  margin-right: 0px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #333;
  transform: translateY(-2px);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 991px) {
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .social-icons a {
    font-size: 20px;
    margin: 0 8px;
  }
}


/* ===== Book Button ===== */
.btn-book {
  background: linear-gradient(90deg, #b28a4e, #d4af70);
  color: #fff !important;
  padding: 8px 22px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(178, 138, 78, 0.3);
}
.btn-book:hover {
  background: linear-gradient(90deg, #a57b3c, #c29755);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(178, 138, 78, 0.4);
}

/* ===== Scroll effect (Shrink navbar on scroll) ===== */
.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

/* ===== Animation ===== */
@keyframes fadeDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;

}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;

}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
    background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# youtube
--------------------------------------------------------------*/
.youtubev {
  border: none;              /* remove default border */
  border-radius: 12px;       /* rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* soft shadow */
}




/*--------------------------------------------------------------
# star
--------------------------------------------------------------*/
 
.star {
  width: 50px;
  height: auto;
  position: relative;
  animation: rotate360 4s linear infinite; /* rotate continuously */
  margin-top: -50px;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
#  buildtext star
--------------------------------------------------------------*/
/* ===== About Section ===== */
.buildtext {
  padding: 80px 0;
  background-color: #fff;
}

.about-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

/* ===== Text Column ===== */
.about-text {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.about-text.show {
  opacity: 1;
  transform: translateY(0);
}

.about-text .star {
  width: 50px;
  margin-bottom: 15px;
  /* continuous rotate */
  animation: rotate360 3s linear infinite;
  transform-origin: 50% 50%; /* center as pivot */
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-text h3 {
  color: #b28a4e;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}

.about-text h4 {
  color: #222;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* ===== Banner Column ===== */
.about-banner img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease;
}

.about-banner.show img {
  opacity: 1;
  transform: scale(1);
}

/* ===== Animation ===== */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .about-row {
    flex-direction: column;
  }
  .about-text, .about-banner {
    width: 100%;
    text-align: center;
  }
  .about-text p {
    text-align: center;
  }
}


/* Aboutt Page */
/* ===== About Banner Styling ===== */
.banner {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

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

/* Overlay for dark effect */
.banner-overlay {
  position: absolute;
  inset: 0;
} 

/* Text styling */
.banner-text h3 {
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(190, 190, 190, 0.6);
  letter-spacing: 1px;
}

.banner-text {
  left: calc(50% - 500px) !important;
  margin-top: 100px !important;
}


/* Heading color About */
.text-black {
  color: #000000;
}

/* Arrow styling */
.down-arrow-black i {
  color: #000000;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

/* Optional hover animation */
.down-arrow-black:hover i {
  transform: translateY(5px);
}


/* Down Arrow */
.down-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #ea933d;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.down-arrow i {
  font-size: 1.2rem;
  color: #ea933d;


}

.down-arrow:hover {
  background-color: #f5f5f5;
  border-color: #ffffff;
  transform: translateY(5px);
}

/* Arrow bounce animation */
@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991px) {
  .banner {
    height: 65vh;
  }
  .banner-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .banner {
    height: 55vh;
  }
  .banner-text h3 {
    font-size: 1.7rem;
  }
  .down-arrow {
    width: 40px;
    height: 40px;
  }
}






/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #2e2e2e;
}

.section-title p {
  margin-bottom: 30px;
}


.section-titlespe h2 {
  color: #5c3d00;
}

.section-titlespe p {
  color: rgb(56, 56, 56);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 94vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero .carousel-container {
    inset: 90px 50px;
  }
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}


/* Tablet view (max 768px) */
@media (max-width: 768px) {
  .hero .carousel-container {
    inset: 60px 40px;   /* reduce padding */
    text-align: center; /* center content */
  }

  .hero h2 {
    font-size: 32px;    /* smaller heading */
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 8px 25px;
    align-self: center; /* center button */
  }
}

/* Mobile view (max 575px) */
@media (max-width: 575px) {
  .hero .carousel-container {
    inset: 40px 20px;   /* tighter padding */
    justify-content: center; /* vertically center text & button */
    align-items: center;
    text-align: center;
  }

  .hero h2 {
    font-size: 22px;   /* even smaller for mobiles */
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero .btn-get-started {
    font-size: 13px;
    padding: 7px 18px;
    margin: 5px auto;
  }

  .hero .carousel-control-next,
  .hero .carousel-control-prev {
    width: 15%; /* easier to tap */
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    font-size: 24px; /* smaller icons for mobile */
  }

  .hero .carousel-indicators li {
    width: 15px;
    height: 5px;
  }

  .hero .carousel-indicators .active {
    width: 25px;
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .member {
  position: relative;
}

.agents .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.agents .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.agents .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.agents .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.agents .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.agents .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.agents .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.agents .member .social a:hover {
  color: var(--accent-color);
}

.agents .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

/* Target only the Services section text */
#services .section-title {
  text-align: center;
}

#services .section-title h2 {
  text-align: center;
  font-weight: 600;  /* optional */
}

#services .section-title p {
  text-align: center;
  margin-top: 10px; /* optional spacing */
}

.section-title {
  text-align: center; /* default for mobile */
}

@media (min-width: 768px) {
  .section-title {
    text-align: center; /* tablets and desktops */
  }
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 1;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  margin-bottom: 20px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 0px;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  margin-top: -50px;

}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  
}

/*--------------------------------------------------------------
# Real Estate 2 Section
--------------------------------------------------------------*/
.real-estate-2 .portfolio-details-slider img {
  width: 100%;
}

.real-estate-2 .swiper-wrapper {
  height: auto;
}

.real-estate-2 .swiper-button-prev,
.real-estate-2 .swiper-button-next {
  width: 48px;
  height: 48px;
}

.real-estate-2 .swiper-button-prev:after,
.real-estate-2 .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.real-estate-2 .swiper-button-prev:hover:after,
.real-estate-2 .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .real-estate-2 .swiper-button-prev,
  .real-estate-2 .swiper-button-next {
    display: none;
  }
}

.real-estate-2 .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.real-estate-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.real-estate-2 .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.real-estate-2 .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.real-estate-2 .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.real-estate-2 .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.real-estate-2 .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.real-estate-2 .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.real-estate-2 .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.real-estate-2 .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-estate-2 .portfolio-description p {
  padding: 0;
}

.real-estate-2 .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.real-estate-2 .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.real-estate-2 .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.real-estate-2 .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left,
.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.real-estate-2 .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.real-estate-2 .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.real-estate-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.real-estate-2 .nav-pills li+li {
  margin-left: 40px;
}

.real-estate-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.real-estate-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .real-estate-2 .nav-link {
    font-size: 16px;
  }
}

.real-estate-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.real-estate-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# form-wrapper Page
--------------------------------------------------------------*/

body {
  background-color: #533a3b;
  color: white;
  width: 100%;
}

.form-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 50px; 
}

.left-side {
  flex: 1;
  padding-right: 50px;
}

.left-side h2 {
  font-size: 36px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 100px;
  margin-left: -10px;
  }

.left-side p {
  color: #ccc27c;
  margin-top: 10px;
}

.left-side .Requesta {
  max-width: 100%;            /* responsive image */
  border-radius: 10px;        /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.right-side {
  flex: 1;
  background: transparent;
}

form {
    margin-top: 100px;
    margin-bottom: 100px;
  flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
      margin-top: 10px;

}

label {
  margin-bottom: 5px;
  font-weight: 400;
}

button {
  padding: 10px;
  background-color: white;
  color: #7a4410;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  width: 100px;
}

button:hover {
  background-color: #ccc;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }

  .left-side {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .left-side h2 {
    font-size: 28px;
  }

  .left-side p {
    font-size: 16px;
  }

  .right-side {
    width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  button {
    font-size: 16px;
    width: 100%;
  }

  button {
    width: 30%;
    margin-top: 10px;
  }

  label {
    font-size: 14px;
  }
}



/* Team Three Container */
.team-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
/* ===== Team Container ===== */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #fafafa;
}

/* ===== Each Card ===== */
.team-card {
  width: 320px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s ease;
}

.team-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Image ===== */
.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;

}

.team-card:hover img {
  transform: scale(1.05);
}

/* ===== Info Section ===== */
.team-info {
  padding: 20px 15px;
}

.team-info p {
  font-size: 14px;
  color: #7a4410;
  margin-bottom: 5px;
}

.team-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  color: #7a4410;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #b28a4e;
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .team-card {
    width: 260px;
  }
}

@media (max-width: 575px) {
  .team-card {
    width: 90%;
  }
  .team-card img {
    height: 300px;
  }
}


/*--------------------------------------------------------------
#  5 Buttons
--------------------------------------------------------------*/
 /* Butter Smooth Styles */
.project-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
  transition: background 0.5s ease;
}

/* Button Group */
.btn-group {
  padding: 0.6rem;
  border-radius: 8px;
  display: inline-flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Individual Buttons */
.btn-plan {
  background-color: #e2e6ea;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #333;
}

.btn-plan:hover {
  background-color: #ced4da;
  color: #000;
}

.btn-plan.active {
  background-color: #7a4410;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Image View */
.image-container img {
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Card Styling */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-body h3 a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #7a4410;
  text-decoration: none;
}

.card-body h3 a:hover {
  text-decoration: underline;
}

/* Property Info */
.propery-info {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Fade-in Animation */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Amenities Section */
.amenities {
  padding: 80px 0;
  background: #9d703e;
}

.amenities .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5c3d00;
}

.amenities .section-title p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
}

.amenity-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.amenity-card i {
  font-size: 42px;
  color: #e7923d;
  margin-bottom: 18px;
  display: inline-block;
}

.amenity-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.amenity-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .amenity-card {
    padding: 25px 15px;
  }
  .amenity-card i {
    font-size: 32px;
  }
  .amenities .section-title h2 {
    font-size: 28px;
  }
}




/* Contact Page Styling */
 /* Google Maps */
    .contact iframe {
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact iframe:hover {
      box-shadow: 0 15px 50px rgba(255, 152, 0, 0.2);
      transform: translateY(-5px);
    }

    /* Get in Touch Title */
    .contact .page-title {
      background: transparent;
      padding: 40px 0;
    }

    .contact .page-title h1 {
      color: var(--dark-text);
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      text-shadow: none;
      color: #5c3d00;
    }

    .contact .page-title h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
      border-radius: 2px;
    }

    /* Info Items */
    .info-item {
      background: var(--white);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .info-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary-gold), var(--primary-orange));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .info-item:hover::before {
      transform: scaleY(1);
    }

    .info-item:hover {
      transform: translateX(10px) translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2);
    }

    .info-item i {
      font-size: 2rem;
      color: var(--primary-orange);
      margin-right: 1.5rem;
      transition: all 0.4s ease;
    }

    .info-item:hover i {
      transform: scale(1.2) rotate(10deg);
      color: var(--primary-gold);
    }

    .info-item h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 0.5rem;
    }

    .info-item p {
      color: #666;
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Contact Form */
    .php-email-form {
      background: var(--white);
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

    .php-email-form:hover {
      box-shadow: 0 15px 50px rgba(255, 152, 0, 0.15);
    }

    .php-email-form .form-control {
      border: 2px solid #e9ecef;
      border-radius: 12px;
      padding: 0.9rem 1.2rem;
      font-size: 1rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: #f8f9fa;
    }

    .php-email-form .form-control:focus {
      border-color: var(--primary-gold);
      box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.15);
      background: var(--white);
      transform: translateY(-2px);
    }

    .php-email-form .form-control::placeholder {
      color: #adb5bd;
    }

    .php-email-form textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }

    /* Submit Button */
    .php-email-form button[type="submit"] {
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-orange) 100%);
      color: var(--white);
      border: none;
      padding: 1rem 3rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
    }

    .php-email-form button[type="submit"]::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, height 0.6s;
    }

    .php-email-form button[type="submit"]:hover::before {
      width: 300px;
      height: 300px;
    }

    .php-email-form button[type="submit"]:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 35px rgba(255, 152, 0, 0.5);
    }

    .php-email-form button[type="submit"]:active {
      transform: translateY(-1px);
    }

    /* Loading, Error, Success Messages */
    .loading {
      display: none;
      color: var(--primary-orange);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .loading.show {
      display: block;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .error-message {
      display: none;
      color: #dc3545;
      background: #f8d7da;
      border: 1px solid #f5c2c7;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      animation: slideDown 0.4s ease-out;
    }

    .error-message.show {
      display: block;
    }

    .sent-message {
      display: none;
      color: #0f5132;
      background: #d1e7dd;
      border: 1px solid #badbcc;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      animation: slideDown 0.4s ease-out;
    }

    .sent-message.show {
      display: block;
    }

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

    /* Floating Animation for Icons */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .info-item:hover i {
      animation: float 2s ease-in-out infinite;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-title h1 {
        font-size: 2.5rem;
      }

      .contact .page-title h1 {
        font-size: 2rem;
      }

      .info-item {
        padding: 1.5rem;
      }

      .php-email-form {
        padding: 1.5rem;
      }

      .php-email-form button[type="submit"] {
        padding: 0.9rem 2rem;
        font-size: 1rem;
      }
    }

    /* Particle Effect */
    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }


    /* Specifications */

    /* CSS */


   
    h1 {
      font-weight: bold;
      color: #5c3d00;
    }
    .spec-title {
      font-weight: 600;
      color: #d17c00;
    }
    .accordion-button {
      font-size: 1rem;
      background-color: #fff3e0;
      border-radius: 8px;
    }
    .accordion-item {
      border: none;
      margin-bottom: 10px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .accordion-body {
      background-color: #fffdf8;
      border-radius: 0 0 10px 10px;
      text-align: left;
    }
    .image-column img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    #toggleAllBtn {
      background: linear-gradient(to right, #ffcc80, #ffb74d);
      border: none;
      color: white;
      font-weight: bold;
      padding: 8px 16px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    #toggleAllBtn:hover {
      background-color: #ffa726;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    ul li {
      margin-bottom: 6px;
    }
    ul li b i {
      color: #ff9800;
      margin-right: 8px;
    }


    
  /* Gallery Item Hover Effect */
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .gallery-item img {
    transition: transform 0.5s ease;
  }

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

  .gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
  }

  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .lightbox.show .lightbox-content {
    transform: scale(1);
    opacity: 1;
  }

  .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close:hover {
    color: #ffc107;
  }

  @media (max-width: 768px) {
    .lightbox-content {
      width: 95%;
    }
  }


  .arrow {
  position: absolute;
  top: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 0 20px;
  transition: color 0.3s;
}

.arrow:hover {
  color: #ffc107;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}


 /* ===== Butter Smooth Styles ===== */
    /* ===== Isometric View Cards Enhancements ===== */
#isometricSection .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#isometricSection .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Image Zoom Effect */
#isometricSection .card img {
  transition: transform 0.6s ease;
}

#isometricSection .card:hover img {
  transform: scale(1.08);
}



/* Contact Text */

 /* ===== Contact Section ===== */
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      margin-top: 50px;
      color: #333;
    }

    .contact-left {
      flex: 1;
      background: #fff7e6;
      padding: 40px 30px;
      color: #333;
      margin-top: 100px;
    }

    .contact-left h2 {
      color: #b28a4e;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-left h3 {
      color: #ff9800;
      font-size: 1.1rem;
      margin-top: 20px;
    }

    .contact-left p {
      margin-bottom: 10px;
      font-size: 0.95rem;
    }

    .contact-right {
      flex: 1;
      background: #fff;
      padding: 40px 30px;
    }

    .contact-right label {
      font-weight: 600;
      margin-top: 10px;
      color: #444;
    }

    .contact-right input,
    .contact-right select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 8px;
      border: 1px solid #ccc;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .contact-right input:focus,
    .contact-right select:focus {
      border-color: #ff9800;
    }

    .contact-right button {
      background: linear-gradient(135deg, #ffc107, #ff9800);
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      margin-top: 20px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .contact-right button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 152, 0, 0.5);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
      .contact-left, .contact-right {
        padding: 25px;
      }
    }

    /* Project page Image And Icon Text*/
    
 .property-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .image-container {
            position: relative;
            height: 100%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .row-equal-height {
            display: flex;
            align-items: stretch;
        }

        .row-equal-height > [class*='col-'] {
            display: flex;
            flex-direction: column;
        }

        .property-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-container:hover .property-image {
            transform: scale(1.05);
        }

        .decorative-circle {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #ea933d, #543a3b);
            border-radius: 50%;
            opacity: 0.8;
            z-index: 1;
        }

        .content-container {
            padding-left: 50px;
        }

        .main-title {
            color: #e67e50;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .sub-title {
            color: #ea933d;
            font-size: 32px;
            font-weight: 300;
            font-style: italic;
            margin-bottom: 20px;
        }

        .description {
            color: #555;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 15px;
            padding: 15px;
            border-left: 3px solid #ea933d;
            background: #fff;
            border-radius: 5px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .info-card {
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ea933d, #9f703e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: white;
            font-size: 18px;
        }

        .info-label {
            color: #888;
            font-size: 12px;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            color: #333;
            font-size: 15px;
            font-weight: 600;
        }

        .info-value.highlight {
            color: #ea933d;
            font-size: 16px;
        }

        @media (max-width: 991px) {
            .content-container {
                padding-left: 15px;
                margin-top: 40px;
            }

            .sub-title {
                font-size: 32px;
            }

            .image-container {
                height: 400px;
            }
        }

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

            .sub-title {
                font-size: 28px;
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }

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



/* === Download Brochure Button === */
/* === Butter Gold Modal Styling === */
.modal-content {
  background: #fffdfa; /* warm ivory background */
  border-radius: 22px;
  border: 2px solid rgba(178, 138, 78, 0.35); /* soft gold edge */
  box-shadow: 0 8px 30px rgba(178, 138, 78, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
}

.modal-content:hover {
  box-shadow: 0 10px 38px rgba(178, 138, 78, 0.45);
}

/* Header */
.modal-header {
  background: linear-gradient(135deg, #f9f4ea, #fff);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 1.2rem 1.5rem;
}

.modal-title {
  color: #b28a4e;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === Butter Fields === */
.form-label {
  font-weight: 600;
  color: #3b2e1e;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* Input Fields */
.form-control {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  background: linear-gradient(#fffdf8, #fffdf8) padding-box,
              linear-gradient(135deg, #b28a4e, #e3c478) border-box;
  background-origin: border-box;
  box-shadow: 0 2px 6px rgba(178, 138, 78, 0.1);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #222;
}

/* Focus Effect — Golden Glow */
.form-control:focus {
  background: linear-gradient(#fffdf8, #fffdfa) padding-box,
              linear-gradient(135deg, #d9b85c, #b28a4e) border-box;
  box-shadow: 0 0 12px rgba(178, 138, 78, 0.45);
  outline: none;
}

/* Placeholder Text */
.form-control::placeholder {
  color: #a08962;
  opacity: 0.8;
  font-style: italic;
}

/* === Butter Button === */
.btn-book {
      background: linear-gradient(135deg, #573511, #9d703e);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(178, 138, 78, 0.4);
  letter-spacing: 0.5px;
}

.btn-book:hover {
  background: linear-gradient(135deg, #d4b15f, #a9823c);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(178, 138, 78, 0.55);
}

/* === Social Icons === */
.social-icons a {
  color: #b28a4e;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #8a6a3c;
  transform: translateY(-3px);
}


/* ====== General Section ====== */
section {
  background-color: #f8f8f8;
  padding: 30px 0 30px 0;
}

/* ====== Buttons ====== */
.btn-plan {
  background-color: #fff;
  border: 2px solid #dcdcdc;
  border-radius: 50px;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-plan:hover {
  background-color: #b28a4e;
  color: #fff;
  border-color: #b28a4e;
  transform: translateY(-2px);
}

.btn-plan.active {
  background-color: #b28a4e;
  color: #fff;
  border-color: #b28a4e;
  box-shadow: 0 4px 15px rgba(178,138,78,0.3);
}

/* ====== Image Container ====== */
.image-container {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-top: 30px;
  transition: all 0.4s ease;
}

.image-container img {
  border-radius: 15px;
  transition: opacity 0.6s ease;
}

/* ====== Isometric Cards ====== */
.isometric-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.card {
  border: none;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card img {
  height: 280px;
  object-fit: cover;
}



.card-body {
  padding: 20px 10px;
  text-align: center;
}

.card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.card-body a {
  color: #b28a4e;
  text-decoration: none;
}

.card-body a:hover {
  text-decoration: underline;
}

.propery-info {
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 10px;
}

/* ====== Animation ====== */
.fade-in {
  animation: fadeIn 0.6s ease;
}

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

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .btn-plan {
    width: 100%;
  }
  .card img {
    height: 200px;
  }
}



  /* Gallery Item Hover Effect */
  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .gallery-item img {
    transition: transform 0.5s ease;
  }

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

  .gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
  }

  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .lightbox.show .lightbox-content {
    transform: scale(1);
    opacity: 1;
  }

  .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close:hover {
    color: #ffc107;
  }

  @media (max-width: 768px) {
    .lightbox-content {
      width: 95%;
    }
  }

/* Priject Details And Youtube */

 .promo-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 40px;
    }
    .company-details {
      flex: 1;
      padding: 20px;
    }
    .video-thumbnail {
      position: relative;
      flex: 1;
      max-width: 500px;
    }
    .video-thumbnail img {
      width: 100%;
      border-radius: 10px;
    }
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 60px;
      color: white;
      cursor: pointer;
      opacity: 0.8;
    }
    .play-button:hover {
      opacity: 1;
    }


    img.widthimg {
   width: 64px;
    padding-right: 10px;
}


i.bi.bi-arrow-right {
    font-size: 17px;
    color: #916636;
    font-weight: 900;
}


p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 15px;
    padding: 5px;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: 17px;
    font-weight:500;
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out;
}




.testimonial-section {
  margin-top: 0px;
}

.testimonial-heading {
  font-size: 30px;
  font-family: var(--font-family-heading--);
  font-weight: 500;
  text-transform: uppercase;
}

.services-inner {
  display: flex;
  justify-content: center;
}

.testimonial-img {
  width: 138px;
}

.services-icons {
  width: 100%;
  object-fit: fill;
}

.testimonial-name {
  font-size: 24px;
  font-family: var(--font-family-heading--);
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}

.testimonial-role {
  font-size: 16px;
  font-family: var(--font-family-details--);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  padding: 5px 0 15px 0;
  text-align: center;
}

.fa-star {
  color: #ff7a00;
  font-size: 23px;
  padding-bottom: 10px;
}

.testimonial-cards-text {
  font-size: 22px;
  font-style: italic;
  font-family: var(--font-family-details--);
  font-weight: 500;
  color: #484848;
  text-align: center;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .testimonial-cards-text br {
    display: none;
  }

  .testimonial-cards-text {
    font-size: 18px;
  }
}

.progress-container {
  width: 100%;
  height: 8px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.swiper {
  padding: 70px 0;
}
.progres-bar {
  width: 3rem;
  background-color: #d9d9d9;
  margin-right: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.open {
  background-color: #533a3c;
  width: 10rem;
}

.container.testi {
    max-width: 900px;
}

/*--- Testimonial Section End ---*/

.wrapper {
  max-width: 60em;
  margin: 1em auto;
  position: relative;
}



.inner {
  width: 500%;
  line-height: 0;
}

article {
  width: 20%;
  float: left;
  position: relative;
}
article img {
  width: 100%;
}

/*---- SET UP CONTROL ----*/
.slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider-prev-next-control label {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}
.slider-prev-next-control label:hover {
  opacity: 1;
}

.slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}
.slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-dot-control label:hover {
  background: #ccc;
  border-color: #777;
}

/* Info Box */
.info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  -webkit-transition: all 1000ms ease-out 600ms;
  -moz-transition: all 1000ms ease-out 600ms;
  transition: all 1000ms ease-out 600ms;
}
.info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: normal;
  font-size: 1.5em;
  font-style: normal;
}
.info.top-left {
  top: 30px;
  left: 30px;
}
.info.top-right {
  top: 30px;
  right: 30px;
}
.info.bottom-left {
  bottom: 30px;
  left: 30px;
}
.info.bottom-right {
  bottom: 30px;
  right: 30px;
}

/* Slider Styling */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 1px 1px 4px #666;
  background: #fff;
  background: #fcfff4;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
.slider-wrapper .inner {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

/*---- SET POSITION FOR SLIDE ----*/
#slide1:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin: 0;
  line-height: 38px;
  font-size: 3em;
  display: block;
  color: #777;
}

#slide5:checked ~ .slider-prev-next-control label:nth-child(1)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
  content: "";
  padding-left: 15px;
}

#slide5:checked ~ .slider-prev-next-control label:nth-child(1), #slide4:checked ~ .slider-prev-next-control label:nth-child(5), #slide3:checked ~ .slider-prev-next-control label:nth-child(4), #slide2:checked ~ .slider-prev-next-control label:nth-child(3), #slide1:checked ~ .slider-prev-next-control label:nth-child(2) {
  display: block;
  float: right;
  margin-right: 5px;
}

#slide1:checked ~ .slider-prev-next-control label:nth-child(5), #slide5:checked ~ .slider-prev-next-control label:nth-child(4), #slide4:checked ~ .slider-prev-next-control label:nth-child(3), #slide3:checked ~ .slider-prev-next-control label:nth-child(2), #slide2:checked ~ .slider-prev-next-control label:nth-child(1) {
  display: block;
  float: left;
  margin-left: 5px;
}

#slide1:checked ~ .slider-prev-next-control label:nth-child(5)::after, #slide5:checked ~ .slider-prev-next-control label:nth-child(4)::after, #slide4:checked ~ .slider-prev-next-control label:nth-child(3)::after, #slide3:checked ~ .slider-prev-next-control label:nth-child(2)::after, #slide2:checked ~ .slider-prev-next-control label:nth-child(1)::after {
  content: "";
  padding-left: 8px;
}

#slide5:checked ~ .slider-dot-control label:nth-child(5), #slide4:checked ~ .slider-dot-control label:nth-child(4), #slide3:checked ~ .slider-dot-control label:nth-child(3), #slide2:checked ~ .slider-dot-control label:nth-child(2), #slide1:checked ~ .slider-dot-control label:nth-child(1) {
  background: #333;
}

#slide5:checked ~ .slider-wrapper article:nth-child(5) .info, #slide4:checked ~ .slider-wrapper article:nth-child(4) .info, #slide3:checked ~ .slider-wrapper article:nth-child(3) .info, #slide2:checked ~ .slider-wrapper article:nth-child(2) .info, #slide1:checked ~ .slider-wrapper article:nth-child(1) .info {
  opacity: 1;
}

#slide1:checked ~ .slider-wrapper .inner {
  margin-left: 0%;
}
#slide2:checked ~ .slider-wrapper .inner {
  margin-left: -100%;
}
#slide3:checked ~ .slider-wrapper .inner {
  margin-left: -200%;
}
#slide4:checked ~ .slider-wrapper .inner {
  margin-left: -300%;
}
#slide5:checked ~ .slider-wrapper .inner {
  margin-left: -400%;
}
/*---- TABLET ----*/
@media only screen and (max-width: 850px) and (min-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }
}
/*---- MOBILE----*/
@media only screen and (max-width: 450px) {
  .slider-wrapper {
    border-radius: 0;
  }

  .slider-wrapper .info {
    opacity: 0;
  }
}

}
