/* ==================== GLOBAL RESET & BASE STYLES START ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}
/* ==================== GLOBAL RESET & BASE STYLES END ==================== */

/* ==================== HEADER SECTION START ==================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: 18px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 200px;
}

/* MENU STYLES */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  background: #123A5F;
  padding: 22px 40px;
  border-radius: 60px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a.active {
  color: #67c23a;
}

.nav-menu a:hover {
  color: #1ea2ff;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
/* ==================== HEADER SECTION END ==================== */

/* ==================== HERO / BANNER SECTION START ==================== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  max-width: 700px;
  padding-top: 120px;
}

.hero-left h1 {
  color: #fff;
  font-size: 67px;
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2em;
}

.hero-left h1 span {
  color: #1CA7E6;
}

.hero-left p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 40px;
}

/* HERO BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #6ec643, #0059ff);
  color: #fff;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
  line-height: 1em;
}

.hero-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #0059ff, #6ec643);
}

.hero-btn span {
  margin: 0 0 5px 0;
  font-size: 22px;
}
/* ==================== HERO / BANNER SECTION END ==================== */

/* ==================== MARQUEE SECTION START ==================== */
.marquee-section {
  width: 100%;
  background: #69b53d;
  overflow: hidden;
  padding: 16px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeLoop 25s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 70px;
  font-family: 'Outfit', sans-serif;
}

/* MARQUEE ANIMATION */
@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==================== MARQUEE SECTION END ==================== */

/* ==================== ABOUT US SECTION START ==================== */
.about-sec {
  background: #f7f7f7;
}

.sub-title {
  font-size: 13px;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.main-title span {
  color: #0d6efd;
}

.about-sec p {
  color: #666;
  line-height: 1.8;
}

.about-imgs {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: center;
}

.about-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.img-one {
  width: 250px;
  height: 500px;
  border: 2px solid #bde0ff;
  border-radius: 35px;
}

.img-two {
  width: 250px;
  height: 500px;
  border: 2px solid #bde0ff;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 60px;
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #dff1ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 22px;
  margin-right: 15px;
}

.info-box h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
  margin: 0;
}
/* ==================== ABOUT US SECTION END ==================== */

/* ==================== COMING SOON / HERO SEC SECTION START ==================== */
.hero-sec {
  min-height: 100vh;
  background: url('../images/8.png') center center/cover no-repeat;
  padding: 80px 0;
}

.coming-tag {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 15px;
  background: #fff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  margin-bottom: 30px;
}

.hero-sec h2 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #071133;
}

.hero-sec h2 span {
  color: #2563eb;
}

.line {
  width: 100%;
  max-width: 520px;
  height: 2px;
  background: #dbe7ff;
  margin: 20px 0;
}

.info-box {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5ecff;
}

.icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: #216efd24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.info-box p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #111827;
}

.info-box p span {
  color: #2563eb;
  font-weight: 700;
}
/* ==================== COMING SOON / HERO SEC SECTION END ==================== */

/* ==================== SERVICES SECTION START ==================== */
.service-sec {
  background: #edf5f7;
}

.sub-title span {
  width: 40px;
  height: 2px;
  background: #0d6efd;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -4px;
}

.service-card {
  background: #fff;
  border: 1px solid #0154a245;
  border-radius: 15px;
  padding: 20px;
  min-height: 631px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 10px;
}

.service-card a {
  text-decoration: none;
  font-weight: 500;
  color: #0d6efd;
  margin-top: auto;
}

.slider-btn {
  width: 45px !important;
  height: 45px !important;
  background: #cfe2ff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.slider-btn::after {
  font-size: 18px !important;
  color: #000;
  font-weight: 700;
}
/* ==================== SERVICES SECTION END ==================== */

/* ==================== PROCESS SECTION START ==================== */
.process-sec {
  background: #000f2d;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
}

.process-head h5 {
  color: #39d353;
  font-size: 18px;
  font-weight: 600;
}

.process-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
}

.process-row {
  margin-top: 70px;
}

.process-box {
  position: relative;
  text-align: center;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.process-box::after {
  content: "➜";
  position: absolute;
  top: 50px;
  right: -45px;
  color: #9ca3af;
  font-size: 40px;
}

.process-box:last-child::after {
  display: none;
}

.icon-wrap {
  position: relative;
  width: 120px;
  margin: auto;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 35px;
}

.count {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}

.green {
  background: #2ecc71;
}

.blue {
  background: #1877ff;
}

.process-box h4 {
  font-size: 22px;
  margin: 16px 0 10px 0;
  font-weight: 600;
}

.process-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
}

.process-boxs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/17.png") no-repeat center;
  background-size: contain;
  opacity: 1;
  z-index: -1;
  width: 128px;
  top: -63%;
  left: -30%;
}
/* ==================== PROCESS SECTION END ==================== */

/* ==================== BUSINESS IMPACT SECTION START ==================== */
.business-impact {
  background: #fff;
}

.sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1565ff;
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-title span {
  width: 45px;
  height: 3px;
  background: #1565ff;
}

.impact-title {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #05104d;
}

.impact-title span {
  color: #1565ff;
}

.impact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #05104d;
}

/* GRAPH CARD */
.graph-card {
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 15px;
  padding: 16px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  overflow: hidden;
  height: 100%;
}

span.small-heding {
  font-size: 14px;
}

.graph-card h4 {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #05104d;
  margin-bottom: 0px;
}

.graph-wrap {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-height: 320px;
}

.graph-labels {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #05104d;
  margin: 0 0 22px 0;
}

.graph-labels li {
  font-size: 11px;
}

.bars {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  height: 250px;
  border-bottom: 2px solid #dce3ec;
  position: relative;
}

.bars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to top, transparent 0, transparent 48px, #edf2f7 48px, #edf2f7 50px);
}

.bar-box {
  width: 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bar-box span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  animation: numberUp 1.2s ease;
}

.green-text {
  color: #00861b;
}

.bar {
  width: 38px;
  margin: auto;
  border-radius: 12px 12px 0 0;
  position: relative;
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0;
  animation: growBar 1.8s ease forwards;
  overflow: hidden;
}

.bar-box:nth-child(1) .bar {
  animation-delay: .2s;
}

.bar-box:nth-child(2) .bar {
  animation-delay: .5s;
}

.blue {
  background: linear-gradient(to top, #003cff 0%, #156dff 55%, #19b4ff 100%);
}

.green {
  background: linear-gradient(to top, #007b10 0%, #00a91b 55%, #00d923 100%);
}

.bar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 2px 12px rgba(255, 255, 255, .35), inset 0 -10px 15px rgba(0, 0, 0, .12), 0 10px 20px rgba(0, 0, 0, .15);
}

.bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, .25);
  transform: skewX(-20deg);
  animation: shine 2.5s linear infinite;
}

.bar-box p {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #05104d;
  line-height: 1.4;
  margin-bottom: 0;
}

.graph-card h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #00861b;
  margin-top: 13px;
}

/* ANIMATIONS */
@keyframes growBar {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: scaleY(1.08);
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes shine {
  100% {
    left: 140%;
  }
}

@keyframes numberUp {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* BOTTOM BOXES */
.bottom-boxes {
  margin-top: 80px;
}

.impact-box {
  padding: 0px 25px;
  border-right: 2px dashed #c8dcff;
  height: 100%;
}

.impact-box img {
  width: 110px;
  margin-bottom: 25px;
}

.impact-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #05104d;
  margin-bottom: 10px;
}

.impact-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #05104d;
  margin-bottom: 0;
}
/* ==================== BUSINESS IMPACT SECTION END ==================== */

/* ==================== WHY CHOOSE US SECTION START ==================== */
.why-sec {
  background: #1369fe0a;
}

.why-head {
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
}

.why-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #08124d;
  margin-bottom: 18px;
}

.why-head p {
  font-size: 18px;
  line-height: 1.8;
  color: #08124d;
}

.why-title {
  color: #1565ff;
}

.why-box {
  display: flex;
  gap: 22px;
  margin-bottom: 35px;
}

.why-box img {
  width: 50px;
  height: 72px;
  object-fit: contain;
}

.why-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #08124d;
  margin-bottom: 14px;
}

.why-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #08124d;
  margin: 0;
}

.center-img {
  padding: 0 27px;
}

.center-img img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.coming-box {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dfe7ff;
  background: linear-gradient(135deg, #f5eaff 0%, #eefcff 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.coming-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(145, 112, 255, .18), transparent 45%);
}

.coming-badge {
  width: max-content;
  padding: 8px 18px;
  background: #eef4ff;
  color: #1565ff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: auto;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.coming-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.coming-img img {
  width: 100px;
  border: 3px solid #FFF;
  padding: 8px;
  border-radius: 10px;
}

.coming-content h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #08124d;
  margin-bottom: 0px;
}

.coming-content h4 span {
  color: #1565ff;
}

.coming-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #08124d;
  margin: 0;
}
/* ==================== WHY CHOOSE US SECTION END ==================== */

/* ==================== FOUNDER / TEAM SECTION START ==================== */
.sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1565ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.sub-title span {
  width: 35px;
  height: 2px;
  background: #1565ff;
}

.founder-head {
  max-width: 500px;
  margin-bottom: 40px;
}

.founder-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #08124d;
  margin-bottom: 15px;
}

.founder-head h2 span {
  color: #1565ff;
}

.founder-head p {
  font-size: 17px;
  line-height: 1.8;
  color: #08124d;
  margin: 0;
}

.founder-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  border: 1px solid #00000021;
}

.founder-img img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 348px;
  display: block;
}

.founder-content {
  padding: 24px;
}

.founder-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #08124d;
  margin-bottom: 5px;
}

.founder-content span {
  display: block;
  color: #1565ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.founder-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #08124d;
  margin: 0;
}
/* ==================== FOUNDER / TEAM SECTION END ==================== */

/* ==================== FOOTER SECTION START ==================== */
.footer-sec {
  background: linear-gradient(to bottom, #fff 0%, #dfff9f 75%, #e2ffa9 100%);
  overflow: hidden;
  padding: 70px 0;
}

.footer-left {
  padding-top: 20px;
}

.linkedin-logo img {
  width: 160px;
  margin-bottom: 35px;
}

.footer-text {
  font-size: 17px;
  line-height: 2;
  color: #222;
  margin-bottom: 40px;
}

.footer-link {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-mail {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  margin: 35px 0;
}

.footer-address {
  display: block;
  max-width: 700px;
  margin: auto;
  font-size: 24px;
  line-height: 1.8;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

/* FOOTER FORM */
.footer-form {
  background: #050505;
  padding: 45px;
  border-radius: 22px;
}

.footer-form h2 {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: #f3f3f3;
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 17px;
  color: #222;
}

.footer-form textarea {
  height: 200px;
  resize: none;
}

.footer-form button {
  width: 100%;
  border: 0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #69c237, #0057b8);
  transition: .3s;
  line-height: 1em;
  padding: 18px 0;
}

.footer-form button span {
  font-size: 26px;
  margin-left: 12px;
}

.footer-form button:hover {
  transform: translateY(-2px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 10px 0;
  background: linear-gradient(90deg, #0B1F33 0%, #123A5F 50%, #010000 100%);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.footer-logo img {
  width: 180px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-menu a,
.footer-menu span {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
/* ==================== FOOTER SECTION END ==================== */

/* ==================== ICON BOXS (ADDITIONAL) ==================== */
.icon-boxs {
  background: #c8e4f6;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 14px;
}

.icon-boxs img {
  width: 29px;
}
/* ==================== ICON BOXS END ==================== */

/* ==================== RESPONSIVE MEDIA QUERIES START ==================== */
/* LARGE SCREENS (max-width: 1399px) */
@media (max-width: 1399px) {
  .impact-title {
    font-size: 54px;
  }
  .impact-text,
  .impact-box p {
    font-size: 16px;
  }
  .impact-box h3 {
    font-size: 24px;
  }
}

/* DESKTOP (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 64px;
  }
}

/* TABLET (max-width: 1199px) */
@media (max-width: 1199px) {
  .process-box::after {
    display: none;
  }
  .process-head h2 {
    font-size: 38px;
  }
  .process-box h4 {
    font-size: 24px;
  }
  .process-box p {
    font-size: 18px;
  }
  .why-box h3 {
    font-size: 22px;
  }
  .coming-content h4 {
    font-size: 24px;
  }
  .footer-link {
    font-size: 34px;
  }
  .footer-mail {
    font-size: 42px;
  }
  .footer-address {
    font-size: 20px;
  }
}

/* MEDIUM SCREENS (max-width: 1199px) - Process */
@media (max-width: 1199px) {
  .process-box::after {
    display: none;
  }
  .process-head h2 {
    font-size: 38px;
  }
  .process-box h4 {
    font-size: 24px;
  }
  .process-box p {
    font-size: 18px;
  }
}

/* TABLET (max-width: 991px) */
@media (max-width: 991px) {
  .menu-btn {
    display: block;
    z-index: 9999;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #08264a;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px;
    border-radius: 0;
    transition: 0.5s;
    gap: 30px;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-left {
    padding-top: 0px;
  }
  .hero-left h1 {
    font-size: 52px;
  }
  .hero-left p {
    font-size: 21px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10rem 1.3rem 2rem 1.4rem;
  }
  .hero-banner {
    min-height: 439px;
  }
  .hero-sec h2 {
    font-size: 32px !important;
  }
  .hero-sec {
    min-height: 90vh !important;
    background: #f0f8ff !important;
    padding: 22px 0 !important;
  }
  .main-title {
    font-size: 40px;
  }
  .about-imgs {
    margin-bottom: 0px;
  }
  .img-one {
    width: 200px !important;
    height: 340px;
  }
  .img-two {
    width: 200px !important;
    height: 450px;
  }
  .main-title {
    font-size: 42px;
  }
  .service-card h4 {
    font-size: 22px;
  }
  .impact-title {
    font-size: 42px;
  }
  .why-head h2 {
    font-size: 36px;
  }
  .why-box {
    margin-bottom: 35px;
  }
  .center-img {
    margin: 20px 0;
  }
  .founder-head h2 {
    font-size: 36px;
  }
  .founder-img img {
    height: 320px;
  }
  .footer-form {
    padding: 35px 25px;
  }
  .footer-form h2 {
    font-size: 34px;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* SMALL TABLET (max-width: 767px) */
@media (max-width: 767px) {
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10rem 1.3rem 2rem 1.4rem;
  }
  .hero-banner {
    min-height: 850px;
  }
  .hero-left h1 {
    font-size: 42px;
  }
  .hero-left p {
    font-size: 18px;
  }
  .hero-btn {
    padding: 18px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .hero-banner {
    min-height: 439px;
  }
  .hero-sec h2 {
    font-size: 32px !important;
  }
  .hero-sec {
    min-height: 90vh !important;
    background: #f0f8ff !important;
    padding: 22px 0 !important;
  }
  .process-sec {
    padding: 70px 0;
  }
  .process-head h2 {
    font-size: 30px;
  }
  .process-box {
    padding: 0 20px;
  }
  .impact-title {
    font-size: 34px;
  }
  .impact-text {
    font-size: 16px;
  }
  .graph-card h4 {
    font-size: 18px;
  }
  .graph-card h5 {
    font-size: 24px;
  }
 .impact-box {
    border-right: 0;
    border-bottom: 2px dashed #c8dcff;
    padding-bottom: 30px;
}
  .why-head h2 {
    font-size: 32px;
  }
  .why-head p,
  .why-box p,
  .coming-content p {
    font-size: 15px;
  }
  .why-head {
    max-width: 850px;
    margin: auto;
    margin-bottom: 30px;
  }
  .center-img {
    padding: 0 0px;
  }
  .why-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .coming-flex {
    flex-direction: column;
    text-align: center;
  }
  .coming-img img {
    width: 100px;
    border: 3px solid #FFF;
    padding: 8px;
    border-radius: 10px;
  }
  .coming-content h4 {
    font-size: 22px;
  }
  .founder-head h2 {
    font-size: 32px;
  }
  .founder-head p,
  .founder-content p {
    font-size: 14px;
  }
  .founder-content {
    padding: 20px;
  }
  .founder-content h3 {
    font-size: 20px;
  }
  .footer-text {
    font-size: 15px;
  }
  .footer-link {
    font-size: 28px;
  }
  .footer-mail {
    font-size: 34px;
  }
  .footer-address {
    font-size: 18px;
  }
  .footer-form h2 {
    font-size: 28px;
  }
  .footer-form input,
  .footer-form textarea {
    font-size: 15px;
  }
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-sec {
    padding: 30px 0;
  }

  .bottom-boxes{
    margin-top: 20px;
  }
}

/* MOBILE (max-width: 576px) */
@media (max-width: 576px) {
  .about-imgs {
    gap: 12px;
  }
  .img-one {
    width: 200px !important;
    height: 230px;
  }
  .img-two {
    width: 200px !important;
    height: 300px;
  }
  .main-title {
    font-size: 32px;
  }
  .info-box h5 {
    font-size: 17px;
  }
  .main-title {
    font-size: 32px;
  }
  .service-card {
    padding: 22px;
  }
  .service-card h4 {
    font-size: 20px;
  }
  .slider-btn {
    display: none !important;
  }

  .bottom-boxes{
    margin-top: 20px;
  }
}

/* MOBILE (max-width: 480px) */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 32px;
    line-height: 1.4;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10rem 1.3rem 2rem 1.4rem;
  }
  .hero-left p {
    font-size: 16px;
  }
  .hero-banner {
    min-height: 439px;
  }
  .hero-btn {
    padding: 18px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .hero-sec h2 {
    font-size: 32px !important;
  }
  .hero-sec {
    min-height: 90vh !important;
    background: #f0f8ff !important;
    padding: 22px 0 !important;
  }

  .bottom-boxes{
    margin-top: 20px;
  }
}
/* ==================== RESPONSIVE MEDIA QUERIES END ==================== */