/* Import Poppins Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Reset and Base Styles */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: "Albert Sans", sans-serif;
  color: black;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  height: 50px;
  width: 100px;
}

.header .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2196f3;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2196f3;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header .button {
  border: 2px solid #c5baff;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header .button:hover {
  background-color: #c5baff;
  color: white;
  transform: translateY(-2px);
}

.header .bars {
  display: none;
  font-size: 1.6rem;
}

/* Dropdown Styles */
.nav-menu .dropdown .link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #333;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #2196f3;
  border-left: 3px solid #2196f3;
}

.dropdown i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown:hover i {
  transform: rotate(180deg);
  color: #2196f3;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  font-family: "Albert Sans", sans-serif;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 1002;
  transition: color 0.3s ease;
}

.mobile-menu .close-btn:hover {
  color: #2196f3;
}

.mobile-menu nav {
  width: 100%;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 1.5rem;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-menu a:hover {
  color: #2196f3;
}

.mobile-menu .dropdown {
  padding: 0;
  width: 100%;
}

.mobile-menu .dropdown .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0rem 0;
}

.mobile-menu .dropdown .link span {
  font-weight: 500;
  color: #333;
  font-size: 1.2rem;
  font-family: "Albert Sans", sans-serif;
  margin-right: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-menu .dropdown-content {
  position: static;
  box-shadow: none;
  display: none;
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: transparent;
}

.mobile-menu .dropdown.active .dropdown-content {
  display: block;
}

.mobile-menu .dropdown-content a {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  display: block;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-menu .dropdown-content a:hover {
  color: #2196f3;
  border-left: 2px solid #2196f3;
  padding-left: 0.5rem;
}

.mobile-menu .dropdown i {
  transition: transform 0.3s ease;
  color: #333;
}

.mobile-menu .dropdown.active i {
  transform: rotate(180deg);
  color: #2196f3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}

/* Header Section */
.header-section {
  overflow-x: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  text-align: left;
  background-color: white;
  margin-top: 80px;
}

.header-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.header-content h1 {
  width: 100%;
  font-size: 3.5em;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
  margin: 0;
  flex: 1 1 60%;
}

.header-content h1 br {
  display: block;
}

.header-content h1 .highlight-text {
  color: #000;
}

.header-content p {
  font-size: 0.98em;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 30%;
}

/* Image Section */
.image-section {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  max-width: 80%;
  height: 500px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: white;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.footer-content h2 {
  font-size: 3em;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 30px;
}

.text-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.text-columns p {
  flex: 1 1 calc(50% - 20px);
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Modern Footer Styles */
.modern-footer {
  background-color: #c5baff;
  color: #000;
  padding: 4rem 0 2rem;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Company Section */
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-company h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.footer-company p {
  color: #323232;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modern-footer .footer-container .footer-grid .footer-company .img {
  height: 50px;
  width: 90px;
  background-image: url("./public/images/logo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #3a3a3a;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

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

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #000;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Testimonial Section */
.testimonial-section {
  font-family: "Albert Sans", sans-serif;
  padding: 80px 0;
  background-color: #e8f9ff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-header p {
  color: #666;
  font-size: 1.1rem;
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
}

.testimonial-card {
  height: 400px;
  flex: 0 0 100%;
  background: #c4d9ff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 15px;
  opacity: 0.5;
  transform: scale(0.9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testcard1 {
  background-image: url("./public/images/banner_images/images/banner1.webp");
}
.testcard2 {
  background-image: url("./public/images/banner_images/images/banner2.webp");
}
.testcard3 {
  background-image: url("./public/images/banner_images/images/banner3.webp");
}
.testcard4 {
  background-image: url("./public/images/banner_images/images/banner4.webp");
}
.testcard6 {
  background-image: url("./public/images/banner_images/images/banner6.webp");
}
.testcard7 {
  background-image: url("./public/images/banner_images/images/banner7.webp");
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.profile-img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid #007bff;
  transition: transform 0.3s ease;
}

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

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

.name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-align: center;
}

.position {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.quote {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 3px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #0056b3;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.2rem;
}

/* Gallery Section Styles */
.gallery-section {
  padding: 80px 20px;
  background-color: #fbfbfb;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  background-color: #e8f9ff;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn i {
  font-size: 0.9rem;
}

.filter-btn:hover {
  background-color: #c4d9ff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #c5baff;
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .item-info {
  transform: translateY(0);
  opacity: 1;
}

.item-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.item-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

.unread-message {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .header {
    padding: 1rem 3rem;
  }

  .header-content h1 {
    font-size: 3rem;
  }

  .header-content p {
    font-size: 0.95rem;
  }

  .image-section img {
    max-width: 85%;
    height: 450px;
  }

  .footer-content h2 {
    font-size: 2.8rem;
  }

  .text-columns {
    gap: 30px;
  }

  .text-columns p {
    font-size: 0.95rem;
  }

  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-title {
    font-size: 2.3rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
  }

  .footer-company h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1050px) {
  .header {
    padding: 1rem 2rem;
  }

  .header-content {
    gap: 2rem;
  }

  .header-content h1 {
    font-size: 2.5rem;
  }

  .header-content p {
    font-size: 0.9rem;
    padding: 0 2.5rem;
  }

  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }

  .image-section img {
    max-width: 95%;
    height: 400px;
  }

  .footer-content h2 {
    font-size: 2.5rem;
  }

  .text-columns {
    gap: 25px;
  }

  .text-columns p {
    font-size: 0.9rem;
  }

  .gallery-section {
    padding: 50px 20px;
  }

  .gallery-title {
    font-size: 2.1rem;
  }

  .gallery-filters {
    gap: 0.8rem;
  }

  .filter-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .footer-links h3 {
    font-size: 1.1rem;
  }

  .testimonial-header h1 {
    font-size: 1.8rem;
  }

  .testimonial-header p {
    font-size: 0.9rem;
    padding: 0 50px;
  }
}

@media (max-width: 860px) {
  .header .logo {
    height: 40px;
    width: 80px;
  }

  .header {
    padding: 1rem 0.9rem;
  }

  .nav-menu a {
    font-size: 0.89rem;
  }

  .header .button {
    font-size: 0.8rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header .logo {
    height: 50px;
    width: 100px;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .header .bars {
    display: block;
    font-size: 1.4rem;
  }

  .nav-menu {
    display: none;
  }

  .header .button {
    display: none;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .header-content h1 {
    font-size: 2.2rem;
  }

  .header-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .image-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .image-section img {
    max-width: 95%;
    height: 350px;
  }

  .footer-content h2 {
    font-size: 2.2rem;
  }

  .text-columns {
    flex-direction: column;
    gap: 20px;
  }

  .text-columns p {
    font-size: 0.9rem;
    text-align: center;
  }

  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-title {
    font-size: 1.9rem;
  }

  .gallery-subtitle {
    font-size: 0.95rem;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-container {
    padding: 0 70px;
  }

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

  .profile-img-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .name {
    font-size: 1.3rem;
  }

  .position {
    font-size: 0.9rem;
  }

  .quote {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 580px) {
  .header {
    padding: 1rem 1rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  .image-section {
    padding: 30px 10px;
  }

  .image-section img {
    margin: 10px;
    max-width: 100%;
    height: 300px;
  }

  .footer-content h2 {
    font-size: 2rem;
  }

  .text-columns p {
    font-size: 0.85rem;
  }

  .gallery-section {
    padding: 30px 10px;
  }

  .gallery-title {
    font-size: 1.7rem;
  }

  .gallery-subtitle {
    font-size: 0.9rem;
  }

  .gallery-filters {
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
  }

  .item-info h3 {
    font-size: 1.1rem;
  }

  .item-info p {
    font-size: 0.8rem;
  }

  .footer-company {
    text-align: center;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-header h1 {
    font-size: 2rem;
  }

  .testimonial-container {
    padding: 0 60px;
  }

  .testimonial-card {
    padding: 25px 15px;
    margin: 0 10px;
    height: 300px;
  }

  .profile-img-wrapper {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 1.2rem;
  }

  .position {
    font-size: 0.85rem;
  }

  .quote {
    font-size: 0.95rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }
}

@media (max-width: 460px) {
  .header {
    padding: 0.8rem 0.8rem;
  }

  .header .logo {
    height: 40px;
    width: 80px;
  }

  .header-content h1 {
    font-size: 1.8rem;
  }

  .header-content p {
    font-size: 0.8rem;
  }

  .image-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image-section img {
    height: 250px;
  }

  .footer-content h2 {
    font-size: 1.8rem;
  }

  .text-columns p {
    font-size: 0.8rem;
  }

  .gallery-section {
    padding: 25px 8px;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-subtitle {
    font-size: 0.85rem;
  }

  .gallery-filters {
    gap: 1.4rem;
  }

  .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.98rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .gallery-item .item-info {
    padding: 1rem;
  }

  .item-info h3 {
    font-size: 1rem;
  }

  .item-info p {
    font-size: 0.75rem;
  }

  .modern-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-company h2 {
    font-size: 1.4rem;
  }

  .footer-links h3 {
    font-size: 1.1rem;
  }

  .footer-links ul li a {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .copyright p {
    font-size: 0.9rem;
  }

  .footer-legal a {
    font-size: 0.9rem;
  }

  .testimonial-container {
    padding: 0 50px;
  }

  .testimonial-card {
    padding: 20px 12px;
    margin: 0 8px;
    height: 250px;
    width: 700px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .testimonial-header h1 {
    font-size: 1.3rem;
  }

  .testimonial-header p {
    font-size: 0.8rem;
  }
}
