@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@200..700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.8rem;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

img {
  max-width: 100%;
}

.global-width {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  /* NAV */
  /* PRODUCTS DROPDOWN */
  /* CONTACT BTN */
  /* BURGER MENU */
  /* OPEN STATE → X ICON */
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 0;
  }
}
.header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  z-index: 1002;
}
.header .logo img {
  width: 16rem;
}
@media only screen and (max-width: 767px) {
  .header .logo img {
    width: 13rem;
  }
}
.header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav-menu ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.header .nav-menu ul li {
  position: relative;
}
.header .nav-menu ul li a {
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
}
.header .nav-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
.header .nav-menu ul li a:hover::after, .header .nav-menu ul li a.active::after {
  width: 100%;
}
.header .has-dropdown {
  position: relative;
}
.header .products-dropdown {
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  transform: translateX(-50%);
  width: 840px;
  background: #fff;
  border-radius: 2.4rem;
  padding: 2.4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 20px);
  transition: all 0.35s ease;
  z-index: 999;
}
.header .has-dropdown:hover .products-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header .dropdown-card {
  padding: 2rem;
  border-radius: 16px;
  height: 17.6rem;
}
.header .dropdown-card h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0;
}
.header .dropdown-card p {
  font-size: 1.4rem;
  color: #666666;
  margin-bottom: 16px;
}
.header .dropdown-card a {
  font-weight: 600;
  text-decoration: none;
}
.header .dropdown-card .badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}
.header .dropdown-card.blue {
  background: #E8F0FE;
}
.header .dropdown-card.blue .badge {
  background: #0078D4;
}
.header .dropdown-card.green {
  background: #E5F4EA;
}
.header .dropdown-card.green .badge {
  background: #92E3D4;
}
.header .dropdown-card.yellow {
  background: #FBF3DD;
}
.header .dropdown-card.yellow .badge {
  background: #E9D6EB;
}
.header .contact-btn {
  padding: 1rem 2rem;
  border-radius: 3rem;
  color: #fff;
  background: radial-gradient(circle, #FF7502, #FC3721);
}
.header .burger-menu {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
}
.header .burger-menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  left: 0;
  transition: 0.35s ease;
}
.header .burger-menu span:nth-child(1) {
  top: 0;
}
.header .burger-menu span:nth-child(2) {
  top: 9px;
}
.header .burger-menu span:nth-child(3) {
  bottom: 0;
}
.header .header.menu-open .burger-menu span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header .header.menu-open .burger-menu span:nth-child(2) {
  opacity: 0;
}
.header .header.menu-open .burger-menu span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .header {
    /* Mobile dropdown */
  }
  .header .burger-menu {
    display: block;
  }
  .header .desktop-btn {
    display: none;
  }
  .header .nav-menu {
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1100;
  }
  .header .nav-menu ul {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 24px;
    padding: 32px 24px;
    margin: 21rem auto 0;
    flex-direction: column;
    gap: 24px;
  }
  .header .nav-menu a {
    color: #000;
  }
  .header .nav-menu a::after {
    background: #000;
  }
  .header .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .header .products-dropdown {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr;
    padding: 0;
    margin-top: 16px;
  }
  .header .has-dropdown.active .products-dropdown {
    display: grid;
  }
}

/* LOCK BACKGROUND SCROLL */
body.menu-open {
  overflow: hidden;
}

.main-head {
  font-size: 6.4rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #1F1F1F;
  letter-spacing: 2px;
  line-height: 80px;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 3rem;
    line-height: 44px;
    letter-spacing: 1px;
  }
  .main-head br {
    display: none;
  }
}

.sub-head {
  font-size: 5rem;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 2.5rem;
    line-height: 37px;
    margin-top: 1rem;
    letter-spacing: 0;
  }
  .sub-head br {
    display: none;
  }
}

.sub-para {
  font-size: 1.6rem;
  font-weight: 400;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
  }
  .sub-para br {
    display: none;
  }
}

.orange-text {
  font-size: 6.4rem;
  color: #FE630B;
}
@media only screen and (max-width: 767px) {
  .orange-text {
    font-size: 3.5rem;
    line-height: 55px;
  }
}

.img-text-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0078D4;
  border: none;
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 3rem;
}
.img-text-btn:hover {
  color: #fff;
}
.img-text-btn:hover .btn-icon {
  filter: brightness(0) invert(1);
}

.button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .button-group {
    gap: 1rem;
  }
}
.button-group .btn-gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #FE630B;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .button-group .btn-gradient {
    padding: 1.2rem 2.2rem;
    font-size: 1.2rem;
  }
}
.button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .button-group .btn-gradient img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.button-group .btn-gradient:hover {
  transform: translateY(-2px);
}

.btn-outline {
  gap: 10px;
  color: #FE630B;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #FE630B;
}

.hero-section {
  position: relative;
  padding: 14rem 0 8rem;
  background: #F9F9F9;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 3rem 0rem;
    margin-top: 3rem;
  }
}
.hero-section .global-width {
  position: relative;
}
.hero-section::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: 55%;
  transform: translateY(-50%);
  width: 50rem;
  height: 53rem;
  background: url("/assets/images/index.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-section::after {
    display: none;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content {
    margin-top: 0;
  }
}
.hero-section .hero-content .main-head {
  text-align: center;
}
.hero-section .hero-content .sub-para {
  text-align: center;
  margin-top: -1rem;
}
.hero-section .hero-content .btn-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 4rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .btn-middle {
    margin: 1rem 0 3rem;
  }
}
.hero-section .hero-content .hero-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 3rem;
  border-radius: 3.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: radial-gradient(circle at top left, #FF7502, #FC3721);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .hero-btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
.hero-section .hero-content .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px #FF7502;
}
.hero-section .hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-image {
    display: none;
  }
}
.hero-section .hero-image img {
  width: 100rem;
  height: 42rem;
  border-radius: 2.4rem;
}
.hero-section .hero-img-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-img-mob {
    margin-top: -12rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.why-item {
  padding: 8rem 0;
  background: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .why-item {
    padding: 2rem 0;
    margin-top: -3rem;
  }
}
.why-item .item-sec {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .why-item .item-sec {
    flex-direction: column;
  }
}
.why-item .why-accordion {
  width: 64rem;
}
.why-item .why-accordion .title-tag {
  font-size: 3.2rem;
  font-weight: 600;
  color: #FE630B;
  margin-bottom: 1.2rem;
}
.why-item .why-accordion .sub-head {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.why-item .why-point {
  position: relative;
  padding: 1.6rem 2rem 1.6rem 2.4rem;
  margin-bottom: 2.4rem;
  cursor: pointer;
  background: transparent;
  border-left: 4px solid #eaeaea;
}
.why-item .why-point::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 0;
  background: #FE630B;
  transition: height 0.4s ease;
}
.why-item .why-point:hover {
  background: #F9F9F9;
}
.why-item .why-point:hover::before {
  height: 100%;
}
.why-item .why-point:hover .why-desc {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}
.why-item .why-title {
  color: #1F1F1F;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.why-item .why-desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: all 0.35s ease;
  margin-top: -2rem;
}
.why-item .sec-img {
  flex-shrink: 0;
}
.why-item .sec-img img {
  max-width: 100%;
  display: block;
}
.why-item .desktop-only {
  display: block;
}
.why-item .mobile-only {
  display: none;
}
.why-item .mobile-only .title-tag {
  font-size: 2.8rem;
  font-weight: 600;
  color: #FE630B;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .why-item .mobile-only .title-tag {
    margin: 0;
    font-size: 1.5rem;
  }
}
.why-item .mobile-only .sub-head {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .why-item .mobile-only .sub-head {
    font-size: 2.5rem;
    line-height: 34spx;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .why-item .desktop-only {
    display: none;
  }
  .why-item .mobile-only {
    display: block;
  }
  .why-item .why-mobile {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .why-item .why-mobile {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .why-item .why-mobile-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
  }
  .why-item .why-mobile-row::-webkit-scrollbar {
    display: none;
  }
  .why-item .why-card {
    min-width: 28rem;
    overflow: hidden;
    scroll-snap-align: start;
  }
  .why-item .why-card img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .why-item .why-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1.6rem 1.6rem 0.8rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .why-item .why-card h4 {
    font-size: 2rem;
    margin: 1rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .why-item .why-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666666;
    margin: 0 1.6rem 2rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .why-item .why-card p {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .why-item .sec-img {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .why-item .sec-img {
    display: none;
  }
}

.badge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.badge .badge-name {
  font-size: 1.3rem;
  color: #FE630B;
  border: 1px solid #eaeaea;
  border-radius: 2rem;
  padding: 1rem 2rem;
}
@media only screen and (max-width: 767px) {
  .badge .badge-name {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
}

.product-section {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .product-section {
    padding: 2rem 0;
  }
}
.product-section .sub-head {
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .product-section .sub-head {
    margin-top: 0;
    margin-bottom: -1rem;
    line-height: 22px;
  }
}
.product-section .orange-text {
  font-size: 5rem;
  color: #FE630B;
}
@media only screen and (max-width: 767px) {
  .product-section .orange-text {
    font-size: 2.5rem;
    line-height: 55px;
  }
}
.product-section .sub-para {
  text-align: center;
  margin-top: 1.6rem;
}
.product-section .products-wrapper {
  margin-top: 6rem;
  /* CONTENT */
  /* BUTTON */
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper {
    margin-top: 3rem;
  }
}
.product-section .products-wrapper .product-card-large {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: #072F5F;
  border-radius: 2.4rem;
  padding: 8rem 7rem;
  height: 52rem;
  overflow: hidden;
  /* DESKTOP BACKGROUND IMAGE */
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-large {
    height: 49rem;
  }
}
.product-section .products-wrapper .product-card-large::after {
  content: "";
  position: absolute;
  right: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: url("/assets/images/right-img.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-large .img-text-btn {
    margin-top: 0;
  }
}
.product-section .products-wrapper .product-content {
  position: relative;
  z-index: 2;
  width: 50rem;
}
.product-section .products-wrapper .title-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.product-section .products-wrapper .product-heading {
  font-size: 1.8rem;
  font-weight: 500;
  color: #FE630B;
  margin: 0;
}
.product-section .products-wrapper .product-title {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-title {
    margin: 0;
  }
}
.product-section .products-wrapper .sub-para {
  color: #fff;
  opacity: 0.8;
  text-align: start;
}
.product-section .products-wrapper .btn-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}
.product-section .products-wrapper .btn-text {
  white-space: nowrap;
}
.product-section .products-wrapper .product-mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-large {
    padding: 3rem 1rem;
    align-items: center;
    /* MOBILE RIGHT IMAGE */
  }
  .product-section .products-wrapper .product-card-large::after {
    display: none;
  }
  .product-section .products-wrapper .product-card-large::before {
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 86%;
    transform: translateY(-50%);
    width: 100%;
    height: 67%;
    background: url("/assets/images/right-img.svg") no-repeat center;
    background-size: contain;
    pointer-events: none;
  }
  .product-section .products-wrapper .product-content {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .product-section .products-wrapper .product-content {
    width: 100%;
    margin-top: -12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-mobile-img {
    display: block;
    width: 40%;
  }
  .product-section .products-wrapper .product-mobile-img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .product-section .products-wrapper .product-title {
    font-size: 2rem;
    text-align: center;
  }
  .product-section .products-wrapper .sub-para {
    font-size: 1.4rem;
    text-align: center;
  }
}
.product-section .products-wrapper .product-card-row {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-row {
    flex-direction: column;
  }
}
.product-section .products-wrapper .product-card-small {
  flex: 1;
  border-radius: 2rem;
  padding: 3rem;
  text-align: left;
  height: 54.6rem;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-small {
    height: auto;
    padding: 1rem;
  }
}
.product-section .products-wrapper .product-card-small img {
  max-width: 100%;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .product-card-small img {
    margin-bottom: -1rem;
  }
}
.product-section .products-wrapper .product-card-small .product-title {
  font-size: 3.6rem;
  margin: 0;
  font-weight: 500;
}
.product-section .products-wrapper .left {
  background: #0D9281;
}
.product-section .products-wrapper .right {
  background: #8D45EF;
}
.product-section .products-wrapper .grp-sec {
  display: flex;
  justify-content: flex-start;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .grp-sec {
    flex-direction: column;
    gap: 2rem;
  }
}
.product-section .products-wrapper .grp-sec .product-btn {
  align-self: flex-start;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .grp-sec .product-btn {
    align-self: center;
    font-size: 1.3rem;
    padding: 1rem 2rem;
  }
}
.product-section .products-wrapper .grp-sec .product-btn:hover {
  transform: translateY(-2px);
}
.product-section .products-wrapper .grp-sec .btn-green {
  background: #16CCB5;
  color: #055B50;
}
.product-section .products-wrapper .grp-sec .btn-violet {
  background: #CEAAFF;
  color: #440B93;
}
.product-section .products-wrapper .grp-sec .img-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.product-section .products-wrapper .grp-sec .img-box img {
  width: 38rem;
  height: 35.8rem;
}
@media only screen and (max-width: 767px) {
  .product-section .products-wrapper .grp-sec .img-box img {
    width: 100%;
    height: auto;
  }
}

.blog-news {
  padding: 3rem 2rem;
  background-color: #F9F9F9;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .blog-news {
    padding: 1rem 1rem;
    margin-top: 2rem;
  }
}

.blog-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-news-header {
    margin-bottom: 2rem;
  }
}
.blog-news-header h2 {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 52px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .blog-news-header h2 {
    font-size: 2.6rem;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-news-header h2 {
    font-size: 4.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 1px solid;
  border-radius: 2rem;
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .view-all {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}
.view-all:hover .icon-img {
  transform: translateX(4px);
}
.view-all .icon-img {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(610px, 1fr));
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  transition: transform 0.2s ease;
  height: 21.6rem;
}
@media only screen and (max-width: 767px) {
  .blog-card {
    flex-direction: column;
    height: auto;
  }
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 20rem;
  height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-card img {
    width: 100%;
    height: auto;
  }
}

.blog-card-content {
  padding: 1rem 1.2rem;
}
@media only screen and (max-width: 767px) {
  .blog-card-content {
    padding: 0;
  }
}
.blog-card-content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 32px;
  color: #000;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-card-content h3 {
    font-size: 1.8rem;
    line-height: 30px;
  }
}
.blog-card-content p {
  font-size: 1.4rem;
  color: #808080;
  margin-bottom: 0.8rem;
  font-weight: 400;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-card-content p {
    margin-top: 1rem;
    line-height: 27px;
  }
}
.blog-card-content .tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-card-content .tags {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.blog-card-content .tag {
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 1.2rem;
  color: #2B2B2B;
  font-weight: 500;
  border: 1px solid #eaeaea;
}

.ct-section {
  padding: 8rem 0;
  background: #F9F9F9;
  /* LEFT */
}
@media only screen and (max-width: 767px) {
  .ct-section {
    padding: 2rem 0;
  }
}
.ct-section .ct-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  padding: 5rem;
  background: #FAE8DC;
  border-radius: 2.3rem;
  overflow: hidden;
  /* RIGHT IMAGE */
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-wrapper {
    padding: 2rem 1rem;
  }
}
.ct-section .ct-wrapper::after {
  content: "";
  position: absolute;
  right: 4rem;
  top: 57%;
  transform: translateY(-50%);
  width: 48rem;
  height: 48rem;
  background: url("/assets/images/ct-img.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-wrapper::after {
    display: none;
  }
}
.ct-section .ct-left {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left {
    max-width: 100%;
  }
}
.ct-section .ct-left .img-text-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #072F5F;
  background: none;
  color: #072F5F;
  padding: 0.8rem 1.6rem;
  border-radius: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .img-text-btn {
    margin: 0;
    font-size: 1.2rem;
  }
}
.ct-section .ct-left .sub-head {
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .sub-head {
    font-size: 2.3rem;
    line-height: 33px;
    letter-spacing: 0;
    margin-top: 2rem;
  }
}
.ct-section .ct-left .span-text {
  color: #FE630B;
}
.ct-section .ct-left .ct-mob {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .ct-mob {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .button-group {
    margin-bottom: 2rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .button-group .btn-gradient {
    padding: 1rem 1rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .ct-left .button-group .btn-outline {
    padding: 1rem 1rem;
    font-size: 1rem;
  }
}

.footer-section {
  background: #FFFFFF;
  padding: 6rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  .footer-section {
    margin-top: 2rem;
    padding: 3rem 0 3rem;
    border-top: none;
  }
}
.footer-section .footer-inner .footer-total {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 12rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-total {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area {
  max-width: 33%;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area .footer-logo img {
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .footer-logo {
    display: flex;
    flex-direction: column;
  }
}
.footer-section .footer-inner .footer-logo-area .sub-para {
  line-height: 22px;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #646464;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    text-align: left;
  }
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
.footer-section .footer-inner .link-cls {
  display: flex;
  justify-content: center;
  gap: 20rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls {
    gap: 2rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link {
  display: flex;
  flex-direction: column;
}
.footer-section .footer-inner .link-cls .footer-link h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link h4 {
    font-size: 1.2rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link a {
  color: #646464;
  font-size: 1.4rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link {
    align-items: flex-start;
  }
}
.footer-section .footer-inner .footer-social {
  text-align: center;
  margin-top: -1rem;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    display: flex;
    justify-content: flex-start;
    margin-top: -4rem;
  }
}
.footer-section .footer-inner .footer-social a img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social a img {
    width: 2.5rem;
    height: 3rem;
  }
}
.footer-section .footer-inner .footer-social a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    margin-top: 1rem;
  }
}
.footer-section .copyright {
  text-align: center;
  font-size: 1.4rem;
  color: #646464;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .copyright {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}

.value-section {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .value-section {
    padding: 2rem 0;
    margin-top: -1rem;
  }
}
.value-section .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(586px, 1fr));
  gap: 32px;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .value-section .value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 4rem;
  }
}
.value-section .sub-head {
  text-align: center;
  margin-top: 0;
}
.value-section .value-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 0rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: visible;
  display: flex;
  height: 25.8rem;
}
.value-section .value-card .right {
  width: 25rem;
  display: none;
}
.value-section .value-card .cd-2 {
  width: 19rem;
}
.value-section .value-card .cd-3 {
  width: 21rem;
}
.value-section .value-card .left h3 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .value-section .value-card .left h3 {
    font-size: 2rem;
  }
}
.value-section .value-card .left p {
  color: #646464;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .value-section .value-card .left p {
    font-size: 1.4rem;
  }
}

.flying-sec {
  padding: 5rem 0;
  background: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .flying-sec {
    padding: 1rem 0;
    margin-top: 3rem;
  }
}
.flying-sec .pdt-sec {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec {
    margin-top: 5rem;
    flex-direction: column-reverse;
  }
}
.flying-sec .pdt-sec .button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .button-group {
    gap: 1rem;
  }
}
.flying-sec .pdt-sec .button-group .btn-gradient {
  background: radial-gradient(circle, #0078D4, #072F5F);
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .button-group .btn-gradient {
    padding: 1rem 2rem;
    font-size: 1.2rem;
  }
}
.flying-sec .pdt-sec .button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .button-group .btn-gradient img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.flying-sec .pdt-sec .button-group .btn-gradient:hover {
  transform: translateY(-2px);
}
.flying-sec .pdt-sec .btn-outline {
  color: #072F5F;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #072F5F;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .btn-outline {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.flying-sec .pdt-sec .right-sec {
  width: 64.5rem;
  height: 64.5rem;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .right-sec {
    width: 100%;
    height: auto;
  }
}
.flying-sec .pdt-sec .left-sec {
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .left-sec {
    display: flex;
    align-items: center;
  }
}
.flying-sec .pdt-sec .left-sec .main-head {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .left-sec .main-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .flying-sec .pdt-sec .left-sec .sub-para {
    text-align: center;
    margin: 0;
  }
}

.key-benefit {
  background: #fff;
  border-radius: 32px;
  padding: 6rem 5rem;
}
@media only screen and (max-width: 767px) {
  .key-benefit {
    padding: 3rem 1rem;
  }
}
.key-benefit .benefit-section {
  box-shadow: 0 0 20px 0 rgba(194, 180, 180, 0.15);
  padding: 5rem 6rem;
  border-radius: 2rem;
  /* TABLET */
  /* MOBILE */
}
@media only screen and (max-width: 767px) {
  .key-benefit .benefit-section {
    padding: 2rem 2rem;
  }
}
.key-benefit .benefit-section .section-label {
  font-size: 2rem;
  color: #666666;
  display: block;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .key-benefit .benefit-section .section-label {
    font-size: 1.5rem;
  }
}
.key-benefit .benefit-section .sub-head {
  margin: 0;
}
.key-benefit .benefit-section .sub-head span {
  color: #0078D4;
}
.key-benefit .benefit-section .section-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 4.5rem;
}
.key-benefit .benefit-section .benefits-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
.key-benefit .benefit-section .benefit-item {
  text-align: left;
}
.key-benefit .benefit-section .benefit-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 1.6rem;
  margin: 0;
}
.key-benefit .benefit-section .benefit-item h4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .key-benefit .benefit-section .benefits-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .key-benefit .benefit-section .section-title {
    font-size: 3.2rem;
  }
  .key-benefit .benefit-section .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.ct-flying {
  padding: 100px 0;
  background: #072F5F;
  overflow: visible;
  /* LEFT */
  /* RIGHT */
  /* MOBILE FIX */
}
.ct-flying .ct-flying-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  overflow: visible;
}
.ct-flying .ct-flying-left {
  width: 48%;
}
.ct-flying .ct-flying-left .sub-head {
  color: #fff;
}
.ct-flying .ct-flying-left .sub-para {
  color: #fff;
  opacity: 0.8;
}
.ct-flying .ct-flying-right {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /* ✅ FORCE IMAGE VISIBILITY */
}
.ct-flying .ct-flying-right::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 320px;
  height: 320px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
.ct-flying .ct-flying-right .ct-card {
  position: relative;
  z-index: 2; /* above ::after */
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 25.4rem;
  height: 22.6rem;
}
.ct-flying .ct-flying-right .ct-card h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
}
.ct-flying .ct-flying-right .ct-card p {
  font-size: 1.4rem;
  color: #808080;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .ct-flying .ct-flying-wrapper {
    flex-direction: column;
  }
  .ct-flying .ct-flying-left,
  .ct-flying .ct-flying-right {
    width: 100%;
  }
  .ct-flying .ct-flying-right::after {
    display: none;
  }
  .ct-flying .ct-flying-right .ct-card {
    width: 100%;
    height: auto;
    padding: 1rem;
  }
}

/* MOBILE RESPONSIVE */
@media only screen and (max-width: 767px) {
  .ct-flying {
    padding: 2rem 1rem;
  }
  .ct-flying .ct-flying-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .ct-flying .ct-flying-left,
  .ct-flying .ct-flying-right {
    width: 100%;
    margin-top: -2rem;
  }
}
.ct-thinking {
  position: relative;
  padding: 120px 0;
  /* LEFT CONTENT */
}
.ct-thinking .ct-thinking-wrap {
  position: relative;
  background: #00518F;
  border-radius: 2rem;
  padding: 2rem 4rem;
  height: 58rem;
}
@media only screen and (max-width: 767px) {
  .ct-thinking .ct-thinking-wrap {
    padding: 2rem 2rem;
    height: auto;
  }
}
.ct-thinking .ct-thinking-left {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .ct-thinking .ct-thinking-left {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.ct-thinking .ct-thinking-left .sub-para {
  margin-top: 0;
}
.ct-thinking .ct-thinking-img {
  display: none;
}
.ct-thinking::after {
  content: "";
  position: absolute;
  right: 107px;
  bottom: 0;
  top: 220px;
  width: 640px;
  height: 480px;
  background: url("/assets/images/ct-thinking.svg") no-repeat center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  pointer-events: none;
}
.ct-thinking .sub-head {
  color: #fff;
}
.ct-thinking .sub-para {
  color: #fff;
  opacity: 0.8;
}
.ct-thinking .img-text-btn {
  color: #072F5F;
  background: #fff;
  font-family: "DM Sans", sans-serif;
}

/* 📱 RESPONSIVE – show normal image, remove pseudo */
@media only screen and (max-width: 767px) {
  .ct-thinking {
    padding: 60px 0;
  }
  .ct-thinking::after {
    display: none;
  }
  .ct-thinking .ct-thinking-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .ct-thinking .ct-thinking-left {
    width: 100%;
    text-align: center;
  }
  .ct-thinking .ct-thinking-img {
    display: block;
  }
  .ct-thinking .ct-thinking-img img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }
}
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: #F9F9F9;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: -4rem;
  }
}
.contact-section .contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  height: 23.2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header {
    height: auto;
    margin-bottom: -3rem;
  }
}
.contact-section .contact-header .main-head {
  display: inline-block;
  margin-top: 7rem;
  color: #000;
  padding: 1.5rem 4rem;
  border-radius: 1rem;
  letter-spacing: -2px;
  line-height: 72px;
  font-size: 6.4rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header .main-head {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    margin-top: 2rem;
    font-size: 3rem;
    line-height: 68px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-para {
    text-align: center;
  }
}
.contact-section .contact-content {
  gap: 7rem;
  display: flex;
  align-items: flex-start;
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content {
    flex-direction: column;
    margin-top: 3rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-content {
    margin-top: 6rem;
    gap: 0;
  }
}
.contact-section .contact-content .contact-left {
  flex: 1;
}
.contact-section .contact-content .contact-left .sub-head {
  margin-top: 0;
}
.contact-section .contact-content .contact-left .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info {
    margin-top: 3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det {
  display: grid;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
  margin: 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p {
  color: #666666;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det p {
    font-size: 1.3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p a {
  text-decoration: none;
  color: #666666;
}
.contact-section .contact-content .contact-right {
  flex: 1;
  position: sticky;
  top: 10rem;
  background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right {
    width: 100%;
  }
}
.contact-section .contact-content .contact-right form {
  padding: 3rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form {
    padding: 2rem;
  }
}
.contact-section .contact-content .contact-right form .form-group {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form .form-group {
    display: grid;
  }
}
.contact-section .contact-content .contact-right form input,
.contact-section .contact-content .contact-right form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "DM Sans", sans-serif;
  border: none;
  background: #F9F8F6;
}
.contact-section .contact-content .contact-right form textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-content .contact-right form button {
  background: #FE630B;
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form button {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-right form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */