@charset "UTF-8";
.section-label {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-left: 18px;
  position: relative;
}
.section-label::after {
  background: #FF0000;
  width: 13px;
  height: 13px;
  position: absolute;
  content: "";
  border-radius: 20px;
  left: 0;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-family: "Google Sans Flex", sans-serif;
  text-transform: capitalize;
}

body.sticky-scrolling {
  overflow: hidden;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
  width: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.w100 {
  width: 100%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
}
.navbar .nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.navbar .logo img {
  width: auto;
  height: 80px;
}
@media (max-width: 1024px) {
  .navbar .logo img {
    height: 60px;
  }
}
.navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  background: rgba(15, 15, 15, 0.26);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.navbar .nav-menu li {
  margin: 0;
}
.navbar .nav-menu a {
  cursor: pointer;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
  background: #ffffff;
  color: #000;
}
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
  }
}
.navbar .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 101;
}
.navbar .hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .navbar .hamburger-menu {
    display: flex;
  }
}
.navbar .mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  display: none;
  padding: 20px;
}
.navbar .mobile-nav-panel.active {
  display: flex;
}
.navbar .mobile-nav-panel .mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .mobile-nav-panel .mobile-nav-header .logo img {
  height: 40px;
  width: auto;
}
.navbar .mobile-nav-panel .mobile-nav-header .close-menu-btn {
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}
.navbar .mobile-nav-panel .mobile-nav-items {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .mobile-nav-panel .mobile-nav-items li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.navbar .mobile-nav-panel .mobile-nav-items li a {
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.navbar .mobile-nav-panel .mobile-nav-items li a:hover {
  color: #f4a261;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li {
  opacity: 1;
  transform: translateY(0);
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(1) {
  transition-delay: 0.2s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(2) {
  transition-delay: 0.3s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(3) {
  transition-delay: 0.4s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(4) {
  transition-delay: 0.5s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(5) {
  transition-delay: 0.6s;
}

/* Footer Section */
.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 100px 0 40px;
  font-family: "Inter", sans-serif;
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.footer-top .footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
.footer-logo img {
  height: 70px;
}
.footer-brand-desc {
  max-width: 280px;
}
.footer-brand-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
@media (max-width: 768px) {
  .footer-brand-desc p {
    text-align: center;
  }
}
.footer-main {
  margin-bottom: 80px;
}
.footer-main .footer-main-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: stretch;
  grid-template-columns: 1fr 3.5fr 1.6fr;
}
@media (max-width: 1024px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr;
  }
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-col {
    grid-column: span 1;
  }
}
.footer .business-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 480px) {
  .footer .business-subgrid {
    grid-template-columns: 1fr;
  }
}
.footer .follow-us {
  background: #191919;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  height: 45px;
}
@media (max-width: 1024px) {
  .footer .follow-us {
    justify-content: space-between;
  }
}
.footer .follow-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #D6D6D6;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer .follow-col {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer .follow-col {
    grid-column: span 1;
  }
}
.footer .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 20px;
}
.footer .social-icons a img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer .social-icons a:hover img {
  opacity: 1;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }
}

.nav-head {
  background-color: #fff;
  padding: 0px 2px;
  color: #0C0F26;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.innovation-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-image: url("../images/about/award.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}
.innovation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.innovation-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.innovation-section .innov-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  height: 85vh;
}
.innovation-section .innov-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .innovation-section .innov-content p {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .innovation-section .innov-content p {
    font-size: 1.2rem;
  }
}
.innovation-section .innov-content .btn-connect1 {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.innovation-section .innov-content .btn-connect1:hover {
  transform: translateY(-2px);
}
.innovation-section .innov-content .btn-connect1 .icon-arrow {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.innovation-section .innov-content .btn-connect1 .icon-arrow svg {
  width: 14px;
  height: 14px;
}

.cmn_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  display: inline-flex;
  background: transparent;
  color: #0a1128;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: gap 0.3s ease;
  width: fit-content;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cmn_btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
.cmn_btn span:first-child {
  background: #ffffff;
  padding: 14px 28px;
  height: 47px;
  border-radius: 5px;
  border: 1px solid #F6F6F6;
  line-height: 1;
}
.cmn_btn .arrow {
  background: #ffffff;
  border: 1px solid #F6F6F6;
  width: 44px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  border-radius: 5px;
  font-size: 1.5rem;
}
.cmn_btn .arrow .arrow-icon {
  transform: rotate(-45deg);
  display: block;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Life at Akbar Section */
.life-at-akbar {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .life-at-akbar {
    padding: 20px 0;
  }
}
.life-at-akbar .life-bg-container {
  margin: 0 auto;
  padding: 80px 60px;
  background: #0D0C32;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.life-at-akbar .life-bg-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/life-bg-noise.png");
  background-repeat: repeat;
  background-size: 380px 194px;
  background-position: top left;
  opacity: 0.33;
  pointer-events: none;
}
@media (max-width: 768px) {
  .life-at-akbar .life-bg-container {
    padding: 55px 28px;
    margin: 0 5px;
  }
}
.life-at-akbar .life-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr 1.2fr 1fr;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-content {
    gap: 0;
  }
}
.life-at-akbar .life-text {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}
.life-at-akbar .life-text .txt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt {
    order: 1;
    gap: 31px;
  }
}
.life-at-akbar .life-text .txt .section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 500;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt .section-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 10px;
  }
}
.life-at-akbar .life-text .txt .section-label::after {
  display: none;
}
.life-at-akbar .life-text .txt h2 {
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 50px;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 64px;
    line-height: 0.94;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: block;
  }
}
@media (max-width: 480px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 48px;
  }
}
.life-at-akbar .life-text .txt h2 .highlight {
  background: linear-gradient(69.3deg, #b5b4ff 38.225%, #6063ff 62.906%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .cmn_btn {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .cmn_btn {
    order: 4;
    margin-top: 40px;
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text {
    flex-wrap: wrap;
    display: contents;
  }
}
.life-at-akbar .life-image {
  position: relative;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-image {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-image {
    order: 2;
    max-width: 100%;
    margin: 0;
    margin-top: 66px;
  }
}
.life-at-akbar .life-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  grid-template-columns: repeat(4, 104px);
  grid-template-rows: repeat(2, 118px);
}
.life-at-akbar .life-image-grid img,
.life-at-akbar .life-image-grid video {
  width: 104px;
  height: 118px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
  border-radius: 8px 8px 0 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
  border-radius: 0 0 8px 8px;
}
.life-at-akbar .life-image-grid .empty-space {
  width: 104px;
  height: 118px;
  background: transparent;
}
@media (max-width: 768px) {
  .life-at-akbar .life-image-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 95px);
  }
  .life-at-akbar .life-image-grid img,
  .life-at-akbar .life-image-grid video {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid .empty-space {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
    border-radius: 4px 4px 0 0;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
    border-radius: 0 0 4px 4px;
  }
}
.life-at-akbar .life-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .life-at-akbar .life-description {
    order: 3;
    font-size: 14px;
    line-height: 2;
    margin-top: 80px;
  }
}
.life-at-akbar .life-description p {
  margin: 0;
}

@media (hover: none), (pointer: coarse) {
  .cmn_btn,
  .btn-connect,
  .btn-apply,
  .cta-button {
    transform: none !important;
  }
}
.form-status {
  display: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  gap: 14px;
  animation: formStatusReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}
.form-status.success {
  display: flex;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.08);
}
.form-status.error {
  display: flex;
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.06);
}
.form-status .status-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.form-status .status-icon svg {
  width: 18px;
  height: 18px;
}
.form-status.success .status-icon {
  background: rgba(34, 197, 94, 0.12);
}
.form-status.error .status-icon {
  background: rgba(239, 68, 68, 0.1);
}
.form-status span:not(.status-icon) {
  flex: 1;
}

@keyframes formStatusReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
}
.hero .container {
  height: 100%;
}
.hero-video, .hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-fallback {
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 50%, #264653 100%);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-main-content {
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 5;
}
.hero-main-content-inner {
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-main-content-inner {
    text-align: center;
  }
}
.hero-main-content-inner h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  visibility: hidden;
}
@media (max-width: 1024px) {
  .hero-main-content-inner h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-main-content-inner h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero-main-content-inner h1 {
    font-size: 2rem;
  }
}
.hero-main-content-inner p {
  font-size: 1.2rem;
  opacity: 0.9;
  visibility: hidden;
}
.hero-content-section {
  width: 100%;
  height: 100%;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  gap: 40px;
  max-width: 100%;
  padding: 0 0 40px 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    bottom: 30px;
  }
}
.hero-text {
  color: #ffffff;
}
.hero {
  /* Thumbnails */
}
.hero-thumbnails {
  position: relative;
}
@media (max-width: 768px) {
  .hero-thumbnails {
    order: -1;
  }
}
.hero .thumbnail-swiper {
  width: 300px;
}
@media (max-width: 1024px) {
  .hero .thumbnail-swiper {
    display: none;
  }
}
.hero .thumbnail-slide {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hero .thumbnail-slide:hover {
  transform: scale(1.05);
}
.hero .thumbnail-slide.swiper-slide-active .hero-card {
  transform: scale(1.02);
}
.hero .scroll-indicator {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .hero .scroll-indicator {
    justify-content: center;
  }
}
.hero .scroll-arrow {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  .hero .scroll-arrow {
    width: 60px;
    height: 60px;
  }
}
.hero .scroll-arrow:hover {
  transform: scale(1.1);
}
.hero .scroll-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.hero .scroll-arrow-border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}
.hero .scroll-arrow-border img {
  animation: rotateArrow 5s linear infinite;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero {
  /* Hero Card */
}
.hero .hero-card {
  width: 300px;
  height: 200px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .hero .hero-card {
    width: 280px;
    height: 180px;
  }
}
@media (max-width: 768px) {
  .hero .hero-card {
    width: 250px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .hero .hero-card {
    width: 200px;
    height: 120px;
  }
}
.hero .hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 5px;
}
.hero .hero-card .card-content span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4a261;
}
.hero .hero-card .card-content span:last-child {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
}

@keyframes rotateArrow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* About Section */
.about {
  padding: 100px 0 0 0;
  background: #ffffff;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 80px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-container {
    gap: 40px;
  }
}
.about-content {
  padding-right: 40px;
  width: 40%;
}
@media (max-width: 1024px) {
  .about-content {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .about-text .section-label {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    padding-left: 18px;
  }
}
.about-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0C0F26;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .about-text h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 2rem;
  }
}
.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #0C0F26;
}
.about-image {
  position: relative;
  width: 60%;
}
@media (max-width: 1024px) {
  .about-image {
    width: 100%;
  }
}
.about-image img,
.about-image svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
@media (max-width: 1024px) {
  .about-image-container svg {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 50px 0 0 0;
  }
}

/* Mission Section */
.mission {
  padding: 100px 0;
  background: url(../images/bg.webp) #141414;
  color: #ffffff;
}
.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
}
.mission-content {
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .mission-content {
    padding-right: 0;
  }
}
.mission-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 60px;
  color: #ffffff;
  font-weight: 200;
}
@media (max-width: 1024px) {
  .mission-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .mission-text p {
    font-size: 1rem;
  }
}
.mission-text strong {
  font-weight: 700;
}
.mission-stats {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .mission-stats {
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .mission-stats {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}
.mission .stat-item {
  text-align: left;
}
@media (max-width: 1024px) {
  .mission .stat-item {
    text-align: center;
  }
}
.mission .stat-number {
  font-size: 54px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .mission .stat-number {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .mission .stat-number {
    font-size: 2.5rem;
  }
}
.mission .stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}
.mission-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .mission-image {
    margin: 0 auto;
    align-items: center;
    gap: 30px;
  }
}
.mission-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .mission-image img {
    margin-bottom: 0;
  }
}
.mission-heading {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 1024px) {
  .mission-heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .mission-heading {
    font-size: 2.2rem;
  }
}
.mission .year-highlight {
  font-size: 4.5rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .mission .year-highlight {
    font-size: 3.5rem;
  }
}
@media (max-width: 480px) {
  .mission .year-highlight {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .mission {
    padding: 60px 0;
  }
}

/* Services Section */
.services {
  position: relative;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 100px 0 0px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services {
    min-height: auto;
    padding: 80px 0 40px;
  }
}
.services-header {
  text-align: center;
  position: relative;
  z-index: 10;
}
.services-header .sub-label {
  color: #0C0F26;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 0;
}
.services-header .sub-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 8px;
  background: url("../images/sub-head-bdr.webp") no-repeat center center;
  background-size: contain;
}
.services-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0C0F26;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .services-header h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-header h2 {
    font-size: 2rem;
  }
}
.services-swiper {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-swiper {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .services-swiper {
    height: 380px;
    padding: 0 10px;
  }
}
.services .service-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  height: auto;
  padding: 50px 0 80px 0;
}
.services .service-card {
  position: relative;
  height: 350px;
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .services .service-card {
    height: 250px;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .services .service-card {
    height: 300px;
    max-width: 280px;
    width: 85vw;
  }
}
.services .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.services .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px 25px 25px;
  color: #ffffff;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  gap: 0;
}
.services .service-content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.services .service-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 10;
}
.services-next, .services-prev {
  color: #0C0F26 !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  margin-top: -22px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.services-next:hover, .services-prev:hover {
  background: #f4a261;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(244, 162, 97, 0.3);
}
.services-next::after, .services-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

/* Founder Section */
.founder {
  padding: 100px 0;
  background: url(../images/founder-bg.webp) #ffffff;
}
.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .founder-container {
    padding: 0 10px;
  }
}
.founder-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0C0F26;
  margin-bottom: 60px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .founder-content h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}
.founder-card {
  background: url(../images/founder-background.webp) center/cover #F4D486;
  background-blend-mode: multiply;
  border-radius: 20px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  background-size: cover;
  contain: layout;
}
@media (max-width: 1024px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 40px 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .founder-card {
    padding: 30px 30px 0;
  }
}
.founder-text {
  padding: 70px 0;
}
@media (max-width: 1024px) {
  .founder-text {
    padding: 0;
  }
}
.founder .founder_row {
  background: #232323;
  padding: 9px 25px;
  border-radius: 12px;
  text-align: center;
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.founder .founder_row h4 {
  color: #F0D184;
  font-size: 18px;
}
.founder .founder_row p {
  color: #cccccc;
  font-size: 16px;
  font-weight: 300;
}
.founder .founder_row p br {
  display: none;
}
@media (max-width: 480px) {
  .founder .founder_row p br {
    display: block;
  }
}
.founder .founder-signature strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.founder .founder-signature span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.founder-image {
  position: absolute;
  z-index: 1;
  max-width: 400px;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-right: 24px;
}
@media (max-width: 1024px) {
  .founder-image {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    padding-right: 0;
    margin: 0 auto;
  }
}
.founder-image img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .founder {
    padding: 50px 0;
  }
}
.founder .foundation-card {
  margin-top: 40px;
  background-color: #F2D285;
  border-radius: 20px;
  padding: 25px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .founder .foundation-card {
    padding: 15px;
  }
}
.founder .foundation-card-inner {
  position: relative;
  z-index: 1;
  background: url(../images/foundation-bg.webp) #fff center/cover no-repeat;
  border-radius: 12px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .founder .foundation-card-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .founder .foundation-card-inner {
    padding: 30px 24px;
    gap: 30px;
  }
}
.founder .foundation-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.founder .foundation-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .founder .foundation-header {
    margin-bottom: 24px;
  }
}
.founder .foundation-header h3 {
  font-size: 24px;
  font-weight: 500;
  color: #0C0F26;
  margin: 0;
  line-height: 1.2;
}
.founder .foundation-icon {
  width: 44px;
  height: 44px;
}
.founder .foundation-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.founder .foundation-left-text {
  font-size: 16px;
  line-height: 1.55;
  color: #0C0F26;
  margin: 0;
}
.founder .foundation-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  .founder .foundation-right {
    gap: 24px;
  }
}
.founder .foundation-right p {
  font-size: 16px;
  line-height: 1.55;
  color: #0C0F26;
  margin: 0;
}

/* Possibilities Section */
.possibilities {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
}
.possibilities-swiper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.possibilities-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.possibilities-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.possibilities-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.possibilities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.possibilities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  position: relative;
  z-index: 3;
  width: 100%;
}
.possibilities-content {
  flex: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.possibilities-content h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .possibilities-content h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .possibilities-content h2 {
    font-size: 2rem;
  }
}
.possibilities .cta-button {
  background: rgba(255, 255, 255, 0.9);
  color: #333333;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  display: inline-flex;
}
.possibilities .cta-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
.possibilities .cta-button::after {
  content: "→";
  font-size: 1.2rem;
}
.possibilities-videos {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 15px;
  z-index: 4;
}
@media (max-width: 1024px) {
  .possibilities-videos {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    width: fit-content;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .possibilities-videos {
    display: none;
  }
}
.possibilities .video-card {
  position: relative;
  width: 200px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
}
@media (max-width: 768px) {
  .possibilities .video-card {
    width: 180px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .possibilities .video-card {
    width: 150px;
    height: 90px;
  }
}
.possibilities .video-card:hover {
  transform: translateY(-5px);
}
.possibilities .video-card.active {
  border-color: #979797;
  box-shadow: 0 8px 25px rgba(167, 166, 166, 0.4);
}
.possibilities .video-card img,
.possibilities .video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.possibilities .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.possibilities .play-button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  font-size: 1rem;
  color: #333333;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.possibilities .play-button:hover {
  transform: scale(1.1);
}
.possibilities .video-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.possibilities .video-info span {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Business Verticals Section */
.business-verticals {
  position: relative;
  padding: 100px 0;
  background: url(../images/business-bg.webp) center bottom no-repeat #F9F9F9;
  overflow: hidden;
}
.business-verticals .business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.business-verticals .business-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .business-verticals .business-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .business-verticals .business-header {
    margin-bottom: 20px;
  }
}
.business-verticals .business-header .section-label {
  color: #0C0F26;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 0;
}
.business-verticals .business-header .section-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 8px;
  background: url("../images/sub-head-bdr.webp") no-repeat center center;
  background-size: contain;
}
.business-verticals .business-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0C0F26;
  margin-bottom: 30px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .business-verticals .business-header h2 {
    font-size: 2.5rem;
  }
}
.business-verticals .business-swiper {
  width: 100%;
  padding: 80px 0px 35px 0px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .business-verticals .business-swiper {
    padding: 60px 0 30px 0;
  }
}
.business-verticals .business-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  height: auto;
  padding-bottom: 40px;
}
.business-verticals .business-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 30px 30px;
  text-align: left;
  transition: all 0.3s ease;
  height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 320px;
  margin: 0 auto;
  border: 1px solid #EFEFEF;
}
@media (max-width: 1024px) {
  .business-verticals .business-card {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .business-verticals .business-card {
    height: 350px;
    padding: 30px 25px;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .business-verticals .business-card {
    height: 320px;
    padding: 25px 20px;
  }
}
.business-verticals .business-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0C0F26;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .business-verticals .business-card h3 {
    font-size: 1.2rem;
  }
}
.business-verticals .business-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 480px) {
  .business-verticals .business-card p {
    font-size: 0.8rem;
  }
}
.business-verticals .business-logo {
  width: max-content;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  border-radius: 12px;
  margin-bottom: 10px;
}
.business-verticals .business-logo.full-width {
  width: 100%;
  justify-content: flex-start;
}
.business-verticals .business-logo.full-width img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 480px) {
  .business-verticals .business-logo {
    width: 60px;
    height: 60px;
  }
  .business-verticals .business-logo.full-width {
    width: 100%;
    height: 45px;
  }
}
.business-verticals .business-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.business-verticals .business-cta-btn {
  display: flex;
  position: absolute;
  height: 65px;
  width: 65px;
  border-radius: 45px 0px 0px 0px;
  padding: 15px 0 0 15px;
  bottom: -1px;
  right: -1px;
  background: #f8f9fa;
  border-top: 1px solid #EFEFEF;
  border-left: 1px solid #EFEFEF;
}
.business-verticals .top-border {
  height: 40px;
  width: 30px;
  max-width: 30px;
  top: -39px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 0px 20px 0px 0px #f8f9fa;
  right: 0px;
  position: absolute;
  border-bottom: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
.business-verticals .left-border {
  height: 23px;
  width: 40px;
  max-width: 40px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 20px 0px 0px 0px #f8f9fa;
  position: absolute;
  left: -40px;
  bottom: 0;
  border-bottom: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
.business-verticals .business-cta {
  width: 50px;
  height: 50px;
  background: #D52727;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.17));
  border: 1px solid #ffffff;
}
.business-verticals .business-cta span {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  transform: rotate(-45deg);
}
.business-verticals .business-card:hover .business-cta {
  background: #c0392b;
  transform: scale(1.1);
}
.business-verticals .business-next,
.business-verticals .business-prev {
  color: #0C0F26 !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}
.business-verticals .business-next:hover,
.business-verticals .business-prev:hover {
  background: #f4a261;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(244, 162, 97, 0.3);
}
.business-verticals .business-next::after,
.business-verticals .business-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}
.business-verticals .business-bg-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.1;
}
.business-verticals .business-bg-illustration img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .business-verticals {
    padding: 60px 0;
  }
}

/* Sustainability Section */
.sustainability {
  position: relative;
  height: 100vh;
  display: block;
  background: url(../images/csr-bg.webp) center center;
  background-size: cover;
  z-index: 100;
}
@media (max-width: 768px) {
  .sustainability {
    background-size: 300% 100%;
    /* 3 parts for mobile */
    background-position: 0% center;
  }
}
.sustainability-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 !important;
}
.sustainability-slides-wrapper {
  display: none;
  /* Hide old wrapper if any ref remains, but practically replaced by swiper-wrapper */
}
.sustainability .sustainability-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 0px;
}
.sustainability .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}
.sustainability-slide {
  min-width: 100vw;
  width: 100vw;
  height: 100vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
  position: relative;
  padding: 80px 0;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .sustainability-slide {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .sustainability-slide {
    padding: 40px 0;
  }
  .sustainability-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
}
.sustainability-content {
  width: 100%;
  max-width: 1400px;
  /* Increased max-width for better use of space on large screens */
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5%;
  /* Percentage padding for better safety on all screens */
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .sustainability-content {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .sustainability-content {
    gap: 20px;
  }
}
.sustainability-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .sustainability-header {
    gap: 10px;
  }
}
.sustainability-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0C0F26;
  margin: 0;
}
@media (max-width: 768px) {
  .sustainability-header h3 {
    font-size: 0.9rem;
  }
}
@keyframes spinClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sustainability-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .sustainability-icon {
    width: 40px;
    height: 40px;
  }
}
.sustainability-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spinClockwise 10s linear infinite;
}
.sustainability-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 0;
  gap: 40px;
  height: 100%;
}
@media (max-width: 1200px) {
  .sustainability-main {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .sustainability-main {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .sustainability-main {
    flex-direction: column;
    gap: 20px;
  }
}
.sustainability-text {
  flex: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .sustainability-text {
    flex: 0 0 auto;
  }
}
.sustainability-text h2 {
  font-size: 48px;
  font-weight: 500;
  color: #0C0F26;
  line-height: 1.1;
  margin: 0;
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .sustainability-text h2 {
    font-size: 3rem;
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .sustainability-text h2 {
    font-size: 2.5rem;
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .sustainability-text h2 {
    font-size: 2rem;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .sustainability-text h2 {
    font-size: 1.8rem;
  }
}
.sustainability-description {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 15px;
  width: 40%;
  text-align: left;
  margin-top: auto;
  padding-bottom: 60px;
}
@media (max-width: 1024px) {
  .sustainability-description {
    width: 50%;
    padding-bottom: 40px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .sustainability-description {
    width: 100%;
    text-align: left;
    margin-top: 0;
    padding-bottom: 30px;
  }
}
.sustainability-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 768px) {
  .sustainability-description p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.sustainability-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}
@media (max-width: 1024px) {
  .sustainability-pagination {
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sustainability-pagination {
    bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }
}
.sustainability .page-number {
  font-size: 16px;
  color: #ffffff;
  /* White text */
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sustainability .page-number {
    font-size: 14px;
    color: #ffffff;
  }
}
.sustainability .page-number.active {
  opacity: 1;
}
.sustainability .pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  /* Increased gap slightly */
}
@media (max-width: 768px) {
  .sustainability .pagination-dots {
    gap: 4px;
  }
}
.sustainability .dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 0 0 rgba(255, 255, 255, 0.4);
  /* Second vertical dot */
  border-radius: 0;
  margin-bottom: 8px;
  /* Space for the shadow */
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .sustainability .dot {
    width: 3px;
    height: 3px;
    box-shadow: 0 6px 0 0 rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
  }
}
.sustainability .dot.active {
  background: #ffffff;
  box-shadow: 0 8px 0 0 #ffffff;
  opacity: 1;
}
@media (max-width: 768px) {
  .sustainability .dot.active {
    background: #ffffff;
    box-shadow: 0 6px 0 0 #ffffff;
  }
}
.sustainability-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.sustainability-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.sustainability-spacer {
  height: 200vh;
  background: transparent;
  pointer-events: none;
  position: relative;
  z-index: 0;
  display: block;
}

body.sticky-scrolling {
  overflow: hidden;
}

/* Global Footprint Section */
.global-footprint {
  position: relative;
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
  display: block;
  visibility: visible;
  z-index: 2;
}
@media (max-width: 768px) {
  .global-footprint {
    padding: 60px 0;
  }
}
.global-footprint .global-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.global-footprint .global-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .global-footprint .global-header {
    margin-bottom: 40px;
  }
}
.global-footprint .global-header h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #0C0F26;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 1024px) {
  .global-footprint .global-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .global-footprint .global-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .global-footprint .global-header h2 {
    font-size: 1.8rem;
  }
}
.global-footprint .global-map-container {
  position: relative;
  margin-bottom: 60px;
}
.global-footprint .map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.global-footprint .map-wrapper svg,
.global-footprint .map-wrapper .world-map {
  width: 100%;
  height: auto;
  display: block;
}
.global-footprint .map-label {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .global-footprint .map-label {
    font-size: 0.75rem;
  }
}
.global-footprint .map-label::before {
  content: "";
  width: 2px;
  height: 30px;
  background: #0C0F26;
  display: block;
}
@media (max-width: 768px) {
  .global-footprint .map-label::before {
    height: 20px;
  }
}
.global-footprint .map-label span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0C0F26;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .global-footprint .map-label span {
    font-size: 0.7rem;
  }
}
.global-footprint .global-stats {
  position: absolute;
  bottom: -30px;
  left: 50px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .global-footprint .global-stats {
    position: static;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 0;
    text-align: center;
  }
}
.global-footprint .stat-box .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0C0F26;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .global-footprint .stat-box .stat-number {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .global-footprint .stat-box .stat-number {
    font-size: 2rem;
  }
}
.global-footprint .stat-box .stat-label {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .global-footprint .stat-box .stat-label {
    font-size: 0.85rem;
  }
}
.global-footprint .office-outer {
  background: #0C0F26;
  padding: 25px 40px;
  width: 100%;
}
.global-footprint .office-locations {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .global-footprint .office-locations {
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  .global-footprint .office-locations {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
}
.global-footprint .location-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .global-footprint .location-item {
    width: 100%;
  }
}
.global-footprint .location-item .flag {
  display: inline-block;
  background-image: url("../images/flags.webp");
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.global-footprint .location-item .flag.india {
  background-position: 0px 0px;
}
.global-footprint .location-item .flag.canada {
  background-position: -23px 0;
}
.global-footprint .location-item .flag.malaysia {
  background-position: -46px 0;
}
.global-footprint .location-item .flag.bangladesh {
  background-position: -69px 0;
}
.global-footprint .location-item .flag.us {
  background-position: -92px 0;
}
.global-footprint .location-item .flag.uk {
  background-position: -115px 0;
}
.global-footprint .location-item .flag.kenya {
  background-position: -230px 0;
}
.global-footprint .location-item .flag.tanzania {
  background-position: -253px 0;
}
.global-footprint .location-item .flag.italy {
  background-position: -161px 0;
}
.global-footprint .location-item .flag.phillipines {
  background-position: -184px 0;
}
.global-footprint .location-item .flag.middle-east {
  background-position: -207px 0;
}
.global-footprint .location-item .location-text {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 480px) {
  .global-footprint .location-item .location-text {
    font-size: 0.8rem;
  }
}

/* Our Approach Section */
.our-approach {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .our-approach {
    padding: 60px 0;
  }
}
.our-approach .approach-header,
.our-approach .contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.our-approach .approach-header .section-label,
.our-approach .contact-header .section-label {
  color: #0C0F26;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 0;
}
.our-approach .approach-header .section-label::after,
.our-approach .contact-header .section-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 8px;
  background: url("../images/sub-head-bdr.webp") no-repeat center center;
  background-size: contain;
}
.our-approach .approach-header h2,
.our-approach .contact-header h2 {
  font-size: 38px;
  font-weight: 500;
  color: #0C0F26;
  line-height: 1.3;
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .our-approach .approach-header h2,
  .our-approach .contact-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .our-approach .approach-header h2,
  .our-approach .contact-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .our-approach .approach-header h2,
  .our-approach .contact-header h2 {
    font-size: 1.5rem;
  }
}
.our-approach .approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: start;
}
@media (max-width: 1024px) {
  .our-approach .approach-grid {
    grid-template-columns: 1fr;
  }
}
.our-approach .approach-card {
  background: #ffffff;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 15px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .our-approach .approach-card {
    padding: 30px;
    min-height: 300px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr;
  }
}
@media (max-width: 480px) {
  .our-approach .approach-card {
    padding: 25px;
  }
}
.our-approach .approach-card:hover:not(.approach-card-large) {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.our-approach .approach-card h3 {
  font-size: 24px;
  font-weight: 400;
  color: #0C0F26;
  line-height: 1.2;
  grid-column: 1/2;
}
@media (max-width: 768px) {
  .our-approach .approach-card h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .our-approach .approach-card h3 {
    font-size: 1.3rem;
  }
}
.our-approach .approach-card p {
  color: #9B9B9B;
  font-size: 15px;
  line-height: 1.6;
  grid-column: 1/2;
  font-weight: 400;
}
.our-approach .approach-card .card-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  display: inline-flex;
  background: #ff4444;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  width: fit-content;
  grid-column: 1/2;
}
.our-approach .approach-card .card-badge .badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.our-approach .approach-card .card-icon {
  grid-column: 2/3;
  grid-row: 1/4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .our-approach .approach-card .card-icon {
    grid-column: 1/2;
    grid-row: 4/5;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.our-approach .approach-card .card-icon img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .our-approach .approach-card .card-icon img {
    max-width: 150px;
  }
}
.our-approach .approach-card .card-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  height: 100%;
}
.our-approach .approach-card .card-phone img {
  max-width: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .our-approach .approach-card .card-phone img {
    max-width: 250px;
  }
}
.our-approach .approach-card-large {
  grid-row: span 2;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}
@media (max-width: 1024px) {
  .our-approach .approach-card-large {
    grid-row: span 1;
  }
}
.our-approach .approach-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-approach .approach-card-bottom-icon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
}
.our-approach .approach-card-bottom-icon .card-icon {
  grid-column: 2/3;
  grid-row: 1/4;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  gap: 0;
}
.our-approach .approach-card-bottom-icon .card-icon img {
  max-width: 100%;
  height: auto;
}

/* Get in Touch Section */
.get-in-touch {
  padding: 100px 0;
  background: url(../images/light.webp);
  background-repeat: repeat;
  text-align: center;
}
.get-in-touch .contact-header1 {
  text-align: center;
  margin-bottom: 60px;
}
.get-in-touch .contact-header1 .section-label {
  color: #0C0F26;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-left: 0;
}
.get-in-touch .contact-header1 .section-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 8px;
  background: url("../images/sub-head-bdr.webp") no-repeat center center;
  background-size: contain;
}
.get-in-touch .contact-header1 h2 {
  font-size: 38px;
  font-weight: 500;
  color: #0C0F26;
  line-height: 1.3;
  margin-top: 25px;
}
@media (max-width: 1024px) {
  .get-in-touch .contact-header1 h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .get-in-touch .contact-header1 h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .get-in-touch .contact-header1 h2 {
    font-size: 1.5rem;
  }
}
.get-in-touch .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .get-in-touch .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .get-in-touch .contact-grid {
    grid-template-columns: 1fr;
  }
}
.get-in-touch .contact-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.get-in-touch .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.get-in-touch .contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}
.get-in-touch .contact-card h3 {
  font-size: 24px;
  color: #0C0F26;
  font-weight: 400;
  margin-bottom: 15px;
}
.get-in-touch .contact-card p {
  font-size: 12px;
  color: #0C0F26;
  line-height: 1.5;
  font-weight: 300;
}
.get-in-touch .contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 15.979px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-bottom: 30px;
  transition: transform 0.4s ease;
  position: relative;
  background: #ffffff;
  box-shadow: 2.713px 8.14px 30.149px -3.919px rgba(22, 52, 80, 0.1);
}
.get-in-touch .contact-icon img {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}
.get-in-touch .contact-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  border-radius: 24px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
@media (max-width: 768px) {
  .get-in-touch {
    padding: 60px 0;
  }
}

/* Global Utilities and Fixes */
.pin-spacer {
  padding: 0 !important;
  margin: 0 !important;
}
.pin-spacer[style*=height] {
  max-height: 300vh !important;
}
.pin-spacer + section {
  margin-top: 0 !important;
}
