@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
}

p, a, li, span {
  font-family: "Roboto", sans-serif;
}

.section-title .section-heading {
  color: #fe7109;
  font-size: 43px;
  font-weight: bold;
  text-transform: capitalize;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 193, 7, 0.9) 25%, rgba(254, 113, 9, 0.8) 75%, #ffffff 100%);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 10px;
}
.section-title .section-des {
  color: #2e2e2e;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title .section-des .left-vec, .section-title .section-des .right-vec {
  width: 20px;
  margin: 0 10px;
}

section {
  padding: 80px 0px;
}

@media (max-width: 991.98px) {
  .section-title .section-heading {
    color: #fe7109;
    font-size: 27px;
    margin-bottom: 10px;
  }
  .section-title .section-des {
    color: #2e2e2e;
    font-size: 16px;
  }
  section {
    padding: 60px 0px;
  }
}
.both-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.top-bar {
  padding: 8px 0;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.top-bar__notice {
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.contact-info__link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  font-size: 13px;
}
.contact-info__link:hover {
  color: #fe7109;
}
.contact-info__link:hover .contact-info__icon {
  transform: scale(1.1);
}
.contact-info__icon {
  margin-right: 6px;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
}
@media (max-width: 992px) {
  .contact-info {
    display: none;
  }
}

.main-header {
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1000;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  width: 100vw;
}
.main-header.sticky .container {
  padding-top: 12px;
}
.main-header.sticky .header-logo {
  bottom: 0px;
}
.main-header.sticky .header-logo img {
  width: fit-content;
}
.main-header.sticky .header-logo__image {
  max-height: 45px;
  transform: translateY(-5px);
}
.main-header.sticky .main-nav__container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.main-nav {
  padding: 0;
}
.main-nav__container {
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-nav__container {
    padding-top: 5px;
  }
}
@media (max-width: 991.98px) {
  .main-nav__collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
}
.main-nav__menu {
  gap: 8px;
  margin-left: 80px;
}
@media (max-width: 991.98px) {
  .main-nav__menu {
    margin-left: 0;
  }
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  color: #ffffff;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-transform: capitalize;
  font-size: 15px;
  border-radius: 4px;
}
.main-nav__link:hover {
  color: #fe7109;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.main-nav__link:hover::after {
  width: 60%;
  opacity: 1;
}
.main-nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background: linear-gradient(90deg, #fe7109, #00cc26);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 1px;
}
@media (max-width: 991.98px) {
  .main-nav__link {
    color: #333333;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .main-nav__link:hover {
    background: transparent;
    color: #fe7109;
    padding-left: 10px;
  }
}
.main-nav__dropdown {
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 8px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 991.98px) {
  .main-nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    margin-top: 10px;
    margin-left: 20px;
  }
}
.main-nav__dropdown-link {
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
  color: #333333;
  font-size: 14px;
  border-radius: 0;
}
.main-nav__dropdown-link:hover {
  background: linear-gradient(135deg, #fe7109, #00cc26);
  color: #ffffff;
  padding-left: 25px;
  transform: translateX(2px);
}

.header-logo {
  position: absolute;
  left: 0;
  bottom: -60px;
  z-index: 10;
}
.header-logo__image {
  width: 120px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.header-logo__image:hover {
  transform: scale(1.05) rotate(5deg);
  border-color: #fe7109;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991.98px) {
  .header-logo {
    position: static;
    transform: none;
  }
  .header-logo__image {
    width: 70px;
  }
}

.header-cta {
  background: linear-gradient(135deg, #fe7109, #00cc26);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.3s ease-in-out;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}
.header-cta:hover::before {
  left: 100%;
}
@media (max-width: 991.98px) {
  .header-cta {
    padding: 10px 20px;
    font-size: 13px;
    display: inline-block;
  }
}

.mobile-toggle {
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
}
.mobile-toggle:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  border-color: #fe7109;
}
.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.mobile-toggle__icon {
  color: #ffffff;
  font-size: 18px;
}

body.sticky-active {
  padding-top: 85px;
}
@media (max-width: 991.98px) {
  body.sticky-active {
    padding-top: 70px;
  }
}

.simple-footer {
  background: #000000;
  color: #2e2e2e;
  margin-top: 60px;
  font-size: 15px;
}

.newsletter-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-section .newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.newsletter-section .newsletter-text {
  flex: 1 1 50%;
}
.newsletter-section .newsletter-text h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.newsletter-section .newsletter-text p {
  margin: 0;
  color: #ffffff;
}
.newsletter-section .newsletter-form {
  flex: 1 1 40%;
  min-width: 300px;
}
.newsletter-section .newsletter-form .subscription-form {
  display: flex;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 5px;
  max-width: 400px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-section .newsletter-form .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  flex-grow: 1;
  outline: none;
}
.newsletter-section .newsletter-form .form-control::placeholder {
  color: #2e2e2e;
}
.newsletter-section .newsletter-form .btn-submit {
  background-color: #fe7109;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.newsletter-section .newsletter-form .btn-submit:hover {
  background-color: #d35a01;
  transform: scale(1.1);
}

.footer-main {
  padding: 70px 0 60px;
}
.footer-main .footer-brand .footer-logo img {
  max-width: 180px;
  margin-bottom: 25px;
}
.footer-main .footer-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-main .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #fe7109;
  border-radius: 2px;
}
.footer-main .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-main .footer-list li {
  margin-bottom: 12px;
}
.footer-main .footer-list a, .footer-main .footer-list span {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer-main .footer-list a:hover {
  color: #fe7109;
  padding-left: 5px;
}
.footer-main .footer-list i {
  margin-right: 12px;
  color: #fe7109;
  width: 16px;
}
.footer-main .contact-list li {
  display: flex;
  align-items: flex-start;
}
.footer-main .contact-list li i {
  margin-top: 4px;
}
.footer-main .map-card .map-title {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 10px;
}
.footer-main .map-card iframe {
  height: 100px;
  border-radius: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.social-links .social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.social-links .social-icon:hover {
  background-color: #fe7109;
  transform: translateY(-5px);
  color: #ffffff;
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #fe7109;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #fe7109;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background-color: #d35a01;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .newsletter-form .subscription-form {
    margin-right: auto;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .footer-main {
    padding: 40px 0;
    text-align: center;
  }
  .footer-main .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-brand, .social-links {
    justify-content: center;
  }
  .contact-list li {
    justify-content: center;
  }
  .newsletter-section {
    text-align: center;
  }
  .newsletter-section .newsletter-wrapper {
    justify-content: center;
  }
  .newsletter-section .newsletter-form .subscription-form {
    margin: 0 auto;
  }
}
.banner-section2 {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #232324 0%, #181020 100%);
}
.banner-section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.726);
  z-index: 1;
}
.banner-section2 .background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-section2 .background-slider .background-image-slider {
  width: 100%;
  height: 100%;
}
.banner-section2 .background-slider .background-image-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.banner-section2 .background-slider .background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  filter: brightness(0.7) saturate(1.2);
}
.banner-section2 .background-slider .background-image .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.85) 0%, rgba(254, 113, 9, 0.2) 30%, rgba(255, 193, 7, 0.1) 70%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.banner-section2 .banner-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.banner-section2 .banner-content-wrapper .container {
  z-index: 11;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content {
  color: #ffffff;
  max-width: 650px;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffc107;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.15);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content span img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(58%) saturate(2076%) hue-rotate(21deg) brightness(101%) contrast(101%);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content h1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 35px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 193, 7, 0.9) 25%, rgba(254, 113, 9, 0.8) 75%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite alternate;
  position: relative;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffc107 0%, #fe7109 100%);
  border-radius: 2px;
  opacity: 0.8;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fe7109 0%, #ff6b35 50%, #ffc107 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  box-shadow: 0 10px 30px rgba(254, 113, 9, 0.4);
  position: relative;
  overflow: hidden;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(254, 113, 9, 0.6);
  color: #ffffff;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5:hover::before {
  left: 100%;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5 i {
  font-size: 22px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .primary-btn5:hover i {
  transform: rotate(45deg) scale(1.1);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 45px;
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector {
    flex-direction: column;
    align-items: center;
  }
}
@keyframes shimmerButton {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
@keyframes floatEffect {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.6) 0%, rgba(205, 133, 63, 0.6) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(254, 113, 9, 0.15);
  animation: floatEffect 6s ease-in-out infinite;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 100%);
  transition: transform 0.6s ease;
  transform: translateX(-100%) skewX(-15deg);
  z-index: 1;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn .branch-name {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerButton 4s linear infinite;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(205, 133, 63, 0.8) 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(254, 113, 9, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn:hover .branch-name {
  transform: translateY(-1px);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-content .branch-selector .branch-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-right .image-container {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-right .image-container .h2-banner-img1 {
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 10px 20px rgba(254, 113, 9, 0.2));
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-right .image-container .h2-banner-img1:hover {
  transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-right .image-container::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: 30px;
  bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}
.banner-section2 .banner-content-wrapper .banner-wrapper .banner-right .image-container::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.185), rgba(255, 166, 0, 0.192));
  border-radius: 50%;
  opacity: 0.1;
  z-index: -2;
  animation: pulse 4s ease-in-out infinite;
}
.banner-section2 .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}
.banner-section2 .scroll-indicator .scroll-down {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  position: relative;
  cursor: pointer;
}
.banner-section2 .scroll-indicator .scroll-down::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scroll-down 2s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}
@keyframes scroll-down {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 991.98px) {
  .banner-section2 .banner-content-wrapper .banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .banner-section2 .banner-content-wrapper .banner-wrapper .banner-content {
    max-width: 100%;
  }
  .banner-section2 .banner-content-wrapper .banner-wrapper .banner-content span {
    margin-bottom: 25px;
  }
  .banner-section2 .banner-content-wrapper .banner-wrapper .banner-content h1 {
    margin-bottom: 30px;
  }
  .banner-section2 .banner-content-wrapper .banner-wrapper .banner-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767.98px) {
  .banner-section2 {
    padding-top: 120px;
  }
  .banner-section2 .banner-content-wrapper {
    padding: 60px 0;
  }
  .banner-section2 .banner-content-wrapper .banner-content span {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 16px;
  }
  .banner-section2 .banner-content-wrapper .banner-content h1 {
    font-size: 2.5rem !important;
  }
  .banner-section2 .banner-content-wrapper .banner-content p {
    font-size: 17px;
    margin-bottom: 35px;
  }
  .banner-section2 .banner-content-wrapper .banner-content .primary-btn5 {
    padding: 16px 32px;
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .banner-section2 .banner-content-wrapper {
    padding: 40px 0;
  }
  .banner-section2 .banner-content-wrapper .banner-content span {
    gap: 8px;
    margin-bottom: 20px;
  }
  .banner-section2 .banner-content-wrapper .banner-content h1 {
    font-size: 2rem !important;
    margin-bottom: 25px;
  }
  .banner-section2 .banner-content-wrapper .banner-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .banner-section2 .banner-content-wrapper .banner-content .primary-btn5 {
    padding: 14px 28px;
    font-size: 14px;
    gap: 10px;
  }
  .banner-section2 .banner-content-wrapper .banner-right .image-container::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
  }
}
.banner-section2 .custom-shape-divider-bottom-1755770155 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.banner-section2 .custom-shape-divider-bottom-1755770155 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 73px;
}
.banner-section2 .custom-shape-divider-bottom-1755770155 .shape-fill {
  fill: rgba(0, 0, 0, 0.9215686275);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.custom-shape-divider-bottom-1755770155 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1755770155 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 73px;
}

.custom-shape-divider-bottom-1755770155 .shape-fill {
  fill: rgba(0, 0, 0, 0.9215686275);
}

.h2-blog-area {
  position: relative;
}
.h2-blog-area .container {
  position: relative;
  z-index: 2;
}
.h2-blog-area #ourbranch {
  display: flex;
  gap: 30px;
}
.h2-blog-area #ourbranch .h2-blog-card {
  width: calc(50% - 30px);
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: row;
}
.h2-blog-area #ourbranch .h2-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(254, 113, 9, 0.1);
}
.h2-blog-area #ourbranch .h2-blog-card .blog-img {
  width: 40%;
  position: relative;
  overflow: hidden;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 0px 20px 20px 0px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content {
  width: 60%;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta {
  margin-bottom: 24px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta a {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta a:hover {
  color: #fe7109;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content {
  margin-bottom: 28px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:last-child {
  margin-bottom: 0;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .icon img {
  width: 34px;
  height: 34px;
  transition: opacity 0.3s ease;
  color: #000000;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content {
  flex: 1;
  padding-top: 2px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content a {
  color: #f4f4f4;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content a:hover {
  color: #fe7109;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon {
  background: linear-gradient(135deg, rgba(254, 113, 9, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon img {
  opacity: 1;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .read-more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: #f8f8f8;
  color: #2e2e2e;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .read-more-btn a span:first-child {
  flex: 1;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .read-more-btn a span:last-child i {
  transition: transform 0.3s ease;
  font-size: 16px;
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .read-more-btn a:hover {
  background: linear-gradient(135deg, #fe7109 0%, #fe8022 100%);
  color: #ffffff;
  border-color: #fe7109;
  transform: translateX(4px);
}
.h2-blog-area #ourbranch .h2-blog-card .blog-content .read-more-btn a:hover span:last-child i {
  transform: translateX(4px);
}
.h2-blog-area #ourbranch .h2-blog-card::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 991.98px) {
  .h2-blog-area #ourbranch {
    display: flex;
    gap: 30px;
  }
  .h2-blog-area #ourbranch .h2-blog-card {
    width: calc(50% - 30px);
    flex-direction: column;
  }
  .h2-blog-area #ourbranch .h2-blog-card:hover {
    transform: translateY(-8px);
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0px 0px 20px 20px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content {
    width: 100%;
    padding: 20px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta {
    margin-bottom: 24px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta a {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content {
    margin-bottom: 28px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:last-child {
    margin-bottom: 0;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content {
    flex: 1;
    padding-top: 2px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content a {
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content a:hover {
    color: #fe7109;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon {
    background: linear-gradient(135deg, rgba(254, 113, 9, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon img {
    opacity: 1;
  }
  .h2-blog-area #ourbranch .h2-blog-card::after {
    content: "";
    display: block;
    clear: both;
  }
}
@media (max-width: 768px) {
  .h2-blog-area #ourbranch {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .h2-blog-area #ourbranch .h2-blog-card {
    width: 100%;
    flex-direction: column;
  }
  .h2-blog-area #ourbranch .h2-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(254, 113, 9, 0.1);
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 0px 0px 20px 20px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content {
    width: 100%;
    padding: 20px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta {
    margin-bottom: 24px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .blog-meta a {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content {
    margin-bottom: 28px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:last-child {
    margin-bottom: 0;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content {
    flex: 1;
    padding-top: 2px;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li .content a {
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon {
    background: linear-gradient(135deg, rgba(254, 113, 9, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
  }
  .h2-blog-area #ourbranch .h2-blog-card .blog-content .ourbranch_content ul li:hover .icon img {
    opacity: 1;
  }
  .h2-blog-area #ourbranch .h2-blog-card::after {
    content: "";
    display: block;
    clear: both;
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}
.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in-up:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in-up:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.branch-row {
  display: flex;
  justify-content: center;
}

.h2-about-area {
  position: relative;
  overflow: hidden;
  background: black;
}
.h2-about-area .about-row {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
}
.h2-about-area .about-row .about-left {
  width: calc(50% - 15px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 15px;
  height: 450px;
  perspective: 1500px;
}
.h2-about-area .about-row .about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.h2-about-area .about-row .about-left img:hover {
  transform: scale(1.01) translateZ(5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  z-index: 10;
}
.h2-about-area .about-row .about-left .h2-about-img1 {
  grid-area: 1/1/5/4;
}
.h2-about-area .about-row .about-left .h2-about-img2 {
  grid-area: 1/4/3/7;
}
.h2-about-area .about-row .about-left .h2-about-img3 {
  grid-area: 5/1/7/4;
}
.h2-about-area .about-row .about-left .h2-about-img4 {
  grid-area: 3/4/7/7;
}
.h2-about-area .about-row .about-right {
  width: calc(50% - 15px);
  position: relative;
  z-index: 1;
}
.h2-about-area .about-row .about-right .section-title a {
  text-decoration: none;
  color: white;
}
.h2-about-area .about-row .about-right .section-title span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}
.h2-about-area .about-row .about-right .section-title span img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(58%) saturate(2076%) hue-rotate(21deg) brightness(101%) contrast(101%);
}
.h2-about-area .about-row .about-right .section-title p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.h2-about-area .about-row .about-right .primary-btn5 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fe7109 0%, #ff6b35 50%, #ffc107 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  box-shadow: 0 10px 30px rgba(254, 113, 9, 0.3);
  position: relative;
  overflow: hidden;
  margin-right: 10px;
}
.h2-about-area .about-row .about-right .primary-btn5::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.h2-about-area .about-row .about-right .primary-btn5:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(254, 113, 9, 0.5);
  color: #ffffff;
}
.h2-about-area .about-row .about-right .primary-btn5:hover::before {
  left: 100%;
}
.h2-about-area .about-row .about-right .primary-btn5:last-child {
  background: transparent;
  color: #fe7109;
  border: 2px solid #fe7109;
  box-shadow: 0 0 20px rgba(254, 113, 9, 0.2);
}
.h2-about-area .about-row .about-right .primary-btn5:last-child:hover {
  background: #fe7109;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(254, 113, 9, 0.5);
}
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  100% {
    transform: translateY(30px) rotate(10deg) scale(1.1);
  }
}
.h2-about-area .custom-shape-divider-bottom-1755771010 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.h2-about-area .custom-shape-divider-bottom-1755771010 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 40px;
}
.h2-about-area .custom-shape-divider-bottom-1755771010 .shape-fill {
  fill: #FFFFFF;
}

@media (max-width: 991.98px) {
  .h2-about-area {
    position: relative;
    overflow: hidden;
    background: black;
  }
  .h2-about-area .about-row {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: center;
    flex-direction: column-reverse;
  }
  .h2-about-area .about-row .about-left {
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 15px;
    height: 450px;
    perspective: 1500px;
  }
  .h2-about-area .about-row .about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .h2-about-area .about-row .about-left .h2-about-img1 {
    grid-area: 1/1/5/4;
  }
  .h2-about-area .about-row .about-left .h2-about-img2 {
    grid-area: 1/4/3/7;
  }
  .h2-about-area .about-row .about-left .h2-about-img3 {
    grid-area: 5/1/7/4;
  }
  .h2-about-area .about-row .about-left .h2-about-img4 {
    grid-area: 3/4/7/7;
  }
  .h2-about-area .about-row .about-right {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .h2-about-area .about-row .about-right .section-title p {
    font-size: 16px;
  }
  .h2-about-area .about-row .about-right .primary-btn5 {
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(254, 113, 9, 0.3);
    position: relative;
    overflow: hidden;
    margin-right: 10px;
  }
  .h2-about-area .about-row .about-right .primary-btn5::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
  }
  .h2-about-area .about-row .about-right .primary-btn5:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(254, 113, 9, 0.5);
    color: #ffffff;
  }
  .h2-about-area .about-row .about-right .primary-btn5:hover::before {
    left: 100%;
  }
  .h2-about-area .about-row .about-right .primary-btn5:last-child {
    background: transparent;
    color: #fe7109;
    border: 2px solid #fe7109;
    box-shadow: 0 0 20px rgba(254, 113, 9, 0.2);
  }
  .h2-about-area .about-row .about-right .primary-btn5:last-child:hover {
    background: #fe7109;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(254, 113, 9, 0.5);
  }
}
.h2-special-gallery {
  padding: 0px;
  /* Masonry container using CSS multi-columns */
  /* Each card should not split across columns */
  /* Card */
  /* Anchor */
  /* Image frame */
  /* Zoom icon */
  /* Caption */
  /* Small screens */
}
.h2-special-gallery .masonry {
  column-width: 280px; /* target width; browser decides column count */
  column-gap: 1.25rem;
  orphans: 1;
  widows: 1;
}
@media (min-width: 576px) {
  .h2-special-gallery .masonry {
    column-width: 300px;
  }
}
@media (min-width: 992px) {
  .h2-special-gallery .masonry {
    column-width: 320px;
    column-gap: 1.5rem;
  }
}
.h2-special-gallery .masonry-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
}
.h2-special-gallery .gallery-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.h2-special-gallery .gallery-card:hover {
  transform: translateY(-6px);
}
.h2-special-gallery .gallery-card:hover .zoom-indicator {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.h2-special-gallery .gallery-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.h2-special-gallery .gallery-image-frame {
  position: relative;
  background: #f6f7f8;
}
.h2-special-gallery .gallery-image-frame img {
  display: block;
  width: 100%;
  height: auto; /* natural height for masonry effect */
  object-fit: cover; /* keeps width; variable heights */
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.h2-special-gallery .zoom-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.h2-special-gallery .gallery-caption {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.h2-special-gallery .gallery-caption h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0;
  line-height: 1.35;
  word-break: break-word;
}
@media (max-width: 575.98px) {
  .h2-special-gallery .section-title .section-heading {
    font-size: 1.75rem;
  }
}

/* Defensive: if any old slider CSS lingers globally, neutralize it here */
.h2-special-gallery .swiper,
.h2-special-gallery .swiper-wrapper,
.h2-special-gallery .swiper-slide {
  all: unset;
}

.h2-review-section {
  padding-bottom: 0;
  background: #ffffff;
  overflow: hidden;
}
.h2-review-section .WidgetTitle__Header-sc-c581efe-2 {
  display: none;
}
.h2-review-section .section-title {
  margin-bottom: -40px;
}

.branch-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.branch-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.branch-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}

.branch-modal {
  background: #ffffff;
  border-radius: 24px;
  max-width: 800px;
  width: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(254, 113, 9, 0.1);
  overflow: hidden;
}
.branch-modal-overlay.show .branch-modal {
  transform: translateY(0) scale(1);
}
.branch-modal .branch-modal-body {
  overflow-y: auto;
}
.branch-modal .branch-modal-body::-webkit-scrollbar {
  width: 6px;
}
.branch-modal .branch-modal-body::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 3px;
}
.branch-modal .branch-modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fe7109, #fe8e3c);
  border-radius: 3px;
}
.branch-modal .branch-modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d35a01, #fe7109);
}

.branch-modal-header {
  padding: 24px 32px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, seashell 0%, #ffe6d4 100%);
  border-radius: 24px 24px 0 0;
  position: relative;
}
.branch-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fe7109 0%, #ffc107 50%, #00cc26 100%);
  border-radius: 24px 24px 0 0;
}
.branch-modal-header h2 {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.branch-modal-close {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.branch-modal-close:hover {
  background: #fe7109;
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  border-color: #fe7109;
  box-shadow: 0 6px 20px rgba(254, 113, 9, 0.4);
}
.branch-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.branch-modal-body {
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(244, 244, 244, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.branch-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.branch-modal-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.branch-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #fe7109, #ffc107, #00cc26);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.branch-modal-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(254, 113, 9, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  animation: cardFloat 2s ease-in-out infinite;
}
.branch-modal-card:hover::before {
  opacity: 1;
}

.branch-card-image {
  height: 140px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f4f4f4, #dddddd);
}
.branch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
}
.branch-modal-card:hover .branch-card-image img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}
.branch-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 113, 9, 0.1) 0%, transparent 40%, transparent 60%, rgba(0, 204, 38, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.branch-modal-card:hover .branch-card-image::after {
  opacity: 1;
}

.branch-card-content {
  padding: 20px 18px 18px;
  height: calc(100% - 140px);
  display: flex;
  flex-direction: column;
}
.branch-card-content h3 {
  margin: 0 0 16px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #fe7109, #ba4f01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(254, 113, 9, 0.1);
  position: relative;
  line-height: 1.3;
}
.branch-card-content h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #fe7109, #ffc107);
  border-radius: 1px;
}

.branch-card-info {
  flex: 1;
  margin-bottom: 16px;
  background: rgba(244, 244, 244, 0.4);
  padding: 16px;
  border-radius: 10px;
  border-left: 3px solid #fe7109;
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #2e2e2e;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.branch-info-item:hover {
  color: #333333;
  transform: translateX(3px);
}
.branch-info-item i {
  color: #fe7109;
  width: 14px;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
  transition: all 0.3s ease;
}
.branch-info-item span {
  flex: 1;
  word-break: break-word;
  font-weight: 500;
}
.branch-info-item:last-child {
  margin-bottom: 0;
}
.branch-info-item:nth-child(1) i {
  color: #fe7109;
}
.branch-info-item:nth-child(2) i {
  color: #00cc26;
}
.branch-info-item:nth-child(3) i {
  color: #17a2b8;
}

.branch-select-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fe7109 0%, #d35a01 100%);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.branch-select-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.branch-modal-card:hover .branch-select-indicator {
  background: linear-gradient(135deg, #00cc26 0%, #00991d 100%);
}
.branch-modal-card:hover .branch-select-indicator::before {
  left: 100%;
}
.branch-select-indicator i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}
.branch-modal-card:hover .branch-select-indicator i {
  transform: translateX(3px) rotate(45deg);
}

.branch-modal-footer {
  padding: 20px 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #ffeeba 0%, #ffe7a0 100%);
  border-radius: 0 0 24px 24px;
  position: relative;
}
.branch-modal-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #fe7109 0%, #ffc107 50%, #00cc26 100%);
}

.auto-close-timer {
  text-align: center;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 500;
}
.auto-close-timer #countdown {
  font-weight: 700;
  color: #fe7109;
  background: linear-gradient(135deg, #fe7109, #ba4f01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(254, 113, 9, 0.2);
}

@media (max-width: 768px) {
  .branch-modal-overlay {
    padding: 15px;
  }
  .branch-modal {
    border-radius: 20px;
  }
  .branch-modal-header {
    padding: 20px 24px 16px;
    border-radius: 20px 20px 0 0;
  }
  .branch-modal-header h2 {
    font-size: 20px;
    gap: 8px;
  }
  .branch-modal-header h2::before {
    font-size: 24px;
  }
  .branch-modal-close {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .branch-modal-body {
    padding: 20px 24px;
  }
  .branch-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .branch-card-image {
    height: 120px;
  }
  .branch-card-content {
    padding: 16px 14px 14px;
    height: calc(100% - 120px);
  }
  .branch-card-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .branch-card-info {
    padding: 14px;
  }
  .branch-modal-footer {
    padding: 16px 24px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 480px) {
  .branch-modal {
    border-radius: 16px;
  }
  .branch-modal-header {
    padding: 16px 20px 12px;
    border-radius: 16px 16px 0 0;
  }
  .branch-modal-header h2 {
    font-size: 18px;
  }
  .branch-modal-header h2::before {
    font-size: 22px;
  }
  .branch-modal-close {
    width: 32px;
    height: 32px;
  }
  .branch-modal-body {
    padding: 16px 20px;
  }
  .branch-modal-grid {
    gap: 12px;
  }
  .branch-modal-card {
    border-radius: 12px;
  }
  .branch-card-image {
    height: 100px;
  }
  .branch-card-content {
    padding: 14px 12px 12px;
    height: calc(100% - 100px);
  }
  .branch-card-content h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .branch-card-info {
    padding: 12px;
    margin-bottom: 12px;
  }
  .branch-info-item {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 8px;
  }
  .branch-info-item i {
    font-size: 12px;
  }
  .branch-select-indicator {
    padding: 10px 12px;
    font-size: 12px;
  }
  .branch-modal-footer {
    padding: 14px 20px;
    border-radius: 0 0 16px 16px;
  }
  .auto-close-timer {
    font-size: 12px;
  }
}
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(-6px) scale(1.02);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}
.branch-modal-card.loading .branch-card-image {
  background: linear-gradient(90deg, #f4f4f4 0%, white 50%, #f4f4f4 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/*================================================
// Modern About Page Styling
// 1. Variables
// 2. Breadcrumb Section (Reusable)
// 3. About Introduction Area
=================================================*/
.about-introduction-area.pt-120 {
  padding-top: 80px;
}
.about-introduction-area.mb-120 {
  margin-bottom: 120px;
}
.about-introduction-area .container-lg {
  max-width: 1400px;
}
.about-introduction-area .row > .col-lg-12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}
.about-introduction-area .about-left {
  padding-right: 40px;
}
.about-introduction-area .about-left .section-title {
  margin-bottom: 40px;
  position: relative;
}
.about-introduction-area .about-left .section-title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #fe7109 0%, #fe8e3c 100%);
  border-radius: 2px;
}
.about-introduction-area .about-left .section-title h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  margin: 0;
  position: relative;
}
.about-introduction-area .about-left .section-title h2 .highlight {
  background: linear-gradient(135deg, #fe7109 0%, #fe8e3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-introduction-area .about-left .our-mission .description {
  font-family: "Roboto", sans-serif;
  color: #2e2e2e;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}
.about-introduction-area .about-left .our-mission .description p {
  margin-bottom: 0em;
  position: relative;
}
.about-introduction-area .about-left .our-mission .description p:first-child {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.about-introduction-area .about-left .our-mission .description p a {
  text-decoration: none;
  color: #333333;
}
.about-introduction-area .about-left .our-mission .description h3, .about-introduction-area .about-left .our-mission .description h4 {
  font-family: "Inter", sans-serif;
  color: #333333;
  font-weight: 600;
  margin: 2em 0 1em;
  position: relative;
}
.about-introduction-area .about-left .our-mission .description h3::before, .about-introduction-area .about-left .our-mission .description h4::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #fe7109;
  border-radius: 2px;
}
.about-introduction-area .about-left .our-mission .description ul, .about-introduction-area .about-left .our-mission .description ol {
  padding-left: 0;
  margin-bottom: 2em;
  list-style: none;
}
.about-introduction-area .about-left .our-mission .description ul li, .about-introduction-area .about-left .our-mission .description ol li {
  margin-bottom: 1em;
  padding-left: 30px;
  position: relative;
}
.about-introduction-area .about-left .our-mission .description ul li::before, .about-introduction-area .about-left .our-mission .description ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #fe7109;
  border-radius: 50%;
}
.about-introduction-area .about-left .our-mission .description blockquote {
  border-left: 4px solid #fe7109;
  padding-left: 30px;
  margin: 2em 0;
  font-style: italic;
  font-size: 20px;
  color: #333333;
  background: rgba(254, 113, 9, 0.03);
  padding: 20px 30px;
  border-radius: 0 16px 16px 0;
}
.about-introduction-area .intro-right-img1 {
  position: relative;
  height: fit-content;
}
.about-introduction-area .intro-right-img1 > img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}
.about-introduction-area .intro-right-img1 > img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.about-introduction-area .intro-right-img1 > img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(254, 113, 9, 0.1), rgba(0, 204, 38, 0.05));
  border-radius: 16px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-introduction-area .intro-right-img1 .intro-sm-img {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 50%;
  z-index: 3;
}
.about-introduction-area .intro-right-img1 .intro-sm-img.magnetic-wrap {
  cursor: pointer;
}
.about-introduction-area .intro-right-img1 .intro-sm-img img {
  width: 100%;
  border-radius: 12px;
  border: 8px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.about-introduction-area .intro-right-img1 .intro-sm-img img:hover, .about-introduction-area .intro-right-img1 .intro-sm-img img.magnetic-item:hover {
  transform: scale(1.08) rotate(-3deg) translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.about-introduction-area .intro-right-img1 .intro-sm-img img::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #fe7109 0%, #fe8e3c 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-introduction-area .intro-right-img1 .intro-sm-img img:hover::before {
  opacity: 0.3;
  filter: blur(8px);
}
.about-introduction-area .intro-right-img1::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(254, 113, 9, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.about-introduction-area .intro-right-img1::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 20%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 204, 38, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .about-introduction-area .row > .col-lg-12 {
    gap: 40px;
  }
  .about-introduction-area .about-left {
    padding-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .about-introduction-area.pt-120 {
    padding-top: 80px;
  }
  .about-introduction-area.mb-120 {
    margin-bottom: 80px;
  }
  .about-introduction-area .row > .col-lg-12 {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .about-introduction-area .about-left {
    padding-right: 0;
    order: 2;
  }
  .about-introduction-area .about-left .section-title {
    text-align: center;
  }
  .about-introduction-area .about-left .section-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-introduction-area .intro-right-img1 {
    order: 1;
    margin: 0 auto;
    max-width: 500px;
  }
  .about-introduction-area .intro-right-img1 .intro-sm-img {
    bottom: -40px;
    left: -40px;
    width: 45%;
  }
  .about-introduction-area .intro-right-img1::before, .about-introduction-area .intro-right-img1::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .about-introduction-area .about-left .section-title h2 {
    font-size: 32px;
  }
  .about-introduction-area .about-left .our-mission .description {
    font-size: 16px;
  }
  .about-introduction-area .about-left .our-mission .description p:first-child {
    font-size: 18px;
  }
  .about-introduction-area .intro-right-img1 .intro-sm-img {
    bottom: -20px;
    left: -20px;
    width: 40%;
  }
  .about-introduction-area .intro-right-img1 .intro-sm-img img {
    border-width: 4px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.about-left {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.intro-right-img1 {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.gallery-section .content-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.gallery-section .content-box h1 {
  font-family: "Montserrat", sans-serif;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.gallery-section .content-box hr {
  border-top: 2px solid #ffc107;
  width: 80px;
  margin-bottom: 2rem;
}

.gallery-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.gallery-card .gallery-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gallery-card .gallery-card-figure {
  margin: 0;
  height: 250px;
}
.gallery-card .gallery-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.gallery-card .gallery-card-header {
  padding: 1.25rem;
  border-top: 1px solid #e9ecef;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.gallery-card .gallery-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin: 0;
  transition: color 0.3s ease-in-out;
}
.gallery-card:hover .gallery-card-title {
  color: #ffc107;
}
.gallery-card:hover .gallery-card-figure img {
  transform: scale(1.05);
}

.breadcrumb-section {
  background: linear-gradient(135deg, #343a40 0%, #292d32 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section .breadcrumb-left-vec,
.breadcrumb-section .breadcrumb-right-vec {
  position: absolute;
  top: 0;
  z-index: 1;
}
.breadcrumb-section .breadcrumb-left-vec img,
.breadcrumb-section .breadcrumb-right-vec img {
  pointer-events: none;
}
.breadcrumb-section .breadcrumb-left-vec {
  left: 0;
}
.breadcrumb-section .breadcrumb-right-vec {
  right: 0;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-section .breadcrumb-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.breadcrumb-section .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  font-family: "Poppins", sans-serif;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: #ffc107;
  font-weight: 500;
}
.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: ">";
  padding: 0 0.75rem;
}

.main_content {
  background-color: #f8f9fa;
}

.box {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

#lightgallery {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col-sm-3.mb-4 {
  padding: 1rem;
}
.col-sm-3.mb-4 a {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.col-sm-3.mb-4 a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  filter: grayscale(0.5);
}
@media (min-width: 576px) {
  .col-sm-3.mb-4 a img {
    height: 200px;
  }
}
.col-sm-3.mb-4 a:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.col-sm-3.mb-4 a:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}

/*================================================
// Modern Contact Page Design for Biryani Restaurant
// 1. Variables & Base Styles
// 2. Breadcrumb Section
// 3. Contact Page Main Section
// 4. Contact Information Section
// 5. Contact Form Section
// 6. Map Section
// 7. Responsive Design
=================================================*/
.breadcrumb-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #3d3d3d 100%);
  overflow: hidden;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="4" height="4" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="%23D4AF37" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
}
.breadcrumb-section .breadcrumb-left-vec,
.breadcrumb-section .breadcrumb-right-vec {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.1;
}
.breadcrumb-section .breadcrumb-left-vec img,
.breadcrumb-section .breadcrumb-right-vec img {
  filter: sepia(100%) saturate(200%) hue-rotate(35deg);
}
.breadcrumb-section .breadcrumb-left-vec {
  left: -50px;
}
.breadcrumb-section .breadcrumb-right-vec {
  right: -50px;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb-section .breadcrumb-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
  position: relative;
}
.breadcrumb-section .breadcrumb-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF8C42, #FF8C42);
  border-radius: 2px;
}
.breadcrumb-section .breadcrumb {
  background-color: transparent;
  justify-content: center;
  padding: 0;
  margin: 20px 0 0 0;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-weight: 500;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #FF8C42;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #FF8C42;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "·";
  font-size: 20px;
  margin: 0 15px;
}

.contact-page-main {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FEFEFE 100%);
}
.contact-page-main .section-title {
  margin-bottom: 60px;
}
.contact-page-main .section-title .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FF8C42;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.contact-page-main .section-title .subtitle .left-vec,
.contact-page-main .section-title .subtitle .right-vec {
  width: 40px;
  margin: 0 15px;
  opacity: 0.6;
  filter: sepia(100%) saturate(200%) hue-rotate(25deg);
}
.contact-page-main .section-title .main-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 20px;
}
.contact-page-main .section-title .section-desc {
  font-size: 18px;
  color: #666666;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.contact-page-main .contact-content-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  border: 1px solid #E8E8E8;
}

.contact-info-section {
  padding: 60px 50px;
  background: linear-gradient(135deg, #2C2C2C 0%, #464646 100%);
  color: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-info-section .contact-info-header {
  margin-bottom: 50px;
}
.contact-info-section .contact-info-header h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FF8C42;
}
.contact-info-section .contact-info-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  line-height: 1.6;
}
.contact-info-section .contact-info-cards {
  margin-bottom: 40px;
}
.contact-info-section .contact-info-cards .info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 140, 66, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info-section .contact-info-cards .info-card:hover {
  background: rgba(255, 140, 66, 0.1);
  transform: translateX(8px);
  border-color: rgba(255, 140, 66, 0.4);
}
.contact-info-section .contact-info-cards .info-card .info-icon {
  margin-right: 20px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #FF8C42;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-section .contact-info-cards .info-card .info-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.contact-info-section .contact-info-cards .info-card .info-content h4 {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #FF8C42;
}
.contact-info-section .contact-info-cards .info-card .info-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.contact-info-section .contact-info-cards .info-card .info-content .info-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info-section .contact-info-cards .info-card .info-content .info-link:hover {
  color: #FF8C42;
}
.contact-info-section .contact-info-cards .info-card .info-content .info-text {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
}
.contact-info-section .social-section {
  margin-bottom: 40px;
}
.contact-info-section .social-section h4 {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FF8C42;
}
.contact-info-section .social-section .social-links {
  display: flex;
  gap: 15px;
}
.contact-info-section .social-section .social-links .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 140, 66, 0.2);
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF8C42;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info-section .social-section .social-links .social-link:hover {
  background: #FF8C42;
  color: #2C2C2C;
  transform: translateY(-3px);
}
.contact-info-section .opening-hours h4 {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FF8C42;
}
.contact-info-section .opening-hours .hours-list .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-section .opening-hours .hours-list .hours-item:last-child {
  border-bottom: none;
}
.contact-info-section .opening-hours .hours-list .hours-item .day {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.contact-info-section .opening-hours .hours-list .hours-item .time {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FF8C42;
}

.contact-form-section {
  padding: 60px 50px;
  background: #FFFFFF;
}
.contact-form-section .form-header {
  margin-bottom: 40px;
}
.contact-form-section .form-header h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2C2C2C;
}
.contact-form-section .form-header p {
  font-size: 16px;
  color: #666666;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  line-height: 1.6;
}
.contact-form-section .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form-section .contact-form .form-group label {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 8px;
  display: block;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-weight: 400;
  color: #2C2C2C;
  background: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #FF8C42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}
.contact-form-section .contact-form .form-group input::placeholder,
.contact-form-section .contact-form .form-group textarea::placeholder {
  color: #999999;
  font-weight: 400;
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  line-height: 1.6;
}
.contact-form-section .contact-form .captcha-group {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 30px;
}
.contact-form-section .contact-form .captcha-group .captcha-image {
  flex-shrink: 0;
}
.contact-form-section .contact-form .captcha-group .captcha-image img {
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  width: 160px;
  height: auto;
}
.contact-form-section .contact-form .captcha-group .captcha-input {
  flex: 1;
}
.contact-form-section .contact-form .captcha-group .captcha-input label {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 8px;
  display: block;
}
.contact-form-section .contact-form .captcha-group .captcha-input input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form-section .contact-form .captcha-group .captcha-input input.is-invalid {
  border-color: #C73E1D;
  box-shadow: 0 0 0 3px rgba(199, 62, 29, 0.1);
}
.contact-form-section .contact-form .captcha-group .captcha-input input:focus {
  outline: none;
  border-color: #FF8C42;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}
.contact-form-section .contact-form .form-submit {
  text-align: left;
}
.contact-form-section .contact-form .form-submit .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF8C42 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.contact-form-section .contact-form .form-submit .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF8C42 0%, #C73E1D 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form-section .contact-form .form-submit .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.12);
}
.contact-form-section .contact-form .form-submit .submit-btn:hover::before {
  left: 0;
}
.contact-form-section .contact-form .form-submit .submit-btn span, .contact-form-section .contact-form .form-submit .submit-btn i {
  position: relative;
  z-index: 1;
}
.contact-form-section .contact-form .form-submit .submit-btn i {
  font-size: 14px;
}

.contact-map-section {
  position: relative;
  background: #FFFFFF;
}
.contact-map-section .map-wrapper {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.contact-map-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) sepia(10%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-map-section .map-wrapper iframe:hover {
  filter: grayscale(0%) sepia(0%);
}
.contact-map-section .map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 140, 66, 0.03);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1200px) {
  .contact-info-section,
  .contact-form-section {
    padding: 50px 40px;
  }
}
@media (max-width: 992px) {
  .contact-content-wrapper .row {
    flex-direction: column;
  }
  .contact-info-section {
    padding: 40px 30px;
  }
  .contact-info-section .contact-info-header h3 {
    font-size: 28px;
  }
  .contact-form-section {
    padding: 40px 30px;
  }
  .contact-form-section .form-header h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 60px 0 60px;
  }
  .breadcrumb-section .breadcrumb-left-vec,
  .breadcrumb-section .breadcrumb-right-vec {
    display: none;
  }
  .contact-page-main {
    padding: 60px 0 40px;
  }
  .contact-page-main .section-title {
    margin-bottom: 40px;
  }
  .contact-page-main .section-title .subtitle .left-vec,
  .contact-page-main .section-title .subtitle .right-vec {
    width: 30px;
    margin: 0 10px;
  }
  .contact-info-section,
  .contact-form-section {
    padding: 30px 25px;
  }
  .contact-info-cards .info-card {
    padding: 15px;
    margin-bottom: 25px;
  }
  .contact-info-cards .info-card .info-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }
  .contact-info-cards .info-card .info-icon img {
    width: 18px;
    height: 18px;
  }
  .captcha-group {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .captcha-group .captcha-image {
    align-self: center;
  }
  .contact-map-section .map-wrapper {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .contact-form .form-submit .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
  }
  .contact-info-section .contact-info-header h3 {
    font-size: 24px;
  }
  .contact-info-section .social-links {
    justify-content: center;
  }
  .contact-form-section .form-header h3 {
    font-size: 24px;
  }
}
html {
  scroll-behavior: smooth;
}

input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #FF8C42 !important;
  outline-offset: 2px !important;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.form-loading .submit-btn {
  animation: pulse 1.5s infinite;
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FFF8F0;
}

::-webkit-scrollbar-thumb {
  background: #FF8C42;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff6d0f;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-card {
  animation: fadeInUp 0.6s ease-out forwards;
}
.info-card:nth-child(1) {
  animation-delay: 0.1s;
}
.info-card:nth-child(2) {
  animation-delay: 0.2s;
}
.info-card:nth-child(3) {
  animation-delay: 0.3s;
}

.form-group {
  position: relative;
}
.form-group input:focus + label,
.form-group textarea:focus + label {
  color: #FF8C42;
  transform: translateY(-2px);
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.submit-btn:hover::after {
  width: 300px;
  height: 300px;
}

.social-link {
  position: relative;
  overflow: hidden;
}
.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.social-link:hover::before {
  left: 100%;
}

/*# sourceMappingURL=style.css.map */
