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

html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
html {
  font-family: "Maven Pro" !important;
  margin: 0;
  padding: 0;
  background-image: url('../assets/images/BG.png');
  background-color: #060F13;
  color: #F4F1D2;
  /* scroll-behavior: smooth; */
  position: relative;
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pattern.png");
  background-repeat: repeat;       /* For pattern */
  background-size: auto;           /* Or set custom size */
  z-index: -1;                      /* Behind everything */
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 10px 60px;
  z-index: 10;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}

.log_img {
  background-image: url('../assets/images/logo.svg');
  color: #F4F1D2;
  width: 157px;
  height: 35px;
  opacity: 1;
  top: 20px;
  left: 80px;

}

.talk_btn {
  background-color: #F4F1D2;
  width: 144px;
  height: 42px;
  opacity: 1;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 400;
  border: 0;

}

.sections {
  padding-left: 300px;
}

.inner__sections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 100px;
}

.inner__sections--image {
  display: inline-flex;
  width: 28vw;
  justify-content: center;
  align-items: center;
}

.inner__sections--image img {
  object-fit: contain;
}

section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Navbar Container */
.nav-container {
  position: fixed;
  top: 15%;
  left: 50px;
  z-index: 1000;
}

/* Progress Line */
.progress-line {
  position: absolute;
  left: 48px;
  top: 0;
  width: 2px;
  height: 541px;
  background-color: #444;
}

/* Nav List */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Each Nav Item */
.nav-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  color: #F4F1D2;
  position: relative;
  left: 46px;
  cursor: pointer;
  transition: 0.3s;
  height: 75px;
}

.nav-list li .dot {
  width: 5px;
  height: 5px;
  background-color: #888;
  border-radius: 50%;
  transition: 0.3s;
}

.nav-list li .number {
  font-size: 16px;
}

.nav-list li .label {
  opacity: 0;
  font-size: 16px;
  color: #F4F1D2;
  transition: opacity 0.3s ease;
  line-height: 30px;
  font-weight: 500;
}

/* Active State */
.nav-list li.active .dot {
  background-color: #F4F1D2;
  width: 10px;
  height: 10px;
  position: relative;
  left: -2px;
}

.nav-list li.active .number {
  color: #F4F1D2;
  font-weight: bold;
  position: absolute;
  left: -30px;
}

.nav-list li.active .label {
  opacity: 1;
}

.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 100px;

}

/* Text */
.home_text {
  max-width: 540px;

}

.text_content {
  position: relative;
  color: #F4F1D2;
}

.text_content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 48px;
}

.text_content p {
  color: #C4C4AC;
  /* margin-bottom: 30px; */
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* Button */
.explore-btn {
  background: none;
  color: #F4F1D2;
  margin-top: 20px;
  border: 2px solid #F4F1D2;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  /* transition: background 0.3s; */
}
.explore-btn a{
  color: #F4F1D2;
  text-decoration: none;
  /* display: block ; */
}

.explore-btn:hover {
  background: #F4F1D2;
  color: #0f1a1a;
}
.explore-btn:hover a{
   color: #0f1a1a;
}

.services-text h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.services-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 600px;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 680px;
}

.service-card {
  border: 1px dashed #444;
  padding: 20px;
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.3s ease;
  width: 330px;
  margin-bottom: 20px;
}

.service-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.service-card .iconbox {
  width: 40px;
  height: 40px;
  display: inline-flex;
  background-repeat: no-repeat;
}

.service-card .brand_identity {
  background-image: url('../assets/images/brand.svg');
}

.service-card .digital_design {
  background-image: url('../assets/images/Digital.png');
}

.service-card .visual_design {
  background-image: url('../assets/images/Vector.png');
}

.service-card .Environmental_icon {
  background-image: url('../assets/images/Environmental_Design.svg');
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #F4F1D2;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
}

.works-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #F4F1D2;
}

.work_container {
  width: 100%;
  display: flex;
}

.works-grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 380px);

}

.work-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: calc(33.33% - 10px); */
  flex-shrink: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  filter: grayscale(100%);
}

/* .work-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
} */
.testimonials-section {
  width: 42%;
  max-width: 720px;
  margin-bottom: 10px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial {
  background-color: #f4f1de;
  color: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  height: 100%;

}

.quote-mark {
  font-size: 117px;
  line-height: 0.6;
  color: #101820;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
}

.marlos {
  position: absolute;
  bottom: 20px;
}

.author-img {
  width: 150px;
  height: 138px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  filter: grayscale(100%);
}

.quote_text_head {
  color: #060F13;
  font-size: 16px;
  font-weight: 600;
}

.quote-text {
  font-size: 14px;
  color: #060F13;
  font-weight: 400;

}

/* Make sure nav buttons are visible and clickable */
.swiper-button-prev,
.swiper-button-next {
  color: #101820;
  z-index: 20;
  /* in front of slide content */
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* reposition arrows slightly inside the container */
.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: -10px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -40px) !important;
  top: 20px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
  background-color: transparent;
}

.swiper-button-next,
.swiper-rtl .swiper-button-next {
  top: 20px !important;
}

/* If something accidentally disables pointer events on parents */
.swiper,
.swiper-wrapper,
.swiper-slide {
  pointer-events: auto;
}

.swiper-button-prev,
.swiper-button-next {
  border: none !important;
  background: transparent;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: none;
}

.left_arrow {
  rotate: 180deg;
}

.contact-left,
.contact-right {
  padding: 30px;
}

.contact-left {
  flex: 1;
  border-right: 1px solid #333;
}

.contact-left h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.contact-left p {
  color: #F4F1D2;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input,
select,
textarea {
  background: transparent;
  border: 1px solid #444;
  padding: 10px;
  color: #F4F1D2;
  width: 100%;
  border-radius: 5px;
  font-size: 0.95rem;
}

.form-row select option {
  color: #060F13;
}

textarea {
  margin-bottom: 15px;
  resize: none;
}

.file-upload {
  display: flex;
  align-items: center;
  /* padding: 10px; */
  margin-bottom: 20px;
  font-size: 0.9rem;
  background-color: #F4F1D233;
  border-radius: 3px;
}

.file-upload label {
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}

.file-upload input[type="file"] {
  display: none;
}

.file-types {
  color: #888;
  font-size: 0.85rem;
}

.submit-btn {
  background: none;
  color: #F4F1D2;
  margin-top: 20px;
  border: 2px solid #F4F1D2;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-btn:hover{
  background: #F4F1D2;
  color: #060F13;
}

/* Notification Popup Styles */
.notification-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.notification-popup.show {
  display: flex;
}

.notification-content {
  background: #0f1416;
  border: 2px solid #F4F1D2;
  border-radius: 15px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.notification-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #F4F1D2;
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
}

.notification-close:hover {
  background: rgba(244, 241, 210, 0.1);
  transform: rotate(90deg);
}

.notification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
}

.notification-icon.success {
  background: rgba(76, 175, 80, 0.2);
  border: 3px solid #4CAF50;
  color: #4CAF50;
}

.notification-icon.error {
  background: rgba(244, 67, 54, 0.2);
  border: 3px solid #F44336;
  color: #F44336;
}

.notification-icon span {
  display: block;
}

.notification-content h3 {
  color: #F4F1D2;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.notification-content p {
  color: #C4C4AC;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.notification-btn {
  background: #F4F1D2;
  color: #060F13;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Maven Pro", sans-serif;
}

.notification-btn:hover {
  background: #e0ddd0;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.contact-right {
  flex: 0.8;
  text-align: center;
}

.contact-right h2 {
  font-size: 0.95rem;
}

.insta-title {
  font-size: 2rem;
  color: #F4F1D2;
  margin: 10px 0;
}

.insta-handle {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #F4F1D2;
}

.qr-code img {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

.contact-info {
  margin: 5px 0px;
  font-size: 16px;
  color: #F4F1D2;
  /* display: flex; */
  justify-content: center;
}

/* .email::before {
  content: "";
  border: 1px solid #F4F1D2;
  margin: 0px 15px;
  height: 10px;
} */

.call_icon {
  background-image: url('../assets/images/call_icon.svg');
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  display: inline-flex;
  margin-right: 10px;
}

.email_icon {
  background-image: url('../assets/images/mail_icon.svg');
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
  display: inline-flex;
  margin-right: 10px;

}

.call_num {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}

.work-item img {
  width: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Popup modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  max-width:40%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.close_btn {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background-color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;

}

.popup_img {
  width: 550px;
  height: 550px;
}
.work_swiper_img img{
  position: relative;
}
.swiper.work_swiper_tab { 
  display: flex !important;
  /* justify-content: center; */
  /* background: transparent !important; */
  height: 80px;
  position: absolute !important;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  width: 200px;
  border-radius: 2px !important;
  padding: 5px;
}
.tab_img img{
  width: 200px !important;
}
.contact_text {
  font-size: 20px;
  font-weight: 600px;
}


.footer_wrap {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 40px;
  height: 40px;
  background: url('../assets/images/up-square-2.png') no-repeat center / cover;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.copyright {
  padding: 20px 60px;
}

.desk_dn {
  display: none;

}

.mob_dn {
  display: block;
}

.open-btn img {
  width: 250px;
  cursor: pointer;
  border-radius: 10px;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  z-index: 9999;
}

.popup.active {
  display: flex;
}

.popup-box {
  background: white;
  padding: 20px;
  border-radius: 18px;
  max-width: 900px;
  width: 90%;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 26px;
  background: #000;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Main big image */
.swiper-main img {
  width: 100%;
  border-radius: 12px;
  height: 450px;
  object-fit: cover;
}

/* Thumbnails */
.swiper-thumbs {
  margin-top: 15px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}

.swiper-thumbs img {
  height: 70px;
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.swiper-slide-thumb-active img {
  border-color: #007bff;
}

@media (max-width: 1366px) {
  .nav-list li {
    height: 70px;
    margin: 15px 0px;
  }

  .progress-line {
    height: 450px;
  }

  .notification-content {
    max-height: 390px;
  }

  .modal-content img {
    max-height: 70vh;
  }
}

@media screen and (min-width: 768px) and (min-width: 992px) {
  .sections {
    padding-left: 250px !important;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
  }

  .inner__sections {
    padding-right: 50px !important;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 375px) !important;
    right: auto;
  }

  .work-item img {
    width: 180px;
  }

  .inner__sections--image {
    width: 23rem;
  }

  /* .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 425px) !important;
    right: auto;

  } */
}

@media screen and (max-width: 1024px) {

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 45px) !important;
    right: auto;
  }

}

@media screen and (max-width: 600px) {
  body {
    padding-bottom: 120px;
  }

  .sections {
    padding-bottom: 140px;
  }

  .mob_dn {
    display: none;
  }

  .desk_dn {
    display: block;
  }

  header {
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: #060F13;
    position: fixed;
    z-index: 100;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    gap: 10px;
    background-color: #060F13;
  }

  .menu_icon {
    background: url("../assets/images/menu_icon.png") no-repeat;
    background-size: contain;
    background-position: center;
    width: 35px;
    height: 15px;
    border: none;
    flex-shrink: 0;
    opacity: 1;
    display: block;
  }

  .sidebar {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0f1416;
    z-index: 1000;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .sidebar.open {
    display: block;
    /* show when active */
  }


  /* Close button styling */
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0b0;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .menu_icon div {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5f0cf;
    transition: all 0.3s;
  }

  .menu_icon div {
    top: 1px;
  }

  .menu_icon::before {
    top: 0;
  }

  .menu_icon::after {
    bottom: 0;
  }


  /* Close button */
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #c0c0b0;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .menu_items {
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .home_icon {
    background-image: url('../assets/images/home_icon.png');
  }

  .service_icon {
    background-image: url('../assets/images/services_icon.png');

  }

  .about_icon {
    background-image: url('../assets/images/about_icon.png');


  }

  .work_icon {
    background-image: url('../assets/images/work_icon.png');

  }

  .contact_icon {
    background-image: url('../assets/images/contact_icon.png');

  }

  /* Menu styling */
  .menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #8b8b80;
    font-size: 32px;
    font-weight: 500;
    transition: color 0.3s;
  }

  .menu-item i {
    font-size: 1.2rem;
  }

  /* Active and hover states */
  .menu-item.active,
  .menu-item:hover {
    color: #f5f0cf;
    font-weight: 600;
  }

  /* Footer section */
  .footer {
    text-align: center;
    color: #8b8b80;
    position: absolute;
    bottom: 0px;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    color: #f5f0cf;
  }

  .logo-icon {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
  }

  .logo-text {
    font-size: 1rem;
    text-transform: lowercase;
  }

  .logo-text small {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .footer p {
    font-size: 0.8rem;
    color: #7f7f70;
    margin-top: 0.5rem;
  }

  section {
    height: 100%;
    display: block;
    position: relative;
    top: 0px;
    margin: 0px 0px 100px 0px;
  }

  .home {
    text-align: center;
    display: block;
    margin-bottom: 20px;
    padding-right: 0px;
  }

  .home_text {
    width: 100%;
  }

  .text_content {
    text-align: center;
    margin-bottom: 30px;
  }

  .text_content h1 {
    font-size: 24px;
    line-height: 1;
    padding: 0px;
  }

  .text_content p {
    font-size: 14px;
    font-weight: 400;
  }

  .log_img {
    width: 135px;
    height: 30px;
    background-image: url('../assets/images/Group\ 24.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .sections {
    padding: 20px;
  }

  .inner__sections--image {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }

  .inner__sections {
    display: block;
    padding-right: 0px;
    position: relative;
    top: 70px;
  }

  .services-text h2 {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .services-grid {
    display: block;
    width: 100%;
  }

  .service-card {
    text-align: center;
    width: 100%;
  }

  .work_container {
    display: block;
  }

  .works-grid {
    display:flex;
    width: 100%;
    gap: 0px;
  }

  .work-item {
    width: 48%;
    margin-right: 10px;
  }
  .work-item:nth-child(2),
.work-item:nth-child(4),
.work-item:nth-child(6) {
  margin-right: 0;
}

  .work-item img {
    width: 100%;
  }
.modal-content {
      max-width: 80%;
}
  .testimonial {
    width: 100%;
    height: 440px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 254px !important;
  }

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

  .contact-left {
    border-right: none;
  }

  .contact-left,
  .contact-right {
    padding: 0px;
    text-align: center;
    margin-bottom: 40px;

  }

  .form-row {
    display: block;
    margin-bottom: 0px;
  }

  .form-row input,
  select {
    margin-bottom: 15px;
  }

  .contact-info {
    display: block;
  }

  .call_num {
    display: block;
    margin: 5px;
  }

  .email ::before {
    content: '';
    border: none;
  }
.mt-10{
  margin-top: 10px;
}
  .footer_wrap {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 1;

  }

  .footer_talk_btn {
    width: 100%;
    background-color: #F4F1D2;
    height: 42px;
    opacity: 1;
    font-size: 20px;
    font-weight: 400;
    border: 0;
  }

  .testimonials-section {
    width: 100%;
  }

  .quote-mark {
    font-size: 140px;
    margin-bottom: 0px;
    text-align: center;
  }

  .quote-text {
    text-align: center;
  }

  .contact-info {
    font-size: 14px;
  }

  .contact_text {
    font-size: 14px;
  }

  .email::before {
    margin-right: 0px;
    border: 0px;
  }

  /* Notification Popup Mobile Styles */
  .notification-content {
    padding: 30px 20px;
    max-width: 90%;
  }

  .notification-content h3 {
    font-size: 20px;
  }

  .notification-content p {
    font-size: 14px;
  }

  .notification-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  /* Modal Content Image Mobile Styles */
  .modal-content img {
    max-width: 100%;
    max-height: 40vh;
    border-radius: 8px;
  }
}

@media screen and (max-width: 400px) {
  .menu-item {
    font-size: 20px;
  }

  .text_content h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .services-text h2 {
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }
}

/* Main big image
    .swiper-main img {
        width: 100%;
        border-radius: 12px;
        height: 450px;
        object-fit: cover;
    } */

    /* Thumbnails */
    /* .swiper-thumbs {
        margin-top: 15px;
        padding: 10px;
        background: #fff;
        border-radius: 12px;
    }
    .swiper-thumbs img {
        height: 70px;
        width: 100px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
    } */

    /* .swiper-slide-thumb-active img {
        border-color: #007bff;
    } */