/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

button,
input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  background: #2487ce;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 45px rgba(36, 135, 206, 0.25);
}

button:hover,
input[type=submit]:hover {
  transform: translateY(-1px);
  background: #3e9bdd;
}

button:focus-visible,
input[type=submit]:focus-visible {
  border-radius: 4px;
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


#footer .footer-top {
  padding: 40px 0 30px;
  background: var(--footer-bg);
  border-bottom: 1px solid var(--footer-border);

}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

/* Logo wrapper */
#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* Logo link */
#header .logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #0f172a;
  padding-left: 26px; /* space for the dot */
}

/* Gradient dot to the left of the wordmark */
#header .logo a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2487ce, #22d3ee);
  box-shadow: 0 0 0 4px rgba(36, 135, 206, 0.18);
}

/* Gradient text for "Unify" */
#header .logo a span,
#header .logo a {
  background: linear-gradient(90deg, #0f172a, #2487ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle hover effect */
#header .logo a:hover::before {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 0 6px rgba(36, 135, 206, 0.22);
}


#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #16507b;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Subtle underline on hover/active */
.navbar a.nav-link::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 4px;
  height: 2px;
  width: 50px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2487ce, #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.navbar a:hover::after,
.navbar .active::after,
.navbar li:hover > a::after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #2487ce;
}


.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2487ce;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
    border: none;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 16px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2487ce;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2487ce;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* Genetic Button */
.getstarted,
.getstarted:focus {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
    border: none;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}

.getstarted:hover,
.getstarted:focus:hover {
  color: #fff;
  background: #3194db;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: auto;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6); /* slightly more transparent */
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}
/* Make inner content above overlay */
#hero .container {
  position: relative;
  z-index: 1;
}

/* Heading area */

.hero-heading h1,
.hero-heading h2,
.hero-heading .hero-pill {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-heading h1,
  .hero-heading h2,
  .hero-heading .hero-pill {
    margin-left: 0;
    margin-right: 0;
  }
}



form input,
form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 0.9rem;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):not([type="file"]) {
  height: 44px;
}

form textarea {
  padding: 10px 12px;
  resize: vertical;
}

form input:focus,
form textarea:focus {
  border-color: #2563eb;
  background: #f9fbff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.hero-heading .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d1e9ff;
  color: #2563eb;
  margin-bottom: 12px;
}

#hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#hero h2 {
  color: #6b7280;
  margin: 0 0 22px;
  font-size: 1rem;
}

/* CTA row */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

#hero .btn-get-started {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  transition: 0.2s ease;
  margin-top: 4px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border: none;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  transform: translateY(-2px);
  box-shadow: 0 26px 65px rgba(37, 99, 235, 0.4);
}

.hero-meta {
  font-size: 0.85rem;
  color: #64748b;
}

/* Icon boxes row */

#hero .icon-boxes {
  margin-top: 60px;
}

#hero .icon-box {
  padding: 16px 16px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid #e2f0eb;
}

#hero .icon-box .icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2563eb;
  background: #eff6ff;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

#hero .icon-box .copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#hero .icon-box .title {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 16px;
}

#hero .icon-box .title a {
  color: #0f172a;
  transition: color 0.2s ease;
  text-decoration: none;
}

#hero .icon-box .description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #6b7280;
}

/* Icon box hover */

#hero .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  background: #ffffff;
}

#hero .icon-box:hover .icon {
  transform: translateY(-2px);
  background: #2563eb;
  color: #eff6ff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

#hero .icon-box:hover .title a {
  color: #2563eb;
}

/* Responsive tweaks */

@media (max-width: 992px) {
  #hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero-heading {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    padding-top: 40px !important;
  }

}

@media (max-width: 576px) {
  #hero .icon-boxes {
    margin-top: 44px;
  }

  .hero-heading {
    padding-top: 40px !important;
  }

  #hero .icon-box {
    padding: 14px 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/* =========================
   Generic section heading
   ========================= */

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

/* Animated gradient accent bar */
.section-heading-accent {
  width: 5px;
  height: 60px;
  background: linear-gradient(180deg, #2563eb, #38bdf8);
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: sh-accent-grow 0.6s ease-out forwards;
}

/* Accent animation */
@keyframes sh-accent-grow {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Right-hand text block */
.section-heading-body {
  max-width: 640px;
  text-align: center;
}

/* Main title */
.section-heading-body h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Gradient word highlight inside title */
.section-heading-body h2 span {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle text */
.section-subtitle {
  color: #4b5563;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ==============
   Responsive
  ============== */

@media (max-width: 768px) {
  .section-heading {
    gap: 12px;
    margin-bottom: 28px;
    padding: 0 12px;
  }

  .section-heading-body {
    text-align: left;
  }

  .section-heading-body h2 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-heading-accent {
    height: 40px;
    width: 3px;
    margin-top: 2px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    align-items: flex-start;
  }

  .section-heading-body h2 {
    font-size: 1.4rem;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: #f7fbf9;
}

/* Left column */

.about .content h3 {
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: #102a43;
  margin-bottom: 10px;
}

.about .about-lead {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 18px;
  max-width: 30rem;
}

/* List */

.about .about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: #4b5563;
}

.about .about-list li + li {
  margin-top: 10px;
}

.about .about-list i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: #2487ce;
  line-height: 1;
}

/* Right panel */

.about .about-panel {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(36, 135, 206, 0.18), rgba(16, 185, 129, 0.18)) border-box;
  border-radius: 20px;
  border: 1px solid transparent;
  padding: 22px 22px 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.about .about-panel p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #4b5563;
}

.about .about-panel p:last-of-type {
  margin-bottom: 16px;
}

/* Stats row */

.about .about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.about .about-stats .stat {
  flex: 1 1 90px;
  min-width: 90px;
  background: #f3f7fb;
  border-radius: 12px;
  padding: 10px 12px;
}

.about .about-stats .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #124265;
}

.about .about-stats .label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Button */

.about .content .btn-learn-more,
.about .about-panel .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border-radius: 999px;
  transition: 0.22s ease;
  line-height: 1;
  color: #2487ce;
  margin-top: 6px;
  border: 2px solid #2487ce;
  text-decoration: none;
}

.about .content .btn-learn-more:hover,
.about .about-panel .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  box-shadow: 0 16px 45px rgba(36, 135, 206, 0.35);
}

/* Responsive */

@media (max-width: 991.98px) {
  .about {
    padding: 70px 0;
  }

  .about .about-panel {
    margin-top: 6px;
  }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

/* Card */
.counts .count-box {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
}

/* Icon pill */
.counts .count-box .count-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5a5af3, #38bdf8);
  box-shadow: 0 10px 24px rgba(90, 90, 243, 0.4);
}

.counts .count-box .count-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* Number */
.counts .count-box span {
  font-size: 42px;
  line-height: 1;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-top: 6px;
}

/* Label */
.counts .count-box p {
  padding-top: 8px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e6ca6;
}

/* Optional hover lift */
.counts .count-box:hover .count-icon {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(90, 90, 243, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video {
  padding: 40px 0;
  background: #f7fbf9;
}

/* Left: video card */

.about-video .video-box {
  position: relative;
}

.about-video .video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(36, 135, 206, 0.2), rgba(16, 185, 129, 0.2)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  min-height: 260px;
}

.about-video .video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Play button (visible + centered) */

.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 5; /* make sure it's above the image */
}

/* Triangle icon */
.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Pulsating ring */
.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-btn 2s forwards infinite steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: transparent;
}

/* Hover state */
.about-video .play-btn:hover::after {
  border-left: 15px solid #2487ce;
  transform: scale(20);
}

.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

/* Pulsate animation */
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Label at bottom-left of video */
.about-video .video-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
}

.about-video .video-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

/* Right: content */

.about-video .content {
  font-size: 0.95rem;
  color: #4b5563;
}

.about-video .content .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 8px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  color: #0f172a;
  margin-bottom: 10px;
}

.about-video .content .lead {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 14px;
}

/* Feature list */

.about-video .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.about-video .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 8px;
}

.about-video .feature-list li i {
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-video .feature-list li span {
  font-size: 0.94rem;
  color: #4b5563;
}

/* Closing note */

.about-video .footnote {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 991.98px) {
  .about-video {
    padding: 70px 0;
  }

  .about-video .video-card {
    margin-bottom: 12px;
  }
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  background: #ffffff;
}
/* Slider container */
.testimonials .testimonials-slider {
  overflow: visible;
}

/* Testimonial card */
.testimonial-card {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  border: 1px solid #e2f0eb;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Big quote decoration */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(148, 163, 184, 0.2);
  pointer-events: none;
}

/* Header: avatar + name */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-header .avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #e0edff;
}

.testimonial-header h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.testimonial-header h4 {
  font-size: 0.8rem;
  margin: 2px 0 0;
  color: #6b7280;
}

/* Quote text */
.testimonial-card .quote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #1f2933;
}

/* Meta row: stars + tag */
.testimonial-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.testimonial-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.9rem;
  color: #facc15;
}

.testimonial-card .tag {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecf5ff;
  color: #1d4ed8;
  white-space: nowrap;
}

/* Active slide subtle lift */
.testimonials .swiper-slide-active .testimonial-card {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Pagination bullets */
.testimonials .swiper-pagination {
  margin-top: 24px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #dbeafe;
  opacity: 1;
  border-radius: 999px;
  margin: 0 4px !important;
  transition: width 0.2s ease, background-color 0.2s ease;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 22px;
  background-color: #2487ce;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonial-card {
    padding: 18px 16px 18px;
  }

  .testimonial-card .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding: 40px 0;
}

/* Card base */
.services .icon-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding: 22px 20px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(16, 185, 129, 0.18)) border-box;
  border-radius: 20px;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Remove the old blob SVG look */
.services .icon-box .icon svg {
  display: none;
}

/* Icon circle */
.services .icon-box .icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background: #eff6ff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}

.services .icon-box .icon i {
  font-size: 26px;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
  color: #2563eb;
}

/* Heading & text */
.services .icon-box h4 {
  font-weight: 600;
  margin: 4px 0 4px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services .icon-box p {
  line-height: 1.6;
  font-size: 0.94rem;
  margin-bottom: 0;
  color: #4b5563;
}

/* Hover state */
.services .icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(16, 185, 129, 0.24)) border-box;
}

.services .icon-box:hover .icon {
  transform: translateY(-1px);
}

.services .icon-box:hover .icon i {
  transform: translateY(-1px) scale(1.02);
}

.services .icon-box:hover h4 a {
  color: #2563eb;
}

/* Color accents per service type */

.services .iconbox-blue .icon {
  background: #eff6ff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}
.services .iconbox-blue .icon i {
  color: #2563eb;
}

.services .iconbox-orange .icon {
  background: #fff7ed;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.26);
}
.services .iconbox-orange .icon i {
  color: #f97316;
}

.services .iconbox-pink .icon {
  background: #fdf2f8;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.26);
}
.services .iconbox-pink .icon i {
  color: #ec4899;
}

.services .iconbox-yellow .icon {
  background: #fef9c3;
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.26);
}
.services .iconbox-yellow .icon i {
  color: #eab308;
}

.services .iconbox-red .icon {
  background: #fef2f2;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.26);
}
.services .iconbox-red .icon i {
  color: #ef4444;
}

.services .iconbox-teal .icon {
  background: #ecfeff;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.26);
}
.services .iconbox-teal .icon i {
  color: #14b8a6;
}

/* Responsive */
@media (max-width: 991.98px) {
  .services {
    padding: 70px 0;
  }

  .services .icon-box {
    margin-bottom: 12px;
  }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 40px 0;
  background: radial-gradient(circle at top, #eef2ff 0, #f9fafb 55%, #eef2ff 100%);
}
.call-to-action {
  margin: 0 !important;
}

/* Inner card */
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7ff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* Heading */
.cta-box h3 {
  color: #111827;
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.cta-box p {
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 auto 20px;
}

.cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 30px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 2px solid #5a5af3;
  background: #5a5af3;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.15s ease;
  box-shadow: 0 12px 30px rgba(90, 90, 243, 0.35);
}

/* Small arrow on the button */
.cta .cta-btn::after {
  content: "→";
  font-size: 14px;
}

/* Hover / focus */
.cta .cta-btn:hover,
.cta .cta-btn:focus {
  background: #ffffff;
  color: #5a5af3;
  box-shadow: 0 16px 40px rgba(90, 90, 243, 0.28);
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .cta {
    padding: 60px 0;
  }

  .cta-box {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .cta-box p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #2487ce;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #2487ce;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2487ce;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
  padding: 40px 0;
}

.team .member {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Image container */
.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team .member .member-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Social icons - floating over image, center bottom */
.team .member .social {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 16px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  height: auto;
  z-index: 9999;
}

/* Social buttons as round pills */
.team .member .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.team .member .social a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
}

.team .member {
  position: relative;
  margin-bottom: 24px;
  overflow: visible;
}

/* Image keeps the rounded top */
.team .member .member-img img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* Floating info chip */
.team .member .member-info {
  position: relative;
  margin: -12px auto 0;
  padding: 11px 16px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Name */
.team .member .member-info h4 {
  font-weight: 600;
  font-size: 0.96rem;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
}

/* Role as a small pill on the right */
.team .member .member-info span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1d4ed8;
  background: #e0f2fe;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.team .member .member-info p {
  display: none;
}

.team .member:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.team .member:hover .member-img img {
  transform: scale(1.05);
}

.team .member:hover .member-img::after {
  opacity: 1;
}

.team .member:hover .social {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 991.98px) {
  .team {
    padding: 70px 0;
  }
}

/* Base: Bootstrap default (4 per row at large desktops) stays as-is */
/* .col-lg-3 is 25% by default */

/* 3 cards per row between 992px and 1250px (so 3 + 1 layout) */
@media (min-width: 992px) and (max-width: 1250px) {
  .team .col-lg-3 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* 2 cards per row between 768px and 991px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .team .col-lg-3,
  .team .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* 1 card per row below 768px */
@media (max-width: 767.98px) {
  .team .col-lg-3,
  .team .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
  padding: 40px 0;
  background: #f7fbf9;
}

.pricing-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-title .title-accent {
  width: 5px;
  height: 60px;
  background: linear-gradient(180deg, #2563eb, #38bdf8);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 4px;
  animation: growAccent 1.2s ease forwards;
}

.pricing-title h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.5px;
}

.pricing-title h2 span {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-title .subtitle {
  color: #4b5563;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}

@keyframes growAccent {
  0% { height: 0; opacity: 0; }
  100% { height: 60px; opacity: 1; }
}

@media (max-width: 768px) {
  .pricing-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 15px;
  }

  .pricing-title .title-accent {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 999px;
  }
}

.pricing .box {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: 20px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(16, 185, 129, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

/* Plan name */
.pricing .box h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin: 0;
}

/* Price row */
.pricing .box h4 {
  font-size: 2rem;
  color: #0f172a;
  font-weight: 700;
  margin: 2px 0 4px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pricing .box h4 sup {
  font-size: 1rem;
  top: -0.35rem;
  left: 0;
  position: relative;
}

.pricing .box h4 span {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Feature list */
.pricing .box ul {
  padding: 0;
  margin: 6px 0 10px;
  list-style: none;
  color: #111827;
  text-align: left;
  line-height: 1.6;
  font-size: 0.92rem;
}

.pricing .box ul li {
  padding: 4px 0;
}

.pricing .box ul .na {
  color: #9ca3af;
  text-decoration: line-through;
}

/* Button wrapper & button */
.pricing .box .btn-wrap {
  margin-top: 8px;
}

.pricing .box .btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing .box .btn-buy:hover {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

/* Hover effect on card */
.pricing .box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

/* Featured (middle) plan */
.pricing .box.featured {
  background:
    linear-gradient(#f9fbff, #ffffff) padding-box,
    linear-gradient(135deg, #2563eb, #0ea5e9) border-box;
  border-width: 2px;
  transform: translateY(-6px);
}

.pricing .box.featured h3 {
  color: #2563eb;
}

.pricing .box.featured h4 {
  color: #0f172a;
}

.pricing .box.featured .btn-buy {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
}

.pricing .box.featured .btn-buy:hover {
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
}

/* Featured badge (optional, if you added .plan-badge in HTML) */
.pricing .box.featured .plan-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .pricing {
    padding: 70px 0;
  }

  .pricing .box.featured {
    transform: none;
  }

  .pricing .box {
    margin-bottom: 16px;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq-title,
.contact-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq {
  padding: 80px 0;
  background: #f5fbf7; /* very light mint/grey */
}

.faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 14px;
}

/* Card wrapper */
.faq .faq-list li {
  position: relative;
  padding: 16px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Top row: icon + question + chevron */
.faq .faq-list .icon-help {
  position: static;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #eff6ff;
  color: #2563eb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/* Question row */
.faq .faq-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 0;
  margin-left: 12px;
  color: #111827;
  text-decoration: none;
  cursor: pointer;
}

/* Wrap icon + question into a flex row */
.faq .faq-list li > i.icon-help + a {
  display: flex;
}

/* Chevron icons on the right */
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 20px;
  position: static;
  margin-left: auto;
}

/* Collapsed state: show down arrow */
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/* Expanded state: show up arrow, color the question */
.faq .faq-list a:not(.collapsed) {
  color: #2563eb;
}
.faq .faq-list a:not(.collapsed) .icon-show {
  display: none;
}
.faq .faq-list a:not(.collapsed) .icon-close {
  display: inline-block;
}

/* Answer area */
.faq .faq-list .collapse {
  width: 100%;
}

/* When open, add divider + spacing */
.faq .faq-list .collapse.show {
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
  padding-top: 10px;
  padding-left: 44px; /* aligns under text, not icon */
}

/* Answer text */
.faq .faq-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
  .faq .faq-list {
    padding: 0 15px;
  }

  .faq .faq-list .collapse.show {
    padding-left: 0;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  background: #ffffff;
}

/* Map */
.contact iframe {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

/* Info card (left) */
.contact .info {
  width: 100%;
  padding: 20px 18px;
  border-radius: 20px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Individual rows */
.contact .info .address,
.contact .info .email,
.contact .info .phone {
  position: relative;
  padding-left: 60px;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 22px;
}

/* Icon circle */
.contact .info i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 18px;
  color: #2563eb;
  width: 40px;
  height: 40px;
  background: #eff6ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/* Text */
.contact .info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0f172a;
}

.contact .info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact .info a {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Hover highlight */
.contact .info .address:hover i,
.contact .info .email:hover i,
.contact .info .phone:hover i {
  background: #2563eb;
  color: #ffffff;
}

/* Form card (right) */
.contact .php-email-form {
  width: 100%;
  padding: 24px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2f0ff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

/* Inputs */
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 0.9rem;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact .php-email-form input:not([type="checkbox"]):not([type="radio"]) {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  resize: vertical;
}

/* Focus state */
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2563eb;
  background: #f9fbff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

/* Messages (loading/error/sent) */
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ef4444;
  text-align: left;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #22c55e;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.contact .php-email-form .loading {
  display: none;
  background: #f9fafb;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 8px -4px 0;
  border: 3px solid #2563eb;
  border-top-color: #e5e7eb;
  animation: animate-loading 1s linear infinite;
}

/* Submit button - pill style */
.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border: 0;
  padding: 11px 30px;
  color: #fff;
  transition: 0.25s;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

/* Loading animation reused */
@keyframes animate-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .contact {
    padding: 70px 0;
  }

  .contact iframe {
    margin-bottom: 22px;
  }

  .contact .info {
    margin-bottom: 18px;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0f172a;           
  color: #e5eefc;
  padding-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 14px;
}

/* Top area */
#footer .footer-top {
  padding: 40px 0 30px;
  background: transparent;
}

#footer .footer-top .container {
  background: #020617;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.8);
  padding: 32px 28px;
}

#footer a {
  color: #cbd5f5;
  text-decoration: none;
}

#footer a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

/* Footer logo */
#footer .logo {
  margin: 0 0 12px 0;
  padding: 0;
  line-height: 1;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Footer logo link */
#footer .logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 24px;            
  text-decoration: none;
}

#footer .logo a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

#footer .logo a span,
#footer .logo a {
  background: linear-gradient(90deg, #e5eefc, #bae6fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer hover */
#footer .logo a:hover::before {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.32);
}

/* Footer columns spacing tweaks */
#footer .footer-top {
  padding-bottom: 30px;
}

#footer .footer-contact p {
  margin-top: 10px;
  color: #cbd5f5;
}

/* Social icons */
#footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

#footer .social-links a:hover {
  background: #1e293b;
}

/* Bottom line text */
#footer .copyright span {
  color: #e5eefc;
}


/* Brand block */
#footer .footer-top .footer-contact {
  margin-bottom: 24px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 10px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #9ca3af;
}

/* Column titles */
#footer .footer-top h4 {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

/* Links */
#footer .footer-top .footer-links {
  margin-bottom: 24px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 6px;
  color: #4f86ff;
  font-size: 16px;
  line-height: 1;
}

#footer .footer-top .footer-links ul a {
  color: #9ca3af;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-block;
  line-height: 1.5;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #e5f0ff;
  transform: translateX(2px);
}

/* Newsletter */
#footer .footer-newsletter {
  font-size: 14px;
}

#footer .footer-newsletter h4 {
  font-size: 15px;
  font-weight: 600;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 6px;
}

#footer .footer-newsletter h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

#footer .footer-newsletter p {
  color: #9ca3af;
  margin-bottom: 12px;
}

/* Newsletter form */
#footer .footer-newsletter form {
  margin-top: 8px;
  background: rgba(15, 23, 42, 0.9);
  padding: 4px;
  position: relative;
  border-radius: 999px;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 8px 12px;
  width: 100%;
  font-size: 0.9rem;
  color: #e5e7eb;
  background: transparent;
  outline: none;
}

#footer .footer-newsletter form input[type="email"]::placeholder {
  color: #6b7280;
}

#footer .footer-newsletter form input[type="submit"] {
  border: 0;
  font-size: 0.8rem;
  padding: 8px 18px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  transition: 0.25s;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.7);
  transform: translateY(-1px);
}

/* Bottom bar */
#footer .container.d-md-flex {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  margin-top: 28px;
}

#footer .copyright {
  color: #6b7280;
  font-size: 13px;
}

#footer .copyright span {
  color: #e5e7eb;
}

/* Social icons */
#footer .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  line-height: 1;
  margin-right: 6px;
  border-radius: 999px;
  text-align: center;
  width: 34px;
  height: 34px;
  transition: 0.25s;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

#footer .social-links a:hover {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(37, 99, 235, 0.7);
  text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  #footer .footer-top .container {
    padding: 24px 18px;
    border-radius: 22px;
  }

  #footer .footer-newsletter form {
    margin-top: 10px;
  }
}
