/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #666666;
  background: #fff;
}


/* Header */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 50px;
}

.logo img {
  height: 50px;
}

.logo {
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInLogo 1s ease-in-out forwards;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

.header-menu {
  display: flex;
}

.header_unorder {
  list-style: none;
  display: flex;
  gap: 0px;
  margin: 0;
  padding: 0;
}

.header_list a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  letter-spacing: 1px;
}

.header_list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #000000, #000000);
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}

.header_list a:hover::before {
  width: 100%;
}

.header_list a:hover {
  color: #000000;
}


/* Slider */
.carousel {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
}

.slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* Content inside the slides */
.slide-content {
  position: absolute;
  top: 45%;
  left: 2%;
  width: 40%;
  transform: translate(0, 0);
  text-align: start;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 20px;
  z-index: 2;
}

.slider_para {
  font-size: 14px;
  color: #fff;
  text-align: start;
}

/* Button styling inside the slide */
.slider_button {
  padding: 15px;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  margin-top: 14px;
  cursor: pointer;
  background: #0056b3;
}

.slider_button:hover {
  background-color: #0f447e;
  color: #fff;
}


/* About Section */
.about-section {
  padding: 50px 50px;
  background: #ffffff;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1300px;
  align-items: center;
  margin-bottom: 30px;
  background: #ffffff;
}

.image-container {
  grid-column: span 6;
}

.image-container img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-container {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.stat-item h2 {
  font-size: 2rem;
  color: #222;
}

.stat-item p {
  font-size: 1rem;
  color: #555;
}

.about-description {
  font-size: 16px;
  text-align: justify;
  color: #555;
  line-height: 25px;
}

.about-title {
  text-align: start;
  font-size: 36px;
  color: #222;
}

.about_button {
  width: 120px;
  padding: 15px 20px;
  background: #000;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.about_button:hover {
  background: #fff;
  border: 2px solid #000;
  color: #000;
  padding: 13px 18px;
}

/* Style for the WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  /* WhatsApp green */
  color: white;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  border: none;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.whatsapp-btn:hover {
  background-color: #198f81;
  /* Darker WhatsApp green on hover */
}


/* faqs */
.faq-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 30px 50px;
}

.faq_section_header {
  grid-column: span 12;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  text-align: start;
}

.faq_header {
  font-size: 32px;
  color: #000;
  margin: 0;
}

.faq_paragraph {
  font-size: 14px;
  color: #555;
  line-height: 25px;
}

.faq-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 1.2em;
}

.faq-arrows:hover {
  text-decoration: underline;
}

.faq-arrows h5 {
  margin: 0;
  color: #333;
  cursor: pointer;
}

.faq-right-arrow {
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  background: none;
}

.faq-arrows h5:focus {
  outline: none;
}

.faq-carousel-container {
  grid-column: span 12;
  display: block;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 5px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  padding: 0px;
}

.faq-question-text {
  font-size: 1.2em;
  color: #555;
}

.faq-toggle {
  font-size: 1.5em;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease-in-out;
}

.faq-toggle[aria-expanded="true"] {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  font-size: 1em;
  color: #777;
}

.faq-answer p {
  margin: 10px 0;
  text-align: start;
  font-size: 14px;
}


/* Contact home Banner */
.banner {
  width: 100%;
  position: relative;
  background-color: #f5f5f5;
}

.banner-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.Contact_banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Banner Content */
.banner-content {
  padding: 40px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  width: 100%;
  /* max-width: 900px;  */
}

.banner-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.banner-paragraph {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.6;
}

.input-container {
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.submit-btn {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0f447e;
}

.input-bar {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-bar:focus {
  outline: none;
}


/* Footer styling */
footer {
  background: #f5f3f3;
  color: #000;
  padding: 30px 50px;
  box-shadow: 0 4px 12px rgb(48 57 89 / 72%);
  border-top: 2px solid #e0e0e0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.footer-links,
.footer-message,
.footer-logo-container {
  grid-column: span 3;
  padding: 0px;
}

.footer-links h4,
.footer-message h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style-type: none;
}

.footer-links ul li {
  margin: 15px 0;
}

.footer-links ul li a,
.footer-social ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  text-decoration: underline;
}

.footer-message form input,
.footer-message form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer-message form button {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.footer-message form button:hover {
  background-color: #ff4500;
}

.footer-logo {
  max-width: 100%;
  height: auto;
  width: 250px;
  margin-bottom: 15px;
}

.footer_paragraph {
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom {
  text-align: center;
  border-top: solid 1px #ccc;
  margin-top: 12px;
  padding: 20px;
  margin-bottom: -30px;
}

.digisphere {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}


/* contact page css */
/* Contact Container */
.contact_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  flex-wrap: wrap;
  gap: 25px;
}

.left-image {
  flex: 1;
}

.left-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.contact_form {
  flex: 1;
}

.contact_form h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: start;
}

/* Form Inputs & Textarea */
input,
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #0056b3;
  box-shadow: 0 0 10px rgba(0, 86, 179, 0.2);
  outline: none;
}

textarea {
  resize: vertical;
}

/* Submit Button */
.contact_send_button {
  width: 100%;
  padding: 1rem;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact_send_button:hover {
  background-color: #00408a;
}



/* 🔹 Media Query for Tablet (768px+) */
@media (min-width: 768px) {
  .subbranches_container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
  }
}

/* 🔹 Media Query for Desktop (992px+) */
@media (min-width: 992px) {
  .subbranches_container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns (12-grid structure) */
  }
}




/* about page css  */
.about_page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 50px;
}

.about_content {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}

.about_image img {
  max-width: 540px;
  height: 460px;
  border-radius: 10px;
  object-fit: cover;
}

.about_text {
  margin-left: 30px;
  max-width: 52%;
}

.small_title {
  font-size: 18px;
  color: #a39c9c;
  margin-bottom: -10px;
}

.big_title {
  font-size: 31px;
  color: #000000;
  margin-bottom: 0px;
}

.about_paragraph {
  font-size: 14px;
  color: #555;
  line-height: 25px;
  margin-bottom: 7px;
  text-align: justify;
}


/* team section  */
.team_section {
  text-align: center;
  padding: 20px 50px;
}

.section_title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  text-align: start;
}

.team_cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

.team_card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 23%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team_card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team_info {
  padding: 5px;
}

.team_name {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.team_role {
  font-size: 14px;
  color: #777;
}


/* card_product page*/
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  padding: 20px 50px;
}

.card_product {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.card_product:hover {
  transform: translateY(-5px);
}

.card_product img {
  width: 100%;
  height: 275px;
  object-fit: contain;
  display: block;
  cursor: pointer;
  display: inline;
  justify-content: center;
  justify-items: center;
}

.card_product h3 {
  padding: 15px;
  font-size: 18px;
  color: #333;
  background: #fff;
  border-top: 1px solid #ccc;
}

.card_product_header {
  padding: 19px 50px 0px;
  font-size: 32px;
}


/* Gallery Container */
.gallery-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery {
  display: flex;
  animation: slide 15s linear infinite;
}

.gallery img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border: solid #ccc 0.5px;
}

.gallery_header {
  font-size: 32px;
  padding: 20px 50px;
}

/* Sliding Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-100px);
  }

  20% {
    transform: translateX(-200px);
  }

  30% {
    transform: translateX(-300px);
  }

  40% {
    transform: translateX(-400px);
  }

  50% {
    transform: translateX(-500px);
  }

  60% {
    transform: translateX(-600px);
  }

  70% {
    transform: translateX(-700px);
  }

  80% {
    transform: translateX(-800px);
  }

  90% {
    transform: translateX(-900px);
  }

  100% {
    transform: translateX(0);
  }
}


/* tab sections  */
.tabproduct-container {
  margin: 10px auto;
  padding: 20px 50px;
  width: 100%;
}

.tabproduct_header {
  text-align: start;
  font-size: 32px;
  padding: 20px 0px;
}

input[type="radio"] {
  display: none;
}

.tab_label_1 {
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  background-color: #ccc;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.tab_label_1:hover {
  background-color: #888;
}

input:checked+.tab_label_1 {
  background-color: #d41920;
  color: white;
}

.tabproduct-content {
  display: none;
  padding: 0px;
  background-color: #fff;
  border-top: 2px solid #ddd;
}

#tabproduct1:checked~.tabproduct-content-1,
#tabproduct2:checked~.tabproduct-content-2,
#tabproduct3:checked~.tabproduct-content-3,
#tabproduct4:checked~.tabproduct-content-4,
#tabproduct5:checked~.tabproduct-content-5 {
  display: block;
}

/* testimonail section css */
/* Testimonial Section */
.testimonial-section {
  padding: 20px 50px;
  background: #fff9ee;
}

/* Header */
.testimonial-header {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

/* Testimonial Container */
.testimonial-container {
  position: relative;
  max-width: 600px;
  margin: auto;
  height: 200px;
  /* Adjust height to fit one review */
  overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
  padding: 0px;
  text-align: center;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateY(50px);
}

/* Active Card */
.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 0px;
}

.testimonial-author h4 {
  margin: 0px 0;
  font-size: 18px;
  color: #222;
}

.testimonial-author p {
  font-size: 14px;
  color: #777;
}




/* audio architered page  */
/* Hero Section */
.audioarchitect-hero {
  position: relative;
  text-align: center;
  color: white;
  height: 400px;
  overflow: hidden; 
}

.audioarchitect-hero-overlay {
  position: relative;
  height: 100%;
}

.audioarchitect-hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 1;
}

.audioarchitect-title {
  position: absolute;
  top: 50%;            /* Center vertically */
  left: 50%;           /* Center horizontally */
  transform: translate(-50%, -50%); /* Fine-tune the position */
  z-index: 2;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.banner-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Services Section */
.audioarchitect-services {
  padding: 30px 50px;
  text-align: center;
}

.audioarchitect-services-title {
  font-size: 32px;
  text-align: start;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.audioarchitect-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.audioarchitect-service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audioarchitect-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.audioarchitect-service-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.audioarchitect-service-heading {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #333;
}

.audioarchitect-service-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.audioarchitect-service-btn {
  background-color: #d21a1f;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.audioarchitect-service-btn:hover {
  background-color: #a9151b;
  color: #fff;
}

.audioarchitect-service-contact:hover {
  color: #fff;
}

.audioarchitect-service-contact {
  text-decoration: none;
  display: flex;
  color: #000;
}



/* media queries with responsive all code  */
/* Responsive Design */
@media (max-width: 1024px) {
  .product-item {
    flex: 0 0 calc(33.33% - 20px);
    /* Show 3 items */
  }

  .gallery img {
    width: 250px;
  }

  .gallery_header {
    font-size: 28px;
  }

  .team_card {
    width: 30%;
  }

  .about_content {
    flex-direction: column;
    align-items: center;
  }

  .about_text {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .big_title {
    font-size: 2rem;
  }

  .about_paragraph {
    font-size: 0.95rem;
  }

  .faq_section_header {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .faq_header {
    font-size: 28px;
  }

  .faq_paragraph {
    font-size: 14px;
  }

  .container {
    grid-template-columns: repeat(6, 1fr);
  }

  .image-container {
    grid-column: span 6;
  }

  .content-container {
    grid-column: span 6;
  }
}


@media (max-width: 768px) {
  .audioarchitect-title {
    font-size: 36px;
  }

  .audioarchitect-subtitle {
    font-size: 16px;
    margin-top: 17px;
  }

  .audioarchitect-service-card {
    padding: 15px;
  }

  .about_image img {
    display: none;
  }

  .audioarchitect-service-heading {
    font-size: 18px;
  }

  .audioarchitect-service-text {
    font-size: 13px;
  }

  .audioarchitect-service-btn {
    font-size: 12px;
  }

  .audioarchitect-services {
    padding: 10px 20px;
    text-align: center;
  }

  .audioarchitect-hero {
    height: 250px;
  }

  .product-item {
    flex: 0 0 calc(50% - 20px);
    /* Show 2 items */
  }

  .product_section_header {
    flex-direction: column;
    text-align: center;
  }

  .product-arrows {
    margin-top: 15px;
  }

  .product-section {
    padding: 15px;
  }

  .product_paragraph {
    text-align: start;
    font-size: 12px;
    line-height: 15px;
  }

  .tab_label_1 {
    padding: 15px;
    font-size: 14px;
  }

  .tabproduct-content {
    padding: 0px;
  }

  .tabproduct-container {
    padding: 10px 20px;
  }

  .gallery img {
    width: 200px;
  }

  .gallery_header {
    font-size: 24px;
    padding: 15px 30px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-bottom: 0px
  }

  .digisphere {
    font-size: 12px;
  }

  .contact-banner-heading {
    font-size: 18px;
  }

  .card-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 20px;
  }

  .card_product_header {
    padding: 10px 20px 0px;
    font-size: 26px;
  }

  .card_product img {
    height: 290px;
  }

  .tabproduct_header {
    font-size: 21px;
  }

  .brandslide-tour {
    flex-direction: column;
    align-items: start;
    padding: 10px 15px;
  }

  .brandslide-tour-name h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .brandslide-tour-item {
    width: 15%;
    margin-right: 15px;
  }

  .team_section {
    padding: 15px 30px;
  }

  .team_card {
    width: 45%;
  }

  .section_title {
    font-size: 28px;
  }

  .about_page {
    padding: 15px 20px;
  }

  .small_title {
    font-size: 12px;
    text-align: start;
  }

  .big_title {
    font-size: 21px;
    margin-bottom: 10px;
    text-align: start;
  }

  .about_paragraph {
    font-size: 12px;
    line-height: 15px;
    text-align: start;
  }

  .contact_container {
    grid-template-columns: 1fr;
  }

  .banner {
    height: 200px;
  }

  .personal_details,
  .address {
    grid-column: span 1;
  }

  .left-image,
  .contact_form {
    grid-column: span 1;
  }

  .footer-container {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-links,
  .footer-message,
  .footer-logo-container,
  .footer-social {
    grid-column: span 6;
  }

  .banner-content {
    padding: 20px 10px;
  }

  .banner-heading {
    font-size: 18px;
    margin-top: 0px;
  }

  .banner-paragraph {
    font-size: 12px;
  }

  .input-container {
    flex-direction: column;
    gap: 10px;
  }

  .input-bar {
    width: 52%;
    height: 22px;
    margin-top: 0px;
    font-size: 10px;
  }

  .banner-image {
    width: 100%;
    height: 176px;
  }

  .submit-btn {
    padding: 5px 15px;
    font-size: 12px;
  }

  .faq-section {
    padding: 15px;
  }

  .faq_section_header {
    gap: 15px;
    text-align: start;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .faq_header {
    font-size: 24px;
  }

  .faq_paragraph {
    font-size: 13px;
  }

  .faq-item {
    padding: 10px;
  }

  .faq-question {
    font-size: 1em;
  }

  .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-container,
  .content-container {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .about-description {
    font-size: 12px;
    line-height: 17px;
  }

  .image-container img {
    height: 350px;
  }

  .about-section {
    padding: 10px 15px;
  }

  .slide img {
    object-fit: cover;
    height: 275px;
  }

  .carousel {
    height: 275px;
  }

  .slide-content {
    font-size: 18px;
    margin-left: -14px;
    top: 42%;
  }

  .slider_para {
    font-size: 10px;
  }

  .slider_button {
    font-size: 9px;
    margin-top: 9px;
    padding: 8px;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    /* Ensure toggle is above everything */
    position: relative;
  }

  .header-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1000;
  }

  .header_unorder {
    flex-direction: column;
    width: 100%;
    background: #000000;
  }

  .header_list {
    width: 100%;
    text-align: center;
    padding: 1px 0;
  }

  .header_list a {
    font-size: 12px;
    padding: 12px;
    display: block;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #444;
    font-weight: 500;
  }

  .header_list a:hover {
    background: linear-gradient(90deg, #d41920, #d41920);
    color: #fff;
    transform: scale(1.05);
  }

  .header-menu.active {
    display: flex;
  }

  .header-main {
    padding: 10px 15px;
  }

  .brandslide-tour-carousel {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .product-item {
    flex: 0 0 95%;
  }

  .product-item img {
    width: 130px;
    height: 132px;
  }

  .card_product h3 {
    font-size: 12px;
  }

  .card_product_header {
    padding: 15px 15px 0px;
    font-size: 18px;
  }

  .slide img {
    object-fit: cover;
    height: 136px;
  }

  .card_product img {
    height: 125px;
  }

  .whatsapp-btn {
    font-size: 8px;
  }

  .audioarchitect-services-title {
    font-size: 21px;
  }

  .product_section_header {
    flex-direction: column;
    text-align: center;
  }

  .product-arrows {
    margin-top: 15px;
  }

  .carousel {
    height: 140px;
  }

  .slide-content {
    font-size: 12px;
    margin-left: -14px;
    top: 30%;
  }

  .tabproduct-container {
    width: 100%;
    padding: 10px;
  }

  .tab_label_1 {
    padding: 12px;
    font-size: 12px;
    margin-bottom: 5px;
  }

  .tabproduct-content {
    padding: 0px;
  }

  .gallery img {
    width: 150px;
  }

  .gallery_header {
    font-size: 20px;
    padding: 10px 20px;
  }

  .brandslide-tour-name h1 {
    font-size: 20px;
  }

  .brandslide-tour-item {
    width: 80px;
    margin-right: 10px;
  }

  .team_section {
    padding: 10px 20px;
  }

  .team_card {
    width: 100%;
  }

  .input-bar {
    width: 52%;
    height: 22px;
    margin-top: 0px;
    font-size: 10px;
  }

  .product-section {
    padding: 15px;
    margin-bottom: 4px;
  }

  .banner-heading {
    font-size: 14px;
    margin-top: 0px;
  }

  .banner-paragraph {
    font-size: 10px;
  }

  .section_title {
    font-size: 21px;
  }

  .testimonial-section {
    padding: 15px 15px;
  }

  .testimonial-header {
    font-size: 21px;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .testimonial-author h4 {
    font-size: 14px;
  }

  .testimonial-author p {
    font-size: 10px;
  }

  .image-container img {
    height: 225px;
  }

  .about-title {
    font-size: 21px;
    margin-bottom: 4px;
  }

  .brandslide-tour-track {
    gap: 7px;
  }

  .about_page {
    padding: 25px 15px;
  }

  .small_title {
    font-size: 12px;
    text-align: start;
    margin-top: 11px;
    margin-bottom: 3px;
  }

  .big_title {
    font-size: 16px;
    text-align: start;
    margin-top: -7px;
    margin-bottom: -1px;
  }

  .stat-item p {
    font-size: 10px;
  }

  .container {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px 0px;
    gap: 1rem;
  }

  .about_paragraph {
    font-size: 12px;
    line-height: 15px;
    text-align: start;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-message,
  .footer-logo-container,
  .footer-social {
    grid-column: span 1;
  }

  .faq_section_header {
    gap: 10px;
  }

  .faq_header {
    font-size: 16px;
  }

  .faq_paragraph {
    font-size: 12px;
    text-align: start;
    line-height: 15px;
  }

  .faq-item {
    padding: 8px;
    margin-bottom: 15px;
  }

  .faq-question-text {
    font-size: 12px;
  }

  .faq-toggle {
    font-size: 1.2em;
  }

  .faq-answer p {
    font-size: 10px;
  }

  .brandslide-tour-carousel {
    width: 100%;
  }

  .card-container {
    padding: 15px;
  }

  .contact_container {
    grid-template-columns: 1fr;
    padding: 0px;
    gap: 0px;
  }

  .product_header {
    font-size: 18px;
  }

  .audioarchitect-title {
    font-size: 13px;
  }

  .audioarchitect-subtitle {
    font-size: 9px;
    margin-top: 0px;
  }

  .audioarchitect-services {
    padding: 10px 15px;
  }

  .audioarchitect-hero {
    height: 175px;
  }

  footer {
    background: #f5f3f3;
    color: #000;
    padding: 10px 15px;
  }

  .footer-logo {
    width: 175px;
  }

  .footer_paragraph {
    font-size: 11px;
    line-height: 15px;
  }

  .footer-links ul li {
    margin: 3px 0;
  }

  .footer-links ul li a,
  .footer-social ul li a {
    font-size: 12px;
  }

  .footer-links h4,
  .footer-message h4 {
    font-size: 14px;
  }

  .footer-message form input,
  .footer-message form textarea {
    width: 75%;
    height: 32px;
    font-size: 12px;
    margin: 6px 0;
  }

  .footer-message form button {
    font-size: 12px;
    padding: 10px 15px;
  }

  .left-image img {
    display: none;
  }

  .contact_container {
    display: block;
    padding: 10px 15px;
  }

  .contact_form h2 {
    font-size: 21px;
  }

  .subbranches_heading {
    text-align: start;
    padding: 25px 15px 0px;
    font-size: 21px;
  }

  .subbranches_container {
    padding: 10px 15px;
  }

  .branch-info {
    padding: 5px;
    border-right: none;
  }

  .contactadressbanner-image img {
    display: none;
  }

  .contactadressbanner-wrapper {
    flex-direction: column;
    margin-bottom: -20px;
  }

  .contactadressbanner-left {
    width: 100%;
    text-align: start;
    padding: 10px 15px;
  }
}


.audioblog-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px 50px;
  margin: 0 auto;
}

.audioblog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audioblog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.audioblog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.audioblog-card-title {
  font-size: 21px;
  color: #222;
  margin: 5px 6px 4px;
  font-weight: 600;
}

.audioblog-card-details {
  font-size: 14px;
  color: #555;
  margin: 0 16px 10px;
  font-style: italic;
}

.audioblog-card-description {
  font-size: 14px;
  color: #666;
  line-height: 19px;
  margin-bottom: 20px;
}

.audio_header {
  font-size: 32px;
  padding: 30px 50px 0px;
}

/* Buttons or Links (Optional Styling for actions) */
.audioblog-card-action {
  margin: auto 15px 20px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.audioblog-card-action:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .audioblog-card-title {
    font-size: 1.5rem;
  }

  .audioblog-card-description {
    font-size: 0.95rem;
  }
}



/* whatsapp form  */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #18cc54;
  transition: background-color 0.3s ease-in-out;
  z-index: 1;
}

.whatsapp-icon:hover {
  background-color: #0f6b2e;
}

.whatsapp-icon img {
  width: 45px;
  height: 45px;
}

.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensures it stays on top of everything */
}

.form-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 350px;
  position: relative;
  z-index: 10000;
  /* Keeps the form container above overlay */
}

.form-container h2 {
  text-align: center;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit {
  background: #25D366;
  color: white;
}

.btn-cancel {
  background: #ddd;
}

.btn:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 35px;
    height: 35px;
    right: 5px;
  }

  .whatsapp-icon img {
    width: 40px;
    /* Adjust size */
    height: 40px;
  }

  .audioblog-card-image {
    height: 125px;
  }

  .audio_header {
    font-size: 21px;
    padding: 13px 15px 0px;
  }

  .audioblog-card-title {
    font-size: 15px;
  }

  .audioblog-card-description {
    font-size: 12px;
  }

  .audioblog-card-container {
    padding: 15px 20px;
  }
}



.contactadressbanner-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.contactadressbanner-left {
  background-color: #f7f7f7;
  /* Blue color */
  color: #000;
  width: 25%;
  padding: 40px;
  box-sizing: border-box;
  margin-top: 25px;
}

.contactadressbanner-left h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contactadressbanner-left p {
  font-size: 16px;
}

.contactadressbanner-image {
  width: 75%;
  margin-bottom: -7px;
  margin-top: 25px;
}

.contactadressbanner-image img {
  width: 100%;
  height: 250px;
}

@media (max-width: 768px) {
  .contactadressbanner-wrapper {
    flex-direction: column;
  }

  .contactadressbanner-left {
    width: 100%;
    text-align: start;
  }

  .contactadressbanner-image {
    width: 100%;
  }
}




/* Category Container */
.categorycards-container {
  width: 100%;
  margin: auto;
  padding: 30px 50px;
  box-sizing: border-box;
}

/* Title */
.categorycards-titles-10 {
  font-size: 36px;
  font-weight: bold;
  color: #192a56;
  text-align: center;
  margin-top: 30px;
  position: relative;
}

/* Row Wrapper */
.categorycards-row {
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}

/* Card Styling */
.categorycards-card {
  flex: 1 1 calc(25% - 18px); /* 4 cards per row with gap */
  max-width: calc(25% - 18px);
  height: 300px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Card Hover */
.categorycards-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Card Image */
.categorycards-card img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  border-radius: 7px;
}

/* Info Area */
.categorycards-info {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  transition: background-color 0.3s ease-in-out;
}

/* Hover Info */
.categorycards-card:hover .categorycards-info {
  background-color: #192a56;
  color: white;
}

/* Arrow Icon */
.categorycards-arrow {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.categorycards-card:hover .categorycards-arrow {
  opacity: 1;
}

/* WhatsApp Icon */
.whatsapp-icon-1 {
  width: 40px !important;
  height: 40px !important;
  cursor: pointer;
  background: #18cc54;
  border-radius: 50% !important;
  display: inline-block;
  margin-top: 10px;
}

/* Back Button */
.categorycards-bntcate {
  background-color: #192a56;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.categorycards-bntcate:hover {
  background-color: #3b5998;
}

/* Tablet: 2 Cards */
@media (max-width: 991px) {
  .categorycards-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
    height: 280px;
  }

  .categorycards-titles-10 {
    font-size: 28px;
  }

  .categorycards-info {
    font-size: 16px;
  }

  .categorycards-container {
    padding: 20px;
  }

  .categorycards-bntcate {
    font-size: 16px;
  }
}

/* Mobile: 1 Card */
@media (max-width: 576px) {
  .categorycards-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .categorycards-titles-10 {
    font-size: 22px;
  }

  .categorycards-info {
    font-size: 14px;
  }

  .categorycards-row {
    gap: 16px;
  }
}




/* Brand Section Wrapper */
.yssbrandsection-wrapper {
  background: #fff;
  padding: 0px 50px 50px;
  overflow: hidden;
}

/* Title Styling */
.yssbrandsection-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: start;
}

/* Slider Container */
.yssbrandsection-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Scrolling Track */
.yssbrandsection-track {
  display: flex;
  gap: 30px; /* Space between logos */
  animation: scrollBrands 25s linear infinite;
  width: max-content;
}

/* Pause scroll on hover */
.yssbrandsection-track:hover {
  animation-play-state: paused;
}

/* Brand Logo Item */
.yssbrandsection-item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* background: #f4f4f4; */
}

/* Brand Image */
.yssbrandsection-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Animation Keyframes */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .yssbrandsection-wrapper {
    padding: 20px;
  }

  .yssbrandsection-title {
    font-size: 24px;
  }

  .yssbrandsection-item {
    width: 120px;
    height: 80px;
  }

  .yssbrandsection-track {
    gap: 20px;
  }
}




/* categories section css  */
.ysscategorieshome-wrapper {
  padding: 30px 50px;
  margin: auto;
  /* background: #fff9ee; */
}

.ysscategorieshome-heading {
  text-align: center;
  margin-bottom: 15px;
  color: #000000;
}

.ysscategorieshome-heading h2 {
  font-size: 36px;
  font-weight: bold;
}

.ysscategorieshome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ysscategorieshome-card {
  padding: 20px;
  border: 1px solid #ccc;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: #fff;
  /* border-radius: 12px; */
  cursor: pointer;
}

.ysscategorieshome-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}


.ysscategorieshome-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* margin-bottom: 20px; */
}

.ysscategorieshome-title {
  font-size: 18px;
  font-weight: 600;
}

.ysscategorieshome-btn {
  display: flex;
  justify-content: center;
  padding: 15px 20px;
  border: none;
  font-weight: 600;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
}
.bnt-aaa{
  text-decoration: none;
}
.ysscategorieshome-btn:hover {
  background-color: #fff;
  border: #000 2px solid;
  color: #000;
  padding: 13px 18px;
}
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Tablet view: 3 columns */
@media screen and (max-width: 1024px) {
  .ysscategorieshome-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablets / large phones: 2 columns */
@media screen and (max-width: 768px) {
  .ysscategorieshome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ysscategorieshome-wrapper {
    padding: 25px 25px;
  }
}

/* Mobile view: 1 column */
@media screen and (max-width: 480px) {
  .ysscategorieshome-grid {
    grid-template-columns: 1fr;
  }

  .ysscategorieshome-wrapper {
    padding: 15px 15px;
  }

  .ysscategorieshome-img {
    height: 160px;
    width: 175px;
  }

  .ysscategorieshome-heading h2 {
    font-size: 24px;
    font-weight: bold;
  }

  .ysscategorieshome-title {
    font-size: 16px;
  }

  .ysscategorieshome-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}


/* number count section css  */
.ysscountnumbers-wrapper {
  background: url('../img/sound-engineer-work.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.ysscountnumbers-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.ysscountnumbers-container {
  /* max-width: 1300px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  color: #fff;
}

.ysscountnumbers-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ysscountnumbers-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.ysscountnumbers-icon img {
  width: 50px;
  height: 50px;
}

.ysscountnumbers-number {
  font-size: 36px;
  font-weight: bold;
}

.ysscountnumbers-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}


/* banners section css  */
.bannersectionconnect-wrapper {
  padding: 30px 50px;
  background-color: #fff;
}

.bannersectionconnect-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
}

.bannersectionconnect-card {
  display: flex;
  flex-direction: row;
  background-color: #f9f9f9;
  flex: 1 1 45%;
  min-width: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bannersectionconnect-content {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 30px;
  color: #fff;
}

.bannersectionconnect-overlay {
  padding: 30px 0px;
  text-align: start;
}

.bannersectionconnect-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #fff;
}

.bannersectionconnect-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  /* transition: 0.3s; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.bannersectionconnect-btn:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 8px 23px;
}


.bannersectionconnect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .bannersectionconnect-card {
    flex-direction: column;
  }

  .bannersectionconnect-img {
    max-width: 100%;
  }

  .bannersectionconnect-content {
    text-align: center;
    padding: 40px 20px;
  }

  .bannersectionconnect-btn {
    margin-top: 15px;
  }

  .bannersectionconnect-wrapper {
    padding: 25px 25px;
  }
}


/* what we section css  */
.soundoffersection-wrapper {
  padding: 30px 50px;
  margin: auto;
}

.soundoffersection-row {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
}

.soundoffersection-left {
  flex: 1 1 50%;
  padding-right: 20px;
}

.soundoffersection-title {
  font-size: 36px;
  font-weight: 600;
  color: #0c1f3c;
}

.soundoffersection-underline {
  width: 50px;
  height: 5px;
  background: #ffc107;
  margin: -5px 0 20px;
}

.soundoffersection-text {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.soundoffersection-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.soundoffersection-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.soundoffersection-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.soundoffersection-box img {
  width: 40px;
  margin-bottom: 15px;
}

.soundoffersection-box h4 {
  font-size: 16px;
  color: #0c1f3c;
  margin-bottom: 10px;
}

.soundoffersection-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.soundoffersection-box a {
  color: #ffc107;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.soundoffersection-box a:hover {
  text-decoration: underline;
}

/* ---------- Responsive Breakpoints ---------- */

/* Tablet View */
@media (max-width: 992px) {
  .soundoffersection-row {
    flex-direction: column;
  }

  .soundoffersection-left,
  .soundoffersection-right {
    flex: 1 1 100%;
  }

  .soundoffersection-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .soundoffersection-wrapper {
    padding: 25px 25px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .soundoffersection-title {
    font-size: 22px;
  }

  .soundoffersection-right {
    grid-template-columns: 1fr;
  }

  .soundoffersection-wrapper {
    padding: 20px 15px;
  }

  .soundoffersection-box {
    padding: 15px;
  }

  .soundoffersection-box h4 {
    font-size: 15px;
  }

  .soundoffersection-box p,
  .soundoffersection-box a {
    font-size: 13px;
  }
}


/* gallery sectiom css  */
.yssgallerysection-wrapper {
  padding: 40px 50px;
  background: #fff9ee;
}

.yssgallerysection-container {
  /* max-width: 1200px; */
  margin: auto;
}

.yssgallerysection-title {
  font-size: 36px;
  padding: 0px 0px 20px 0px;
  color: #000;
}

.yssgallerysection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.yssgallerysection-item {
  overflow: hidden;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.yssgallerysection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.yssgallerysection-item:hover img {
  transform: scale(1.05);
}

.yssgallerysection-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .yssgallerysection-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .yssgallerysection-grid {
    grid-template-columns: 1fr;
  }

  .yssgallerysection-title {
    font-size: 24px;
  }

  .yssgallerysection-wrapper {
    padding: 30px 15px;
  }
}


/* review section css  */
.yssreviewsection-wrapper {
  background: url('../img/review-bg.jpg') no-repeat center center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.yssreviewsection-bg {
  padding: 40px 50px;
  overflow: hidden;
  border-radius: 12px;
}

.yssreviewsection-title {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  text-align: start;
  margin-bottom: 15px;
}

.yssreviewsection-title span {
  color: #fff;
  border-bottom: 3px solid #fff;
}

.yssreviewsection-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.yssreviewsection-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 0 15px;
  width: 300px;
  min-height: 250px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.yssreviewsection-card.active {
  opacity: 1;
}

.yssreviewsection-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-footer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-footer h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.review-footer small {
  color: #888;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .yssreviewsection-title {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .yssreviewsection-bg {
    padding: 30px 20px;
  }

  .yssreviewsection-title {
    font-size: 24px;
  }

  .yssreviewsection-card {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .yssreviewsection-title {
    font-size: 18px;
  }

  .review-text {
    font-size: 14px;
  }

  .stars {
    font-size: 16px;
  }
}