@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:opsz,wght@10..72,100..900&family=Dancing+Script:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --primary-color: #87ceeb;
  --secondary-color: #87ceeb;
  --tertiary-color: #000080;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color) !important;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.logo {
  height: 60px; /* Increased height */
  width: 120px; /* Increased width */
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.brand-title {
  color: #000080;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: #000080;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

h5 {
  color: var(--primary-color);
  font-size: 20px;
}

@media (max-width: 767px) {
  .navbar .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

/* Hero Section  */
/* hero / carousel tweaks */
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}
.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 2rem;
}
.hero-content h1 {
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
}

/* Updated actions: keep buttons inline, gap, responsive centering on small screens */
.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 2rem;
}
.hero-content h1 {
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
}
.play-btn {
  width: 60px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  padding: 0;
  margin-left: 290px;
}
@media (max-width: 767px) {
  .hero-content {
    padding: 1rem;
    text-align: center;
  }
  .hero-content .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .hero-content .hero-actions .play-btn {
    margin-top: 0.25rem;
  }
  .play-btn {
    margin-left: 70px;
  }
}
/* Emd Hero */

/* Start  Anout Us */
.about-section {
  padding: 4.5rem 0;
}
.about-images {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.about-images .img-main {
  width: 100%;
  display: block;
  height: 90vh;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  margin-right: 0;
}
.about-images .img-overlap {
  position: absolute;
  right: -8%;
  top: 54%;
  width: 52%;
  transform: translateY(-50%);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);

  background: #fff;
}

.about-content h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 60px;
}
.about-text {
  color: #444;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.profile-photo {
  width: 86px;
  height: 80px;
  object-fit: cover;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.profile-name {
  font-weight: 700;
  margin: 0;
}
.profile-role {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 3rem 0;
  }
  .about-images {
    max-width: 420px;
  }
  .about-images .img-overlap {
    position: relative;
    right: 0;
    top: 0;
    transform: translateY(-18%);
    width: 88%;
    margin: -3rem auto 0;
    display: block;
    border-width: 3px;
  }
  .about-content h1 {
    font-size: 40px;
  }
  .profile-photo {
    width: 102px;
    height: 92px;
  }
  .profile-card {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 0;
  }
  .profile-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
  }

  .profile-card .profile-name,
  .profile-card .profile-role {
    margin: 0;
  }
}
/* END ABOUT US */

/* START OUR VISION */
.vision-section {
  background: #f8f9fa;
}

.vision-section .section-header h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vision-section .section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d2d2d;
}

.vision-box {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.vision-box:hover {
  transform: translateY(-5px);
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon i {
  font-size: 2rem;
  color: #fff;
}

.vision-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
  font-weight: 600;
}

.vision-box p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .vision-section .section-header h1 {
    font-size: 2rem;
  }
  .vision-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .vision-section {
    padding: 3rem 0;
  }
  .vision-box {
    max-width: 400px;
    margin: 0 auto;
  }
  .vision-icon {
    width: 70px;
    height: 70px;
  }
  .vision-icon i {
    font-size: 1.75rem;
  }
}

/* START HOW IT WORKS  */
.how-it-works-section {
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.how-it-works-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* subtle dark gradient overlay — adjust rgba to taste */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.274) 10%,
    rgba(5, 5, 5, 0.644) 100%
  );
}

.section-title {
  color: #000080;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.process-circle {
  margin: 1.5rem 0;
  text-align: center;
  z-index: 1;
}
.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}
.circle i {
  font-size: 2rem;
  color: var(--primary-color);
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  .circle {
    width: 80px;
    height: 80px;
  }
}
/* END HOW IT WORKS */

/* START SERVICES  */
.services-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services-header h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 130%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .services-header h1 {
    font-size: 2rem;
  }
  .service-image {
    height: 330px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 3rem 0;
  }
  .services-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* END SERVICES */

/* START COUNTER UP */
.counter-section {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0;
}

.counter-item {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
}

.counter-item i {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.counter-item h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 767.98px) {
  .counter-item {
    padding: 1.5rem;
  }
  .counter-item h2 {
    font-size: 2.5rem;
  }
}
/* END COUNTER UP */

/* START WHY CHOOSE US  */
/* ...existing code... */

/* WHY CHOOSE US */
.why-choose-section {
  background: #fff;
  color: #222;
  padding: 4rem 0;
}
.why-image {
  width: 100%;
  height: auto;
  /* object-fit: fill; */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Right column text */
.why-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.why-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Features (2x2 grid) */
.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: transparent;
  padding: 0.25rem 0;
}
.feature-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.feature-body h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.feature-body p {
  margin: 0.3rem 0 0 0;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive behavior */
@media (max-width: 991.98px) {
  .why-choose-section {
    padding: 3rem 0;
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
}

@media (max-width: 575.98px) {
  /* stack: image above content on small screens */
  .why-choose-section .row {
    align-items: flex-start;
  }
  .why-image {
    border-radius: 8px;
  }
  .feature {
    align-items: center;
  }
  .feature-body h4 {
    font-size: 0.98rem;
  }
  .why-title {
    text-align: left;
  }
}

/* optional utility to animate into view (strap.js observer adds .visible) */
.why-choose-section .feature {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.why-choose-section .feature.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ...existing code... */
/* END WHY CHOOSE US */

/* START OUR PROJEXYS */
/* Projects section */
.projects-section {
  background: #fff;
  color: #222;
}
.projects-section .projects-controls .btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* viewport holds the visible area */
.projects-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* track is a horizontal flex container we translate */
.projects-track {
  display: flex;
  gap: 1rem;
  transition: transform 400ms cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: transform;
  padding-bottom: 0.5rem;
}

/* each item: 3 across on large, 2 on md, 1 on small */
.project-item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
}

.project-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Responsive breakpoints */
@media (max-width: 991.98px) {
  .project-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .project-item img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .projects-controls {
    gap: 0.5rem;
  }
  .project-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .project-item img {
    height: 320px;
  }
}

/* disable buttons visual state */
.btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

/* small accessibility focus */
.projects-controls .btn:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* ...existing code... */
/* end our projects  */

/* START TESTIMONIALS */
/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.testimonials-section .section-title {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
  color: white;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 2;
  pointer-events: all;
}

.testimonial-card.prev,
.testimonial-card.next {
  opacity: 0.3;
  transform: translateX(-50%) scale(0.85);
  z-index: 1;
}

.testimonial-card.prev {
  transform: translateX(-120%) scale(0.85);
}

.testimonial-card.next {
  transform: translateX(20%) scale(0.85);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: #ffd700;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 120px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-details h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark-color);
  font-weight: 600;
}

.client-details p {
  margin: 0;
  color: #888;
  font-size: 0.95rem;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(76, 175, 80, 0.1);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonials-wrapper {
    padding: 0 50px;
  }

  .testimonial-card.prev,
  .testimonial-card.next {
    display: none;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-wrapper {
    padding: 0 20px;
  }

  .testimonials-container {
    height: 520px;
  }

  .testimonial-card {
    padding: 40px 25px;
  }

  .testimonial-text {
    font-size: 1rem;
    min-height: 140px;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }

  .quote-icon {
    font-size: 2rem;
    right: 20px;
    top: 15px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 50px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-wrapper {
    padding: 0 10px;
  }

  .testimonial-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .client-image {
    width: 60px;
    height: 60px;
  }
}
/* END TESTIMONALAS */

/* START  FAQ */
.faq-section {
  background: #fff;
  color: #222;
}
.faq-section .faq-accordion {
  margin-top: 1rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

/* FAQ item */
.faq-item {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* header button */
.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 0;
  text-align: left;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #1f2937;
}
.faq-question:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

/* plus/minus toggle */
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-color, #0d6efd);
  color: #fff;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.2s ease;
  flex-shrink: 0;
}

/* answer (hidden by default) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.28s ease;
  padding: 0 1.25rem;
  background: transparent;
  color: #444;
}
.faq-answer p {
  margin: 0.9rem 0 1.2rem;
  line-height: 1.6;
}

/* opened state — applied by JS (class 'open' on .faq-item) */
.faq-item.open .faq-answer {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  max-height: 400px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: #e05353;
}

/* Vertical video wrapper (portrait / tall) */
.vertical-video-wrapper {
  width: 100%;
  max-width: 360px;
  margin-top: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #000;
}

.video-container {
  width: 100%;
  height: 600px;
}

/* keep portrait aspect (9:16) */
/* .vertical-video {
  width: 100%;
  height: calc(100vw * (16 / 9));
  max-height: 680px;
  min-height: 300px;
  object-fit: cover;
} */

/* Responsive adjustments */
@media (min-width: 992px) {
  .vertical-video {
    height: calc(360px * (16 / 9));
  } /* approx 640px tall for max-width 360 */
}
@media (max-width: 767.98px) {
  /* stack: video below accordion on small screens */
  .vertical-video {
    min-height: 280px;
    height: 420px;
  }
  .faq-section .col-lg-7,
  .faq-section .col-lg-5 {
    width: 100%;
  }
}
/* END FAQ  */

/* START CONTACT FORM */
.contact-section {
  position: relative;
  padding: 5rem 0;
  background: url("../images/clean2.jpg") center/cover no-repeat;
  color: #fff;
}

.contact-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Left column info */
.contact-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  height: 100%;
}

.contact-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

/* Right column form */
.contact-form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  color: #333;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  color: #555;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 4rem 0;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-info {
    text-align: center;
    margin-bottom: 2rem;
  }
  .contact-item {
    justify-content: center;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
/* END FORM */

/* START FOOTER  */
.footer-section {
  background: var(--tertiary-color);
  color: #fff;
  padding: 4rem 0 0;
}

/* Company Info Styles */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo .logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-company-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Quick Links */
.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Gallery */
.footer-gallery {
  margin: 0 -0.5rem;
}

.gallery-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Copyright Bar */
.copyright-bar {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  font-size: 0.9rem;
}

.copyright-bar a {
  color: #fff;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .footer-section {
    padding: 3rem 0 0;
  }
  .gallery-img {
    height: 100px;
  }
}

@media (max-width: 767.98px) {
  .footer-company-info,
  .footer-title {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-links li {
    text-align: center;
    padding-left: 0;
  }
  .footer-links li::before {
    display: none;
  }
  .copyright-bar {
    text-align: center;
  }
  .copyright-bar .text-md-end {
    text-align: center !important;
    margin-top: 0.5rem;
  }
}
/*end FOOTER */

/* START WHATSAPP */
/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  background: #25d366;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}

.button-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #ff3333;
  border-radius: 50%;
  border: 2px solid white;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(255, 51, 51, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

/* Popup Styles */
.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: bottom right;
}

.whatsapp-popup.active {
  transform: scale(1);
  opacity: 1;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 16px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
}

.popup-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.popup-info p {
  font-size: 13px;
  opacity: 0.9;
}

.popup-body {
  padding: 20px;
}

.popup-message {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.popup-actions {
  display: flex;
  gap: 10px;
}

.popup-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.popup-btn.primary {
  background: #25d366;
  color: white;
}

.popup-btn.primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.popup-btn.secondary {
  background: #f3f4f6;
  color: #6b7280;
}

.popup-btn.secondary:hover {
  background: #e5e7eb;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 480px) {
  .whatsapp-popup {
    width: 280px;
    right: -10px;
  }

  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }

  .button-text {
    font-size: 14px;
  }

  .whatsapp-button {
    padding: 12px 16px;
    gap: 10px;
  }
}

/* Scroll-to-top button (left side) */
.scroll-top {
  position: fixed;
  left: 16px; /* left side */
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-color, #0d6efd);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
  pointer-events: none;
}

/* visible state when page scrolled */
.scroll-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* hover/focus */
.scroll-top:hover,
.scroll-top:focus {
  background: rgba(13, 110, 253, 0.95);
  outline: none;
  transform: translateY(-2px) scale(1.02);
}

/* icon sizing */
.scroll-top i {
  font-size: 1.05rem;
}

/* smaller on narrow viewports */
@media (max-width: 575.98px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    left: 12px;
    bottom: 18px;
  }
  .scroll-top i {
    font-size: 0.95rem;
  }
}

/* avoid overlapping important UI (e.g., chat widgets) on very small screens */
@media (max-width: 420px) {
  .scroll-top {
    left: 8px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
}
