@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins&display=swap");

:root {
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  /* Colors */
  --clr-bg: #f7f6f6;
  --clr-black: #000;
  --clr-black-69: rgba(0, 0, 0, 0.69);
  --clr-black-50: rgba(0, 0, 0, 0.5);
  --clr-black-20: rgba(0, 0, 0, 0.2);
  --clr-white: #fff;
  --clr-purple: #9162a8;
  --clr-purple-shadow: rgba(193, 68, 239, 0.34);
  --clr-gradient-start: rgba(255, 1, 217, 0.88);
  --clr-gradient-mid: rgba(161, 0, 255, 0.88);
  --clr-gradient-end: rgba(12, 0, 242, 0.88);

  /* Radii & Shadows */
  --radii-sm: 0.3125rem;
  /*5px*/
  --radii-md: 0.75rem;
  /*12px*/
  --radii-lg: 1.5rem;
  /*24px*/
  --shadow-purple: 0 0.375rem 0.5625rem var(--clr-purple-shadow);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto;
  overflow-x: hidden;
}

body {
  overflow-y: auto !important;
}

body {
  margin: 0;
  background: var(--clr-bg);
  font-family: var(--font-primary);
  color: var(--clr-black);
}


a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 1rem;
  padding: 1rem;
  /* list-style: none; */
}

/* Typography Helpers */
h1,
.section-title,
.section-title-highlight {
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.75rem, 4vw, 3.125rem);
}

.section-title {
  /*50px*/
  color: var(--clr-black);
  text-align: center;
}

.section-title-highlight {
  font-family: var(--font-primary);
  background: linear-gradient(150deg,
      var(--clr-gradient-start) 0.77%,
      var(--clr-gradient-mid) 50.57%,
      var(--clr-gradient-end) 85.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links & Nav */
ul li a {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: var(--clr-black);
}

/* Buttons */
button,
.contact-button,
.gradient-btn {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  /*16px or 20px overridden below*/
  font-weight: 400;
  cursor: pointer;
  border: none;
  border-radius: var(--radii-sm);
  text-align: center;
}

.contact-button {
  width: 7.5625rem;
  /* 121px */
  height: 2.375rem;
  /* 38px */
  flex-shrink: 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  /* 20px */
  padding: 0.125rem 0.875rem;
  /* 2px 14px */
  color: var(--clr-white);
  border-radius: 0.4976rem;
  /* 7.962px */
  border: 0 solid #F7F6F6;
  background: #9162A8;
  box-shadow: 0 0.6221rem 0.9331rem 0 rgba(193, 68, 239, 0.34);
  /* Converted 9.953px & 14.929px */
}



.contact-button:hover {
  background: #fae9fb;
  color: var(--clr-black);
}

.gradient-btn {
  padding: 0.46rem 0.75rem;
  /*7.39px 11.97px*/
  background: #ac6fad;
  box-shadow: 0 0.391rem 0.586rem rgba(172, 111, 173, 0.2);
  color: var(--clr-white);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

/* Footer */
/* === Responsive Footer Enhancements === */

.footer-section {
  background: var(--clr-black-20);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radii-md);
  padding: 2rem;
}

.footer-logo {
  width: 19.6765rem;
  /* 314.82px */
  height: auto;
  object-fit: contain;
}

.footer-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-empowering {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  color: var(--clr-black-69);
}

.footer-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu li a {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--clr-black-69);
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--clr-black);
  text-decoration: underline;
}

.media-icon-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: center;

}

.media-icon {
  height: 1.75rem;
  /* 28px */
  width: auto;
  transition: transform 0.3s ease;
}

.media-icon:hover {
  transform: scale(1.1);
}

.copy-right {
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  color: var(--clr-black-50);
  margin-top: 1rem;
}


/* Stats */
.stats-font {
  font-size: clamp(0.725rem, 2.2vw, 1.25rem);
  color: rgba(10, 0, 0, 0.7);
  text-align: center;
}

/* Partners & Clients */
.our-part-title,
.our-client-title {
  font-size: clamp(1.5rem, 3vw, 2.0649rem);
  /*33.039px*/
  font-weight: 600;
  color: #050000;
}

.our-part-list,
.our-client-list {
  font-size: clamp(1rem, 2.4vw, 1.375rem);
  /* 16px to 22px */
  line-height: 1.5;
  /*26.94px/22*/
  color: rgba(0, 0, 0, 0.7);
}

/* 
.our-part-list li { margin-left: -6%; }
.our-client-sublist { margin-left: -3%; } */

.our-part-card,
.our-client-card {
  background: rgba(235, 244, 247, 0.39);
  border-radius: var(--radii-lg);
  box-shadow: 1.6875rem 1.1875rem 2.40625rem 0.25rem rgba(60, 0, 255, 0.25);
  backdrop-filter: blur(5.3689rem);
  /*85.9px*/
}

/* .partner-logo {
  margin: 0.9375rem;
}

.partner-logo:hover {
  filter: grayscale(0);
} */
/* <style> */
.partner-logo-img {
  height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo-img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Force slide width */
.partner-logo-swiper .swiper-slide {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container style */
.partner-logo-swiper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

/* Fade edge gradient */
.partner-logo-swiper::before,
.partner-logo-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-logo-swiper::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg), rgba(255, 255, 255, 0));
}

.partner-logo-swiper::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg), rgba(255, 255, 255, 0));
}

/* </style> */

/* Subscribe / Newsletter */
.subscribe-box {
  max-width: 48.8125rem;
  /*781px*/
  padding: 2rem 0;
  margin: 0 auto;
  border-radius: var(--radii-md);
  border: 0.064rem solid rgba(16, 4, 14, 0.22);
  background: linear-gradient(95deg,
      rgba(232, 232, 232, 0.21) 1.72%,
      rgba(164, 164, 164, 0.19) 86.77%,
      rgba(130, 130, 130, 0.28) 99.48%);
}

.newsletter-form {
  margin: 4rem 0 0 7%;
}

.subcribe-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  padding: 0.3125rem 0;
}

input[type="email"] {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 0;
  padding: 0.6875rem 12.5rem 0.625rem 0.75rem;
  border-radius: 0.313rem;
  background: rgba(24, 23, 23, 0.1);
  display: flex;
  width: 30.4375rem;
  height: 2.3125rem;

}

input[type="email"]::placeholder {
  color: var(--clr-black) !important;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 0 1rem; */
  background: transparent;
  z-index: 1000;
}

.navbar-nav>.nav-item {
  position: relative;
  padding: 0 0.3rem;
}

.navbar-nav>.nav-item>.nav-link {
  color: #000;
  font-family: 'Inter';
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
}

.navbar-nav .nav-link:hover {
  color: #6c5ce7;
}

/* Subnav Popover */
.subnav-popover {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(-50%);
  background: #e6e6e6;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: fadeIn 0.2s ease-in-out;
  white-space: normal;
  word-break: break-word;
  width: max-content;
  min-width: 280px;
  max-width: 95vw;
}

.subnav-popover.wide {
  min-width: 460px;
}

.subnav-popover.wide-3col {
  left: 50%;
  padding: 2rem;
  width: 800px;
}

.subnav-arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e6e6e6;
}

.nav-item:hover .subnav-popover,
.nav-item:focus-within .subnav-popover {
  display: block;
}

.subnav-popover .nav-link {
  display: block;
  color: #000;
  font-family: 'Inter';
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 0.9375rem);
  font-weight: 300;
  line-height: 1.4;
  padding: 0.4rem 0;
  white-space: normal;
  word-break: break-word;
}

.subnav-popover .nav-link:hover {
  color: #6c5ce7;
}

/* Scroll Animation */
/* .scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: none;
  will-change: opacity, transform;
}

.scroll-animate.visible {
  animation: fadeSlideUp 0.6s ease-out forwards;
} */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate:nth-child(2) {
  transition-delay: 0.2s;
}

/* and so on */


@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */


/* overflow checking hide after checked */
/* * {
  outline: 1px solid rgb(31, 17, 231);
} */

/* end check */
/* Responsive: Tablets */
/* =====================================
   Responsive CSS (Single Combined File)
   ===================================== */

/* Phones: max-width 576px */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 34px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.75rem;
  }

  .navbar-nav>.nav-item>.nav-link {
    font-size: 15px;
  }

  .section-title,
  .section-title-highlight {
    font-size: 1.75rem;
    text-align: center;
  }

  .our-part-title,
  .our-client-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .our-part-list,
  .our-client-list {
    font-size: 1rem;
    text-align: left;
  }

  .our-part-list li,
  .our-client-sublist {
    margin: auto;
  }

  .subnav-popover {
    min-width: 15rem;
    padding: 1rem;
    font-size: 0.875rem;
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .subnav-popover.wide,
  .subnav-popover.wide-3col {
    min-width: 100% !important;
  }

  .subnav-arrow {
    display: none;
    left: 0.875rem;
  }

  .navbar {
    position: inherit;
  }

  ul li a {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-menu,
  .footer-title,
  .footer-empowering {
    margin-left: 0;
    text-align: center;
  }

  .footer-logo {
    width: 12rem;
    margin: 0 auto;
    height: auto;
  }

  .media-icon-container {
    display: flex;
    justify-content: center;
    margin: 1rem auto 0 auto;
  }

  .copy-right {
    font-size: 0.875rem;
  }



  .subscribe-box {
    padding: 1rem;
    width: 100%;
    border-radius: var(--radii-sm);
  }

  .newsletter-form {
    margin: 2rem 0 0 0;
    padding: 0 1rem;
    text-align: center;
  }

  .subcribe-title {
    font-size: 1.5rem;
  }

  input[type="email"] {
    font-size: 0.9375rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
  }

  .contact-button,
  .gradient-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }

  .divider {
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-section {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .footer-section .col-md-3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

/* Tablets: 577px–991.98px */
@media (min-width: 577px) and (max-width: 991.98px) {
  .footer-logo {
    width: 15rem;
  }

  .footer-section {
    padding: 2rem 1.5rem;
  }

  .footer-title {
    font-size: 1.125rem;
  }

  .footer-section .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

/* All devices below 992px */
@media (max-width: 991.98px) {

  .subnav-popover,
  .subnav-popover.wide,
  .subnav-popover.wide-3col {
    display: none;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
    background: #f2f2f2;
    box-shadow: none;
    border-radius: 0;
    padding: 1rem;
    margin-top: 0;
  }

  .nav-item.active .subnav-popover {
    display: block !important;
  }

  .subnav-arrow {
    display: none;
  }

  .section-title,
  .section-title-highlight {
    font-size: 2.25rem;
  }

  .our-part-title,
  .our-client-title {
    font-size: 1.75rem;
  }

  .our-part-list,
  .our-client-list {
    font-size: 1.125rem;
  }

  .footer-logo {
    width: 15rem;
    height: auto;
  }

  .footer-content {
    gap: 0.5rem;
  }

  .footer-title {
    font-size: 1.125rem;
  }

  .footer-empowering {
    margin: auto;
    font-size: 0.9375rem;
  }

  .media-icon-container {
    margin: auto;
    justify-content: center;
  }

  .subscribe-box {
    padding: 1.25rem;
  }

  .newsletter-form {
    margin: 2rem 0 0 3%;
  }

  .contact-button,
  .gradient-btn {
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
  }

  .partner-logo {
    margin: 0.5rem;
  }

  .divider {
    border-right: 1px solid #ddd;
    stroke-width: 1px;
    stroke: #ddd;
    border-bottom: none;
  }
}

/* Large Devices: 992px–1199.98px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-section {
    padding: 2.5rem 2rem;
  }
}

/* Extra Large Screens: 1200px and up */
@media (min-width: 1200px) {
  .footer-section {
    padding: 3rem 2.5rem;
    max-width: 1320px;
    margin: 0 auto;
  }

  .divider {
    border-right: 1px solid #ddd;
    stroke-width: 1px;
    stroke: #ddd;
    border-bottom: none;
  }
}

/* navabr mobile view toggler */
/* Hide default navbar for mobile */
@media (max-width: 991.98px) {
  .navbar {
    display: none !important;
  }
}

/* Mobile Navbar */
.mobile-navbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}

.mobile-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-brand img {
  height: 40px;
}

.mobile-menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  padding-top: 1rem;
}

.mobile-nav-links li {
  margin-bottom: 0.5rem;
}

.accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
}

.submenu {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
  display: none;
}

.submenu li {
  margin: 0.25rem 0;
}

.contact-button {
  background-color: #9162A8;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 0.5rem;
}