.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);
  }
}
.nav-menu {
  background: #E6E6E6 !important;
  box-shadow: none !important;
}
.nav-menu a {
  color: #0C0F26 !important;
}
.nav-menu a:hover {
  background: #ffffff;
  color: #000;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.inner-banner {
  min-height: 640px;
  padding: 120px 0;
  position: relative;
  color: #ffffff;
}
.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  z-index: 2;
  pointer-events: none;
}
.inner-banner .container {
  position: relative;
  z-index: 5;
}
.inner-banner .banner-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 50px;
  margin-top: 70px;
}
@media (max-width: 1024px) {
  .inner-banner .banner-grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
  }
}
.inner-banner .banner-grid .banner-left {
  width: calc(100% - 630px);
}
@media (max-width: 1024px) {
  .inner-banner .banner-grid .banner-left {
    width: 100%;
  }
}
.inner-banner .banner-grid .banner-left .hero-box {
  background-image: url("../images/contact/cont-bnr.webp");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  padding: 45px;
  width: 100%;
  height: 526px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
.inner-banner .banner-grid .banner-left .hero-box .section-label1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}
.inner-banner .banner-grid .banner-left .hero-box .section-label1::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #FF0000;
  border-radius: 50%;
}
.inner-banner .banner-grid .banner-left .hero-box h1 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 400;
  margin: 22px 0 18px 0;
  color: #F4F4F4;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .inner-banner .banner-grid .banner-left .hero-box h1 {
    font-size: 32px;
  }
  .inner-banner .banner-grid .banner-left .hero-box h1 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .banner-left .hero-box h1 {
    font-size: 28px;
  }
}
.inner-banner .banner-grid .banner-left .hero-box .image-stack {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-top: 60px;
}
.inner-banner .banner-grid .banner-left .office-info {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  gap: 20px;
}
@media (width <= 1250px) {
  .inner-banner .banner-grid .banner-left .office-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.inner-banner .banner-grid .banner-left .office-info .location {
  display: flex;
  gap: 12px;
  align-items: center;
}
.inner-banner .banner-grid .banner-left .office-info .location img {
  padding-top: 4px;
}
.inner-banner .banner-grid .banner-left .office-info .location .location-text {
  color: #0C0F26;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  width: 360px;
}
.inner-banner .banner-grid .banner-left .office-info .location .location-text h4 {
  font-weight: 400;
  font-size: 12px;
}
.inner-banner .banner-grid .banner-left .office-info .location .location-text .location {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
}
.inner-banner .banner-grid .banner-left .office-info .location .location-text .location p {
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}
.inner-banner .banner-grid .banner-left .office-info .btn-map {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid #000;
  background: #fff;
  color: #575969;
  border-radius: 26px;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .banner-left .office-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .inner-banner .banner-grid .banner-left .office-info .btn-map {
    align-self: flex-start;
  }
  .inner-banner .banner-grid .banner-left .office-info img {
    padding-top: 4px;
  }
}
.inner-banner .banner-grid .contact-card {
  background: #FFF;
  color: #0C0F26;
  border-radius: 3px;
  box-shadow: 0 0 30.4px -3px rgba(94, 94, 94, 0.08);
  width: 570px;
  padding: 50px 30px;
}
@media (width <= 1250px) {
  .inner-banner .banner-grid .contact-card {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .inner-banner .banner-grid .contact-card {
    width: 100%;
    padding: 20px;
  }
}
.inner-banner .banner-grid .contact-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 35px;
}
.inner-banner .banner-grid .contact-card .head .enquire-pill {
  border-radius: 41px;
  padding: 12px 35px;
  background: #fff;
  border: 1px solid #EFEFEF;
  font-weight: 400;
  font-size: 12px;
  color: #585D66;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .contact-card .head .enquire-pill {
    padding: 12px 20px;
  }
}
.inner-banner .banner-grid .contact-card .head h3 {
  font-size: 22px;
  color: #0C0F26;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .contact-card .head h3 {
    font-size: 18px;
  }
}
.inner-banner .banner-grid .contact-card .contact-form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
.inner-banner .banner-grid .contact-card .contact-form .form-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .contact-card .contact-form .form-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}
.inner-banner .banner-grid .contact-card .contact-form .form-row label {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .contact-card .contact-form .form-row label {
    width: 100%;
  }
}
.inner-banner .banner-grid .contact-card .contact-form .form-row label.w100 {
  width: 100% !important;
}
.inner-banner .banner-grid .contact-card .contact-form .form-row label .error-msg {
  color: #D12E2E;
  font-size: 12px;
  display: block;
  position: absolute;
  bottom: -20px;
}
.inner-banner .banner-grid .contact-card .contact-form .form-row label input,
.inner-banner .banner-grid .contact-card .contact-form .form-row label textarea {
  width: 100%;
  padding: 16px 14px;
  border: 1px solid #EFEFEF;
  border-radius: 7px;
  background: #fff;
  font-size: 14px;
  color: #0C0F26;
  -webkit-appearance: none;
  appearance: none;
}
.inner-banner .banner-grid .contact-card .contact-form .form-row label input:focus, .inner-banner .banner-grid .contact-card .contact-form .form-row label input:focus-visible,
.inner-banner .banner-grid .contact-card .contact-form .form-row label textarea:focus,
.inner-banner .banner-grid .contact-card .contact-form .form-row label textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.inner-banner .banner-grid .contact-card .contact-form .form-row.bdr-null {
  border: none;
}
.inner-banner .banner-grid .contact-card .contact-form textarea {
  border: 1px solid #EFEFEF !important;
  background: #fff !important;
  border-radius: 8px !important;
}
.inner-banner .banner-grid .contact-card .contact-form .btn-send {
  border-radius: 41px;
  padding: 12px 35px;
  background: #fff;
  border: 1px solid #000;
  font-weight: 400;
  font-size: 14px;
  color: #585D66;
  cursor: pointer;
}
@media (max-width: 768px) {
  .inner-banner .banner-grid .banner-left .office-info {
    margin-top: 18px;
  }
  .inner-banner .banner-grid .banner-left .hero-box {
    padding-bottom: 40px;
  }
  .inner-banner .banner-grid .banner-right .contact-card {
    margin-top: 24px;
  }
}

.navbar .hamburger-menu span {
  background-color: #000 !important;
}
