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

body {
  font-family: "Libre Baskerville", sans-serif;
  background-color: #0e0e0e;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", Times, serif;
  color: #e0a64b;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000;
  position: relative;
  z-index: 1000;
}

.logo {
  color: #ffc44d;
  font-size: 20px;
  margin-left: 120px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.4s ease;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffc44d;
}

.call-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #e0a64b, #f6d365);
  padding: 10px 20px;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.call-button:hover {
  transform: scale(1.05);
}

.call-button i {
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #f0cc6f;
  transition: 0.3s;
}

/* Hero Section */
.hero-image {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.8s ease;
}

.hero-image img {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: cover;
}

.hero-image.visible {
  opacity: 1;
  transform: scale(1);
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 80px 40px;
  background-color: #0e0e0e;
  color: #ccc;
  gap: 40px;
  margin-left: 100px;
}

.vertical-line {
  width: 2px;
  background-color: #ccc;
  height: auto;
  min-height: 100%;
  opacity: 0.2;
  margin-left: 30px;
}

.about-text {
  flex: 1 1 45%;
  min-width: 300px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

.about-text h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ccc;
}

.about-text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #f6d365;
  margin-bottom: 20px;



  
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
}

.about-stats {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  min-width: 300px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.about-stats.visible {
  opacity: 1;
  transform: scale(1);
}

.stat h3 {
  font-size: 32px;
  font-weight: bold;
  color: #f6d365;
  margin-bottom: 5px;
}

.stat p {
  color: #ccc;
  font-size: 14px;
}

/* Why Choose Section */
.why-choose {
  padding: 60px 40px;
  background-color: #0e0e0e;
  color: #ccc;
  margin-left: 100px;
}

.choose-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.choose-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.choose-header h2 {
  font-size: 36px;
  color: #f6d365;
  margin-bottom: 10px;
}

.choose-header p {
  font-size: 16px;
  color: #aaa;
}

.choose-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.choose-image {
  flex: 1 1 400px;
  max-width: 370px;
  height: 450px;
  border: 2px solid #f6d365;
  position: relative;
  overflow: visible;
  border-bottom-left-radius: 225px;
  border-bottom-right-radius: 225px;
  padding: 0px;
  opacity: 0;
  z-index: 2;
  transform: scale(0.95);
  transition: all 0.8s ease;
  margin-left: 40px;
}

.choose-image.visible {
  opacity: 1;
  transform: scale(1);
}

.choose-image img {
  max-width: 370px;
  height: 450px;
  display: block;
  z-index: -1;
  transform: translate(0px, 0px);
  border-radius: 0 0 255px 255px;
  position: relative;
  animation: slideInImage 1.2s ease forwards;
  opacity: 0;
}

.choose-image.visible img {
  animation: slideInImage 1.2s ease forwards;
}

@media (max-width: 768px) {
  .choose-image img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    display: block;
    margin: 0 auto;
  }
}

@keyframes slideInImage {
  from {
    transform: translate(0px, 0px);
    opacity: 0;
  }
  to {
    transform: translate(-35px, 30px);
    opacity: 1;
  }
}

.choose-points {
  flex: 1 1 400px;
  min-height: 480px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: justify;
  justify-content: center;
  gap: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.choose-points.visible {
  opacity: 1;
  transform: translateY(0);
}

.point {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
}

.point h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}

.point p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

.dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #f6d365;
  border-radius: 50%;
}

.choose-points::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  height: 480px;
  width: 1px;
  border-left: 1px solid transparent;
  border-image: repeating-linear-gradient(
      to bottom,
      #c8c7c7,
      #c8c7c7 8px,
      transparent 3px,
      transparent 10px
    )
    1;
  z-index: 0;
}
@media (max-width: 768px) {
.choose-points::before {

  left: 5px;
  top: -6px;
  height: 550px;

}
}

/* Explore Section */
.explore-section {
  padding: 60px 30px;
  color: #fff;
  text-align: center;
  margin-left: 100px;
  text-align: left;
}

.explore-section h2 {
  font-size: 36px;
  color: #f6d365;
  text-align: left;
}

.main-subtitle {
  width: 100%;
  margin-left: 30px;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
}

.main-subtitle h2,
.main-subtitle .subtitle {
  margin: 0;
  padding: 0;
  text-align: left;
}

.subtitle {
  max-width: 600px;
  margin: 10px auto 30px;
  color: #aaa;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  overflow: hidden;
  text-align: left;
  margin-left: 30px;
  

}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 100%;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #f6d365;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 1;
  backdrop-filter: blur(5px);
  border-radius: 50%;
}

.carousel-btn.left {
  left: 10px;
  
}

.carousel-btn.right {
  right: 10px;
}

.property-card {
  display: flex;
  background: #1b1b1b;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  min-width: 400px;
  max-width: 650px;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  max-width: 300px;
}

.property-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.property-info h3 {
  font-size: 26px;
  margin: 0;
}

.property-info p {
  color: #ccc;
  font-size: 15px;
  margin: 5px 0;
}

.property-info .price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.know-more {
  margin-top: 10px;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(to right, #f6d365, #fda085);
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: transform 0.2s;
}

.know-more:hover {
  transform: scale(1.05);
}




/* Gallery Section */
.gallery-section {
  padding: 40px 20px;
  margin-top: 50px;
  color: #fff;
  margin-left: 100px;
  margin-top: -50px;
}

.section-header {
  margin-left: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: #f6d365;
  margin-bottom: 10px;
  text-align: left;
}

.section-header p {
  color: #aaa;
  max-width: 700px;
  margin-bottom: 30px;
  text-align: left;
}

.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 90%;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.arrow {
  background: transparent;
  border: none;
  color: #f6d365;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  
  .gallery-item {
    max-width: 440px;
  }

   .gallery-carousel {
    width: 220px;
   }

  .arrow {
    font-size: 20px;
    padding: 8px;
  }

  .arrow.left {
    left: 0;
  }

  .arrow.right {
    right: 0;
  }
}


/* Featured Project */
.featured-project {
  padding: 60px 5%;
  position: relative;
  color: #fff;
  margin-bottom: 10px;
  background-color: #1e1e1e;
}

.featured-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.featured-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f6d365;
  flex: 1;
}

.featured-header p {
  flex: 1;
  color: #aaa;
  font-size: 16px;
  margin-left: 20px;
}

.project-slider {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.project-slide {
  display: none;
  flex:1;
  align-items: center;
  justify-content: space-between;
 
  gap: 40px;
  animation: fadeInUp 0.8s ease;
}
.project-slide.active {
  display: flex; 
}

.project-text {
  flex: 1;
}

.project-text h3 {
  color: #f6d365;
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
}

.project-text p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.cta-button {
  background: linear-gradient(to right, #f6d365, #fda085);
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0px;

}

.project-image {
  flex: 1;
  height: 530px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Testimonials */
.testimonial-section {
  margin: 0px auto;
  max-width: 1200px;
  transform: translateY(70px);
  transition: all 1.2s ease;
  margin-top: 50px;
}

.testimonial-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-carousel {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-track {
  display: flex;
  overflow-x: auto;
  align-items: center;
  scroll-behavior: smooth;
  transition: transform 0.5s ease;
  scrollbar-width: none;
  margin-top: 20px;
  /* margin-bottom: 20px; */
}


.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 300px;
  max-width: 380px;
  height: 300px;
  text-align: center;
  padding: 20px 20px;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0.7;
  transform: scale(0.95);
}
.quoteMsg{
  line-height: 30px;
}

.quote {
  font-family:Georgia;
  font-weight: bolder;
  font-size: 80px;
  height: 70px;
  color: #f6d365;
  display: block;
  margin-bottom: 0px;
  padding: 0;
}

.testimonial-card.active {
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #000;
  border-radius: 25px;
  opacity: 1;
  height: 350px;
  transform: scale(1.05);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.testimonial-card.active .quote {
  color: #000;
}


@media screen and (max-width: 576px) {
  .testimonial-section {
    padding: 20px 10px;
    margin-top: 40px;
  }

  .testimonial-carousel {
    height: auto;
    padding: 30px 30px; 
  }

  .testimonial-track {
    gap: 15px;
   justify-content: center;
    padding: 10px 0;
    /* margin: 0 -10px; */
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 280px;
    height: auto;
    padding: 20px 15px;
    margin: 0 5px;
    opacity: 0.8;
  }

  .testimonial-card.active {
    min-width: 280px;
    height: auto;
    transform: scale(1.02);
  }

  .quote {
    font-size: 50px;
    height: 50px;
    margin-bottom: 5px;
  }

  .quoteMsg {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .testimonial-author {
    font-size: 15px;
    margin-top: 15px;
  }

  .arrow.left,
  .arrow.right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 26px;
    color: #f6d365;
    cursor: pointer;
    z-index: 1;
  }
  .arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  
  }

  .arrow.left {
    left: 0px;
  }

  .arrow.right {
    right: 0px;
  }

  .testimonial-track {
    scroll-padding: 0 30px;
  }
}


/* Premium Residential */
.premium-residential {
  padding: 40px 20px;
  margin-top: 50px;
  color: #fff;
  margin-left: 100px;
}

.premium-header {
  margin-left: 40px;
}

.premium-header h2 {
  font-size: 36px;
  color: #f6d365;
  margin-bottom: 10px;
}

.premium-header p {
  color: #aaa;
  max-width: 700px;
  margin-bottom: 30px;
}

.premium-wrappar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  margin-left: -30px;
}

.premium-carousel {
  display: flex;
  gap: 100px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 20px;
  width: 90%;
  scrollbar-width: none;
}

.premium-carousel::-webkit-scrollbar {
  display: none;
}

.premium-item {
  flex: 0 0 auto;
  width: 200px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.premium-item:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 50px;
  background-color: #0e0e0e;
  color: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact-left {
  flex: 1 1 50%;
}

.contact-left h2 {
  font-size: 48px;
  color: #f6d365;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.contact-left p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: left;
}

.contact-form {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 18px;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h3 {
  color: #f6d365;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.submit-btn {
  margin-top: 10px;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  color: #fff !important;
  font-size: 14px;
  line-height: 1.6;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  flex: 1 1 200px;
  margin-top: 40px;
}

.footer-disclaimer {
  flex: 1 1 600px;
  color: #aaa;
  font-size: 15px;
  margin-left: -120px;
}

.footer-bottom {
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 30px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.animate.visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {

  .about-section,
  .why-choose,
  .explore-section,
  .premium-residential {
    margin-left: 50px;
  }

  .logo {
    margin-left: 60px;
  }

  .footer-disclaimer {
    margin-left: -60px;
  }
}

@media (max-width: 992px) {
  .hero-image img {
    height: 500px;
  }

  .about-section {
    flex-direction: column;
    margin-left: 30px;
  }

  .choose-content {
    flex-direction: column;
    align-items: center;
  }

  .choose-image,
  .choose-image img,
  .choose-points {
    width: 90%;
    max-width: 400px;
  }


  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-form {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .logo {
    margin-left: 0;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #000;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.5s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .call-button {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-image img {
    height: 400px;
  }

  .about-section,
  .why-choose,
  .explore-section,
  .premium-residential {
    margin-left: 15px;
    padding: 40px 20px;
  }

  .about-text h2,
  .choose-header h2,
  .explore-section h2,
  .section-header h2,
  .featured-header h2,
  .premium-header h2 {
    font-size: 28px;
    text-align: left;
  }

  .about-text,
  .about-stats,
  .choose-header,
  .choose-image,
  .choose-points {
    flex: 1 1 100%;
    min-width: 60%;
  }

  .vertical-line {
    display: none;
  }

  @media (max-width: 768px) {
  .vertical-line {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    opacity: 0.2;
    margin: 20px auto;
    display: block;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

  .property-card {
    min-width: 250px;
  }

  .featured-project {
    padding: 40px 20px;
  }

  .project-slider {
    flex-direction: column;
  }

  .premium-carousel {
    gap: 30px;
  }

  .footer-top {
    flex-direction: column;
    padding: 30px 20px;
  }

  .footer-logo,
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  
  .project-text {
    margin: 0px 30px 0px 50px;
  }

  /* .cta-button {
    margin: 0px 0px 0px 400px;
  } */

}


@media (max-width: 576px) {

  .hero-image img {
    height: 300px;
  }
  .main-subtitle
  {
    margin-left: 0px;
  }
  .premium-header{
    margin-left: 0px;
    margin-top: -40px;
  }

  .about-section,
  .why-choose,
  .explore-section,
  .premium-residential {
    margin-left: 0;
    padding: 30px 15px;
  }

  .about-text h2,
  .choose-header h2,
  .explore-section h2,
  .section-header h2,
  .featured-header h2,
  .premium-header h2 {
    font-size: 24px;
    text-align: left;
  }

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

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

  .property-info h3 {
    font-size: 22px;
  }

  .know-more,
  .cta-button,
  .submit-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .gallery-item,
  .premium-item {
    width: 85vw;
  }

  .arrow {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .property-card {
    min-width: 280px;
    max-width: 100%;
    margin: 0 10px;
  }

  .property-image img {
    max-width: 150px;
    border-radius: 18px 0 0 18px; /* Keep rounded left only */
  }

  .property-info {
    padding: 16px;
  }

  .property-info h3 {
    font-size: 20px;
  }

  .property-info p {
    font-size: 13px;
  }

  .property-info .price {
    font-size: 15px;
  }

  .know-more {
    padding: 6px 18px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .gallery-section {
    margin-left: 0;
    padding: 30px 10px;
  }

  .section-header {
    margin-left: 0;
    text-align: center;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .gallery-carousel {
    gap: 12px;
    padding: 8px 0;
  }

  .gallery-item {
    width: 305px; 
    flex-shrink: 0;
    border-radius: 10px;
  }

  
}
@media (max-width: 768px) {
  .featured-header {
    flex-direction: column;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .featured-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .featured-header p {
    margin-left: 0;
    font-size: 14px;
  }

  .project-slide {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .project-text h3 {
    font-size: 20px;
  }

  .project-text p {
    font-size: 14px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
    margin-left: -100px;
  }

  .project-image {
    display: none;
  }

  .arrow {
    font-size: 24px;
    padding: 6px;
  }

  .arrow.left {
    left: 5px;
  }
  .left {
    margin-right: 20px;
  }

  .arrow.right {
    right: 5px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .contact-left,
  .contact-form {
    flex: 1 1 100%;
  }

  .contact-left h2 {
    font-size: 32px;
    text-align: center;
    text-align: left;
  }

  .contact-left p {
    font-size: 14px;
    text-align: center;
    text-align: left;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-form h3 {
    font-size: 22px;
    text-align: center;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  /* other styles remain the same... */
  .testimonial-card {
  flex: 0 0 100%;
  max-width: 40px;
  padding: 25px 20px;
  height: auto;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
  pointer-events: none; 
  visibility: hidden;
  position: absolute;
  left: -100;
  right: 0;
  margin: auto;
}

.testimonial-card.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
  display: block;
  background: linear-gradient(to right, #f6d365, #fda085);
  color: #000;
}


  .mobile-arrow.left {
    left: -10px !important;
  }

  .mobile-arrow.right {
    right: -8px !important;
  }
  .premium-item {
  width: 125px;
  height: auto;
  }
  .gallery-item {
    width: 100%;
    height: auto;

  }
  .carousel-wrapper{
    margin-left: -13px;
  }
 
}

@media (min-width: 768px) {
    .c-height {
    min-height: 400px;
    height: 100% !important;
    max-height: 500px;
    width: 100% !important;
}
}

