:root {
  --primary-color: #18191a;
  --secondary-color: #ffffff;
  --bg-color: #f6f5ed;

  --text-color: #727272;

  --accent-color: #763235;
  --accent-secondary-color: #c19a5b;

  --white-color: #ffffff;

  --divider-color: #18191a1a;
  --dark-divider-color: #ffffff1a;

  --error-color: #e65757;

  --default-font: "Poppins", sans-serif;
  --heading-font: "Cal Sans", serif;
  --accent-font: "Cal Sans", serif;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--default-font);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.7;

  color: var(--text-color);

  background: var(--bg-color);

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-secondary-color);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

::selection {
  color: var(--white-color);
  background: var(--accent-color);
}

p {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary-color);
  margin: 0;
}

.section-sub-title {
  font-family: var(--accent-font);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;

  text-decoration: none;

  transition: 0.35s;
}

a:hover {
  text-decoration: none;

  color: inherit;
}

a:focus {
  outline: none;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;

  margin-right: -15px;
}

.row > * {
  padding-left: 15px;

  padding-right: 15px;
}

.row.no-gutters {
  margin-left: 0;

  margin-right: 0;
}

.row.no-gutters > * {
  padding-left: 0;

  padding-right: 0;
}

.image-anime {
  position: relative;

  overflow: hidden;
}

.image-anime::after {
  content: "";

  position: absolute;

  width: 200%;

  height: 0;

  left: 50%;

  top: 50%;

  background: rgba(255, 255, 255, 0.28);

  transform: translate(-50%, -50%) rotate(-45deg);
}

.image-anime:hover::after {
  height: 250%;

  background: transparent;

  transition: 600ms linear;
}

.reveal {
  position: relative;

  display: inline-flex;

  overflow: hidden;

  visibility: hidden;
}

.reveal img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transform-origin: left;
}

.btn-default {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-family: var(--accent-font);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.3px;

  background: var(--accent-color);

  color: var(--white-color);

  border: none;

  border-radius: 100px;

  padding: 16px 26px;

  margin-right: 50px;

  overflow: visible;

  transition: 0.4s;

  z-index: 1;
}

.btn-default:hover {
  color: var(--white-color);

  background: var(--accent-secondary-color);
}

.btn-default::before {
  content: "";

  position: absolute;

  right: -50px;

  top: 50%;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  transform: translateY(-50%);

  background: var(--accent-secondary-color)
    url("../images/home/arrow-white.svg") center center / 24px no-repeat;

  transition: 0.4s;
}

.btn-default:hover::before {
  background-color: var(--accent-color);

  transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
  content: "";

  position: absolute;

  inset: 0;

  width: 0;

  border-radius: 100px;

  background: var(--accent-secondary-color);

  z-index: -1;

  transition: 0.4s;
}

.btn-default:hover::after {
  width: 100%;
}

.readmore-btn {
  font-family: var(--accent-font);
  position: relative;
  display: inline-block;
  font-weight: 400;
  line-height: 1.6em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 34px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  height: 24px;
  width: 24px;
  background-color: var(--accent-color);
  background-image: url("../images/home/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px auto;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
  background: var(--accent-secondary-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bg-section {
  width: 100%;
  background-color: var(--secondary-color);
  background-image: url("../images/bg-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
}

.bg-section .container-fluid {
  padding: 0;
}

.dark-section {
  background-color: var(--primary-color);
  background-image: url("/images/home/ds-bgImg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1em;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 9px 20px 9px 36px;
  margin-bottom: 15px;
}

.dark-section .section-title .section-sub-title {
  border-color: var(--dark-divider-color);
}

.section-title .section-sub-title::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-secondary-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 60px;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 48px;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  margin-bottom: 0;
}

.section-footer-text p span {
  font-family: var(--accent-font);
  display: inline-block;
  background: var(--accent-color);
  color: var(--white-color);
  line-height: 1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 10px;
}

.section-footer-text p a {
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-secondary-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--accent-color);
}

.section-footer-text ul {
  width: 100%;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.section-footer-text ul li {
  display: inline-block;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-color);
  margin-right: 10px;
}

.section-footer-text ul li:last-child {
  margin: 0;
}

.section-footer-text ul li i {
  color: var(--accent-secondary-color);
}

.section-footer-text.section-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
  width: 100%;
  max-width: 20px;
}

.section-footer-text.section-satisfy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
  max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
  width: 32px;
  height: 32px;
  margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
  max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
  margin: 5px 0 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
  border-color: var(--primary-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
  color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .parallaxie {
    background-size: cover !important;

    background-repeat: no-repeat !important;

    background-position: center center !important;

    background-attachment: scroll !important;
  }
}

@media (max-width: 991px) {
  .section-title h1 {
    font-size: 48px;
    margin-bottom: 0;
    cursor: none;
  }

  .section-title h2 {
    font-size: 48px;
    margin-bottom: 0;
    cursor: none;
  }

  .section-title p {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

@media (max-width: 475px) {
  .section-title h1 {
    font-size: 28px;
    margin-bottom: 0;
    cursor: none;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 0;
    cursor: none;
  }

  .section-title p {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

/* Header */

header.main-header {
  position: absolute;
  width: 96%;
  left: 2%;
  top: 25px;
  z-index: 999;
}

.header-sticky {
  background: #fff;
  border-radius: 20px;
  padding: 18px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 55px;
  width: 150px;
}

.header-left {
  flex: 0 0 auto;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-brand {
  display: block;
}

.navbar-brand img {
  width: 250px;
  height: auto;
}

.header-center .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-center .navbar-nav li {
  margin: 0;
}

.header-center .navbar-nav a {
  text-decoration: none;
  color: #04275b;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.header-center .navbar-nav a:hover {
  color: #c28a36;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #04275b;
  transition: 0.4s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: url("/images/home/ds-bgImg.png");

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateX(100%);
  transition: 0.5s ease;

  z-index: 9999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 30px 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  font-weight: 600;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #c28a36;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  background: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  header.main-header {
    position: absolute;
    width: 92%;
    left: 4%;
    top: 20px;
    z-index: 999;
  }

  .header-center {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar .container {
    justify-content: space-between;
  }
}

/* Hero Section */
.coir-hero-section {
  position: relative;
  align-content: end;
  min-height: 100vh;
  padding: 210px 0 100px;
  margin: 15px 15px 0;
  border-radius: 20px;
  overflow: hidden;
}

.coir-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(28, 24, 21, 0.3) 0%, rgba(28, 24, 21, 0.6) 50%),
    linear-gradient(
      0deg,
      rgba(28, 24, 21, 0.15) 0%,
      rgba(28, 24, 21, 0.15) 100%
    );
  z-index: 1;
}

/* Background Image */

.coir-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coir-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coir-hero-section .container {
  position: relative;
  z-index: 2;
}

.coir-brand-title {
  position: relative;
  text-align: center;
  z-index: 0;
  margin-bottom: -5.729vw;
}

.coir-brand-title span {
  font-family: var(--accent-font);
  display: block;
  font-size: 15vw;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  background: linear-gradient(
    180deg,
    var(--white-color) -18%,
    rgba(255, 255, 255, 0) 75%
  );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

.coir-hero-wrapper {
  margin-top: 2.729vw;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.coir-hero-content {
  width: calc(62% - 20px);
}

.coir-hero-topbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.coir-client-list {
  display: flex;
  align-items: center;
}

.coir-client-item {
  margin-left: -8px;
}

.coir-client-item:first-child {
  margin-left: 0;
}

.coir-client-item figure img {
  max-width: 30px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}

.coir-tagline p {
  color: var(--white-color);
  margin: 0;
}

.coir-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 40px;
}

.coir-video-btn {
  display: inline-flex;
  align-items: center;
}

.coir-video-btn a {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
}

.coir-video-btn a.bg-effect::before,
.coir-video-btn a.bg-effect::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  border: 35px solid var(--white-color);
  opacity: 0.5;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: borderZoom 1.2s linear infinite;
}

.coir-video-btn a.bg-effect::after {
  animation-delay: 0.3s;
}

@keyframes borderZoom {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.coir-video-btn i {
  font-size: 14px;
  margin-left: 2px;
}

.coir-video-btn span {
  margin-left: 20px;
  font-family: var(--accent-font);
  color: var(--white-color);
}

.coir-info-card {
  width: calc(38% - 20px);
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 20px;
  padding: 30px;
}

.coir-info-header {
  margin-bottom: 30px;
}

.coir-quality-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.coir-quality-title {
  width: calc(45% - 10px);
}

.coir-quality-title h2 {
  font-size: 22px;
  line-height: 1.4;
  color: var(--white-color);
}

.coir-review-box {
  width: calc(55% - 10px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.coir-rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 60px;
}

.coir-rating-box i {
  width: 24px;
  height: 24px;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.coir-rating-box p {
  margin: 0;
  color: var(--white-color);
}

.coir-description p {
  color: var(--white-color);
}

.coir-description p:last-child {
  margin-bottom: 0;
}

.coir-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3.125vw;
  background: var(--dark-divider-color);
  border-radius: 20px;
  padding: 20px;
}

.coir-stat-item {
  position: relative;
  width: calc(50% - 1.563vw);
}

.coir-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.563vw;
  width: 1px;
  background: var(--dark-divider-color);
}

.coir-stat-item:nth-child(2n)::before,
.coir-stat-item:last-child::before {
  display: none;
}

.coir-stat-item h2 {
  font-size: 40px;
  color: var(--white-color);
}

.coir-stat-item p {
  margin: 10px 0 0;
  color: var(--white-color);
}

@media only screen and (max-width: 1399px) {
  .coir-hero-section {
    padding: 190px 0 90px;
  }

  .coir-brand-title {
    margin-bottom: -60px;
  }

  .coir-brand-title span {
    font-size: 14vw;
  }

  .coir-hero-content {
    width: calc(60% - 20px);
  }

  .coir-info-card {
    width: calc(40% - 20px);
  }

  .coir-stat-item h2 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 1199px) {
  .coir-hero-section {
    padding: 180px 0 80px;
  }

  .coir-brand-title {
    margin-bottom: -45px;
  }

  .coir-brand-title span {
    font-size: 13vw;
  }

  .coir-hero-wrapper {
    gap: 30px;
  }

  .coir-hero-content,
  .coir-info-card {
    width: 100%;
  }

  .coir-info-card {
    max-width: 700px;
  }

  .coir-quality-title {
    width: 45%;
  }

  .coir-review-box {
    width: 55%;
  }
}

@media only screen and (max-width: 991px) {
  .coir-hero-section {
    min-height: auto;
    padding: 160px 0 70px;
    margin: 10px;
    border-radius: 16px;
  }

  .coir-brand-title {
    margin-bottom: 30px;
  }

  .coir-brand-title span {
    display: none;
  }

  .coir-hero-wrapper {
    flex-direction: column;
  }

  .coir-hero-content,
  .coir-info-card {
    width: 100%;
  }

  .coir-hero-actions {
    gap: 20px;
  }

  .coir-info-card {
    padding: 25px;
  }

  .coir-quality-title h2 {
    font-size: 20px;
  }

  .coir-stat-item h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .coir-hero-section {
    padding: 140px 0 60px;
    margin: 8px;
    border-radius: 14px;
  }

  .coir-brand-title {
    margin-bottom: 25px;
  }

  .coir-brand-title span {
    display: none;
  }

  .coir-hero-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .coir-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .coir-info-card {
    padding: 22px;
  }

  .coir-quality-box {
    gap: 15px;
  }

  .coir-quality-title,
  .coir-review-box {
    width: 100%;
  }

  .coir-review-box {
    justify-content: flex-start;
  }

  .coir-stats {
    gap: 20px;
  }

  .coir-stat-item {
    width: calc(50% - 10px);
  }

  .coir-stat-item::before {
    right: -10px;
  }

  .coir-stat-item h2 {
    font-size: 28px;
  }

  .coir-video-btn span {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .coir-hero-section {
    padding: 120px 0 50px;
  }

  .coir-brand-title span {
    display: none;
  }

  .coir-info-card {
    padding: 20px;
    border-radius: 16px;
  }

  .coir-quality-title h2 {
    font-size: 18px;
  }

  .coir-description p {
    font-size: 15px;
  }

  .coir-stats {
    padding: 18px;
  }

  .coir-stat-item {
    width: 100%;
  }

  .coir-stat-item::before {
    display: none;
  }

  .coir-stat-item h2 {
    font-size: 26px;
  }

  .coir-stat-item p {
    margin-top: 6px;
  }

  .btn-default {
    margin-right: 45px;
  }

  .btn-default::before {
    width: 45px;
    height: 45px;
    right: -45px;
  }
}

@media only screen and (max-width: 480px) {
  .coir-hero-section {
    padding: 140px 0 20px;
  }

  .coir-brand-title {
    margin-bottom: 10px;
  }

  .coir-brand-title span {
    display: none;
  }

  .coir-hero-wrapper {
    gap: 20px;
  }

  .coir-info-card {
    padding: 18px;
  }

  .coir-quality-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .coir-quality-title h2 {
    font-size: 17px;
  }

  .coir-rating-box {
    gap: 8px;
  }

  .coir-rating-box i {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .coir-stat-item h2 {
    font-size: 24px;
  }

  .coir-video-btn a {
    width: 38px;
    height: 38px;
  }

  .coir-video-btn span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 360px) {
  .coir-hero-section {
    padding: 100px 0 40px;
  }

  .coir-brand-title span {
    font-size: 18vw;
  }

  .coir-info-card {
    padding: 15px;
  }

  .coir-stat-item h2 {
    font-size: 22px;
  }

  .coir-stat-item p,
  .coir-description p,
  .coir-tagline p {
    font-size: 14px;
  }

  .btn-default {
    font-size: 15px;
    padding: 14px 22px;
  }
}

/* About Us */

.about-us-gold {
  padding: 60px 0;
}

.about-us-image-box-gold {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 15px;
}

.about-us-image-1-gold {
  width: 80%;
  height: 100%;
}

.about-us-image-gold figure {
  display: block;
  border-radius: 20px;
}

.about-us-image-1-gold figure,
.about-us-image-1-gold img {
  height: 100%;
}

.about-us-image-gold img {
  width: 100%;
  aspect-ratio: 1 / 1.368;
  object-fit: cover;
  border-radius: 20px;
}

.about-us-image-2-gold {
  position: relative;
  width: 20%;
  z-index: 2;
}

.about-us-image-2-gold figure {
  border: 6px solid var(--bg-color);
  margin-left: -160px;
}

.about-us-image-2-gold figure img {
  border-radius: 10px;
  aspect-ratio: 1 / 1.18;
}

.about-us-item-list-gold {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 20px;
}

.about-us-item-gold {
  width: calc(50% - 15px);
}

.about-us-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.about-us-item-header .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-us-item-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-item-gold:hover .about-us-item-header .icon-box:before {
  transform: scale(1);
}

.about-us-item-header .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.about-us-item-title-gold {
  width: calc(100% - 65px);
}

.about-us-item-title-gold h3 {
  font-size: 22px;
  line-height: 1.4em;
}

.about-us-item-contant-gold p {
  margin: 0;
}

.about-us-btn-gold {
  border-top: 1px solid var(--divider-color);
  padding-top: 40px;
  margin-top: 40px;
}

@media only screen and (max-width: 1399px) {
  .about-us-image-2-gold figure {
    margin-left: -130px;
  }

  .about-us-item-list-gold {
    gap: 25px;
    padding: 25px;
  }

  .about-us-item-title-gold h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-gold {
    padding: 100px 0;
  }

  .about-us-image-box-gold {
    margin-right: 0;
  }

  .about-us-image-2-gold figure {
    margin-left: -100px;
  }

  .about-us-item-list-gold {
    padding: 25px;
  }

  .about-us-item-header {
    gap: 12px;
  }

  .about-us-item-title-gold h3 {
    font-size: 19px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us-gold {
    padding: 80px 0;
  }

  .about-us-image-box-gold {
    margin-bottom: 40px;
  }

  .about-us-image-1-gold {
    width: 78%;
  }

  .about-us-image-2-gold {
    width: 22%;
  }

  .about-us-image-2-gold figure {
    margin-left: -80px;
  }

  .about-us-item-list-gold {
    gap: 20px;
  }

  .about-us-item-gold {
    width: calc(50% - 10px);
  }

  .about-us-btn-gold {
    margin-top: 30px;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-gold {
    padding: 70px 0;
  }

  .about-us-image-box-gold {
    justify-content: center;
    margin-bottom: 35px;
  }

  .about-us-image-1-gold {
    width: 100%;
  }

  .about-us-image-2-gold {
    display: none;
  }

  .about-us-image-gold img {
    aspect-ratio: 1/1.15;
  }

  .about-us-item-list-gold {
    padding: 22px;
  }

  .about-us-item-gold {
    width: 100%;
  }

  .about-us-item-header {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .about-us-item-title-gold h3 {
    font-size: 20px;
  }

  .about-us-btn-gold {
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .about-us-gold {
    padding: 60px 0;
  }

  .about-us-image-gold figure {
    border-radius: 16px;
  }

  .about-us-image-gold img {
    border-radius: 16px;
  }

  .about-us-item-list-gold {
    padding: 20px;
    border-radius: 16px;
  }

  .about-us-item-header .icon-box {
    width: 45px;
    height: 45px;
  }

  .about-us-item-header .icon-box img {
    max-width: 20px;
  }

  .about-us-item-title-gold {
    width: calc(100% - 57px);
  }

  .about-us-item-title-gold h3 {
    font-size: 18px;
  }

  .about-us-item-contant-gold p {
    font-size: 15px;
  }

  .about-us-btn-gold {
    margin-top: 25px;
    padding-top: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .about-us-gold {
    padding: 50px 0;
  }

  .about-us-item-list-gold {
    padding: 18px;
  }

  .about-us-item-header {
    gap: 10px;
  }

  .about-us-item-header .icon-box {
    width: 42px;
    height: 42px;
  }

  .about-us-item-header .icon-box img {
    max-width: 18px;
  }

  .about-us-item-title-gold {
    width: calc(100% - 52px);
  }

  .about-us-item-title-gold h3 {
    font-size: 17px;
  }

  .about-us-item-contant-gold p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media only screen and (max-width: 360px) {
  .about-us-item-list-gold {
    padding: 15px;
  }

  .about-us-item-title-gold h3 {
    font-size: 16px;
  }

  .about-us-item-contant-gold p {
    font-size: 13px;
  }

  .about-us-btn-gold .btn-default {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .about-us-btn-gold .btn-default::before {
    display: none;
  }
}

/* Our Services */
.our-services-prime {
  padding: 60px 0;
}

.service-item-prime {
  background: var(--bg-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 10px;
}

.service-item-content-prime {
  padding: 30px;
}

.service-item-content-prime h2 {
  font-size: 22px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.service-item-content-prime h2 a {
  color: inherit;
}

.service-item-content-prime p:last-child {
  margin: 0;
}

.service-item-image-prime .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-secondary-color);
  border: 5px solid var(--bg-color);
  border-radius: 50%;
  margin: 0 0 -30px 20px;
  z-index: 1;
}

.service-item-image-prime .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item-prime:hover .service-item-image-prime .icon-box::before {
  transform: scale(1);
}

.service-item-image-prime .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.service-item-image-prime a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: none;
}

.service-item-image-prime figure {
  display: block;
  border-radius: 10px;
}

.service-item-image-prime figure img {
  width: 100%;
  aspect-ratio: 1 / 0.535;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.service-item-prime:hover .service-item-image-prime figure img {
  transform: scale(1.06);
}

.coir-advantages-section {
  padding: 60px 0;
}

.coir-advantages-content {
  height: 100%;
}

.coir-advantages-list {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.coir-advantages-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--divider-color);
  transition: all 0.3s ease;
}

.coir-advantages-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.coir-advantages-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-secondary-color);
  flex-shrink: 0;
  overflow: hidden;
}

.coir-advantages-item .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.35s ease;
}

.coir-advantages-item:hover .icon-box::before {
  transform: scale(1);
}

.coir-advantages-item .icon-box img {
  position: relative;
  max-width: 24px;
  z-index: 2;
}

.coir-advantages-item-content {
  width: calc(100% - 65px);
}

.coir-advantages-item-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.coir-advantages-item-content p {
  margin: 0;
}

.coir-advantages-image-box {
  position: relative;
  height: 100%;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  margin-left: 15px;
  display: flex;
  align-items: flex-end;
}

.coir-advantages-image {
  position: absolute;
  inset: 0;
}

.coir-advantages-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.coir-advantages-image figure {
  height: 100%;
  margin: 0;
}

.coir-advantages-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coir-contact-info-list {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.coir-contact-info {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
  gap: 15px;
}

.coir-contact-info.highlighted-card {
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.coir-contact-info.highlighted-card .coir-contact-content {
  width: 100%;
}

.coir-contact-info .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-secondary-color);
  flex-shrink: 0;
  overflow: hidden;
}

.coir-contact-info .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.35s ease;
}

.coir-contact-info:hover .icon-box::before {
  transform: scale(1);
}

.coir-contact-info .icon-box img {
  position: relative;
  max-width: 22px;
  z-index: 2;
}

.coir-contact-content {
  width: calc(100% - 65px);
}

.coir-contact-content h3 {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 6px;
}

.coir-contact-content p {
  color: var(--white-color);
  margin: 0;
}

.coir-contact-content a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.coir-contact-content a:hover {
  color: var(--accent-secondary-color);
}

@media only screen and (max-width: 1399px) {
  .coir-advantages-item-content h3 {
    font-size: 20px;
  }

  .coir-contact-content h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .coir-advantages-section {
    padding: 100px 0;
  }

  .coir-advantages-list {
    padding: 35px;
  }

  .coir-advantages-image-box {
    margin-left: 0;
    min-height: 560px;
  }

  .coir-contact-info-list {
    padding: 35px;
    gap: 25px;
  }

  .coir-contact-info {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .coir-advantages-section {
    padding: 80px 0;
  }

  .coir-advantages-content {
    margin-bottom: 40px;
  }

  .coir-advantages-list {
    margin-top: 30px;
    padding: 30px;
  }

  .coir-advantages-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .coir-advantages-item-content h3 {
    font-size: 20px;
  }

  .coir-advantages-image-box {
    min-height: 520px;
  }

  .coir-contact-info-list {
    padding: 30px;
  }

  .coir-contact-content h3 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .coir-advantages-section {
    padding: 70px 0;
  }

  .coir-advantages-list {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .coir-advantages-item {
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .coir-advantages-item .icon-box {
    width: 45px;
    height: 45px;
  }

  .coir-advantages-item .icon-box img {
    max-width: 20px;
  }

  .coir-advantages-item-content {
    width: calc(100% - 57px);
  }

  .coir-advantages-item-content h3 {
    font-size: 18px;
  }

  .coir-advantages-image-box {
    min-height: 480px;
    border-radius: 16px;
  }

  .coir-contact-info-list {
    padding: 25px 20px;
    gap: 20px;
  }

  .coir-contact-info {
    width: 100%;
    gap: 12px;
  }

  .coir-contact-info.highlighted-card {
    padding-bottom: 20px;
  }

  .coir-contact-info .icon-box {
    width: 45px;
    height: 45px;
  }

  .coir-contact-info .icon-box img {
    max-width: 18px;
  }

  .coir-contact-content {
    width: calc(100% - 57px);
  }

  .coir-contact-content h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .coir-advantages-list {
    padding: 20px 16px;
  }

  .coir-advantages-item-content h3 {
    font-size: 17px;
  }

  .coir-advantages-image-box {
    min-height: 420px;
  }

  .coir-contact-info-list {
    padding: 20px 16px;
  }

  .coir-contact-content h3 {
    font-size: 17px;
  }

  .coir-contact-content p {
    font-size: 14px;
  }
}

/*How its Work*/
.how-it-work {
  padding: 60px 0;
}

.how-work-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 20px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  text-align: center;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover {
  transform: translateY(-5px);
}

.how-work-item-no {
  width: 60px;
  height: 60px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-item-no {
  background: var(--accent-color);
}

.how-work-item-no h3 {
  font-size: 24px;
  color: var(--white-color);
}

.how-work-item-contant h3 {
  font-size: 22px;
  color: var(--white-color);
}

.how-work-item-contant p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.how-work-item-contant ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  border-top: 1px solid var(--dark-divider-color);
  margin: 50px 0 0;
  padding: 50px 0 0;
}

.how-work-item-contant ul li {
  font-size: 14px;
  color: var(--white-color);
  line-height: normal;
  background-color: var(--dark-divider-color);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all 0.4s ease-in-out;
}

.how-work-item-contant ul li:hover {
  background-color: var(--accent-secondary-color);
}

/* Testimonial Section */
.testimonial-section {
  padding: 60px 0;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 70px;
}

.testimonial-columns {
  width: 58%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  height: 700px;
}

.testimonial-column {
  position: relative;
  overflow: hidden;
}

.testimonial-column::before,
.testimonial-column::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 5;
  pointer-events: none;
}

.testimonial-column::before {
  top: 0;
  background: linear-gradient(to bottom, #faf8f5 0%, transparent 100%);
}

.testimonial-column::after {
  bottom: 0;
  background: linear-gradient(to top, #faf8f5 0%, transparent 100%);
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
  color: #6b6b6b;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 35px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #111;
}

.testimonial-user span {
  color: #777;
  font-size: 15px;
}

.testimonial-content {
  width: 42%;
}

.testimonial-content .mini-title {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b5e34;
  margin-bottom: 15px;
}

.testimonial-content h2 {
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 34px;
  color: #666;
  margin-bottom: 35px;
}

.testimonial-content .btn-default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  background: #3d2312;
  color: #fff;
  transition: 0.35s;
}

.testimonial-content .btn-default:hover {
  background: #6b4425;
  color: #fff;
}

.track-up {
  animation: scrollUp 5s linear infinite;
}

.track-down {
  animation: scrollDown 5s linear infinite;
}

.testimonial-column:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .testimonial-columns {
    width: 100%;
    grid-template-columns: 1fr;
    height: 650px;
  }

  .testimonial-column:nth-child(2) {
    display: none;
  }

  .testimonial-content {
    width: 100%;
    text-align: center;
  }

  .testimonial-content h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-columns {
    height: 550px;
  }

  .testimonial-card {
    padding: 24px;
    border-radius: 24px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 28px;
  }

  .testimonial-user img {
    width: 55px;
    height: 55px;
  }

  .testimonial-content h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .testimonial-content p {
    font-size: 16px;
    line-height: 30px;
  }
}

.coir-faq-section {
  padding: 60px 0;
}

.coir-faq-content {
  position: sticky;
  top: 30px;
}

.coir-faq-accordion .accordion-item {
  background: var(--bg-color);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 0;
  overflow: hidden;
}

.coir-faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.coir-faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--primary-color);
  background: transparent;
  padding: 30px 70px 30px 30px;
  box-shadow: none;
  transition: 0.3s;
}

.coir-faq-accordion .accordion-button::after,
.coir-faq-accordion .accordion-button.collapsed::after {
  content: "\f13a";
  font-family: "FontAwesome";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--accent-secondary-color);
  background: none;
  width: auto;
  height: auto;
}

.coir-faq-accordion .accordion-button:not(.collapsed)::after {
  color: var(--accent-color);
  transform: translateY(-50%) rotate(180deg);
}

.coir-faq-accordion .accordion-body {
  padding: 30px;
  border-top: 1px solid var(--divider-color);
}

.coir-faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .coir-faq-section {
    padding: 80px 0;
  }

  .coir-faq-content {
    position: static;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .coir-faq-section {
    padding: 70px 0;
  }

  .coir-faq-accordion .accordion-header .accordion-button {
    padding: 22px 55px 22px 20px;
    font-size: 16px;
  }

  .coir-faq-accordion .accordion-button::after {
    right: 20px;
    font-size: 24px;
  }

  .coir-faq-accordion .accordion-body {
    padding: 20px;
  }
}

/* Contact Section*/
.coir-enquiry-section {
  padding: 60px 0 60px;
}

.coir-enquiry-media {
  position: relative;
  height: 100%;
  margin-right: 15px;
}

.coir-enquiry-image {
  height: 100%;
}

.coir-enquiry-image figure {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}

.coir-enquiry-image figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(24, 25, 26, 0.9) 88%
  );
  z-index: 1;
}

.coir-enquiry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1.2;
  display: block;
}

.coir-support-card {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.coir-support-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.coir-support-item:hover .support-icon {
  background: var(--accent-color);
}

.support-icon img {
  width: 22px;
}

.support-content {
  flex: 1;
}

.support-content span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.support-content h4 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
}

.support-content h4 a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.support-content h4 a:hover {
  color: var(--accent-secondary-color);
}

.coir-enquiry-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  height: 100%;
}

.coir-section-heading {
  margin-bottom: 35px;
}

.coir-subtitle {
  display: inline-block;
  margin-bottom: 12px;
}

.coir-enquiry-form .form-control,
.coir-enquiry-form .form-select {
  height: 58px;
  border: none;
  background: var(--bg-color);
  border-radius: 10px;
  padding: 0 20px;
  box-shadow: none;
  font-size: 16px;
  transition: 0.3s;
}

.coir-enquiry-form textarea.form-control {
  height: 170px;
  padding: 18px 20px;
  resize: none;
}

.coir-enquiry-form .form-control:focus,
.coir-enquiry-form .form-select:focus {
  background: #fff;
  border: 1px solid var(--accent-color);
  box-shadow: none;
}

.coir-enquiry-form .form-control::placeholder {
  color: var(--text-color);
}

.coir-enquiry-form .btn-default {
  width: fit-content;
}

@media only screen and (max-width: 1199px) {
  .coir-enquiry-section {
    padding: 100px 0 60px;
  }

  .coir-enquiry-wrapper {
    padding: 40px;
  }

  .support-content h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .coir-enquiry-section {
    padding: 80px 0;
  }

  .coir-enquiry-media {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .coir-enquiry-image img {
    aspect-ratio: 1.3;
  }

  .coir-enquiry-wrapper {
    padding: 35px;
  }

  .coir-support-card {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

  .coir-enquiry-form .btn-default {
    width: fit-content;
  }
}

@media only screen and (max-width: 767px) {
  .coir-enquiry-section {
    padding: 70px 0;
  }

  .coir-enquiry-image img {
    aspect-ratio: 1;
  }

  .coir-support-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .coir-support-item {
    gap: 12px;
  }

  .support-icon {
    width: 45px;
    height: 45px;
  }

  .support-icon img {
    width: 18px;
  }

  .support-content span {
    font-size: 13px;
  }

  .support-content h4 {
    font-size: 18px;
  }

  .coir-enquiry-wrapper {
    padding: 28px 20px;
    margin-top: 30px;
  }

  .coir-section-heading {
    margin-bottom: 25px;
  }

  .coir-enquiry-form .form-control,
  .coir-enquiry-form .form-select {
    height: 54px;
    font-size: 15px;
  }

  .coir-enquiry-form textarea.form-control {
    height: 140px;
  }

  .coir-enquiry-form .btn-default {
    width: fit-content;
  }
}

@media only screen and (max-width: 480px) {
  .coir-enquiry-image figure {
    border-radius: 16px;
  }

  .coir-support-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .coir-enquiry-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .support-content h4 {
    font-size: 16px;
  }

  .coir-enquiry-form .form-control,
  .coir-enquiry-form .form-select {
    padding: 0 16px;
  }

  .coir-enquiry-form textarea.form-control {
    padding: 16px;
  }
}

/* Footer Section */

.coir-footer {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
}

.coir-footer-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, rgba(28, 24, 21, 0.3) 0%, rgba(28, 24, 21, 0.6) 50%),
    linear-gradient(
      0deg,
      rgba(28, 24, 21, 0.15) 0%,
      rgba(28, 24, 21, 0.15) 100%
    );
  z-index: 1;
}

.coir-container {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.coir-footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--dark-divider-color);
}

.coir-footer-header .section-title {
  margin: 0;
  max-width: 820px;
}

.coir-footer-header .section-title h2 {
  margin-bottom: 0;
}

.coir-contact-circle {
  flex-shrink: 0;
}

.coir-contact-circle a {
  display: block;
}

.coir-contact-circle img {
  width: 120px;
  height: 120px;
  animation: footerCircleRotate 20s linear infinite;
  transition: 0.4s;
}

.coir-contact-circle:hover img {
  transform: scale(1.05);
  animation-play-state: paused;
}

@keyframes footerCircleRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.coir-footer-about {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 20px;

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  padding: 40px;

  height: 100%;
}

.coir-footer-logo {
  margin-bottom: 25px;
}

.coir-footer-logo img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

.coir-footer-content {
  margin-bottom: 30px;
}

.coir-footer-content p {
  color: var(--white-color);

  line-height: 1.9;

  margin: 0;

  opacity: 0.9;
}

.coir-footer-social {
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.coir-footer-social h2 {
  color: var(--white-color);

  font-size: 22px;

  margin: 0;
}

.coir-footer-social ul {
  display: flex;

  align-items: center;

  gap: 15px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.coir-footer-social ul li {
  margin: 0;
}

.coir-footer-social ul li a {
  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: var(--white-color);

  transition: 0.35s;
}

.coir-footer-social ul li a:hover {
  background: var(--accent-secondary-color);

  border-color: var(--accent-secondary-color);

  color: var(--primary-color);

  transform: translateY(-3px);
}

.coir-footer-social ul li i {
  font-size: 18px;
}

.coir-footer-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.coir-footer-links {
  flex: 1;
  min-width: 180px;
}

.coir-footer-links h2 {
  color: var(--white-color);
  font-size: 22px;
  margin-bottom: 28px;
}

.coir-footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.coir-footer-links ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--white-color);
}

.coir-footer-links ul li:last-child {
  margin-bottom: 0;
}

/* Bullet for Quick Links & Products */

.coir-footer-links ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-secondary-color);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.coir-footer-links ul li a {
  color: inherit;
  transition: all 0.35s ease;
}

.coir-footer-links ul li a:hover {
  color: var(--accent-secondary-color);
  padding-left: 5px;
}

.coir-footer-links:last-child ul li::before {
  display: none;
}

.coir-footer-links:last-child ul li {
  gap: 14px;
}

/* Contact Icons */

.coir-footer-links:last-child ul li i {
  width: 20px;
  margin-top: 4px;
  color: var(--accent-secondary-color);
  font-size: 17px;
  flex-shrink: 0;
}

/* Phone / Email */

.coir-footer-links:last-child ul li a {
  color: var(--white-color);
  transition: 0.35s;
}

.coir-footer-links:last-child ul li a:hover {
  color: var(--accent-secondary-color);
  padding-left: 0;
}

/* Address */

.coir-footer-links:last-child ul li span {
  color: var(--white-color);
  line-height: 1.7;
}

.coir-footer-links {
  margin-bottom: 20px;
}

.coir-footer-links:last-child {
  max-width: 280px;
}

.coir-footer-links ul li:hover i {
  transform: translateY(-2px);
  transition: 0.3s;
}

.coir-footer-bottom {
  margin-top: 60px;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.7;
}

.footer-copy a {
  color: inherit;
}

.footer-credit {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.7;
  text-align: right;
}

.footer-credit a {
  color: var(--accent-secondary-color);
  font-weight: 600;
  transition: all 0.35s ease;
}

.footer-credit a:hover {
  color: var(--white-color);
}

.footer-copy,
.footer-credit {
  transition: 0.3s;
}

.footer-credit:hover a {
  letter-spacing: 0.3px;
}

.coir-footer-bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
}

.coir-footer ::selection {
  background: var(--accent-secondary-color);
  color: var(--primary-color);
}

.coir-footer ::-moz-selection {
  background: var(--accent-secondary-color);
  color: var(--primary-color);
}

@media only screen and (max-width: 1399px) {
  .coir-footer {
    padding-top: 100px;
  }

  .coir-footer-header {
    gap: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .coir-footer-header .section-title {
    max-width: 720px;
  }

  .coir-footer-about {
    padding: 35px;
  }

  .coir-footer-links-wrapper {
    gap: 30px 20px;
  }

  .coir-footer-links {
    min-width: 170px;
  }
}

@media only screen and (max-width: 1199px) {
  .coir-footer {
    padding-top: 90px;
  }

  .coir-footer-header {
    padding-bottom: 45px;
    margin-bottom: 45px;
  }

  .coir-footer-header .section-title {
    max-width: 620px;
  }

  .coir-footer-about {
    padding: 32px;
    margin-bottom: 35px;
  }

  .coir-footer-logo img {
    max-width: 145px;
  }

  .coir-footer-social {
    gap: 15px;
  }

  .coir-footer-links-wrapper {
    gap: 30px;
  }

  .coir-footer-links {
    flex: 0 0 calc(50% - 15px);
    min-width: unset;
  }

  .coir-footer-links:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-bottom {
    gap: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .coir-footer {
    padding-top: 80px;
  }

  .coir-footer-header {
    justify-content: center;
    text-align: center;
    gap: 25px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .coir-footer-header .section-title {
    max-width: 100%;
  }

  .coir-contact-circle {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .coir-contact-circle img {
    width: 100px;
    height: 100px;
  }

  .coir-footer-about {
    margin-bottom: 35px;
  }

  .coir-footer-links-wrapper {
    gap: 40px;
  }

  .coir-footer-links {
    flex: 0 0 calc(50% - 13px);
  }

  .coir-footer-links:last-child {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-credit {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .coir-footer {
    padding-top: 70px;
  }

  .coir-footer-header {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }

  .coir-footer-header .section-title h2 {
    font-size: 34px;
  }

  .coir-contact-circle img {
    width: 90px;
    height: 90px;
  }

  .coir-footer-about {
    padding: 30px 25px;
  }

  .coir-footer-logo {
    margin-bottom: 20px;
    translate: 80px;
  }

  .coir-footer-logo img {
    max-width: 150px;
  }

  .coir-footer-content {
    margin-bottom: 25px;
  }

  .coir-footer-social {
    justify-content: center;
    text-align: center;
  }

  .coir-footer-social h2 {
    width: 100%;
  }

  .coir-footer-links {
    flex: 0 0 100%;
  }

  .coir-footer-links h2 {
    margin-bottom: 18px;
  }

  .coir-footer-links ul li {
    margin-bottom: 14px;
  }

  .coir-footer-bottom {
    margin-top: 40px;
    padding: 30px 0;
  }
}

@media only screen and (max-width: 575px) {
  .coir-footer {
    padding-top: 60px;
  }

  .coir-footer-header {
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .coir-footer-header .section-title h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .coir-contact-circle img {
    width: 80px;
    height: 80px;
  }

  .coir-footer-about {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .coir-footer-links-wrapper {
    gap: 40px;
  }

  .coir-footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .coir-footer-logo img {
    max-width: 100px;
  }

  .coir-footer-content {
    text-align: center;
    margin-bottom: 25px;
  }

  .coir-footer-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .coir-footer-social {
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .coir-footer-social h2 {
    width: 100%;
    font-size: 20px;
  }

  .coir-footer-social ul {
    gap: 12px;
  }

  .coir-footer-social ul li a {
    width: 40px;
    height: 40px;
  }

  .coir-footer-social ul li i {
    font-size: 16px;
  }

  .coir-footer-links {
    width: 100%;
    margin-bottom: 30px;
  }

  .coir-footer-links:last-child {
    margin-bottom: 0;
  }

  .coir-footer-links h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .coir-footer-links ul li {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .coir-footer-links:last-child ul li {
    gap: 10px;
  }

  .coir-footer-links:last-child ul li i {
    width: 18px;
    font-size: 15px;
  }

  .coir-footer-bottom {
    margin-top: 30px;
    padding: 25px 0;
  }

  .footer-copy {
    font-size: 14px;
  }

  .footer-credit {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .coir-footer {
    padding-top: 50px;
  }

  .coir-footer-header {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .coir-footer-header .section-title h2 {
    font-size: 26px;
  }

  .coir-contact-circle img {
    width: 70px;
    height: 70px;
  }

  .coir-footer-about {
    padding: 20px 16px;
  }

  .coir-footer-links-wrapper {
    margin-top: 40px;
    gap: 40px;
  }

  .coir-footer-logo img {
    max-width: 200px;
  }

  .coir-footer-content p {
    font-size: 14px;
  }

  .coir-footer-social {
    padding-top: 25px;
  }

  .coir-footer-social ul li a {
    width: 38px;
    height: 38px;
  }

  .coir-footer-links h2 {
    font-size: 18px;
  }

  .coir-footer-links ul li {
    font-size: 14px;
    line-height: 1.7;
  }

  .coir-footer-links ul li::before {
    width: 6px;
    height: 6px;
  }

  .footer-copy,
  .footer-credit {
    font-size: 13px;
    text-align: center;
  }
}

@media only screen and (max-width: 360px) {
  .coir-footer-header .section-title h2 {
    font-size: 24px;
  }

  .coir-footer-about {
    padding: 18px 15px;
  }

  .coir-footer-social ul {
    gap: 10px;
  }

  .coir-footer-social ul li a {
    width: 36px;
    height: 36px;
  }

  .coir-footer-links h2 {
    font-size: 17px;
  }

  .coir-footer-links ul li {
    font-size: 13px;
  }

  .footer-copy,
  .footer-credit {
    font-size: 12px;
  }
}

/* WhatsApp chat-btn */

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

.whatsapp-left {
  left: 25px;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 18px;
  }

  .whatsapp-left {
    left: 18px;
  }
}
