/* @import url("font-awesome.css"); */

/* ==================== CSS RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Variables - Blue to Purple Gradient Theme */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #a855f7;
  --accent-dark: #9333ea;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;

  /* Spacing */
  --container-width: 1280px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;

  /* Border Radius */
  --radius: 0.75rem;
}


body {
  font-family: "Geist", sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-text-bold {
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ==================== ANIMATIONS & KEYFRAMES ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  will-change: transform;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.btn-gradient:hover {
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==================== NAVIGATION ==================== */
#nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
  will-change: background-color, box-shadow;
}

#nav-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  align-items: center;
  display: flex;
}

.logo img{width: 200px;}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 15px;
}

.nav-link:hover {
  color: var(--foreground);
}

.desktop-cta {
  display: none;
  background:linear-gradient(135deg, var(--primary), var(--accent));
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-cta {
  width: 100%;
  margin-top: 0.5rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 15rem;
  background: linear-gradient(286deg, #DAE7FF 0.92%, #FFF 104.04%);
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
  will-change: background-position;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  top: 80px;
  left: 40px;
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.2);
}

.orb-2 {
  bottom: 80px;
  right: 40px;
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.2);
  animation-delay: 2s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--foreground);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #0D3056;
}
.hero-title span{font-style: italic;}
.hero-subtitle {
  font-size:16px;
  color: var(--muted-foreground);
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator > div {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(99, 102, 241, 0.4);
  border-radius: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.5rem;
  background: rgba(99, 102, 241, 0.6);
  border-radius: 0.25rem;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
  padding: 6rem 0 15rem;
  /* background-color: var(--muted); */
  background-color: #031631;
}

.problem-section .section-content {
  /* max-width: 64rem; */
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  margin-top: -250px;
  z-index: 99;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size:36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #0D3056;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.problems-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.prblmmain{width: 100%;display: inline-block;}
.prblmimgleft{width: 40%;float: left;}
.prblmimgleft img{width: 95%;}
.prblmrighttxt{width: 55%;float: right;}

.problemsall{width: 100%;display: inline-block;}

.problem-card {
  display: flex;gap: 1rem;
  align-items: flex-start;  
  padding:15px;
  /* background-color:#F6F7F7;
  border-radius: 5px; */
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* width: 48%;
  float: left; */
  margin: 10px;
  border-bottom: 1px solid #d5dfe8;
}
.problem-card img{width: 16px;}
.problem-card:hover {
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* .problem-icon {
  flex-shrink: 0;
  width:30px;
  height:30px;
  margin-top: 0;
  border-radius: 50%;
  background:#EAF9FD;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
} */
.problem-icon
{flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-top: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;}

.problem-icon i{color:#f00;}

.problem-icon svg {
  color: rgba(15, 23, 42, 0.4);
}

.problem-card p {
  font-size: 1.125rem;
  color: rgba(15, 23, 42, 0.8);
}

.problem-conclusion {
  text-align: center;
}

.problem-conclusion p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  padding-top: 20px;
}

/* ==================== VALUE SECTION ==================== */
.value-section {
  padding: 6rem 0;
  background-color: var(--background);
}
/* .valuemain{margin-top: -250px;position: relative;z-index: 9;background-color: #e6efff;padding: 50px;border-radius: 20px;background: linear-gradient(286deg, #DAE7FF 0.92%, #FFF 104.04%);box-shadow: 0 0 30px rgba(0,0,0,.1);} */

.valuemain{margin-top: -250px;position: relative;z-index: 9;background-color: #e6efff;padding: 50px;border-radius: 20px;background: #2a0252;
background: linear-gradient(314deg, rgba(42, 2, 82, 1) 0%, rgba(3, 22, 49, 1) 70%);box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);}
.valuemain .section-header h2{color: #fff;}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--delay) * 100ms);
  will-change: transform;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.value-card p {
  font-weight: 500;
}

.value-conclusion {
  text-align: center;
}

.value-conclusion p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== DIFFERENTIATORS SECTION ==================== */
.differentiators-section {
  padding: 6rem 0;
  background-color:#031631;
}

.differentiators-section .section-content{margin-top: -250px;}

.differentiators-titles {
  margin-bottom: 2rem;
}

.differentiators-titles h2 {
  font-size:52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color:#fff;
}

.section-subtitle-lg {
  font-size: 1.25rem;
  color:#fff;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.section-callout {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
}

.differentiators-title-section {
  margin: 0rem 0 2.5rem;
  text-align: center;
}

.differentiators-subtitle {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
}

.differentiators-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
}

/* .differentiator-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
} */

.differentiator-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 0;  
  border-bottom: 1px solid #ccc;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-bottom: 15px;
}

.differentiator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(168, 85, 247, 0.03));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.differentiator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.differentiator-card:hover::before {
  opacity: 1;
}

.differentiator-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.differentiator-card:hover .differentiator-icon {
  transform: translateX(4px) scale(1.1);
}

.differentiator-content {
  position: relative;
  z-index: 10;
}

.differentiator-content h4 {
  font-size:18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #0D3056;
}

.differentiator-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.result-box {
  padding: 0px 0px 0 50px;
  border-radius: var(--radius);
  background: #A555F6;
background: linear-gradient(314deg, rgba(165, 85, 246, 1) 0%, rgba(3, 22, 49, 1) 70%);
  color: white;

  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

ul.result-list li {
  position: relative;
  margin: 10px 0;
  padding-left:25px;
}
ul.result-list li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 13px;
  height: 13px;
  content: "";
  background-color: #0B81FF;
  border-radius: 50%;
  box-shadow: -3px 3px 20px 0 #0b81ffd9;
}

.result-box h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.result-content {
  margin-bottom: 1.5rem;
}

.result-intro {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.result-list {
  list-style: none;
  font-size: 1.125rem;
  line-height: 2;
  max-width: 40rem;
  margin: 0 auto;
}

.result-conclusion {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== SERVICES SECTION ==================== */
/* .services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--background) 0%, rgba(99, 102, 241, 0.03) 50%, var(--background) 100%);
} */

.services-section {
  padding: 6rem 0;
  background:#fff url(images/slider.png) no-repeat;background-size: cover;background-position: left bottom;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding:0;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  transform: scale(1.1);
}

.service-card p {
  position: relative;
  z-index: 10;
  font-weight: 500;
  line-height: 1.4;
}

.services-tagline {
  text-align: center;
}

.services-tagline p {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 6rem 0 250px;
  /* background: linear-gradient(286deg, #DAE7FF 0.92%, #FFF 104.04%); */
  background-color: #031631;
  /*background:#031631 url(images/hero-bg.png) repeat;
   background-size: cover; */
}
.process-section .section-header h2{color:#fff;}
.process-section .section-subtitle{color:#fff;}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-card {
  position: relative;
  padding: 2rem 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 12px 0 12px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.process-title {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ==================== RESULTS SECTION ==================== */
.results-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 0;
}

.result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 10px 10px 15px rgba(0,0,0,.1);
  background-color: #fff;
}

.result-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover .result-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: scale(1.1);
}

.result-card p {
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonials-placeholder {
  padding: 3rem;
  border-radius: var(--radius);
  background-color: var(--muted);
  border: 1px solid var(--border);
  text-align: center;
}

.testimonials-placeholder p {
  color: var(--muted-foreground);
  font-style: italic;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.final-cta-section .btn {
  background-color: white;
  color: var(--primary);
}

.final-cta-section .btn:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/*======================sayan================*/

.bannermain{width: 100%;display: inline-block;}
.bannerleft{width: 50%;float: left;}
.bannerrightpic{width: 45%;float: right;}
.banrimagebox img{width: 100%;}
.mostagencysec{padding: 160px 0;background: url(images/imagebg2.jpg) no-repeat;background-size: cover;position: relative; background-attachment:fixed ;}
.mostagencysec::before{position: absolute;width: 100%;height: 100%;left: 0;top: 0;content: "";background: rgba(0,0,0,.1);}
.mostagencysec .section-header{margin-bottom: 0;}
.trulyset{padding:80px 0 250px;}
.truemain{padding: 50px;border-radius: 20px;background: linear-gradient(286deg, #DAE7FF 0.92%, #FFF 104.04%);box-shadow: 0 0 30px rgba(0,0,0,.1);}
.resultmain{width: 100%;display:flex;}
.resulttxt{width: 60%;}
.reslttxtall{padding-top: 50px;}
.resultimage{width:40%;}
.resultimage img{width: 100%;border-radius: 0 12px 12px 0;display: inherit;}
.lastsecresult{margin-top: -250px;padding: 50px;border-radius: 20px;background: #2a0252;
background: linear-gradient(314deg, rgba(42, 2, 82, 1) 0%, rgba(3, 22, 49, 1) 70%);box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);}
span.buildwebcolor{color: #0D3056;}
.lastsecresult .section-header h2{color:#fff;}

.apartmain{width: 100%;display:flex;}
.apartleft{width: 50%;}
.apartrttxt{width: 50%;}
.apartleft img{width: 95%;margin-top: 50px;}

.allprocess{display: inline-block;align-items: center;align-content: center;justify-content: center;width: 100%;}
.singleprocess{background: linear-gradient(286deg, #DAE7FF 0.92%, #FFF 104.04%);border: 1px solid #eee;padding: 30px;width: 30%;float: left;border-radius: 20px;margin: 15px;}
.processnumber{font-size: 60px;font-weight: 900;color: #ccc;line-height: 48px;}
.processhding{margin: 15px 0;}
.processhding h5{font-size: 24px;color: #0D3056;}
.processimage{text-align: center;min-height: 350px;}
.processimage img{width: 100%;}
.processsingletxt{min-height: 80px;}
.fourthprocess{margin-left: 20%;}


.hero-video {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-video .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-video .hero-overlay {
  position: absolute;
  inset: 0;
  background:rgba(0, 0, 0, .8);
  z-index: 2;
}

.hero-video .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  max-width: initial;
}

.hero-video h1 {
  font-size:60px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 30px;
}

.hero-video h1 span {
  color: #0b1b3f; /* matches your “Build” highlight */
}



/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
  .desktop-nav {
    display: inline;
    width: 65%;
    text-align: right;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}








.strategy-btn {
  background: #7b61ff;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.strategy-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.strategy-popup {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: 14px;
  position: relative;
}

.strategy-popup h3 {
  margin-bottom: 8px;
}

.strategy-popup p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.strategy-popup input,
.strategy-popup textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-submit {
  width: 100%;
  background: #7b61ff;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

a.botmctawidth{min-width: 300px;}

.clientallour{background: #fff url(images/bgroundline.png) no-repeat;background-size: cover;background-position: top left;padding: 40px 0 120px;}



:root {
      --card-width-mobile: 85vw;
      --card-width-desktop: 26rem;
      --card-gap: 1.25rem;
      --transition-speed: 0.4s;
    }

    /* OUTER SHELL (right aligned) */
    .slider-shell {
      max-width: 1500px; /* widened so more cards are visible */
      margin-left: auto;
      margin-right: 0;
    }

    /* HEADER: title + arrows on one row */
    .slider-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.25rem;
      padding-right: 1.5rem; /* pulls buttons away from edge */
    }

    .slider-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0;
    }

    .slider-header-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .arrow-btn {
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      background: #111827;
      color: #f9fafb;
    }

    /* SLIDER */
    .slider {
      position: relative;
    }

    .slider-inner {
      overflow: hidden; /* creates the off-canvas effect */
    }

    .slider-track {
      display: flex;
      align-items: stretch;
      transition: transform var(--transition-speed) ease;
      will-change: transform;
    }

    .slide {
      flex: 0 0 var(--card-width-mobile);   /* mobile basis */
      max-width: var(--card-width-desktop);
      margin-right: var(--card-gap);
      border-radius: 1.5rem;
      background: #e5e7eb;
      padding: 1.1rem 1.1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    /* Colour variants for the card background */
    .slide.blue   { background: #dbeafe; }
    .slide.purple { background: #e0e7ff; }
    .slide.peach  { background: #fed7c3; }
    .slide.green  { background: #bbf7d0; }

    /* IMAGE AREA */
    .slide-image {
      width: 100%;
      border-radius: 1rem;
      background-size: cover;
      background-position: center;
      aspect-ratio: 4 / 3;
      display: block;
    }

    /* demo gradients – replace with real images if you want */
    .slide.blue   .slide-image { background-image: linear-gradient(135deg, #60a5fa, #a855f7); }
    .slide.purple .slide-image { background-image: linear-gradient(135deg, #a855f7, #f97316); }
    .slide.peach  .slide-image { background-image: linear-gradient(135deg, #fb7185, #f97316); }
    .slide.green  .slide-image { background-image: linear-gradient(135deg, #22c55e, #3b82f6); }

    /* CLICKABLE ROW: title + arrow (ONLY this is a link) */
    .slide-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    a.slide-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      width: 100%;
      text-decoration: none;   /* remove blue underline */
      color: inherit;          /* inherit text colour */
    }

    .slide-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
    }

    /* SMALL CIRCLE ARROW – centered */
    .slide-arrow {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(15, 23, 42, 0.08);
      font-size: 1.1rem;
      line-height: 1;
      position: relative;
      top: -0.5px; /* tiny nudge up for visual centering */
    }

    /* Optional hover effect only on link area */
    .slide-link:hover .slide-arrow {
      background: rgba(15, 23, 42, 0.16);
    }

    @media (min-width: 768px) {
      .slide {
        flex-basis: var(--card-width-desktop);
      }
    }







@media (max-width: 767px) 
{
    .bannermain {width: 100%;display: flex;flex-direction: column-reverse;}
    .bannerleft {width: 100%;}
    .bannerrightpic{width: 100%;}
    .hero-section{padding: 5rem 0 15rem;}
    .hero-content{padding-top: 15px;}
    .hero-title {font-size: 28px;line-height: 34px;margin-bottom: 15px;}
    .hero-subtitle {font-size: 14px;}
    .problem-section .section-content{padding: 20px;}
    .section-header h2{font-size: 24px;line-height: 30px;}
    .section-subtitle{font-size: 16px;}
    .prblmimgleft {width: 100%;float: none;}
    .problem-section .section-header{margin-bottom: 20px;}
    .prblmrighttxt {width: 100%;float: none;}
    .problem-card{padding: 15px 0;align-items: center;margin: 0;}
    .problem-card p {font-size: 14px;line-height: 20px;}
    .problem-conclusion p{font-size: 14px;}
    .problem-section {padding: 4rem 0 13rem;}
    .valuemain{padding: 20px;}
    .values-grid{margin-bottom: 30px;}
    .value-conclusion p{font-size: 14px; max-width: 100%;}
    .section-subtitle-lg{font-size: 16px;margin-bottom: 0;}
    .section-callout{font-size: 16px;margin-bottom: 0;}
    .mostagencysec{padding: 40px 0;background-attachment: initial;}
    .mostagencysec::before {background: rgba(0,0,0,.7);}
    .differentiators-titles{margin-bottom: 15px;}
    .differentiators-titles h2{font-size: 20px;}
    .value-section{padding: 6rem 0 3rem;}
    .trulyset {padding: 50px 0 200px;}
    .truemain{padding: 20px;}
    .differentiators-subtitle {font-size: 22px;}
    .apartleft{width: 100%;}
    .apartrttxt{width: 100%;margin-top: 20px;}
    .apartmain{display: inline-block;}
    .apartleft img{margin-top: 0;}
    .differentiators-title-section{margin: 0 0 10px;}
    .differentiator-content h4{font-size: 16px;}
    .differentiator-content p{font-size: 14px;}
    .resultmain {width: 100%;display: flex;flex-direction: column-reverse;}
    .resulttxt {width: 100%;}
    .resultimage {width: 100%;}
    .resultimage img {width: 100%;border-radius: 0 12px 0px 0;}
    .result-box{padding-left: 20px;}
    .reslttxtall {padding-top: 25px;}
    .result-box h3 {font-size: 24px;font-weight: 700;margin-bottom: 5px;}
    ul.result-list li{font-size: 14px;}
    .result-conclusion{font-size: 14px;padding-bottom: 15px;}
    .services-section{padding: 3rem 0;}
    .services-section .section-header{margin-bottom: 20px;}
    .service-icon{width: 50px;height: 50px;}
    .service-card{padding-right: 10px;}
    .service-card p{font-size: 14px;}
    .services-tagline p {font-size: 16px;font-weight: 700;}
    .process-section{padding-top: 50px;padding-bottom: 180px;}
    .singleprocess{width: 100%;margin: 0 0 20px;}
    .processimage {text-align: center;min-height: 170px;}
    .singleprocess{padding: 20px;text-align: center;}
    .processnumber {font-size: 50px;}
    .processhding h5 {font-size: 20px;}
    .processhding{margin-top: 0;}
    .processimage img{width: 50%;margin: 0px auto;}
    .processsingletxt p{font-size: 14px;line-height: 20px;}
    .processsingletxt {min-height: 45px;}
    .lastsecresult{padding: 20px;}
    .results-section .section-header{margin-bottom: 20px;}
    .result-card p {font-size: 14px;font-weight: 600;line-height: 20px;}
    .result-icon {width: 3rem;height: 3rem;}
    .results-grid{gap: 1rem;}
    .results-section {padding: 6rem 0 3rem;}
    .final-cta-section{padding: 3rem 0;}
    .cta-content h2 {font-size: 24px;line-height: 31px;}
    .hero-video h1{font-size: 28px;line-height: 40px;}
    .hero-video{min-height: 325px;}
    .hero-video .hero-content .desktop-cta{display: block;}
    .mobile-menu.active {display: block;background-color: #fff;padding: 20px 20px;}
    #nav-header.scrolled {background-color: rgba(255, 255, 255, 0.95);backdrop-filter: blur(10px);box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);}
    .logo img {width: 150px;}

    .footer-grid{display: inline-block;}
    .footsymabt{margin-bottom: 20px;}
    .ftdivdide{width: 48%;float: left;}
    .ftdivdidecnct{display: inline-block;width: 100%;margin: 20px 0;}
    .ftdivdidecnct ul li{display: inline-block;
    width: auto;padding:0 10px;}
    .bannerleft .desktop-cta {
    display: inline-flex;
  }
  a.botmctawidth{
  min-width: 300px;
  align-content: center;
  align-items: center;
  display: flex !important;}
}



.owl-carousel .owl-item {
  transition: transform 0.5s ease-in-out !important; /* Apply smooth transform effect */
}
