:root {
  --primary: #ef7918;
  --primary-dark: #ff9900;
  --bg: #f8fafc;
  --bg-gradient: linear-gradient(120deg, #000000 0%, #a5b4fc 100%);
  --card-bg: #fff;
  --border-radius: 18px;
  --shadow: 0 4px 24px 0 rgba(99,102,241,.10);
}


html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #f2f2f2;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}



.background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.background video#bgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  filter: blur(2px) brightness(0.85);
  object-fit: cover;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}



.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(16px) saturate(180%) contrast(120%);
  -webkit-backdrop-filter: blur(16px) saturate(180%) contrast(120%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}




.navbar {
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(239, 121, 24, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu.mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 16px 16px;
}

.nav-menu.mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu.mobile .cta {
  width: 100%;
  margin: 5px 0;
  text-align: left;
  justify-content: flex-start;
}

.nav-menu.mobile .header-right {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(239, 121, 24, 0.2);
}

.nav-menu.mobile .social-link {
  width: auto;
  justify-content: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.mobile {
    display: flex;
  }

  .logo-img {
    height: 100px !important;
  }

  .nav-content {
    height: auto;
    padding: 10px 0;
  }
}
.service-icon-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ffa72615;
  transition: box-shadow .18s, transform .13s;
}
.service-icon-img:hover {
  box-shadow: 0 8px 24px #ffa72659;
  transform: scale(1.05) rotate(-3deg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--primary);
}
.logo-img {
  height: 140px;
  width: auto;
  display: block;
  margin-right: 8px;
  border-radius: 10px;
  
  
}
.logo-img:hover {
  
  transform: scale(1.05) rotate(-3deg);
}
@media (max-width: 700px) {
  .logo-img { height: 36px; }
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--primary);
}
.nav-content nav a {
  margin: 0 1.2rem;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-content nav a:hover {
  color: var(--primary-dark);
}
.call-center {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--border-radius);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(99,102,241,.12);
  text-decoration: none;
  transition: background .2s;
}
.call-center:hover {
  background: var(--primary-dark);
}


.hero {
  background: transparent;
  color: #fff;
  padding: 100px 0 70px 0;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.hero-content {
  background: rgba(99,102,241,0.12);
  border-radius: 36px;
  padding: 36px 20px 30px 20px;
  box-shadow: 0 8px 32px 0 rgba(99,102,241,.10);
  max-width: 620px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.main-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all .18s;
  font-size: 1.1rem;
}
.main-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}


.section {
  padding: 10px 0 10px 0;
  margin-bottom: 15px;
  position: relative;
}
.section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--primary-dark);
}


.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
.service-card {
  background: rgba(255, 255, 255, 0.605);
  padding: 30px 20px 24px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow .22s, transform .18s;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.26);
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(99,102,241,.18);
  transform: translateY(-3px) scale(1.035);
}
.service-card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.18rem;
}
.service-card p {
  font-size: 1.20rem;
  color: #000000;
}

.contact-box {
  background: rgba(255,255,255,0.7);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.22);
}
.contact-info > div {
  margin-bottom: 16px;
  font-size: 1.08rem;
}
.contact-info a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color .18s;
}
.contact-info a:hover {
  color: var(--primary);
}


.footer {
  background: rgba(30,41,59,0.80);
  color: #fff;
  padding: 32px 0 20px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 38px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.13);
}

.locations-section {
  margin-bottom: 38px;
}
.custom-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 28px;
  margin-top: 32px;
}
.custom-locations-grid .location-card:nth-child(1) {
  grid-row: 1; grid-column: 1;
}
.custom-locations-grid .location-card:nth-child(2) {
  grid-row: 1; grid-column: 2;
}
.custom-locations-grid .location-card:nth-child(3) {
  grid-row: 1; grid-column: 3;
}
.custom-locations-grid .location-card:nth-child(4) {
  grid-row: 2; grid-column: 1;
}
.custom-locations-grid .location-card:nth-child(5) {
  grid-row: 2; grid-column: 2;
}
@media (max-width: 950px) {
  .custom-locations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .custom-locations-grid .location-card:nth-child(1) {
    grid-row: 1; grid-column: 1;
  }
  .custom-locations-grid .location-card:nth-child(2) {
    grid-row: 1; grid-column: 2;
  }
  .custom-locations-grid .location-card:nth-child(3) {
    grid-row: 2; grid-column: 1 / span 2;
    justify-self: center;
    width: 70%;
  }
  .custom-locations-grid .location-card:nth-child(4) {
    grid-row: 3; grid-column: 1;
  }
  .custom-locations-grid .location-card:nth-child(5) {
    grid-row: 3; grid-column: 2;
  }
}
@media (max-width: 650px) {
  .custom-locations-grid {
    grid-template-columns: 1fr;
  }
  .custom-locations-grid .location-card {
    grid-column: 1 !important;
    width: 100% !important;
  }
}
.location-card {
  background: rgba(255, 255, 255, 0.396);
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(99,102,241,.11);
  padding: 20px 18px 16px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.location-card h3 {
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.location-card p {
  font-size: 1.10rem;
  color: #000000;
  margin-bottom: 14px;
}
.location-card iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 2px 12px 0 rgba(99,102,241,.06);
}

.delivery-section {
  padding: 32px 0 24px 0;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.39);
}
.delivery-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.delivery-info {
  flex: 1 1 400px;
  text-align: left;
  min-width: 290px;
}
.delivery-title {
  margin-bottom: 18px;
  text-align: left;
  position: relative;
}
.delivery-bg {
  font-size: 3.2rem;
  color: #eab30824;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: -48px;
  letter-spacing: 2px;
  z-index: 0;
  user-select: none;
}
.delivery-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #18181b;
  margin: 0;
  position: relative;
  z-index: 1;
}
.delivery-title .orange {
  color: #ff9900;
  font-size: 2.3rem;
}
.delivery-text {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.6;
}
.delivery-text b {
  color: #E5680A;
}
.delivery-img {
  flex: 1 1 320px;
  min-width: 260px;
  text-align: right;
}
.delivery-img img {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 #E5680A11;
}
@media (max-width: 900px) {
  .delivery-flex { flex-direction: column-reverse; text-align: center; }
  .delivery-img { text-align: center; }
  .delivery-title, .delivery-info { text-align: center; }
  .delivery-title .delivery-bg { font-size: 2.2rem; position: static; display: block; }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.29rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.07rem;
  text-decoration: none;
  transition: background .18s;
}
.social-link:hover {
  background: #f3f4f6;
}
.social-link svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.14s;
}
.social-link:hover svg {
  transform: scale(1.12) rotate(-8deg);
  filter: drop-shadow(0 0 4px #c13584aa);
}
.social-text {
  color: #18181b;
  font-size: 1.08rem;
  font-weight: 500;
  margin-left: 1px;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .header-right { gap: 0.3rem; }
  .social-link { padding: 2px 7px; font-size: 0.98rem; }
  .social-link svg { width: 19px; height: 19px; }
  .social-text { font-size: 1rem; }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  margin-top: 36px;
  justify-items: center;
}
.about-card {
  background: rgba(255, 255, 255, 0.523);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(99,102,241,.11);
  padding: 24px 8px 20px 8px;
  text-align: center;
  border: 1px solid rgba(99,102,241,0.11);
  min-width: 175px;
  transition: box-shadow .19s, transform .16s;
}
.about-card:hover {
  box-shadow: 0 8px 28px 0 rgba(99,102,241,.18);
  transform: translateY(-2px) scale(1.025);
}
.about-icon {
  font-size: 2.6rem;
  margin-bottom: 17px;
}
.about-card h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin: 0 0 7px 0;
  font-weight: 700;
}
.about-card p {
  font-size: 1.70rem;
  color: #ffffff;
  margin: 0;
}

.service-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}


.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
}





.testimonials-section {
  margin-bottom: 38px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 32px;
  margin-top: 22px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.515);
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(10, 13, 153, 0.11);
  border: 1px solid rgb(0, 4, 222);
  padding: 32px 22px 26px 22px;
  transition: box-shadow .18s, transform .13s;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(0, 2, 108, 0.19);
  transform: translateY(-3px) scale(1.025);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  font-size: 2.1rem;
  background: #e0e7ff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 10px #0003bd;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  display: block;
}

.testimonial-stars {
  color: #f5c518;
  font-size: 1.16rem;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

.testimonial-text {
  font-size: 1.06rem;
  color: #000000;
  margin: 0;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


.trusted-companies-section {
  margin-bottom: 30px;
}
.trusted-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 14px 0 8px 0;
  background: rgba(243,244,246,0.55);
  border-radius: 18px;
  border: 1.5px solid #a5b4fc30;
  box-shadow: 0 2px 18px #a5b4fc17;
}
.trusted-track {
  display: flex;
  gap: 42px;
  animation: trusted-marquee 38s linear infinite;
  width: max-content;
}
.trusted-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px 28px 11px 24px;
  font-size: 1.18rem;
  color: #ef7918;
  font-weight: 600;
  box-shadow: 0 2px 12px #a5b4fc26;
  border: 1px solid #6366f12a;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 170px;
  user-select: none;
  transition: box-shadow .19s, transform .13s;
  cursor: pointer;
}
.trusted-item:hover {
  background: #ef7918;
  color: #fff;
  box-shadow: 0 8px 24px #6366f145;
  transform: scale(1.06) rotate(-2deg);
}
.trusted-icon {
  font-size: 1.38em;
  margin-left: 4px;
}
@keyframes trusted-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-55%); }
}
@media (max-width: 800px) {
  .trusted-track { gap: 24px; }
  .trusted-item { font-size: 1rem; padding: 10px 14px; min-width: 130px; }
}

.famous-clients {
  margin-bottom: 38px;
}

.famous-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.contact-form {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.contact-form label {
  color: black;
}

.contact-form .heading {
  font-size: 24px;
  color: black;
  ;
  margin-bottom: 12px;
  font-weight: bold;
  display: block;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 10px;
}

textarea {
  resize: none;
  height: 80px;
  width: 200px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #ff6384;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.contact-form button[type="submit"] {
  background-color: #ff6384;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}


.searchBox {
  display: flex;
  max-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #2f3640;
  border-radius: 50px;
  position: relative;
}

.searchButton {
  color: white;
  position: absolute;
  right: 8px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-2, linear-gradient(90deg, #2AF598 0%, #009EFD 100%));
  border: 0;
  display: inline-block;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
}


button:hover {
  color: #fff;
  transform: translateY(-3px);
}

button:active {
  box-shadow: none;
  transform: translateY(0);
}

.searchInput {
  border: none;
  background: none;
  outline: none;
  color: white;
  font-size: 15px;
  padding: 24px 46px 24px 26px;
}

.input {
  display: flex;
  flex-direction: column;
  width: 200px;
  justify-content: center;
  border-radius: 5px
}

.value {
  background-color: transparent;
  border: none;
  padding: 10px;
  color: white;
  display: flex;
  position: relative;
  gap: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.value:not(:active):hover,
.value:focus 


.value:focus,
.value:active {
  outline: none;
}

.value::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 80%;
  background-color: #2F81F7;
  border-radius: 5px;
  opacity: 0;
}

.value:focus::before,
.value:active::before {
  opacity: 1;
}

.value svg {
  width: 15px
}






.form-container .form-submit-btn:hover {
  background-color: #fff;
  border-color: #fff;
}






.famous-card {
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ef7918;
  text-align: center;
  box-shadow: 0 4px 18px rgba(99,102,241,0.09);
  transition: transform 0.15s, box-shadow 0.15s;
}
.famous-card:hover {
  transform: scale(1.05) rotate(-2deg);
  background: #ef7918;
  color: #fff;
  box-shadow: 0 6px 24px rgba(99,102,241,0.25);
}




.hero { font-family: 'Roboto', sans-serif; }
#about, .about-card, .about-card p, .about-card h3 { font-family: 'Open Sans', sans-serif; }
#services, .service-card, .service-card h3, .service-card p { font-family: 'Poppins', sans-serif; }
.delivery-section, .delivery-text, .delivery-title { font-family: 'Merriweather', serif; }
.testimonials-section, .testimonial-card, .testimonial-name, .testimonial-text { font-family: 'Rubik', sans-serif; }
#contact, .contact-box, .contact-info { font-family: 'Open Sans', sans-serif; }
.footer, .footer-logo, .footer-contact { font-family: 'Roboto', sans-serif; }




.navbar a,
.navbar .call-center,
.nav-content nav a,
.section h2,
.hero h1,
.hero p,
.main-btn {
  font-family: 'Playfair Display', serif !important;
  letter-spacing: 0.5px;
}




body, .contact-info, .service-card p, .about-card p, .testimonial-text {
  font-family: 'Raleway', sans-serif !important;
}

.navbar a,
.navbar .call-center,
.nav-content nav a,
.main-btn {
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 0.5px;
}

h1, h2, h3,
.section h2,
.hero h1,
.hero p,
.service-card h3,
.about-card h3,
.delivery-title h2 {
  font-family: 'DM Serif Display', serif !important;
}

.testimonial-card,
.testimonial-name {
  font-family: 'Quicksand', sans-serif !important;
}




.trusted-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 140px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}
.trusted-item:hover {
  transform: scale(1.1) rotate(-1deg);
}
.trusted-item img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}




.trusted-item {
  background: transparent;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 160px;
  box-shadow: none;
  transition: transform 0.2s ease-in-out;
}
.trusted-item:hover {
  transform: scale(1.1) rotate(-2deg);
}
.trusted-item img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.nav-content nav a {
    white-space: nowrap;
}










.container.nav-content > .nav-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.navbar .container.nav-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0rem !important;
}



button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2rem;
  margin: 0 0.5rem;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 17px;
  border-radius: 500px;
  overflow: hidden;
  color: ghostwhite;
}





nav button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  transform: translateX(-100%) skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: 0;
}

nav button:hover::before {
  transform: translateX(100%) skew(30deg);
}



button:hover span {
 color: orange;
}




.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ff9900;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #ff9900;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}


.about-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}




