/* ===========================
   Root Variables 
=========================== */
:root {
  --font-family: "Inter", system-ui, sans-serif;

  --font-size-base: 12px;
  --color-bg: #E8E6E4;
  --color-text: #0C0C0C;
  --color-grey: #525252;
  --color-border: #dddddd;
  --color-hover: #f1f1f1;
  --container-padding: 20px;
  --header-height: 70px;
  --space-height: 50px;
}

/* ===========================
   Reset & Base Styles
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  font-size: var(--font-size-base);
     height: 100%;
  overflow: scroll; 
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

body {
  font-family: var(--font-family);
  background: var(--color-bg) !important;
  color: var(--color-text);
  line-height: 1.5;
  padding: 0px 10px;
  
   height: 100%;
  overflow: scroll; 
  scrollbar-width: none; 
  -ms-overflow-style: none; 

}


body::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Chrome, Safari, Edge */
  
}


.text-anime-style-2 {
  display: inline-block;
}

.text-anime-style-2 span{
  display: inline-block;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

[class^="col-"] {
  padding-left: 2px;
  padding-right: 2px;
  box-sizing: border-box;

}

/* Default desktop (≥ 992px) */
.col-1 {
  width: 8.3333%;
}

.col-2 {
  width: 16.6666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

.col-5 {
  width: 44.6666%;
  padding-left: 0px;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 55.3333%;
}

.col-8 {
  width: 66.6666%;
}

.col-9 {
  width: 75%;
}

/* Desktop: only top and bottom borders */
.col-10 {
  width: 83.3333%;
  border-top: 2px solid #d5d3d1bd;
  border-bottom: 2px solid #d5d3d1bd;
  border-left: none;
  border-right: none;
}

/* Mobile: all borders */
@media (max-width: 768px) {
  .col-10 {
    border: 1px solid #d5d3d1bd;
    background-color: white;
  }
}


.col-11 {
  width: 91.6666%;
}

.col-12 {
  width: 100%;
}

/* Tablet (≥ 768px and < 992px) */
@media (max-width: 991.98px) {

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11 {
    width: 50%;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 100%;
  }
}

a {
  color: inherit;
  /* takes color from parent (so it matches your theme) */
  text-decoration: none;
  /* removes underline */
}

a:hover {
  text-decoration: none;
  /* still no underline on hover */
}

/* ===========================
   Layout Container
=========================== */
.container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  /* margin: 10px 0px !important; */
  padding: 0 var(--container-padding) !important;
}

.side-box {
  border: 2px solid #d5d3d1bd;
  background-color: white;
  /* z-index: 2; */
}


/* All Edges Border + Dots */
.bordered-all {
  position: relative;
  border: 1px solid #d5d3d1bd;
}

/* Common styles for dots */
.bordered-all::before,
.bordered-all::after,
.bordered-all .dot-top-left,
.bordered-all .dot-bottom-left {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
}

/* Top-right corner */
.bordered-all::before {
  top: 0px;
  right: 0px;
}

/* Bottom-right corner */
.bordered-all::after {
  bottom: 0px;
  right: 0px;
}

/* Top-left corner */
.bordered-all .dot-top-left {
  top: 0px;
  left: 0px;
}

/* Bottom-left corner */
.bordered-all .dot-bottom-left {
  bottom: 0px;
  left: 0px;
}





/* Right side border + dots */
 .bordered-right {
  position: relative;
  border-right: 1px solid #d5d3d1bd;
}

.bordered-right::before,
.bordered-right::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
}

.bordered-right::before {
  top: -4px;
}

.bordered-right::after {
  bottom: -4px;
} 



/* Left side border + dots */
.bordered-left {
  position: relative;
  border-left: 1px solid #d5d3d1bd;
}

.bordered-left::before,
.bordered-left::after {
  content: "";
  position: absolute;
  left: -4px;
  /* align on border */
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
}

.bordered-left::before {
  top: -4px;
}

.bordered-left::after {
  bottom: -4px;
}

/* Optional: remove borders/dots on mobile */
@media (max-width: 768px) {

  .bordered-right,
  .bordered-left {
    border: none;
  }

  .bordered-right::before,
  .bordered-right::after,
  .bordered-left::before,
  .bordered-left::after {
    display: none;
  }
}



.bordered-col {
  position: relative;
  border-right: 1px solid #d5d3d1bd;
}

/* Top and bottom square dots */
.bordered-col::before,
.bordered-col::after {
  content: "";
  position: absolute;
  right: -4px;
  /* center on the border */
  width: 6px;
  height: 6px;
  background-color: var(--color-text);
}

.bordered-col::before {
  top: -4px;
}

.bordered-col::after {
  bottom: -4px;
}

/* Optional: remove border in mobile */
@media (max-width: 768px) {
  .bordered-col {
    border-right: none;
  }

  .bordered-col::before,
  .bordered-col::after {
    display: none;
  }
}





.btn-container {
  display: flex;
  gap: 15px;
        
}

.inner-button {
  padding: 40px 0px 0px 0px;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-text) !important;
  font-weight: 700;
  border: 1px solid #F16324;
  text-decoration: none;
  width: fit-content;
  padding: 10px 20px;
  margin: 12px 10px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #FAFAF5;
  color: #F16324 !important;
}




.btn2 {
  position: relative;
  display: inline-block;
  background-color: #F16324;
  border: 1px solid #F16324;;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  padding: 10px 20px;
  margin: 12px 0px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.btn2:hover {
  background-color: #E15314;
  color: #ffffff !important;
  /* border: 1px solid #f16324 */
}



/* ---- All corner icons ---- */
/* Base styles for corners */
.btn::before,
.btn::after,
.btn .bottom-left,
.btn .bottom-right {
  position: absolute;
}

/* Top-left */
.btn::before {
  content: "";
  width: 6px;
  height: 7px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
  top: -3px;
  left: -3px;
}

/* Top-right */
.btn::after {
  content: "";
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
  top: -3px;
  right: -3px;
  transform: rotate(90deg);
}

/* Bottom-left */
.btn .bottom-left {
  content: "";
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
  bottom: -3px;
  left: -3px;
  transform: rotate(270deg);
}

/* Bottom-right */
.btn .bottom-right {
  content: "";
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
  bottom: -3px;
  right: -3px;
  transform: rotate(180deg);
}

/* Hover effect */
.btn:hover::before {
  top: -2px;
  left: -2px;
}

.btn:hover::after {
  top: -2px;
  right: -2px;
}

.btn:hover .bottom-left {
  bottom: -2px;
  left: -2px;
}

.btn:hover .bottom-right {
  bottom: -2px;
  right: -2px;
}



.btn2::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 7px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
}


.btn2::after,
.btn2 .corner {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
}



/* Base positions */
.btn2::before,
.btn2::after,
.btn2 .bottom-left,
.btn2 .bottom-right {
  position: absolute;
}

/* Top-left */
.btn2::before {
  top: -3px;
  left: -3px;
}

/* Top-right */
.btn2::after {
  top: -3px;
  right: -3px;
  transform: rotate(90deg);
}

/* Bottom-left */
.btn2 .bottom-left {
  bottom: -3px;
  left: -3px;
  transform: rotate(270deg);
}

/* Bottom-right */
.btn2 .bottom-right {
  bottom: -3px;
  right: -3px;
  transform: rotate(180deg);
}

/* Hover effect */
.btn2:hover::before {
  top: -2px;
  left: -2px;
}

.btn2:hover::after {
  top: -2px;
  right: -2px;
}

.btn2:hover .bottom-left {
  bottom: -2px;
  left: -2px;
}

.btn2:hover .bottom-right {
  bottom: -2px;
  right: -2px;
}



.video-text .para {
  color: var(--color-text);
  width: 70%;
      margin-top: 28px;
  /* padding: 15px 0px 30px 0px; */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
}

/* .btn {
  background-color: black;
  font-size: 12px;
  color: white;
  width: 150px;
  padding: 10px 15px;
  margin: 15px 5px;
  font-weight: 700;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
} */

.bold-arrow {
  font-weight: 900;
  font-size: 1.1em;
  transform: scale(1.2);
  vertical-align: middle;
  margin-left: 6px;
  /* small space between text and icon */
}



.blog-button-container {
  display: flex;
}


/* --- Primary button --- */
.blog-btn {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-text) !important;
  font-weight: 700;
  border: 1px solid #F16324;
  text-decoration: none;
  width: 170px;
  padding: 10px 15px;
  margin: 15px 10px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-btn:hover {
  background-color: #FAFAF5;
  color: #F16324 !important;
}

/* --- Secondary (filled) button --- */
.blog-btn2 {
  position: relative;
  display: inline-block;
  background-color: #F16324;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  width: 170px;
  padding: 10px 15px;
  margin: 15px 10px;
  line-height: 20px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-btn2:hover {
  background-color: #E15314;
  color: white !important;
  border: 1px solid #f16324
}

/* ---- All corner icons ---- */
.blog-btn::before,
.blog-btn::after,
.blog-btn .corner {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
}

/* Top-left */
.blog-btn::before {
  top: -2px;
  left: -2px;
}

/* Top-right */
.blog-btn::after {
  top: -2px;
  right: -2px;
  transform: rotate(90deg);
}

/* Bottom-left */
.blog-btn .bottom-left {
  bottom: -17px;
  left: -2px;
  transform: rotate(270deg);
}

/* Bottom-right */
.blog-btn .bottom-right {
  bottom: -17px;
  right: -2px;
  transform: rotate(180deg);
}

/* ---- Blog-btn2 corners ---- */
.blog-btn2::before,
.blog-btn2::after,
.blog-btn2 .corner {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
}

/* Top-left */
.blog-btn2::before {
  top: -2px;
  left: -2px;
}

/* Top-right */
.blog-btn2::after {
  top: -2px;
  right: -2px;
  transform: rotate(90deg);
}

/* Bottom-left */
.blog-btn2 .bottom-left {
  bottom: -17px;
  left: -2px;
  transform: rotate(270deg);
}

/* Bottom-right */
.blog-btn2 .bottom-right {
  bottom: -17px;
  right: -2px;
  transform: rotate(180deg);
}


.blog-section {
  padding: 0 20px;
  margin: 40px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 00px;
}


/* ===========================
   Main Header Structure
=========================== */
.main-header {
  background: var(--color-bg, #fff);
}

.main-header-inner {
  display: flex;
  align-items: flex-start;
  margin: 10px 0px !important;
  justify-content: space-between;
  padding: 5px 15px !important;
  background-color: white;
  align-items: center;
  border: 2px solid #d5d3d1bd;
}

/* ===========================
   Logo
=========================== */
.main-logo img {
  height: 40px;
}

/* ===========================
   Right Section
=========================== */
.main-right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
}

/* ===========================
   Topbar (Mini Header Links)
=========================== */
.main-topbar ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0px 0px;
}

.main-topbar a {
  text-decoration: none;
  color: var(--color-text, #555);
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: color 0.2s ease-in-out;
}

.main-topbar a:hover {
  color: #F16324;
}

/* Divider Line */
.main-divider {
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  margin: 5px 0;

  /* Apply fading mask from left to right */
  -webkit-mask-image: linear-gradient(to right, transparent, black);
  mask-image: linear-gradient(to right, transparent, black);
}


/* ===========================
   Main Navigation
=========================== */
/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text, #333);
  font-weight: 600;
  /* font-size: 15px; */
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav a:hover {
  /* background: var(--color-hover, #f0f0f0); */
      color: #f16324;
}

/* Dropdown container */
.main-nav .has-dropdown {
  position: relative;
}

/* Dropdown Menu */
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 3px solid #f16324;
  border-radius: 4px;
  padding: 8px 0;
  gap: 5px;
  width: max-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  white-space: nowrap;
}


.main-nav .dropdown li {
  width: 100%;
}

.main-nav .dropdown a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  color: #333;
  transition: background 0.2s;
}

.main-nav .dropdown a:hover {
  background-color: #f7f7f7;
  color: #f16324;
}

/* Show dropdown on hover */
.main-nav .has-dropdown:hover>.dropdown {
  display: flex;
}

/* Bootstrap icon arrow */
.main-nav .has-dropdown>a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Rotate icon on hover */
.main-nav .has-dropdown:hover>a i {
  transform: rotate(180deg);
}


/* ===========================
   Hamburger (for mobile)
=========================== */
.main-hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}




/* ======= Base Styles ======= */
.features {
  background: #e8e6e4;
  /* overflow: hidden; */
}

/* .section {
  margin: 0px 25px;
} */

/* ======= Feature Video ======= */
.feature-video {
  position: relative;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
}

.feature-video video {
  /* width: 100%; */
  /* height: 100%; */
  object-fit: cover;
}

.video-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* keep text near bottom */
  padding: 40px 8%;
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 42%) 50%, rgb(255 255 255 / 76%) 100%);
  box-sizing: border-box;
}



.video-text h1 {
  font-size: 48px;
  font-weight: 500;
  width: 80%;
  line-height: 60px;
  color: var(--color-text);
}

.video-text h1 span {

  background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}








/* ======= RESPONSIVE ======= */

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .video-text h1 {
    font-size: 2.6rem;
    width: 80%;
  }

  .features__inner {
    gap: 20px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .video-text {
    padding: 25px 6%;
  }

  .video-text h1 {
    font-size: 28px;
    width: 90%;
  }

  .features__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 10px;
  }

}

/* Mobile (below 767px) */
@media (max-width: 767px) {
  .feature-video {
    max-height: 50vh;
  }

  .video-text {
    padding: 20px 5%;
    text-align: center;
  }

  .video-text h1 {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }

  .btn-container {
    justify-content: center;
  }

  .features__inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}


/* hero section start */
.hero-section {
  width: 100%;
  min-height: 90vh; /* adjusts hero height */
  background-color: #ffffff; /* white background */
  display: flex;
  align-items: center;
  padding: 100px 30px 0px ;
  box-sizing: border-box;
}

.hero-content {
  width: 70%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  color: var(--color-text, #000);
}

.hero-content h1 span {
  background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: normal;
}

.hero-para {
  font-size: 18px;
  color: #333;
  max-width: 700px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-para {
    font-size: 16px;
  }
}

/* Mobile (below 767px) */
@media (max-width: 767px) {
  .hero-section {
    padding: 30px 0px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-para {
    text-align: center;
    font-size: 15px;
  }

  .hero-btns {
    justify-content: center;
  }
}





.gradient-border-wrapper {
  padding: 0.8px;
  margin: 0px 0px;
  border-radius: 16px;
  background: linear-gradient(90deg, #FF38BB, #FF8038, #F5BE66);
  display: inline-block;
}

.metrics-container {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background-color: #FAFAF5;
  box-shadow: 0 0 5px rgba(255, 192, 203, 0.2);
  max-width: 1000px;
}

.counter {
  position: relative;
  flex: 1;
  padding: 15px;
}

.counter:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #fcb045, #fd1d1d, #833ab4);
}


.counter:last-child {
  border-right: none;
}

.counter-value {
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(to left, #ff38bb 0%, #ff8c0c 100%);

  background-clip: text;
  -webkit-background-clip: text;
  /* for Safari/Chrome */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* ensures gradient shows properly */
}


.counter-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.4;
  text-align: start;
}

@media (max-width: 768px) {
  .metrics-container {
    flex-direction: column;
  }

  .counter {
    border-right: none;
    border-bottom: 1px solid #fce4ec;
  }

  .counter:last-child {
    border-bottom: none;
  }
}

/* Counter end */


.why_we_exist_1 {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-image: url("../img/home1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.what_we_do_1 {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-image: url("../img/home2-new.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Icon with background */
.feature-icon {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.feature-icon .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 150px;
  z-index: 1;
}

.feature-icon .icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 15px;
  z-index: 2;
}

/* Text */
.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* Orange Bar */
.feature-bar {
  background: #f15a29;
  text-align: start;
  padding: 10px 20px;
  /* margin: 0px 15px; */
}

.feature-bar p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}



.space {
  display: flex;
  align-items: center;
  /* margin: 15px; */
  background: white;
  padding-left: 80px;
  border: 2px solid #d6d6d6;
  justify-content: space-between;
  height: var(--space-height);
}



.section {
  margin: 10px 10px;
  background-color: white;
}

.section-content{
  margin: 10px 0px;
  background-color: white;
  padding: 0px 80px;
}


.side-text {
  background-color: black;
  font-size: 10px;
  text-transform: uppercase;
  color: white;
  padding: 10px 5px;
  /* display: inline-block; */
  margin: 15px 2px;
  font-weight: 700;
  border-radius: 2px;
  text-align: center;
}

.card {
  background: #fafaf5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin: 0px 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}




.card * {
  position: relative;
  z-index: 1;
}

.image-placeholder img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.card:hover .image-placeholder img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.card h4 {
  color: #171717;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;  
}

.card h4 span{
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;  
}

.card:hover h4 {
  color: var(--color-text);
}

.card .date {
  color: var(--color-grey);
  font-size: 12px;
  margin: 10px 0px;
  display: flex;
  align-items: center;
}

.card .date::before {
  content: '';
      width: 6px;
    height: 6px;
    background-color: #0c0c0c;
  display: inline-block;
  margin-right: 8px;  /* space between dot and text */
}

.card .date::after {
  content: '';
  flex-grow: 1;        /* line takes remaining space */
  height: 0.1px;         /* line thickness */
  background-color: #ddd;
  margin-left: 10px;   /* space between date text and line */
}


.card-detail{
  color: var(--color-text);
font-size: 16px;
font-style: normal;
font-weight: 400;
   margin-top: 10px;
}


.line {
  height: 30px;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 15px;
}

.line.blue {
  background-color: #93C5FD;
}

.line.orange {
  background-color: #FB923C;
}

.line.gold {
  background: linear-gradient(90deg, #FBC63F 0%, #CD9300 100%);
}

.bold-text {
  color: #525252;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.description {
  color: #525252;
  font-size: 14px;
  height: 100%;
  font-weight: 400;
  line-height: 24px;
  padding: 15px 0;
}

.button {
  height: 48px;
  padding: 12px 24px;
  background-color: #262626;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #333;
}


.btn-corner {
  position: relative;
  display: inline-block;
  background-color: #F16324;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  width: fit-content;
  padding: 8px 16px;
  line-height: 20px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.btn-corner:hover {
  background-color: #E15314;
}

/* ---- All corner icons ---- */
.btn-corner::before,
.btn-corner::after,
.btn-corner .corner {
  content: "";
  position: absolute;
  width: 6px;
  height:6px;
  background: url("../img/icons/corner-icon-black.svg") no-repeat center/contain;
}

/* Top-left */
.btn-corner::before {
  top: -3px;
  left: -3px;
}

/* Top-right */
.btn-corner::after {
  top: -3px;
  right: -3px;
  transform: rotate(90deg);
}

/* Bottom-left */
.btn-corner .bottom-left {
  bottom: -3px;
  left: -3px;
  transform: rotate(270deg);
}

/* Bottom-right */
.btn-corner .bottom-right {
  bottom: -3px;
  right: -3px;
  transform: rotate(180deg);
}

/* Hover effect */
.btn-corner:hover::before {
  top: -2px;
  left: -2px;
}

.btn-corner:hover::after {
  top: -2px;
  right: -2px;
}

.btn-corner:hover .bottom-left {
  bottom: -2px;
  left: -2px;
}

.btn-corner:hover .bottom-right {
  bottom: -2px;
  right: -2px;
}


.text-center{
  text-align: center;
}


.about-section {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}


.left {
  flex: 1;
  padding: 60px 52px 60px 52px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* background-color: #ffffff; */
}


.left2 {
  flex: 1;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* background-color: #ffffff; */
}



.main-heading-content {

  padding: 80px 60px 80px 60px;
  text-transform: capitalize;
}



.main-para-content {

  padding: 90px 0px 120px 60px;
  text-transform: capitalize;
}


.left h1 {
  color: var(--color-text);
  font-size: 32px;
  font-weight: 400;
  /* margin-bottom: 30px; */
}

.main-heading {
  font-size: 40px !important;
  line-height: 60px !important;
  font-weight: 500 !important;
}

h1 {
  color: var(--color-text);
  font-size: 36px;
  font-weight: 500;
  /* margin-bottom: 30px; */
}

h2 {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 400;
  /* margin-bottom: 30px; */
}

h3 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 100;
}


.left p {
  color: var(--color-grey);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
}

.left2 p {
  color: var(--color-grey);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
}


.right {
  display: flex;
  flex-direction: column;
  /* justify-content: center;  */
  align-items: center;
  text-align: start;
  height: 100%;
}

.right p {
  color: var(--color-grey);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin: 0;
  /* remove default margin */
  background: white;
  padding-right: 20px;
}

.highlight {
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.highlight-heading {
  font-family: Inter, sans-serif;
  font-weight: 500;
  line-height: 40px;
  background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 🪄 Trick: reset gradient per line */
  background-repeat: repeat;
  background-size: 100% 40px;
  /* 40px = line-height */
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;

  margin-bottom: 30px;
}


p .highlight {
  font-size: 16px;
}





.right .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures entire image fits inside container */
  display: block;
}

.typing-effect {
  font-weight: 500 !important;
  font-size: 32px;
  color: #fff;
  white-space: normal;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #fff;
  /* min-height: 20px; */
  /* increased height to accommodate 2 lines */
  line-height: 1.4;
  height: 150px;
  margin-bottom: 1rem;
}

.typing-effect::after {
  content: "";
  animation: blink 0.7s step-end infinite;
  margin-left: 2px;
  color: #FF8038;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}






/* Case-study start */


.case-study {
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.case-study .case-image {
  width: 100%;
  height: auto;
  /* maintains aspect ratio */
  object-fit: cover;
  /* crops nicely if you fix height */
  border-radius: 12px;
  /* optional for rounded edges */
  display: block;
}

/* Optional: if you want a fixed height, use this */
@media (min-width: 992px) {
  .case-study .case-image {
    height: 100%;
    object-fit: cover;
  }
}


.case-study-bottom {
  border-radius: 15.286px;
  border: 0.955px solid var(--color-grey-83, #d5d3d1bd);
  background: #FAFAF5;
  padding: 10px 40px;
  margin: 06px 20px 16px;
}

/* new wrapper for layout */
.case-bottom-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.case-bottom-logo img {
  width: 120px;
  height: auto;
}

.case-bottom-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
}

.case-bottom-text p span {
  font-size: 16px;
  display: block;
  margin-top: 8px;
  color: #555;
}

.case-bottom-text p img {
  width: 20px;
  height: auto;
  position: relative;
  top: -6px;
}

.case-bottom-text p img:last-of-type {
  /* transform: scaleX(-1) ; */
  margin-left: 6px;
  top: 6px;
}

.case-bottom-text p img:first-of-type {
  margin-right: 6px;
}

/* ✅ responsive for mobile */
@media (max-width: 768px) {
  .case-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .case-bottom-logo img {
    width: 100px;
    margin-bottom: -30px;
  }
}



.case-study-detail {
  background: #FAFAF5;
  border: 1px solid #ddd;
  border-radius: 15.286px;
  padding: 27px;
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.case-study-card {
  /* background-color: #fff; */
  color: #000;
}

.case-study-card .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;

}

.case-study-card h2 {
  font-size: 28px;
  font-weight: 500;
  padding: 30px 0px;
}

.case-study-card .highlight {
  font-size: 24px;
  font-weight: 600;
  line-height: 10px;
}

.case-study-card .detail {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;

}

.case-study-card .impact-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #f7931e;
  border-radius: 1px;
  overflow: hidden;
}

/* ===== IMPACT GRID 2 ===== */
.impact-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: linear-gradient(90deg, #f7931e, #f25f4c);
  border-radius: 1px;
  overflow: hidden;
}

.impact-grid2 .impact-box {
  background: #000;
  color: #fff;
  padding: 25px 20px;
  text-align: left;
}

.impact-grid2 .impact-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #f7931e;
  margin-bottom: 1px;
}

.impact-grid2 .impact-box p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

/* Make first box full width */
.impact-grid2 .impact-box:first-child {
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 600px) {
  .impact-grid2 {
    grid-template-columns: 1fr;
  }
}



.impact-box {
  background: #ffffff;
  color: #fff;
  padding: 30px 20px;
  /* text-align: center; */
}

.impact-box h4 {
  font-size: 28px;
  font-weight: 400;
  color: #FF790B;
  margin-bottom: 6px;
}

.impact-box p {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}




/* Sticky heading */
.heading {
  top: 0;
  /* background: white; */
  z-index: 11;
  text-align: left;
  padding: 30px 20px;
  border-bottom: 1px solid #ddd;
}


.heading2 {
    top: 0;
    z-index: 11;
    text-align: left;
    padding: 30px 10px;
    display: flex;
    flex-direction: column; 
    gap: 18px; 
}



.heading h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 500;
}


.gradient-text{
   background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: repeat;
  background-size: 100% 40px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}


/* .gradient-text {

  background: linear-gradient(270deg, #FF38BB 4.65%, #ff5c00 56.45%, #ff7527 87.97%, #FF8038 109.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
} */



.case-card-wrapper {
  padding: 0.8px 0.8px 0.8px;
  margin: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #FF38BB, #FF8038, #F5BE66);
  display: inline-block;
}

.case-card-inner {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(255, 192, 203, 0.2);
  max-width: 1000px;
}

.case-metric {
  position: relative;
  flex: 1;
  padding: 24px 12px 24px 32px;
  text-align: start;
}

.case-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, #fcb045, #fd1d1d, #833ab4);
}

.case-metric:last-child {
  border-right: none;
}

.metric-value {
  font-size: 20px;
  font-weight: 800 !important;
  line-height: 1.2;
  /* background: linear-gradient(270deg, #FF38BB 4.25%, #FF8038 51.61%, #F5BE66 80.43%, #F4DCA8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}


.metric-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
  font-weight: 500;
  text-align: start;
}

@media (max-width: 768px) {
  .case-card-inner {
    flex-direction: column;
  }

  .case-metric {
    border-right: none;
    border-bottom: 1px solid #fce4ec;
  }

  .case-metric:last-child {
    border-bottom: none;
  }
}
/* Case study end */





/* Footer Start */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);

}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 15px auto !important;
  padding: 15px 20px !important;
  max-width: 1200px;
  background: #fff;
  border: 1.5px solid #d5d3d1bd;
  border-radius: 4px;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Footer Nav Container */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  /* space between menu and social */
}

/* Menu */
.footer-nav .menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-nav .menu li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 0px;
  transition: background 0.2s ease-in-out;
}

.footer-nav .menu li a:hover {
  background: var(--color-hover);
}

/* Social Media */
.footer-nav .social-media {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.footer-nav .social-media li a img {
  height: 20px;
  width: 20px;
  transition: transform 0.2s ease;
}

.footer-nav .social-media li a:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav .menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-nav .social-media {
    gap: 10px;
  }
}

    /* Our Partner Start */
  .company-carousel {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 20px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scrollCarousel 15s linear infinite;
  width: max-content;
}

.carousel-logo {
  height: 60px;
  margin-right: 0; /* No space between logos */
  object-fit: contain;
  aspect-ratio: 6/2;
  flex-shrink: 0;
  padding: 10px 30px;
  mix-blend-mode: color-burn;
  transition: transform 0.3s ease;
}

.carousel-logo:hover {
  transform: scale(1.1);
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .carousel-logo {
    height: 45px;
    padding: 0 20px;
  }

  .company-carousel {
    padding: 15px 0;
  }
}
            /* Our Partner end */


  