* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-subtitle {
  letter-spacing: 4px;
  font-size: 18px;
  color: #f57c00;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle span {
  display: inline-block;
  opacity: 0;
}

.section-title {
  font-size: 48px;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

/* Sticky Style */

.navbar.sticky {
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hide on scroll down */

.navbar.hide {
  transform: translateY(-100%);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 35px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 8px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f57c00;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MENU TOGGLE */

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE SIDEBAR */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: #111;
  padding: 40px;
  transition: 0.4s;
  z-index: 9999;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar a {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown hidden by default */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  min-width: 300px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.4s ease;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 12px 15px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #f57c00;
}

/* HOVER EFFECT */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE DROPDOWN */

.mobile-dropbtn {
  color: #fff;
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding-left: 10px;
}

.mobile-dropdown-menu a {
  display: block;
  color: #ddd;
  margin-bottom: 12px;
  text-decoration: none;
  font-size: 14px;
}

/* ACTIVE STATE */
.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 300px;
}

/* ICON ROTATE */
.mobile-dropdown.active i {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    font-weight: 500;
  }

}

/* Active Nav Link */

.nav-links a.active,
.mobile-sidebar a.active {
  color: #ff8205;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

.mobile-dropdown-menu a.active {
  color: #f57c00;
  font-weight: 600;
}

/* ================= HERO ================= */

.hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  height: 80vh;
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 80vh;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
}

/* OVERLAY */

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.252);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 5;
  /* change from 2 to 5 */
  width: 100%;
}

.hero-content h1 {
  font-size: 55px;
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 20px;
}

/* request section  */

.hero-request {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.common-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 6px 8px 6px 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;

  background: #f57c00;
  color: #fff;
  font-size: 16px;
  font-weight: 500;

  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

/* LEFT TO RIGHT HOVER BG */
.common-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #0d3da5;
  z-index: -1;
  transition: width 0.4s ease;
}

.common-button:hover::before {
  width: 100%;
}

/* TEXT */


/* RIGHT ICON CIRCLE */
.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d3da5;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.4s;
}

/* ICON ROTATE */
.btn-icon i {
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}

/* HOVER EFFECT */
.common-button:hover .btn-icon {
  background: #fff;
  color: #0d5c58;
}

.common-button:hover .btn-icon i {
  transform: rotate(360deg);
}

/* MODAL */

.request-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.request-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.request-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  background: #fff;
  padding: 40px;
  width: 400px;
  border-radius: 10px;
  opacity: 0;
}

.request-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.request-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.request-box input,
.request-box textarea {
  padding: 12px;
  border: 1px solid #ddd;
}

.request-box button {
  background: #f57c00;
  color: #fff;
  padding: 12px;
  border: none;
}

/* ================= ABOUT ================= */

.about {
  padding: 80px 0;
  background: #f8f6f3;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE SIDE */
.about-images {
  position: relative;
  z-index: 1;
}

.about-images .img-main {
  width: 80%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.img-main,
.img-overlay {
  position: relative;
  z-index: 2;
}

.about-images .img-overlay {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 65%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* DECOR BORDER */
.about-images::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 70px;
  width: 80%;
  height: 100%;
  border: 5px solid #f57c00;
  z-index: 0;

  animation: borderMove 6s ease-in-out infinite;
}

@keyframes borderMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -10px);
  }

  50% {
    transform: translate(0px, 30px);
  }

  75% {
    transform: translate(-20px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.about-subtitle span {
  display: inline-block;
  opacity: 0;
}

/* CONTENT */
.about-content {
  padding-right: 40px;
}

.about-subtitle {
  letter-spacing: 4px;
  font-size: 18px;
  color: #f57c00;
  margin-bottom: 15px;
  font-weight: 600;

}

.about-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.about-highlight {
  color: #f57c00;
  font-size: 18px;

  margin-bottom: 20px;
  display: inline-block;
  font-weight: 500;
}

.about-text {
  color: #666;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* LIST */
.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: #444;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f57c00;
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-images {
    margin-bottom: 50px;
  }

  .about-images .img-main {
    width: 100%;
  }

  .about-images .img-overlay {
    width: 70%;
  }

  .hero-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 428px) {
  .about {
    padding: 40px 0;
    background: #f8f6f3;
  }

  .about-title {
    font-size: 32px;

    margin-bottom: 10px;
  }

  .hero {
    height: 60vh;
  }

  .hero-slider {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content {
    top: 40%;
  }

  .request-btn {
    padding: 10px 20px;
    font-size: 15px;
  }

  /* CONTENT */
  .about-content {
    padding-right: 0;
  }


  .about-subtitle {

    text-align: center;
  }

  .about-title {
    text-align: center;
  }

  .discover-morebtn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: fit-content;
    font-size: 14px;
  }

}

.feature-marquee {
  background: #0e0e0e;
  padding: 18px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.marquee-item i {
  color: #f57c00;
  font-size: 18px;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Services */

.services-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #111;
}

.services-header {
  text-align: center;
  margin-top: 40px;
}

.services-header .section-title {
  color: #1a1a1a;
}

.services-wrapper {
  display: flex;
  height: 100vh;
}

.service-card {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: 0.5s;
}

.service-card:hover .service-img img {
  transform: scale(1.2);
}

.service-content {
  width: 50%;
  padding: 100px;
  color: #fff;
}

.service-content h2 {
  font-size: 44px;
  margin-bottom: 20px;

  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

.service-content p {
  color: #aaa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-service-btn {
  margin-top: 20px;
}
/* ================= SERVICES RESPONSIVE FIX ================= */

/* MOBILE FIRST (default fix) */
@media (max-width: 768px) {
  .services-section {
    height: auto;
    overflow: visible;
    padding: 40px 0;
  }

  .services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }

  .service-card {
    min-width: 100%;
    height: auto;
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    height: 220px;
  }

  .service-content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .service-content h2 {
    font-size: 26px;
  }

  .services-header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .services-subtitle {
    margin-bottom: 8px;
  }

  
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-section {
    height: auto;
    overflow: visible;
    padding: 60px 0;
  }

  .services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    height: auto;
  }

  .service-card {
    min-width: 100%;
    height: auto;
    flex-direction: column;
  }

  .service-img {
    width: 100%;
    height: 250px;
  }

  .service-content {
    width: 100%;
    padding: 25px;
  }

  .service-content h2 {
    font-size: 30px;
  }
}

/* ---------------------- Count section ----------------------- */

.count-section {
  padding: 60px 0;
  background: #f4f4f4;
}

.count-wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.count-left {
  background: #1c2a36;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.count-left h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 40px;
}

.experience h3 {
  font-size: 60px;
  font-weight: 700;
}

.experience span {
  color: #bbb;
}

.count-right {
  display: flex;
  flex-direction: column;
}

.count-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.count-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f57c00;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.count-item h3 {
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 700;
}

.count-item p {
  font-size: 14px;
}

/* responsive */

@media (max-width: 991px) {
  .count-wrapper {
    grid-template-columns: 1fr;
  }

  .count-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .count-left {
    padding: 40px;
  }
}

@media (max-width: 428px) {
  .count-section {
    padding: 40px 0;
    background: #f4f4f4;
  }

  .count-left {
    padding: 20px;
  }

  .count-left h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
  }

  .experience h3 {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
  }

  .experience span {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 15px;
  }
}

/* FAQ SECTION */

/* FAQ PREMIUM */

.faq-section {
  padding: 80px 0;
  background: #0e0e0e;
  color: #fff;
}

.faq-header {
  text-align: center;
}

.faq-header p {
  margin-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 45% 45%;
  gap: 60px;
  align-items: center;
}

.faq-left img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.faq-question {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.faq-question h3 {
  font-size: 18px;
}

.faq-question span {
  min-width: 35px;
  min-height: 35px;
  background: #f57c00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 25px;
  color: #bbb;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active span {
  transform: rotate(45deg);
  background: #fff;
  color: #111;
}

/* Responsive */

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-left img {
    height: 400px;
  }

  .faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 428px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left img {
    height: 400px;
  }

  .faq-section {
    padding: 30px 0;
  }

  .faq-question span {
    min-width: 30px;
    min-height: 30px;
    font-size: 12px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding-bottom: 20px;
    color: #bbb;
    line-height: 1.3;
    font-size: 15px;
  }
}

/* ------------ Testimonials ------------ */
/* ================= TESTIMONIAL ================= */

.testimonials {
  padding: 100px 0;
  background: linear-gradient(to right, #f7f6f2, #ffffff);
  position: relative;
}

/* HEADER */

.testi-header-top {
  text-align: center;
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.testi-top h2 {
  font-size: 32px;
  color: #152e66;
  font-weight: 700;
}

/* GOOGLE BOX */

.google-box {
  background: #0d3da5;
  padding: 20px 25px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid #fff;
}

.plus {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.rating span {
  display: block;
  font-size: 12px;
}

/* CARD */

.testi-card {
  margin-top: 50px;
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT IMAGE */

.testi-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */

.testi-right {
  padding: 50px;
  position: relative;
}

.stars {
  color: #ffb400;
  margin-bottom: 20px;
}

.stars span {
  color: #555;
  margin-left: 10px;
}

.testi-text {
  font-size: 15px;
  color: #555;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* CLIENT */

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 55px;
  height: 55px;
  border-radius: 10px;
}

.client span {
  font-size: 12px;
  color: #888;
}

.client h4 {
  font-size: 18px;
  color: #123b2f;
}

.testi-nav {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
}

.testi-nav button {
  width: 40px;
  height: 40px;
  border: none;
  background: #f57c00;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.testi-nav button:hover {
  background: #0d3da5;
}

/* DOTS */

.dots {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin-left: 6px;
}

.dots .active {
  background: #f4c400;
}

/* RESPONSIVE */

/* ================= TESTIMONIAL RESPONSIVE IMPROVEMENT ================= */

/* SMALL MOBILE (320px - 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 50px 0;
  }

  .testi-header-top {
    padding: 0 15px;
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testi-top h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .google-box {
    width: 100%;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .avatars img,
  .plus {
    width: 30px;
    height: 30px;
  }

  /* CARD FIX */
  .testi-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .testi-left {
    height: 200px;
  }

  .testi-right {
    padding: 20px;
  }

  .testi-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .client img {
    width: 45px;
    height: 45px;
  }

  .client h4 {
    font-size: 16px;
  }

  /* NAV BUTTON FIX */
  .testi-nav {
    position: static;
    margin-top: 20px;
  }

  .testi-nav button {
    width: 35px;
    height: 35px;
  }

  /* DOTS CENTER */
  .dots {
    position: static;
    margin-top: 15px;
    text-align: center;
  }
}

/* MOBILE LARGE / TABLET */
@media (min-width: 481px) and (max-width: 768px) {
  .testi-card {
    grid-template-columns: 1fr;
  }

  .testi-left {
    height: 250px;
  }

  .testi-right {
    padding: 25px;
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-nav {
    position: static;
    margin-top: 20px;
  }

  .dots {
    position: static;
    margin-top: 15px;
    text-align: center;
  }
}

/* TABLET LANDSCAPE */
@media (min-width: 769px) and (max-width: 1024px) {
  .testi-card {
    grid-template-columns: 1fr;
  }

  .testi-left {
    height: 300px;
  }

  .testi-right {
    padding: 30px;
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* LARGE SCREEN IMPROVEMENT */
@media (min-width: 1400px) {
  .testi-card {
    max-width: 1200px;
    margin: 50px auto 0;
  }

  .testi-text {
    font-size: 16px;
  }
}

/* FOOTER */

/* SOCIAL SIDEBAR */

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #f57c00, #c9184a);
  padding: 18px 12px;
  border-radius: 25px 0 0 25px;
  z-index: 9999;
  transition: 0.4s ease;
  height: 210px;
}

.social-sidebar.left {
  left: 0;
  right: auto;
  border-radius: 0 25px 25px 0;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.4s;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER ANIMATION */
.social-icons a:hover {
  transform: scale(1.2) translateX(5px);
}

/* TOGGLE BUTTON */
.toggle-btn {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  position: absolute;
  bottom: 14px;
  right: 15px;
}

/* CLOSED STATE */
.social-sidebar.closed.right {
  transform: translate(80%, -50%);
}

.social-sidebar.closed.left {
  transform: translate(-80%, -50%);
}

.social-sidebar.closed {
  height: 50px;
  overflow: hidden;
}

/*  ---------------------- Process Of Work --------------------- */

/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 100px 0;
  background: #f2f2f2;
}

.process-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

/* CARD */
.process-card {
  width: 220px;
  background: #eee;
  border-radius: 120px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  transition: all 0.6s ease;
}

/* TOP CIRCLE */
.process-top {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* GRADIENT COLORS */
.bg1 {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.bg2 {
  background: linear-gradient(135deg, #7b4397, #dc2430);
}

.bg3 {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.bg4 {
  background: linear-gradient(135deg, #ff8008, #ffc837);
}

.bg5 {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* BODY */
.process-body {
  padding: 20px;
}

.process-body i {
  font-size: 30px;
  color: #777;
  margin-bottom: 15px;
}

.process-body h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-body p {
  font-size: 13px;
  color: #777;
}

/* ARROW BUTTON */
.process-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-arrow i {
  color: #777;
}

/* HOVER EFFECT */
.process-card:hover {
  transform: translateY(-10px);
  transition: 0.4s;
}

@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------------------- Get a Request -------------------- */

/* CONTACT HERO */

.contact-hero {
  position: relative;
  background: url("../images/contact-section-background-image.webp") center/cover no-repeat;
  padding: 80px 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(54, 54, 54, 0.329);
}

.contact-box {
  position: relative;
  background: #fff;
  max-width: 820px;
  margin: auto;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-box p {
  color: #555;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  resize: none;
  font-family: inherit;
}

.contact-box button {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.error {
  color: red;
  font-size: 12px;
}

/* CTA SECTION */

.cta-section {
  background: #f57c00;
  padding: 60px 0;
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-left h2 {
  color: #fff;
  font-size: 34px;
  max-width: 600px;
}

.cta-right img {
  width: 180px;
}

/* Responsive */

@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-hero {
    padding: 80px 20px;
  }
}

/* FOOTER */

.main-footer {
  /* background: linear-gradient(135deg, #0d3d2c, #0f5a3f); */
  background: #1e1e1e;

  color: #fff;
  padding-top: 60px;
  overflow: hidden;
}

/* marquee */

.footer-marquee {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 50px;
}

.footer-marquee-track {
  display: inline-flex;
  gap: 80px;
  font-size: 120px;
  font-weight: 700;
  animation: scrollFooter 60s linear infinite;
}

.footer-marquee-track span {
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.08;
}

.footer-marquee-track span:hover {
  color: #f57c00;
  opacity: 1;
}

@keyframes scrollFooter {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* footer layout */

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-left img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-left p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-input {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-input input {
  background: none;
  border: none;
  color: #fff;
  padding: 10px;
  width: 100%;
}

.footer-input i {
  padding: 10px;
  cursor: pointer;
}

/* links */

.footer-links h4 {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #ccc;
  margin-bottom: 14px;
  text-decoration: none;
  position: relative;
  padding-left: 18px;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #f57c00;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.3s;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #f57c00;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-links a:hover::after {
  width: 40%;
}

/* bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 20px 40px;
  background: #0e0e0e;
  color: #ccc;

  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom div {
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social i {
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  color: #f57c00;
  transform: translateY(-3px);
}

.footer-links-wrapper {
  display: contents;
}

/* CONTACT BOX DESIGN */
.contact-box {
  position: relative;
  color: #151515;

}

/* each item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #151515;
  font-size: 15px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* icon style */
.contact-item i {
  width: 36px;
  height: 36px;
   min-width: 36px;   /* 🔥 IMPORTANT */
  flex-shrink: 0;
  background: rgba(245, 124, 0, 0.1);
  color: #f57c00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s ease;
}

/* hover effect */
.contact-item:hover {
  color: #1c1c1c;
  transform: translateX(5px);
}

.contact-item:hover i {
  background: #f57c00;
  color: #fff;
  transform: scale(1.1);
}

/* optional subtle divider */
.contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateY(28px);
}

/* responsive */

@media (max-width: 992px) {
  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .footer-bottom {
    padding: 15px;
    gap: 10px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-social i {
    font-size: 14px;
  }
}

/* ================= FOOTER RESPONSIVE FIX ================= */

/* 900px নিচে */
@media (max-width: 900px) {
  .footer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* LEFT FULL WIDTH */
  .footer-left {
    width: 100%;
  }

  /* LINKS 3 COLUMN */
  .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* 768px নিচে */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* LEFT CENTER */
  .footer-left {
    text-align: center;
  }

  /* LINKS LAYOUT CHANGE */
  .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* LAST (CONTACT) FULL WIDTH */
  .footer-links:last-child {
    grid-column: span 2;
  }
}