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

body {
  background-color: #F8FAFC;
  color: #1E293B;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.avp-container {
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  max-width: 1200px;
}

.avp-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(4, 41, 79, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-header .avp-navbar-wrapper {
  height: 99px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .avp-header .avp-navbar-wrapper {
    height: 90px;
  }
}

.avp-brand {
  height: 100%;
  display: flex;
  align-items: center;
}
.avp-brand img {
  width: auto;
  height: 99px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .avp-brand img {
    height: 90px;
  }
}

.avp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .avp-nav-links {
    display: none;
  }
}
.avp-nav-links a {
  position: relative;
  padding: 8px 0;
  color: #04294F;
  font-weight: 500;
  font-size: 1.35rem;
}
.avp-nav-links a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #F28C0F, #3A7D44);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-nav-links a:hover {
  color: #F28C0F;
}
.avp-nav-links a:hover::after {
  width: 100%;
}

.avp-toggle-btn {
  position: relative;
  z-index: 1100;
  border: none;
  width: 30px;
  height: 24px;
  display: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .avp-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.avp-toggle-btn span {
  border-radius: 4px;
  width: 100%;
  height: 3px;
  display: block;
  background-color: #04294F;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}
.avp-toggle-btn.is-active span:nth-child(1) {
  background-color: #F28C0F;
  transform: rotate(45deg);
}
.avp-toggle-btn.is-active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.avp-toggle-btn.is-active span:nth-child(3) {
  background-color: #F28C0F;
  transform: rotate(-45deg);
}

.avp-sidebar-menu {
  position: fixed;
  z-index: 1050;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 100px 40px 40px 40px;
  box-shadow: -10px 0 40px rgba(4, 41, 79, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-sidebar-menu.is-active {
  transform: translateX(-320px);
}
.avp-sidebar-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.avp-sidebar-menu ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.avp-sidebar-menu.is-active ul li {
  opacity: 1;
  transform: translateX(0);
}
.avp-sidebar-menu.is-active ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.avp-sidebar-menu.is-active ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.avp-sidebar-menu.is-active ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.avp-sidebar-menu.is-active ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.avp-sidebar-menu.is-active ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.avp-sidebar-menu a {
  display: block;
  padding: 8px 0;
  color: #04294F;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid rgba(4, 41, 79, 0.05);
}
.avp-sidebar-menu a:hover {
  padding-left: 8px;
  color: #3A7D44;
}

.avp-overlay {
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 41, 79, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.avp-footer {
  position: relative;
  background-color: #04294F;
  padding: 80px 0 30px 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}
.avp-footer .avp-footer-wrapper {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .avp-footer .avp-footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}
@media (max-width: 576px) {
  .avp-footer .avp-footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.avp-footer .avp-footer-brand .avp-footer-title {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.59rem;
  letter-spacing: 0.5px;
}
.avp-footer .avp-footer-brand p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.09rem;
  line-height: 1.7;
}
.avp-footer .avp-footer-brand .avp-footer-social {
  display: flex;
  gap: 12px;
}
.avp-footer .avp-footer-brand .avp-footer-social a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 21px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-footer .avp-footer-brand .avp-footer-social a:hover {
  background-color: #F28C0F;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(242, 140, 15, 0.3);
}
.avp-footer .avp-footer-logo {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.avp-footer .avp-footer-logo img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.avp-footer .avp-footer-logo:hover {
  transform: translateY(-5px) scale(1.03);
}
@media (max-width: 768px) {
  .avp-footer .avp-footer-logo {
    margin-right: auto;
    margin-left: 0;
    width: 80px;
    height: 80px;
  }
}
.avp-footer .avp-footer-links h3,
.avp-footer .avp-footer-services h3,
.avp-footer .avp-footer-contact h3 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 22px;
}
.avp-footer .avp-footer-links h3::after,
.avp-footer .avp-footer-services h3::after,
.avp-footer .avp-footer-contact h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: #3A7D44;
  content: "";
}
.avp-footer .avp-footer-links ul,
.avp-footer .avp-footer-services ul,
.avp-footer .avp-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avp-footer .avp-footer-links ul li,
.avp-footer .avp-footer-services ul li,
.avp-footer .avp-footer-contact ul li {
  font-size: 18px;
}
.avp-footer .avp-footer-links ul li a,
.avp-footer .avp-footer-services ul li a,
.avp-footer .avp-footer-contact ul li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
}
.avp-footer .avp-footer-links ul li a:hover,
.avp-footer .avp-footer-services ul li a:hover,
.avp-footer .avp-footer-contact ul li a:hover {
  color: #F28C0F;
  transform: translateX(5px);
}
.avp-footer .avp-footer-contact ul {
  gap: 16px;
}
.avp-footer .avp-footer-contact ul li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  gap: 14px;
  line-height: 1.5;
}
.avp-footer .avp-footer-contact ul li i {
  border: 1px solid rgba(242, 140, 15, 0.25);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(242, 140, 15, 0.12);
  color: #F28C0F;
  font-size: 14px;
  min-width: 36px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-footer .avp-footer-contact ul li:hover i {
  background-color: #F28C0F;
  color: #FFFFFF;
  transform: scale(1.08);
}
.avp-footer .avp-footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.avp-footer .avp-footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.8;
}
.avp-footer .avp-footer-bottom p a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.avp-footer .avp-footer-bottom p a:hover {
  color: #3A7D44;
  text-decoration: underline;
}

.avp-hero-section {
  position: relative;
  margin-top: 83px;
  width: 100%;
  height: 80vh;
  background-color: #04294F;
  overflow: hidden;
}
@media (max-width: 768px) {
  .avp-hero-section {
    margin-top: 80px;
    height: 80vh;
  }
}
.avp-hero-section .avp-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.avp-hero-section .avp-hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.avp-hero-section .avp-hero-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.avp-hero-section .avp-hero-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.avp-hero-section .avp-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 41, 79, 0.92), rgba(4, 41, 79, 0.65), rgba(4, 41, 79, 0.25));
}
.avp-hero-section .avp-container {
  position: relative;
  z-index: 5;
  height: 100%;
}
.avp-hero-section .avp-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  max-width: 700px;
}
@media (max-width: 768px) {
  .avp-hero-section .avp-hero-content {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }
}
.avp-hero-section .avp-hero-content .avp-hero-subtitle {
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  color: #F8FAFC;
  font-weight: 500;
  font-size: 16px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
}
.avp-hero-section .avp-hero-content h1 {
  margin-bottom: 22px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .avp-hero-section .avp-hero-content h1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .avp-hero-section .avp-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
.avp-hero-section .avp-hero-content p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
  max-width: 620px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .avp-hero-section .avp-hero-content p {
    font-weight: 450;
    font-size: 16px;
  }
}
.avp-hero-section .avp-hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .avp-hero-section .avp-hero-buttons {
    width: 100%;
    flex-direction: column;
  }
}
.avp-hero-section .avp-hero-buttons a {
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .avp-hero-section .avp-hero-buttons a {
    width: 100%;
  }
}
.avp-hero-section .avp-hero-buttons .avp-primary-btn {
  color: #FFFFFF;
  background: linear-gradient(135deg, #F28C0F, rgb(205.0909090909, 117.9272727273, 11.1090909091));
  box-shadow: 0 12px 25px rgba(242, 140, 15, 0.28);
}
.avp-hero-section .avp-hero-buttons .avp-primary-btn:hover {
  transform: translateY(-3px);
}
.avp-hero-section .avp-hero-buttons .avp-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}
.avp-hero-section .avp-hero-buttons .avp-secondary-btn:hover {
  background-color: #FFFFFF;
  color: #04294F;
  transform: translateY(-3px);
}
.avp-hero-section .avp-floating-card {
  position: absolute;
  z-index: 30;
  right: 60px;
  bottom: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  min-width: 320px;
  backdrop-filter: blur(15px);
  gap: 18px;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
}
@media (max-width: 992px) {
  .avp-hero-section .avp-floating-card {
    display: none;
  }
}
.avp-hero-section .avp-floating-card .avp-floating-icon {
  border-radius: 15px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #F28C0F, rgb(195.4150197628, 112.3636363636, 10.5849802372));
}
.avp-hero-section .avp-floating-card .avp-floating-icon i {
  color: #FFFFFF;
  font-size: 28px;
}
.avp-hero-section .avp-floating-card .avp-floating-text h4 {
  margin-bottom: 5px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
}
.avp-hero-section .avp-floating-card .avp-floating-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.avp-floating-products {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}
.avp-floating-products .avp-product {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  width: 170px;
  height: 170px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 255, 255, 0.05);
  animation: floatProduct 5s ease-in-out infinite;
  transition: 0.4s ease;
}
.avp-floating-products .avp-product:hover {
  transform: translateY(-12px) scale(1.04);
}
.avp-floating-products .avp-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avp-floating-products .product-1 {
  top: -170px;
  right: 380px;
}
.avp-floating-products .product-2 {
  top: 20px;
  right: 250px;
  animation-delay: 1s;
}
.avp-floating-products .product-3 {
  top: 200px;
  right: 380px;
  animation-delay: 2s;
}

.avp-hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow-1 {
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(242, 140, 15, 0.22);
}

.glow-2 {
  bottom: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(58, 125, 68, 0.2);
}

.avp-scroll-down {
  position: absolute;
  z-index: 20;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.avp-scroll-down span {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  width: 32px;
  height: 52px;
  display: block;
}
.avp-scroll-down span::before {
  position: absolute;
  top: 8px;
  left: 50%;
  border-radius: 20px;
  width: 6px;
  height: 12px;
  content: "";
  background: #ffffff;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes floatProduct {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes scrollDown {
  0% {
    top: 8px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 22px;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .avp-floating-products {
    display: none;
  }
}
@media (max-width: 768px) {
  .avp-scroll-down {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .avp-hero-section {
    height: calc(100vh - 99px);
    min-height: 650px;
    max-height: 760px;
  }
  .avp-hero-content {
    max-width: 520px;
  }
  .avp-hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
  }
  .avp-hero-content p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .avp-hero-buttons a {
    padding: 12px 24px;
    font-size: 14px;
  }
  .avp-floating-products {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
  }
  .avp-floating-products .avp-product {
    width: 140px;
    height: 140px;
  }
  .avp-floating-products .product-1 {
    top: -130px;
    right: 220px;
  }
  .avp-floating-products .product-2 {
    top: 10px;
    right: 100px;
  }
  .avp-floating-products .product-3 {
    top: 150px;
    right: 220px;
  }
  .avp-floating-card {
    right: 20px;
    bottom: 40px;
    min-width: 250px;
    padding: 14px;
  }
  .avp-floating-card .avp-floating-icon {
    width: 50px;
    height: 50px;
  }
  .avp-floating-card .avp-floating-text h4 {
    font-size: 0.95rem;
  }
  .avp-floating-card .avp-floating-text p {
    font-size: 12px;
  }
}
.avp-about-section {
  padding: 100px 0;
  background: #FFFFFF;
}
.avp-about-section .avp-about-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
@media (max-width: 992px) {
  .avp-about-section .avp-about-wrapper {
    grid-template-columns: 1fr;
  }
}

.avp-section-tag {
  margin-bottom: 20px;
  border-radius: 50px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: #F28C0F;
  font-weight: 600;
  font-size: 14px;
  background: rgba(4, 41, 79, 0.05);
  letter-spacing: 0.5px;
}

.avp-about-content h2 {
  margin-bottom: 25px;
  color: #04294F;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .avp-about-content h2 {
    font-size: 2rem;
  }
}
.avp-about-content p {
  margin-bottom: 18px;
  color: #64748B;
  font-size: 1.09rem;
  line-height: 1.9;
}

.avp-about-stats {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.avp-stat-box {
  border-radius: 18px;
  padding: 25px;
  min-width: 140px;
  background: #F8FAFC;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-stat-box:hover {
  transform: translateY(-5px);
}
.avp-stat-box h3 {
  margin-bottom: 5px;
  color: #F28C0F;
  font-weight: 700;
  font-size: 2rem;
}
.avp-stat-box p {
  margin: 0;
  color: #64748B;
  font-weight: 600;
  font-size: 15px;
}

.avp-about-image {
  position: relative;
}

.avp-about-image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(4, 41, 79, 0.12);
}
.avp-about-image-card img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .avp-about-image-card img {
    height: 400px;
  }
}

.avp-about-floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 260px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
}
@media (max-width: 768px) {
  .avp-about-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    max-width: 100%;
  }
}
.avp-about-floating-card h4 {
  margin-bottom: 8px;
  color: #04294F;
  font-weight: 600;
  font-size: 1.1rem;
}
.avp-about-floating-card p {
  color: #64748B;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
}

.avp-choose-section {
  position: relative;
  padding: 100px 0;
  background: #F8FAFC;
}

.avp-section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.avp-section-heading h2 {
  margin: 18px auto;
  color: #04294F;
  font-weight: 700;
  font-size: 3rem;
  max-width: 700px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .avp-section-heading h2 {
    font-size: 2rem;
  }
}
.avp-section-heading p {
  margin: 0 auto;
  color: #64748B;
  font-size: 1.09rem;
  max-width: 700px;
  line-height: 1.8;
}
.avp-section-heading .avp-section-tag {
  margin: auto;
}

.avp-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1024px) {
  .avp-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .avp-choose-grid {
    grid-template-columns: 1fr;
  }
}

.avp-choose-card {
  border-radius: 24px;
  padding: 40px 30px;
  background: #FFFFFF;
  text-align: center;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-choose-card:hover {
  transform: translateY(-8px);
}
.avp-choose-card:hover .avp-choose-icon {
  background: #F28C0F;
}
.avp-choose-card:hover .avp-choose-icon i {
  color: #FFFFFF;
}
.avp-choose-card h3 {
  margin-bottom: 15px;
  color: #04294F;
  font-weight: 600;
  font-size: 1.3rem;
}
.avp-choose-card p {
  color: #64748B;
  font-weight: 500;
  line-height: 1.8;
}

.avp-choose-icon {
  margin: 0 auto 25px;
  border-radius: 18px;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(242, 140, 15, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-choose-icon i {
  color: #F28C0F;
  font-size: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.avp-services-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}
.avp-services-section::before {
  position: absolute;
  top: -150px;
  right: -120px;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  content: "";
  background: rgba(242, 140, 15, 0.05);
  filter: blur(80px);
}
.avp-services-section::after {
  position: absolute;
  bottom: -150px;
  left: -120px;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  content: "";
  background: rgba(58, 125, 68, 0.05);
  filter: blur(80px);
}

.avp-services-section .avp-section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
  text-align: center;
}
.avp-services-section .avp-section-heading .avp-section-tag {
  margin: 0 auto 20px;
}
.avp-services-section .avp-section-heading h2 {
  margin-bottom: 20px;
  color: #04294F;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .avp-services-section .avp-section-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.avp-services-section .avp-section-heading p {
  margin: 0 auto;
  color: #64748B;
  font-size: 1.08rem;
  max-width: 700px;
  line-height: 1.9;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .avp-services-section .avp-section-heading p {
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.avp-services-action {
  margin-top: 35px;
}

.avp-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .avp-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .avp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .avp-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.avp-service-card {
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.avp-service-card:hover {
  transform: translateY(-10px);
}
.avp-service-card:hover .avp-service-icon {
  background: linear-gradient(135deg, #F28C0F, rgb(205.0909090909, 117.9272727273, 11.1090909091));
}
.avp-service-card:hover .avp-service-icon i {
  color: #FFFFFF;
}
.avp-service-card h3 {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #04294F;
  font-weight: 600;
  font-size: 1.35rem;
  min-height: 64px;
  line-height: 1.45;
  letter-spacing: -0.3px;
  text-align: center;
  text-wrap: balance;
  word-break: break-word;
}
@media (max-width: 768px) {
  .avp-service-card h3 {
    font-size: 1.12rem;
    min-height: auto;
    line-height: 1.4;
  }
}
.avp-service-card p {
  margin: 0 auto;
  color: #64748B;
  font-size: 1rem;
  max-width: 95%;
  line-height: 1.9;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
  hyphens: auto;
}
@media (max-width: 768px) {
  .avp-service-card p {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.8;
  }
}

.avp-service-icon {
  margin: 0 auto 25px;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: rgba(242, 140, 15, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-service-icon i {
  color: #F28C0F;
  font-size: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes avpFloatDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .avp-services-section {
    padding: 80px 0;
  }
  .avp-service-card {
    border-radius: 20px;
    padding: 32px 22px;
  }
  .avp-service-icon {
    margin-bottom: 20px;
    width: 68px;
    height: 68px;
  }
  .avp-service-icon i {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .avp-services-section {
    padding: 80px 0;
  }
  .avp-section-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  .avp-section-heading p {
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.5px;
  }
  /* =========================
  GRID
  ========================= */
  .avp-services-grid {
    gap: 18px;
  }
  .avp-service-card {
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    /* premium depth */
    box-shadow: 0 12px 30px rgba(4, 41, 79, 0.08);
    /* smooth mobile card */
    transition: all 0.3s ease;
  }
  .avp-service-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.4;
    word-break: break-word;
  }
  .avp-service-card p {
    margin: 0 auto;
    color: #64748B;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .avp-service-icon {
    margin-bottom: 20px;
    width: 68px;
    height: 68px;
  }
  .avp-service-icon i {
    font-size: 26px;
  }
}
/* =========================
TESTIMONIAL SECTION
========================= */
.avp-testimonial-section {
  position: relative;
  padding: 100px 0;
  background: #F8FAFC;
  overflow: hidden;
}
.avp-testimonial-section::before {
  position: absolute;
  top: -140px;
  right: -140px;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  content: "";
  background: rgba(242, 140, 15, 0.06);
  filter: blur(90px);
}
.avp-testimonial-section::after {
  position: absolute;
  bottom: -140px;
  left: -140px;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  content: "";
  background: rgba(58, 125, 68, 0.06);
  filter: blur(90px);
}
.avp-testimonial-section {
  /* =========================
  CONTAINER
  ========================= */
}
.avp-testimonial-section .avp-container {
  margin: auto;
  width: 90%;
  max-width: 1200px;
}
.avp-testimonial-section {
  /* =========================
  SECTION HEADING
  ========================= */
}
.avp-testimonial-section .avp-section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.avp-testimonial-section .avp-section-heading h2 {
  margin-bottom: 12px;
  color: #04294F;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .avp-testimonial-section .avp-section-heading h2 {
    font-size: 28px;
  }
}
.avp-testimonial-section .avp-section-heading p {
  margin: auto;
  color: #64748B;
  font-size: 1.09rem;
  max-width: 650px;
  line-height: 1.8;
}

/* =========================
SCROLL WRAPPER
========================= */
.avp-testimonial-scroll {
  display: flex;
  padding-bottom: 10px;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
}
.avp-testimonial-scroll::-webkit-scrollbar {
  height: 6px;
}
.avp-testimonial-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #E0E0E0;
}
.avp-testimonial-scroll.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* =========================
TESTIMONIAL CARD
========================= */
.avp-testimonial-card {
  position: relative;
  border: 1px solid rgba(4, 41, 79, 0.08);
  border-radius: 22px;
  padding: 30px;
  min-width: 320px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-testimonial-card:hover {
  border-color: rgba(242, 140, 15, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(4, 41, 79, 0.12);
}
.avp-testimonial-card {
  /* QUOTE ICON */
}
.avp-testimonial-card .avp-quote-icon {
  margin-bottom: 10px;
  color: #F28C0F;
  font-size: 22px;
}
.avp-testimonial-card {
  /* RATING */
}
.avp-testimonial-card .avp-testimonial-rating {
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}
.avp-testimonial-card .avp-testimonial-rating i {
  color: #F28C0F;
  font-size: 14px;
}
.avp-testimonial-card {
  /* TEXT */
}
.avp-testimonial-card .avp-testimonial-text {
  margin-bottom: 18px;
  color: #1E293B;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}
.avp-testimonial-card {
  /* USER */
}
.avp-testimonial-card .avp-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avp-testimonial-card {
  /* IMAGE */
}
.avp-testimonial-card .avp-testimonial-image {
  width: 90px;
  height: 90px;
}
.avp-testimonial-card .avp-testimonial-image img {
  border: 2px solid rgba(4, 41, 79, 0.12);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avp-testimonial-card {
  /* INFO */
}
.avp-testimonial-card .avp-testimonial-info h4 {
  margin-bottom: 2px;
  color: #04294F;
  font-weight: 600;
  font-size: 15px;
}
.avp-testimonial-card .avp-testimonial-info span {
  color: #64748B;
  font-size: 14px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
  .avp-testimonial-section {
    padding: 80px 0;
  }
  .avp-testimonial-card {
    min-width: 280px;
  }
  .avp-section-heading h2 {
    font-size: 28px;
  }
  .avp-section-heading p {
    text-align: justify;
  }
}
.avp-newsletter-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0;
  min-height: 30vh;
  background: #FFFFFF;
  overflow: hidden;
}
.avp-newsletter-section::before {
  position: absolute;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  content: "";
  background: rgba(242, 140, 15, 0.08);
  filter: blur(70px);
}
.avp-newsletter-section::after {
  position: absolute;
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  content: "";
  background: rgba(58, 125, 68, 0.08);
  filter: blur(70px);
}

.avp-newsletter-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  display: grid;
  align-items: center;
  padding: 35px 45px;
  grid-template-columns: 1.3fr 0.9fr;
  background: #FFFFFF;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
}
@media (max-width: 992px) {
  .avp-newsletter-wrapper {
    padding: 35px 25px;
    grid-template-columns: 1fr;
  }
}

.avp-newsletter-content .avp-section-tag {
  margin-bottom: 12px;
}
.avp-newsletter-content h2 {
  margin-bottom: 12px;
  color: #04294F;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .avp-newsletter-content h2 {
    font-size: 1.8rem;
  }
}
.avp-newsletter-content p {
  margin-bottom: 18px;
  color: #64748B;
  font-size: 15px;
  line-height: 1.8;
  max-width: 550px;
  letter-spacing: -0.5px;
}

.avp-newsletter-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
@media (max-width: 768px) {
  .avp-newsletter-features {
    grid-template-columns: 1fr;
  }
}
.avp-newsletter-features li {
  display: flex;
  align-items: center;
  color: #1E293B;
  font-weight: 500;
  font-size: 14px;
  gap: 10px;
}
.avp-newsletter-features li i {
  color: #3A7D44;
  font-size: 16px;
}

.avp-newsletter-form-card {
  border: 1px solid rgba(4, 41, 79, 0.06);
  border-radius: 20px;
  padding: 25px;
  background: #F8FAFC;
  text-align: center;
}
.avp-newsletter-form-card h3 {
  margin-bottom: 8px;
  color: #04294F;
  font-weight: 600;
  font-size: 1.3rem;
}
.avp-newsletter-form-card p {
  margin-bottom: 18px;
  color: #64748B;
  font-size: 14px;
  line-height: 1.7;
}

.avp-newsletter-icon {
  margin: 0 auto 15px;
  border-radius: 16px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #F28C0F, rgb(205.0909090909, 117.9272727273, 11.1090909091));
}
.avp-newsletter-icon i {
  color: #FFFFFF;
  font-size: 26px;
}

.avp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avp-form-group input {
  border: 1px solid rgba(4, 41, 79, 0.08);
  border-radius: 10px;
  width: 100%;
  padding: 13px 15px;
  color: #1E293B;
  font-size: 14px;
  background: #FFFFFF;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-form-group input:focus {
  border-color: #F28C0F;
}
.avp-form-group input::placeholder {
  color: #64748B;
}

.avp-newsletter-btn {
  border: none;
  border-radius: 10px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #F28C0F, rgb(205.0909090909, 117.9272727273, 11.1090909091));
  cursor: pointer;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-newsletter-btn:hover {
  transform: translateY(-2px);
}

.avp-newsletter-note {
  margin-top: 12px;
  display: block;
  color: #64748B;
  font-size: 13px;
}

@media (max-width: 768px) {
  .avp-newsletter-section {
    padding: 70px 0;
    min-height: auto;
  }
  .avp-newsletter-wrapper {
    gap: 30px;
  }
  .avp-newsletter-content {
    text-align: center;
  }
  .avp-newsletter-features {
    justify-content: center;
  }
}
.avp-gallery-section {
  position: relative;
  padding: 100px 0;
  background: #F8FAFC;
  overflow: hidden;
}
.avp-gallery-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  content: "";
  background: rgba(242, 140, 15, 0.06);
  filter: blur(100px);
}
.avp-gallery-section::after {
  position: absolute;
  bottom: -120px;
  left: -120px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(58, 125, 68, 0.06);
  filter: blur(100px);
}

.avp-gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .avp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .avp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .avp-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.avp-gallery-item {
  position: relative;
  border-radius: 22px;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-gallery-item:hover {
  transform: translateY(-8px);
}
.avp-gallery-item:hover img {
  transform: scale(1.08);
}
.avp-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.6s ease;
}
.avp-gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(4, 41, 79, 0.92), rgba(4, 41, 79, 0.35), transparent);
}

.avp-gallery-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}
.avp-gallery-overlay span {
  border-radius: 30px;
  display: inline-block;
  padding: 7px 14px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
  background: rgba(242, 140, 15, 0.15);
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}
.avp-gallery-overlay h3 {
  margin-top: 12px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .avp-gallery-section {
    padding: 80px 0;
  }
  .avp-gallery-item {
    height: 280px;
  }
  .avp-gallery-overlay {
    padding: 20px;
  }
  .avp-gallery-overlay h3 {
    font-size: 1.15rem;
  }
}
.avp-contact-section {
  position: relative;
  padding: 100px 0;
  background: #F8FAFC;
  overflow: hidden;
}
.avp-contact-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(242, 140, 15, 0.06);
  filter: blur(90px);
}
.avp-contact-section::after {
  position: absolute;
  bottom: -120px;
  left: -120px;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(58, 125, 68, 0.06);
  filter: blur(90px);
}

.avp-contact-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .avp-contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.avp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.avp-contact-card {
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 25px;
  background: #FFFFFF;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-contact-card:hover {
  transform: translateY(-5px);
}

.avp-contact-icon {
  border-radius: 18px;
  width: 65px;
  height: 65px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: rgba(242, 140, 15, 0.1);
}
.avp-contact-icon i {
  color: #F28C0F;
  font-size: 24px;
}

.avp-contact-text h3 {
  margin-bottom: 6px;
  color: #04294F;
  font-weight: 600;
  font-size: 1.15rem;
}
.avp-contact-text p {
  color: #64748B;
  line-height: 1.7;
}

.avp-contact-form-wrapper {
  border-radius: 24px;
  padding: 35px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
}
@media (max-width: 768px) {
  .avp-contact-form-wrapper {
    padding: 25px;
  }
}

.avp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.avp-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 576px) {
  .avp-form-row {
    grid-template-columns: 1fr;
  }
}

.avp-contact-form .avp-form-group input,
.avp-contact-form .avp-form-group textarea {
  border: 1px solid rgba(4, 41, 79, 0.08);
  border-radius: 12px;
  width: 100%;
  padding: 16px 18px;
  color: #1E293B;
  font-size: 15px;
  background: #F8FAFC;
  outline: none;
  resize: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-contact-form .avp-form-group input:focus,
.avp-contact-form .avp-form-group textarea:focus {
  border-color: #F28C0F;
  box-shadow: 0 0 0 4px rgba(242, 140, 15, 0.08);
}
.avp-contact-form .avp-form-group input::placeholder,
.avp-contact-form .avp-form-group textarea::placeholder {
  color: #64748B;
}

.avp-contact-btn {
  border: none;
  border-radius: 12px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(135deg, #F28C0F, rgb(205.0909090909, 117.9272727273, 11.1090909091));
  cursor: pointer;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(242, 140, 15, 0.25);
}
.avp-contact-btn i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avp-contact-btn:hover i {
  transform: translateX(4px);
}

.avp-contact-map {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(4, 41, 79, 0.08);
}
.avp-contact-map iframe {
  border: none;
  width: 100%;
  height: 420px;
  display: block;
}

@media (max-width: 768px) {
  .avp-contact-section {
    padding: 80px 0;
  }
  .avp-contact-card {
    padding: 20px;
  }
  .avp-contact-icon {
    width: 55px;
    height: 55px;
  }
  .avp-contact-icon i {
    font-size: 20px;
  }
  .avp-contact-map iframe {
    height: 300px;
  }
}

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