/* Add these lines at the very top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700;800&family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Telugu&display=swap');

:root {
  --bs-primary: #0d6efd; /* Bootstrap primary color */
  --bs-secondary: #6c757d; /* Bootstrap secondary color */
  --bs-success: #198754; /* Bootstrap success color */
  --bs-info: #0dcaf0; /* Bootstrap info color */
  --bs-warning: #ffc107; /* Bootstrap warning color */
  --bs-danger: #dc3545; /* Bootstrap danger color */
  --bs-light: #f8f9fa; /* Bootstrap light color */
  --bs-dark: #212529; /* Bootstrap dark color */
  --brown-clr: #534439; /* Brown color for the logo */
  --brown-light: #eab88c;
  --brand-green: #deede8;
}

html {
  scroll-padding-top: 80px;
}
.titlesemmiFont {
  font-family: 'Montserrat Alternates', serif;
  font-weight: 600;
  color: var(--brown-clr);
  font-size: 28px;
  text-transform: uppercase;
}

.subtitlewho {
  font-family: 'Poppins', serif;
  font-weight: 400;
  color: var(--brown-clr);
  font-size: 24px; /* Default for mobile */
}

/* Full-width navbar background */
.navbar-wrapper {
  width: 100%;
  background-color: none ; /* Match Bootstrap's default navbar color */
}

.navbar-wrapper .navbar {
  height: 140px;
}

/* Centered logo positioning */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Space distribution for left/right links */
.navbar-nav.left-links {
  margin-right: auto;
}

.navbar-nav.right-links {
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: var(--brown-clr);
  font-family: 'Poppins', serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.navbar-nav .nav-item {
  padding-left: 15px;
  padding-right: 15px;
}


.navbar-nav .nav-item:first-child {
  padding-left: 0;
}

.navbar-nav .nav-item:last-child {
  padding-right: 0;
}

@media (max-width: 992px) {
  .navbar-nav .nav-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  
  .navbar-nav .nav-item:first-child {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-nav .nav-item:last-child {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .navbar-nav .nav-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  
  .navbar-nav .nav-item:first-child {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-nav .nav-item:last-child {
    padding-right: 0;
    padding-right: 0;
  }
}
/* New Navbar */
 /* Initial transparent navbar */
 .navbar {
  background-color: transparent !important;
  transition: all 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
  background-color: rgba(248, 249, 250, 0.9) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 80px;
}


/* Centered logo positioning */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile first */
.navbar.scrolled .navbar-brand {
  width: 120px;
  height: auto;
}

/* Desktop adjustments */
@media (min-width: 992px) {
  .navbar.scrolled .navbar-brand {
    width: 150px;
    height: auto;
  }
}

/* Space distribution */
.left-links {
  margin-right: auto;
}

.right-links {
  margin-left: auto;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-brand {
      position: static;
      transform: none;
      display: block;
      text-align: center;
      margin: 0 auto;
  }
  
  .left-links,
  .right-links {
      margin: 0;
  }
  
  .navbar-collapse {
      text-align: center;
  }
  
  /* Mobile always has solid background */
  .navbar {
      background-color: rgba(248, 249, 250, 0.98) !important;
  }
}
/* End Navbar */

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-brand {
      position: static;
      transform: none;
      display: block;
      text-align: center;
      margin: 0 auto;
  }
  
  .navbar-nav.left-links,
  .navbar-nav.right-links {
      margin: 0;
  }
  
  /* Center align mobile menu items */
  .navbar-collapse {
      text-align: center;
  }
}

/* Hero Section Styles */
/* .hero-section {
  height: 100vh; 
  min-height: 600px; 
  min-height: clamp(500px, 100vh, 800px);
  background: var(--brand-green) url("../images/hero-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
  
} */
.hero-section {
  min-height: 100svh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: var(--brand-green) url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  /* Initial padding will be overridden by JS */
  padding: 6rem 0rem;
}

.hero-title {
  font-family: 'Montserrat Alternates', serif;
  font-size: 5.875rem; /* 94px equivalent in rem (94/16) */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--brown-clr); /* Brown color for the title */
  
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.titlemarg{
  margin-top: 2rem;
}

.discoverblock {
  width: 290px;
  text-transform: uppercase;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  /* text-overflow: ellipsis; */
}

.badge-container {
  width: 100px;
  height: 100px;
}

@media (min-width: 768px) {
  .badge-container {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .badge-container {
    width: 174px;
    height: 174px;
  }
}

.discoverblock .card {
  background-color: transparent;
}

.btn-darkbrown {
  background-color: var(--brown-clr);
  border-color: var(--brown-clr);
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-darkbrown:hover,
.btn-darkbrown:active {
  background-color: rgba(83, 68, 57, 0.7); /* Semi-transparent brown */
  border-color: var(--brown-clr);
  color: var(--bs-light)
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 280px;
  color: var(--brown-clr);
  text-align: left;
}

.glass-card h2::after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: #212529;
  right: 25px;
  top: 25px;
  border-radius: 50%;
}

.glass-card span.tagging {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
}

.custom-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  counter-increment: step-counter;
  margin-bottom: 1rem;
  padding-left: 25px;
  text-align: left;
  color: var(--brown-clr);
}
.custom-list li::before {
  content: counter(step-counter, decimal-leading-zero);
  color: var(--brown-clr);
  font-weight: bold;
  margin-right: 0.75rem;
  position: absolute;
  left: 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-section {
    min-height: 500px;
    padding: 3rem 0rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.25rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
/* Who we are styles */
.who-we-are {
  background: url("../images/arrow-who.png") no-repeat 15% 10%;
  padding-top: 1em;
}

#who-we-are {
  border-bottom: 1px solid var(--brand-green);
}


/* Team */
.none-of-us {
  font-family: 'Montserrat Alternates', serif;
  font-size: 28px; /* Default for mobile */
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brown-clr);
}

.meetstar {
  background: url("../images/star.png") no-repeat 0% 0%;
  padding-left: 50px;
}

.user-carousel {
  padding: 40px 0;
}

.user-card {
  text-align: left;

  /* padding: 20px; */
}

.user-avatar {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.carousel-item {
  border-radius: 30px;
}

.carousel-item.active .user-avatar {
  transform: scale(1.05);
}

.user-name {
  font-family: 'Montserrat Alternates', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.user-title {
  color: #6c757d;
  margin-bottom: 10px;
}

.user-label {
  display: inline-block;
  /* background: var(--brown-clr); */
  padding: 5px 0px;
  border-radius: 20px;
  font-size: 1.2rem;
  color: var(--brown-clr);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev { left: -25px; }
.carousel-control-next { right: -25px; }

@media (max-width: 768px) {
  .user-avatar {
      width: 120px;
      height: 120px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
      width: 40px;
      height: 40px;
  }
}




/* Our Vision */
.ourvision-block {
  border: 1px solid var(--brown-light);
  background-color: var(--bs-light);
  padding: 1.3em;
}

.overvision {
  /* background-color: var(--brand-green); */
  padding-top: 3em;
  padding-bottom: 3em;
}

.ourvision-block h4 {
  font-family: "Montserrat", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-clr);
}

/* Key Features */

.keyfeatures {
  padding: 60px 0; /* Default for mobile */
}

.keyfeatures h2  {
  color: var(--brown-clr);
  font-family: 'Montserrat Alternates', serif;
}

.keyfeatures h4 {
  font-family: montserrat, serif;
  font-weight: 700;
  font-size: 18px;
}

.keyfeatureicon {
  width: 60px;
  height: 60px;
  margin: 40px 0;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0d6efd; /* Bootstrap primary color */
}
.feature-card {
  height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background-color: #feedd8;
  
}

.featureborder {
  border: 1px solid var(--brown-light);
}

.featureborder .col-md-6 {
  border-right: 1px solid var(--brown-light);
  background-color: var(--brand-green);
}

.featureborder .col-md-6:last-child {
  border-right: none;
}

/* Fabulous Section */
.fabulousection {
  background-color: var(--brand-green);
  padding-top: 60px; /* Default for mobile */
  padding-bottom: 30px; /* Default for mobile */
}

.fabulousection h2 {
  
  color: var(--brown-clr);
  margin-bottom: 20px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
}

.brdertop {
  border-top: 1px solid var(--brown-clr);
  margin-top: 10px;
}

.fabsubtitle div:first-child,
.fabsubtitle div:last-child {
  width: 260px;
}

/* Discover our masterpieces */
.projects-section {
  padding: 60px 0; /* Default for mobile */
  overflow: hidden;
  background-color: var(--brand-green);
}

.projects-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  cursor: grab;
  padding-left: 15px; /* Important to align nicely */
  /* margin-left: 15%; */
}

.projects-carousel:active {
  cursor: grabbing;
}

.projects-carousel::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: calc(100% - 30px);
  height: 360px; /* Default for mobile */
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0 15px;
  min-width: 0;
  background: #fff;
  /* border-radius: 12px; */
  /* padding: 25px 20px; */
  /* margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid transparent; */
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 82%;
  background: rgba(232, 186, 147, 0.9);
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  top: 0;
  background: rgba(232, 186, 147, 0.9);
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.project-title a {
  font-size: 0.75rem;
}

.project-address {
  font-size: 12px;
  color: #fff;
  margin-bottom: 15px;
}

.project-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* pointer-events: none; */
}

.project-card:hover .project-btn-container {
  opacity: 1;
  transform: translateY(0);
  /* pointer-events: auto; */
}

.project-content {
  z-index: 1;
}

.project-btn {
  background-color: #e8ba93;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 15px 30px; /* Adjusted for mobile */
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.project-btn:hover {
  background-color: #e8ba93;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-year {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  font-family: 'Montserrat Alternates', serif;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--brown-clr);
  font-weight: 700;
}

.selectedprojects-title {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--brown-clr);
  font-weight: 600;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e8ba93;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.teamuser-container .project-card {
  height: auto;
  box-shadow: none;
}

/* Team */
.meet-our-team {
  background-color: var(--brand-green);
  padding: 4rem 0;
}

.language-content {
    position: absolute;
    width: 100%;
    padding: 0 30px;
    top: -50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.language-content.active {
    opacity: 1;
}
.english {
    color: #2c3e50;
}
.telugu {
    color: var(--bs-dark);
    font-size: 1.2em;
    line-height: 1.8;
    font-family: 'Noto Sans Telugu', sans-serif;
}

.telugu .card-title {
  font-size: 1.2rem;
}

/* Responsive Tweaks */
@media (min-width: 768px) {
  .project-card {
      width: calc(45% - 30px); /* Two cards full, part of third visible */
  }
  .teamuser-container .project-card {
    width: calc(30% - 30px);
  }
}

@media (min-width: 992px) {
  .project-card {
      width: calc(40% - 30px);
  }
  .project-card {
    height: 560px;
  }
}



/* FAQs */

#faqAccordion .accourdion-item,
.accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  background: none;
  font-size: 18px;
}

.accordion-item {
  border: none;
}

.accordion-button:not(.collapsed),
.accordion-item:first-of-type .accordion-button:not(.collapsed) {
  background-color: var(--brown-light);
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

#faqAccordion .accordion-header {
  border: 1px solid var(--brown-light);
  border-radius: 0;
  border-bottom: 0;
}

#faqAccordion .accordion-item:last-of-type .accordion-header {
  border-bottom: 1px solid var(--brown-light);
}

.accordion-button{
  padding-top: 25px;
  padding-bottom: 25px;
}


/* Footer */
.footer {
  background-color: var(--brand-green);
  padding: 40px 0 0;
}

.footer h5 {
  font-size: 2rem; /* Default for mobile */
  color: var(--brown-clr);
  margin-bottom: 20px;
  font-family: 'Montserrat Alternates', serif;
  font-weight: 600;
}

.phnumber {
  font-size: 30px;
}

.footer .logo {
  width: 200px; /* Adjust logo size */
}

.footer p a {
  color: var(--brown-clr);
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 10px;
  width: 300px;
  margin: 0 auto;
  justify-content: center;
}

.icon-stack {
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  position: relative;
}


/* Custom circle colors */
.icon-stack .fa-circle { color: var(--brown-clr); } /* Facebook */
.icon-stack .fab { font-size: 24px;}

.footer .copyright {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.7;
}

/* Back to Top */
#backToTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: none;
  background: #6c4c1b;
  color: #fff;
  border: none;
  border-radius: 10px;
  line-height: 27px;
  width: 174px;
  height: 48px;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.2s;
}

/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 40px;
    background-color: var(--brown-clr);
}

.btn-floating.phone:hover {
    background-color: var(--brown-light);
}

/* Project Details Page */

/* Top project gallery */
.top-project-gallery {
  padding-top: 2em;
  background-color: var(--brand-green);
}

@media (min-width: 768px) {
  .top-project-gallery {
    padding-top: 6em;
  }
}

@media (min-width: 992px) {
  .top-project-gallery {
    padding-top: 8em;
  }
}

.top-project-gallery .nav-pills .nav-link {
  line-height: 16px;
  padding: 0.5em 1.5em;
  color: var(--brown-clr);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.top-project-gallery .nav-item:first-child .nav-link {
  padding-left: 0;
}

.top-project-gallery .nav-pills .nav-link.active, .top-project-gallery  .nav-pills .show>.nav-link {
  background-color: #ffffff;
  color: var(--brown-clr);  
  font-weight: 600;
  text-transform: uppercase;
}

.project-gal-container {
  --gallery-height: 65vh; /* Control height with this variable */
  --gallery-min-height: 400px;
  --gallery-max-height: 800px;
}

/* Media query based on height */
@media (max-height: 850px) {
  .project-gal-container {
    --gallery-height: 90vh;
    --gallery-min-height: 300px;
  }
}

@media (max-height: 500px) {
  .project-gal-container {
    --gallery-height: 40vh;
    --gallery-min-height: 250px;
  }
}

@media (min-width: 1600px) and (max-height: 700px) {
  .project-gal-container {
    --gallery-height: 78vh;
    --gallery-min-height: 300px;
  }
}

.rounded-img-container {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;
}

.rounded-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rounded-img-container:hover .rounded-img {
  transform: scale(1.03);
}

.gallery-row {
  height: min(var(--gallery-height), var(--gallery-max-height));
  min-height: var(--gallery-min-height);
}

/* Square thumbnail container */
.square-thumb-container {
  aspect-ratio: 1/1; /* Makes it square */
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .project-gal-container {
      --gallery-height: 50vh;
      --gallery-min-height: 350px;
  }
  
  .gallery-row {
      flex-direction: row;
      height: auto;
  }
  
  /* .col-lg-8, .col-lg-4, .col-md-8, .col-md-6 {
      height: auto !important;
      min-height: 300px;
  }
   */
  .flex-column {
      gap: 20px;
  }
  
  .square-thumb-container {
      aspect-ratio: unset;
      height: 200px; /* Fixed height on mobile */
  }
}

@media (max-width: 767.98px) {
  .project-gal-container {
      --gallery-height: auto;
      --gallery-min-height: 300px;
  }
}

.overview-section {
  padding: 20px 0 60px;
  position: relative;
}
.overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--brand-green);
  z-index: -1;
  height: 243px; /* Mobile first */
}

@media (min-width: 768px) {
  .overview-section::before {
    height: 150px; /* Desktop */
  }
}

.facilities-section {
  padding: 60px 0;
}
.facility-item {
  padding: 5px 20px;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border-top: 1px solid var(--brown-light);
  border-left: 1px solid var(--brown-light);
}

.facility-item h5 {
  font-weight: 400;
  font-size: 1rem;
}

.facilitywrapper,
.aboutcontent {
  max-width: 850px;
}

.facilitywrapper .col-md-4:nth-child(3),
.facilitywrapper .col-md-4:nth-child(6),
.facilitywrapper .col-md-4:nth-child(9) {
  border-right: 1px solid var(--brown-light);
}

.facilitywrapper .col-md-4:nth-child(7),
.facilitywrapper .col-md-4:nth-child(8),
.facilitywrapper .col-md-4:nth-child(9) {
  border-bottom: 1px solid var(--brown-light);
}


.facility-icon {
  width: 40px;
  height: 40px;
}

/* Get Live House Tour */

.custom-form {
  border: 6px solid #ffffff;
  border-radius: 30px;
  padding: 2rem;
  margin: 0rem auto;
  max-width: 600px;
  background-color: #2c504c;
}

.custom-form h2 {
  color: #ffffff;
}

.invalid-feedback {
  color: #ebacb2;
}

.cmclassicname {
  flex: 0 0 40%;
}

.cmclassicname h2 {
  line-height: 18px;
}

.cmclassicname span {
  font-size: 12px;
  color: var(--brown-light);
  font-weight: 600;
}

#interest {
  border-radius: 25px;
}

.cmclassicname h2,
.facilityitem,
.aboutcontent h2  {
  font-family: 'Montserrat Alternates', serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--brown-clr);
}

.aboutcontent p {
  font-size: 16px;
  line-height: 28px;
  font-family: 'Poppins', serif;
  padding-right: 30px;
}

.cmclassicaddress {
  font-size: 16px;
  flex: 0 0 40%;
  border-left: 10px solid #ffffff;
  padding-left: 30px;
}

.cmclassicaddress p {
  margin: 0;
  font-size: 14px; /* Mobile first */
}

@media (min-width: 768px) {
  .cmclassicaddress p {
    font-size: 16px; /* Desktop */
  }
}

.facilityitem,
.aboutcontent h2 {
  margin-top: 1.5em; /* Mobile first */
  margin-bottom: 1em;
  font-size: 30px;
  font-weight: 700;
  color: var(--brown-light);
}

@media (min-width: 768px) {
  .facilityitem,
  .aboutcontent h2 {
    margin-top: 3em; /* Desktop */
  }
}

.aboutcontent h2 {
  margin: 0 0 1em;
  text-transform: uppercase;
}

/* Floor Plan Section */
.floor-plans-section {
  background-color: #2c504c;
}

.floor-plans-section h2 {
  font-family: 'Montserrat Alternates', serif;
  font-size: 50px;
  font-weight: 600;
  color: var(--brown-light);
}

.btn-greenbutton {
  background-color: #e2f0cc;
  color: #9c9e86;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
.radiobuttons .btn-greenbutton {
  border: 1px solid #fff;
  background: transparent;
  color: #9c9e86;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: #e2f0cc;
  color: #9c9e86;
}



.btn-greenbutton .bi-arrow-right {
  font-size: 2rem;
  line-height: 18px;
  color: #000;
}

.btn-greenbutton:hover {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

#roomTabsContent h3,
#roomTabsContent i.bi,
.feature-list i.fas,
.specialfeatures .feature-icon i {
  color: var(--brown-light);
}



#roomTabsContent .feature-list p,
#roomTabsContent p,
.floor-plans-section p {
  color: #fff;
}

.specialfeatures ul li {
  list-style: none;
}

#roomTabsContent .specialfeatures ul li i.bi {
  color: var(--brand-green);
 
}

.specialfeatures .feature-card-preview .feature-icon i {
  font-size: 1.5rem;
}

.specialfeatures .feature-card-preview p {
  margin-bottom: 0;
}


.apartment-info {
  background-color: #819794;
  border-right: 1px solid #2c504c;
  border-bottom: 1px solid #2c504c;
  
}

.tablestructure .apartment-info:nth-child(4),
.tablestructure .apartment-info:nth-child(5),
.tablestructure .apartment-info:nth-child(6) {
  border-bottom: 1px solid #2c504c;
}


#roomTabsContent h2 {
  font-family: poppins, serif;
  font-size: 30px;
}

#roomTabsContent .feature-list {
  margin-bottom: 0;
}

/* Map Section */
.map-section {
  position: relative;

}
.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2c504c;
  width: 100%;
  height: 340px;
}

.map-container {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 500px;
  margin: 2rem 0;
}



.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.address-overlay {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 360px;
  max-width: 100%;
}

.address-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-family: 'Montserrat Alternates', serif;
}

.address-content {
  line-height: 1.6;
  color: #fff;
  background-color: #2c504c;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 6px solid #fff;
}

.address-content p {
  color: #acacac;
  font-size: 1em;
  font-family: 'Poppins', serif;
}

@media (max-width: 768px) {
  .address-overlay {
      position: relative;
      top: 0;
      right: 0;
      width: 100%;
      margin-top: 20px;
  }
  
  .map-container {
      height: 400px;
  }
}

.tab-content {
  padding: 10px 0;
}
.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 20px; /* Adjusted for mobile first */
}

@media (min-width: 768px) {
  .nav-tabs {
    margin-bottom: 40px; /* Adjusted for tablets */
  }
}

@media (min-width: 992px) {
  .nav-tabs {
    margin-bottom: 50px; /* Adjusted for desktops */
  }
  
  .tab-content {
    padding: 40px 0;
  }
}
.nav-tabs .nav-link {
  font-weight: 400;
  border: 1px solid #e2f0cc;
  border-radius: 20px;
  margin: 0 5px;
  padding: 8px 20px;
  color: #e2f0cc;
  background-color: transparent;
  transition: all 0.3s ease;
}
.nav-tabs .nav-link:hover {
  color: #858772;
  background-color: #e2f0cc;
  border-color: #ffffff;
}
.nav-tabs .nav-link.active {
  color: #858772;
  background-color: #e2f0cc;
  border-color: #ffffff;
}
.feature-list {
  list-style-type: none;
  padding-left: 0;
}
.feature-list li {
  padding: 8px 0;
}
.room-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.tabs-container {
  display: flex;
  justify-content: center;
}

.projects-sectionnew {
  background:none;
}



/* Calender */

.calendar-container {
  max-width: 800px;
  margin: 20px auto;
  position: relative;
  padding: 0 0 20px; /* Added bottom padding for arrows */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.calendar-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.calendar-scroll::-webkit-scrollbar {
  display: none;
}

.date-block {
  flex: 0 0 120px;
  height: 120px;
  background: #2c504c;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.date-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.date-block.active {
  background: #deede8;
  color: white;
}

.weekday {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
}

.date-block.active .weekday,
.date-block.active .date {
  color: #000;
}

.date {
  font-family: Poppins, sans-serif;
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 3px;
  line-height: 40px;
  color: #ffffff;
}

.month {
  font-size: 20px;
  text-transform: uppercase;
  color: #adacaa;
}

.date-block.active .month {
  color: #000;
  font-size: 20px;
}

.scroll-controls {
  /* position: absolute; */
  bottom: 0;
  left: 0px;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.scroll-btn {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  border: none;
}

.scroll-btn:hover {
  background: #f5f5f5;
}


#projectTabs {
  transition: all 0.3s ease;
  z-index: 999;
}

/* Default: Horizontal layout */
#projectTabs:not(.fixed-vertical) {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

/* On scroll: fixed & vertical */
#projectTabs.fixed-vertical {
  width: 100%;
  max-width: 300px;
  position: fixed;
  top: 60px;
  right: 0px;
  left: 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: var(--brand-green);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}



#projectTabs.fixed-vertical .nav-item:first-child {
  display: none;
}

#projectTabs.fixed-vertical .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}

#projectTabs .nav-link {
  color: #555;
  background-color: transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  padding: 0rem 0.65rem; 
  font-size: 0.65rem; 
}


@media (min-width: 768px) {
  #projectTabs:not(.fixed-vertical) {
    gap: 10px;
  }
  #projectTabs.fixed-vertical {
    width: 100%;
    max-width: 190px;
    top: 100px;
    left: auto;
    right: 20px;
    padding: 12px;
    border-radius: 12px;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  #projectTabs.fixed-vertical .nav-item {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  #projectTabs .nav-link {
    padding: 0.5rem 0.65rem; 
  }
}

@media (min-width: 768px) {
  #projectTabs .nav-link {
    padding: 0.75rem 1rem; 
    font-size: 1rem; 
  }
}

@media (min-width: 1200px) {
  #projectTabs .nav-link {
    padding: 1rem 1.25rem; 
    font-size: 1.125rem; 
  }
}
/* Active tab style */
#projectTabs .nav-link.active {
  background-color: #ffffff; /* Bootstrap primary */
  color:var(--brown-clr);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
  transform: scale(1.05);
}


.video-container {
  position: relative;
  width: 100%;
  margin: 0 0;
  border-radius: 30px;
  overflow: hidden;
  background-color: #000;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.custom-video-player {
  width: 100%;
  height: 100%;
  display: none;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls {
  opacity: 1;
}

.control-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.play-button {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 5;
  color: #ffff;
  font-size: 3em;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  color: var(--brown-light); /* Change to a highlighted color on hover */
}

.overvision {
  border-bottom: 1px solid var(--brand-green);
}

.modal {
  background-color: rgba(157, 194, 194, 0.8);
}

.modal-content {
  border-radius: 20px !important;
  overflow: hidden;
  width: 518px;
  background-color: #f8fafb;
}
.modal-header {
  background-color: #f7f6f2;
  background-image: url('../images/get-call-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 240px;
  padding: 0;
  position: relative;
  border: none;
  margin-top: 45px;
  border-radius: 0;
}
.header-text {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--brown-clr);
  text-align: left;
  max-width: 45%;
  font-family: 'Montserrat Alternates', serif;
  font-weight: 700;
}
.header-text h3 {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.25rem; /* Mobile first: 20px equivalent in rem (20/16) */
}

.header-text p {
  font-size: 1rem; /* Mobile first: 16px equivalent in rem (16/16) */
}

@media (min-width: 768px) {
  .header-text h3 {
    font-size: 1.625rem; /* Tablet: 26px equivalent in rem (26/16) */
  }

  .header-text p {
    font-size: 1.225rem; /* Tablet: 19.6px equivalent in rem (19.6/16) */
  }
}

@media (min-width: 1200px) {
  .header-text h3 {
    font-size: 1.625rem; /* Desktop: 32px equivalent in rem (32/16) */
  }

  .header-text p {
    font-size: 1.225rem; /* Desktop: 24px equivalent in rem (24/16) */
  }
}


.form-section {
  padding: 25px;
}
.form-control {
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 15px;
  border: 1px solid #a5c8c8;
}
.btn-submit {
  border-radius: 50px;
  padding: 10px 30px;
  width: 100%;
  font-weight: bold;
  background-color: #0d6efd;
  border: none;
}
.logo-section {
  text-align: center;
  padding: 15px 0 0;
}
.logo-section img {
  max-height: 60px;
}

.modal-header .btn-close {
  position: absolute;
  width: 24px;
  height: 24px;
  color: #000;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 0;
  font-size: 12px;
  margin-top: -35px;
}


/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.btn-bounce {
  background: #4CAF50;
  animation: bounce 1s infinite;
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.btn-shake {
  animation: shake 0.8s infinite;
}



/* Pulse Animation (Bonus) */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.btn-pulse {
  animation: pulse 1.5s infinite;
  
}

/* Hover Pause */
.btn-pulse:hover {
  animation-play-state: paused;
  filter: brightness(1.1);
}


.fixed-rotator {
  /* position: absolute;
  top: 50%;
  left: 50%; */
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  
  /* Rotation animation */
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: translate(-0%, -0%) rotate(0deg); }
  to { transform: translate(-0%, -0%) rotate(360deg); }
}

/* Optional content inside (stays unrotated) */
.rotator-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-0%, -0%) rotate(0deg);
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  animation: spin-reverse 3s linear infinite;
}

@keyframes spin-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

#typed-multiple {
  /* background-color: var(--brown-clr); */
  /* color: #ffffff; */
  /* display: block; */
}

/* Cloud Container */
.cloud-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* background-color: #0d6efd; */
}

 /* Cloud Images */
 .cloud-img {
  position: absolute;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Why Choose Us */

.why-choose-us {
  background-color: var(--brand-green);
  padding: 80px 0;
}
.image-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-block {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.feature-block:hover {
  transform: translateY(-5px);
  border-left-color: var(--brown-light);
}
.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--brown-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.icon-wrapper i {
  font-size: 20px;
  color: var(--brown-clr);
}



/* ...existing styles... */
.why-choose-us .feature-block {
 

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s;
}
.why-choose-us .feature-block:hover {
  border-left-color: var(--brown-light);
}
.why-choose-us .icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--brown-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.why-choose-us .icon-wrapper i {
  font-size: 22px;
  color: var(--brown-light);
}
.why-choose-us .feature-block h4 {
  margin-bottom: 10px;
  margin-top: 0;
}
.why-choose-us .feature-block p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-choose-us .feature-block .d-flex.align-items-center {
  flex-direction: column;
  align-items: flex-start !important;
  height: 100%;
}

/* Swiper Slider*/

/* Swiper Container */
.swiper-container {
    width: 100%;
    max-width: 900px;
    padding: 20px 0 0px;
    position: relative;
}

.swiper {
  width: 100%;
  max-width: 900px;
  height: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #fff;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--brown-clr);
}
.why-choose-one {
  background: #fff url(../images/why-us-03.jpg) center top no-repeat;
  background-size: 100%;
}
  .why-choose-two {
  background: #fff url(../images/why-us-02.jpg) center top no-repeat;
  background-size: 100%;
}
.why-choose-three {
  background: #fff url(../images/why-us-01.jpg) center top no-repeat;
  background-size: 100%;
}
.why-choose-four {
  background: #fff url(../images/why-us-04.jpg) center top no-repeat;
  background-size: 100%;
}
.why-choose-five {
  background: #fff url(../images/why-us-05.jpg) center top no-repeat;
  background-size: 100%;
}
.card {
    width: 100%;
    padding: 30px;
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%); */
    color: #534439;
    border-radius: 0;
    border-top: 0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-content {
    font-size: 0.9rem;
    opacity: 0.9;
}

.swiper-pagination {
  bottom: 42px !important;
  margin-bottom: -40px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 16px;
    height: 16px;
}

.swiper-pagination-bullet-active {
    background: var(--brown-light);
}


/* .quote-slider {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
.quote-icon {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 1rem;
}
.testimonial-container .testimonial-img {
    background: linear-gradient(135deg, #2c504c 0%, #4e726e 100%);
    border-radius: 50px;
    -webkit-border-radius: 80px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 80px;
    -moz-border-radius-bottomright: 0;
    border-radius: 80px;
    border-bottom-right-radius: 0;
    padding-top: 40px;
}
.testimonial-img {
    width: 317px;
    object-fit: cover;
    border-radius: 0.375rem;
    min-height: 300px; 
}
.carousel-indicators {
    bottom: -50px;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 5px;
}
.carousel-indicators [data-bs-target].active {
    background-color: var(--brown-clr);
}

.blockquote {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.blockquote .blockquote-content {
  position: relative;
  /* padding-left: 1.5em; */
  padding-right: 1.5em;
  border-top: 2px solid var(--brown-light);
  border-bottom: 2px solid var(--brown-light);
  padding-top: 1em;
  padding-bottom: 1em;
  margin-left:0.5em; 
  margin-right:0.5em;
}

.languageswitching {
      position: relative;
      min-height: 200px;
    }

    .language-content {
      position: absolute;
      top: 96px;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .language-content.active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }
.language-content.telugu p{
  font-size: 0.75em;
}
@media (min-width: 576px) {
  .blockquote .blockquote-content {
    margin-left: 1.5em;
  }
}

@media (min-width: 768px) {
  .blockquote .blockquote-content {
    margin-left: 2em;
  }
}

@media (min-width: 1200px) {
  .blockquote .blockquote-content {
    margin-left: 3em;
  }
}

.blockquote .blockquote-content::before,
.blockquote .blockquote-content::after {
  position: absolute;
  font-size: 4.5em;
  color: var(--brown-light);
  font-family: serif;
  line-height: 1;
  background: var(--brand-green);
  padding: 0 0;
  z-index: 3;
  font-family: 'Montserrat Alternates', serif;
}

.blockquote .blockquote-content::before {
  content: "“";
  left: 0em;
  top: -20px;
  line-height: 80px;
  height: 34px;
}

.blockquote .blockquote-content::after {
  content: "”";
  right: 0em;
  bottom: -34px;
  line-height: 35px;
  z-index: 20;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .swiper-slide {
        width: 250px;
        height: 350px;
    }
}


@media (max-width: 992px) {
  .why-choose-us .feature-block {
      min-height: unset;
      height: auto;
  }
 
}
/* ============================
   Responsive Styles (min-width)
   ============================ */

@media (min-width: 576px) {
  .overvision {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media (min-width: 768px) {
  .subtitlewho { font-size: 36px; }
  .none-of-us { font-size: 40px; }
  .overvision { padding-top: 6em; padding-bottom: 6em; }
  .keyfeatures { padding: 90px 0; }
  .fabulousection { padding-top: 90px; padding-bottom: 45px; }
  .projects-section { padding: 90px 0; }
  .project-card { height: 460px; width: calc(45% - 30px); }
  .teamuser-container .project-card { width: calc(30% - 30px); }
  .cmclassicname {
    flex: 0 0 30%;
  }
  .project-btn { padding: 20px 40px; }
  .footer h5 { font-size: 2.5rem; }
  .user-avatar { width: 120px; height: 120px; }
  .carousel-control-prev, .carousel-control-next { width: 40px; height: 40px; }
}

@media (min-width: 992px) {
  .overvision { padding-top: 7em; padding-bottom: 7em; }
  .project-card { width: calc(40% - 30px); height: 420px; }
  .project-overlay { top: 70%; }
  .floor-plans-section { padding: 5em 0rem 2em; }
}

@media (min-width: 1200px) {
  .subtitlewho { font-size: 49px; }
  .none-of-us { font-size: 50px; }
  .keyfeatures { padding: 120px 0; }
  .fabulousection { padding-top: 120px; padding-bottom: 60px; }
  .projects-section { padding: 0px 0 120px; }
  .project-card { height: 560px; }
  .project-overlay { top: 82%; }
  .project-btn { padding: 25px 45px; }
  .footer h5 { font-size: 3.33rem; }
  .titlemarg{
    margin-top: 8rem;
  }
  
}

@media (min-width: 991.98px) {
  .floor-plans-section { padding: 5em 0rem 2em; }
}

@media (max-width: 767px) {  
  .project-overlay {  
    top: 72%;
  }
  .btn-greenbutton {
    font-size: 0.80rem;
  }
  html, body {
    overflow-x: hidden;
  }
  
  [data-aos] {
    will-change: transform;
  }
  
}

/* Custom responsive styles */
@media (max-width: 991.98px) {
  .navbar-wrapper .navbar {
    height: 60px;
  }
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 120px;
  }
  
  .navbar-toggler {
    order: -1;
    margin-right: 0;
  }
  
  #navbarNav {
    background: white;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .navbar-nav {
    flex-direction: column;
  }
  
  .nav-item {
    padding: 5px 0;
    /* border-bottom: 1px solid #eee; */
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .left-links {
    margin-right: auto;
  }
  
  .right-links {
    margin-left: auto;
  }
  
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 245px;
  }
}