:root {
    --primary-color: #491084;
    --secondary-color: #b35cfe;
    --gradient-start: #510f91;
    --gradient-end: #0a46a1;
}

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

:root {
    --primary-purple: #4a148c;
    --text-white: #ffffff;
    --text-grey: #ccc;
    --accent-line: rgba(255, 255, 255, 0.5);
   	--accent-purple: #7c43bd;    /* Lighter purple for accents */
    --bright-purple: #d500f9;    /* Button/Highlight */
   	--bg-light: #fdfbff;         /* Page background */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
   	--input-bg: rgba(255, 255, 255, 0.1); /* Glassmorphism input */
    --input-border: rgba(255, 255, 255, 0.3);
	--border-color: #eee;
    --transition: all 0.3s ease;
	--font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;	
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    margin: 0px;
    font-family: Inter, sans-serif;
    color: rgb(23, 22, 22);
    background-color: rgb(255, 255, 255);
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
	text-transform: uppercase;
}

#section-about {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#section-timeline {
  scroll-margin-top: 150px; /* adjust to your header height */
}
#section-vision-mission {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#section-awards {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#section-testimonials {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#lead-example {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#mentor-card {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#section-team {
  scroll-margin-top: 110px; /* adjust to your header height */
}
#section-work {
  scroll-margin-top: 110px; /* adjust to your header height */
}



.white{
	color: #FFFFFF!important;
}

.gradient-text {
  background: linear-gradient(90deg, #510F91 0%, #0A46A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-padding {
    padding: 25px 0px;
}

.navbar {
    padding: 20px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1000;
    background-color: rgb(138, 0, 255);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    width: auto;
    min-width: unset;
}

.navbar-logo {
    width: 100%;
    height: 130%;
    max-width: 140px;
    object-fit: contain;
    position: absolute;
}



.nav-link {
    font-weight: 500;
    margin: 0px 15px;
    position: relative;
    color: rgb(255, 255, 255) !important;
}

.nav-link::after {
    content: "";
    /* position: absolute; */
    width: 0px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    /* width: 100%; */
}

/* Animation Container */
.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

/* Slide In effect */
@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/* ===== MAIN MENU ===== */
.main-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu > li {
  position: relative;
text-transform: uppercase;	
}

.main-menu a {
  text-decoration: none;
  font-weight: 600;
    color: #ffffff;
  padding: 12px 0;
  display: block;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.main-menu > li > a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-menu > li > a:hover,
.main-menu > li > a:focus {
  color: #e6d8f2; /* darker or theme color */
}


/* ===== SUBMENU BASE ===== */
.submenu {
  position: absolute;
  top: 116%;
  left: 0;
  width: 260px;
  background: #fff;
  list-style: none;
  padding: 15px 0;
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
  z-index: 99;

  /* animation base */
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.9);
  transform-origin: top;
  transition: all 300ms ease;
}

.submenu li {
  position: relative;

  /* stagger base */
  opacity: 1;
  transform: translateY(11px);
  transition: all 500ms ease;
}

.submenu a {
  display: block;
  padding: 10px 25px;
  font-weight: 500;
  color: #222;
  font-size: 14px;
border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* ================= LINK WRAPPER ================= */
.nav_links {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 2.2em;
  line-height: 2.2em;
  text-decoration: none;
  color: #111;
}

/* ================= TEXT BASE ================= */
.nav_links .text-xs {
  display: block;
  transition: transform 0.45s cubic-bezier(0.645, 0.045, 0.355, 1),
              opacity 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
}

/* TOP TEXT (VISIBLE) */
.nav_links .is-1 {
  transform: translateY(0%);
  opacity: 1;
}

/* BOTTOM TEXT (HIDDEN BELOW) */
.nav_links .is-2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(150%);
  opacity: 1;
}

/* ================= HOVER EFFECT ================= */
.nav_links:hover .is-1 {
  transform: translateY(-150%);
  opacity: 0;
}

.nav_links:hover .is-2 {
  transform: translateY(0%);
  opacity: 1;
}
.nav_links.active .is-1 {
  transform: translateY(-150%);
  opacity: 0;
}

.nav_links.active .is-2 {
  transform: translateY(0%);
}


/* ===== HOVER OPEN (DESKTOP) ===== */
@media (min-width: 992px) {
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(6px);
    /* transition: all 0.3s ease; */
  }	
	
  .has-children:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  .has-children:hover > a::after {
    transform: rotate(90deg);
  }	

  /* stagger reveal */
  .has-children:hover > .submenu > li {
    opacity: 1;
    transform: translateY(0);
  }

  .has-children:hover > .submenu > li:nth-child(1) { transition-delay: 70ms; }
  .has-children:hover > .submenu > li:nth-child(2) { transition-delay: 140ms; }
  .has-children:hover > .submenu > li:nth-child(3) { transition-delay: 210ms; }
  .has-children:hover > .submenu > li:nth-child(4) { transition-delay: 280ms; }
  .has-children:hover > .submenu > li:nth-child(5) { transition-delay: 350ms; }
  .has-children:hover > .submenu > li:nth-child(6) { transition-delay: 420ms; }

  /* second level flyout */
  .second-level {
    top: 0;
    left: 120%;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 300ms ease;
  }

  .submenu .has-children:hover > .second-level {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* ===== SECOND LEVEL ===== */
.second-level {
  top: 0;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all .35s ease;
}

/* ===== ARROW ===== */
.has-children > a::after {
  content: "\f054"; /* chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* REQUIRED for solid icons */
  float: right;
  font-size: 16px;
  margin-left: 7px;
  margin-top: -11px;
  display: inline-block;
  transition: transform 0.3s ease;
}


/* ================= MOBILE MENU BASE ================= */
.mobile-menu-wrapper {
  display: none;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 991px) {

  /* hide desktop nav */
  #mainNav {
    display: none !important;
  }

  /* SHOW MOBILE MENU */
  .mobile-menu-wrapper {
    display: block;          
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(138, 0, 255);
    z-index: 99999;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 18px;
    background-color: rgb(138, 0, 255);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-logo img {
    height: 60px;
  }

  .mobile-toggle {
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding-right: 21px;
  }

  /* MENU SLIDE */
  .mobile-menu {
    max-height: 0;
    overflow: hidden;
  transition: max-height 0.45s ease;
  background: #7f1dff; /* purple */	  
  }
	
	
/* Ensure mobile menu is CLOSED by default */
.mobile-menu {
  overflow: hidden;
}
.mobile-menu.open {
  max-height: calc(100vh - 64px); /* header height */
}

  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 37px;
  }

  .mobile-menu-list li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-menu-list a {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-parent {
     width: 95%;
     text-align: left;
     padding: 14px 18px;
     background: none;
     border: none;
     color: #000000;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: .5px;
     display: inline-flex;
     /* justify-content: space-between; */
     align-items: center;
     position: relative;
  }
	

	
  .mobile-parentsub {
     width: 95%;
     margin-top: -14px;
     text-align: left;
     padding: 5px 18px;
     background: none;
     border: none;
     color: #000000;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: .5px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
  }

  .arrow {
    font-size: 18px;
    transition: transform .3s ease;
    position: absolute;
    right: 20px;
    margin-top: -6px;
  }
  .arrow2 {
    font-size: 18px;
    transition: transform .3s ease;
    position: absolute;
    right: 20px;
    margin-top: -31px;
  }

  /* SUBMENUS */
.mobile-submenu {
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
  transform-origin: top;
  transform: scaleY(0.95);
  opacity: 0;
  transition: all 300ms ease;
  display: block;              /* keep in flow */
  max-height: 0;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  transition: max-height 0.35s ease;	
}

  .mobile-submenu.second {
     background: #ffffff;
     color: #000;
  }

  .mobile-has-children.open > .mobile-submenu {
  display: block;
  transform: scaleY(1);
  opacity: 1;
  }

  .mobile-has-children.open > .mobile-parent .arrow {
transform: rotate(90deg);
  }
	
.mobile-has-children.open > .mobile-submenu {
max-height: 800px;
  padding: 10px 0 !important;
}	

  .mobile-submenu a {
  color: #222;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.08);	  
  }

  .mobile-submenu.second a {
   padding-left: 40px;
  }

  .mobile-cta {
    background: #6f42c1;
    text-align: center;
    margin: 15px;
    border-radius: 6px;
  }
	
.mobile-submenu li {
  transform: translateY(8px);
  opacity: 0;
  transition: all 300ms ease;
}

.mobile-has-children.open > .mobile-submenu li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-has-children.open > .mobile-submenu li:nth-child(1) { transition-delay: 60ms; }
.mobile-has-children.open > .mobile-submenu li:nth-child(2) { transition-delay: 120ms; }
.mobile-has-children.open > .mobile-submenu li:nth-child(3) { transition-delay: 180ms; }
.mobile-has-children.open > .mobile-submenu li:nth-child(4) { transition-delay: 240ms; }
.mobile-has-children.open > .mobile-submenu li:nth-child(5) { transition-delay: 300ms; }
	
}
/* ================= GAP REMOVAL FIX ================= */

/* Remove all default spacing */
.mobile-menu,
.mobile-menu-list,
.mobile-menu-list li,
.mobile-submenu {
  margin: 0 !important;
  padding: 0 !important;
}


/* Fix submenu container spacing */
.mobile-submenu {
  border-radius: 0;
  box-shadow: none; /* remove floating look gap */
}

/* Restore inner padding ONLY for links */
.mobile-menu-list a,
.mobile-parent {
  padding: 14px 18px !important;
}

.mobile-menu-list > li > a,
.mobile-parent {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Submenu link padding */
.mobile-submenu a {
  padding: 12px 25px !important;
}

/* Remove extra divider gap */
.mobile-menu-list li:last-child,
.mobile-submenu li:last-child {
  border-bottom: none;
}

/* Fix white submenu touching edges */
.mobile-has-children.open > .mobile-submenu {
  display: block;
  background: #ffffff;
}

/* Remove visual gap between parent & submenu */
.mobile-has-children > .mobile-submenu {
  border-top: none;
  max-height: 0;
  overflow: hidden;
transition: max-height 0.35s ease;	
}

/* Fix first submenu item gap */
.mobile-submenu li:first-child a {
  margin-top: 0;
}

/* Prevent body scroll jump */
body.menu-open {
  overflow: hidden;
}



.btn-custom {
    background-color: rgb(106, 0, 199);
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    width: 299ox;
}

.btn-custom:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(138, 0, 255);
    transform: translateY(-2px);
}

/* ================= HERO BASE ================= */
#hero-section {
  position: relative;
  overflow: hidden;
  min-height: 106vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

/* background color layer */
.hero-bg-color {
  position: absolute;
  /* inset: 0; */
  background: linear-gradient(120deg, #0b0d12, #141826);
  z-index: 0;
}

/* ================= HERO IMAGE ================= */
.hero-image {
  position: absolute;
  /* right: -5%; */
  bottom: -10%;
	top: 0px;
  left: 0px;	
  width: 100%;
  max-width: 100%;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: heroImageIn 1.2s ease forwards;
  animation-delay: 0.6s;
}
.img {
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}


/* floating feel */
@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= TEXT ================= */
.hero-title {
  font-family: Inter, sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 700;
  overflow: hidden;
  text-transform: capitalize;
}

.hero-subtitle {
font-family: Inter, sans-serif;
    max-width: 560px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}


/* ================= LINE REVEAL ================= */
.anim-line {
  display: inline-block;
  overflow: hidden;
}

.anim-line::after {
  content: "";
  display: block;
  height: 100%;
}

.anim-line {
  transform: translateY(120%);
  animation: lineReveal 0.9s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: var(--delay);
}

@keyframes lineReveal {
  to {
    transform: translateY(0);
  }
}

/* ================= FADE UP ================= */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: var(--delay);
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  #hero-section {
    padding: 112px 0 0px;
    min-height: auto;
  }

  .hero-image {
    position: absolute;
    top: 0;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    transform: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 25px;
  }

  .hero-subtitle {
    font-size: 14px;
    padding-left: 2%;
  }
}


.section-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 300;
    line-height: 1.1;
}

.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(58, 33, 150);
    padding: 0px 15px;
}

.design-img {
    width: 100%;
    object-fit: cover;
    height: 363px;
}

#smarter-cities {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.smarter-graphic-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 300px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0px !important;
    align-self: unset !important;
}


.merged-lines {
    position: relative;
    width: 100%;
    height: 100%;
}

.line-1, .line-2 {
    position: absolute;
    will-change: transform, opacity;
    transition: none;
}

.line-1 {
    top: 0px;
    left: 0%;
}

.line-2 {
    bottom: 0px;
    right: 0%;
}

.text-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.smarter-title {
    font-size: clamp(32px, 5vw, 34px);
    font-weight: 300;
    color: rgb(255, 255, 255);
    margin-bottom: 24px;
}

.smarter-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-pill-white {
    display: inline-block;
    background: rgb(255, 255, 255);
    color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
}

.btn-pill-white:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
}

.products-label {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.products-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 300;
    line-height: 1.1;
}

.products-desc {
    font-size: 18px;
    color: var(--primary-color);
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgb(221, 221, 221);
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: rgba(138, 0, 255, 0.1) 0px 10px 30px;
    transform: translateY(-5px);
}

.card-image-placeholder {
    width: 100%;
    height: 220px;              /* FIXED image area height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 16px 0;
}

.card-image-placeholder img {
    max-width: 100%;
    /* max-height: 100%; */
    object-fit: contain;        /* keeps full image visible */
    transition: transform 0.4s ease;
}

/* Optional hover effect */
.product-card:hover .card-image-placeholder img {
    transform: scale(1.05);
}

.card-title {
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 25px;
}

.card-btn {
    width: 160px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: var(--secondary-color);
}

#stats-section {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    padding: 80px 0px;
}

.stat-item {
    position: relative;
    padding-left: 20px;
}

.stat-item::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.stat-number {
    font-size: clamp(38px, 4vw, 50px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number::after {
    content: "+";
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.clients-title {
    font-size: clamp(32px, 5vw, 45px);
    font-weight: 300;
    /* line-height: 1.1; */
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    font-size: 18px;
    color: rgb(58, 33, 150);
    margin-bottom: 2rem;
}

/* Slider container */
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: #fff;
}

/* Moving track */
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 35s linear infinite;
}

/* Pause animation on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Each logo wrapper */
.logo-col {
  flex: 0 0 auto;
  width: 180px;          /* equal spacing */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
.logo-item {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover effect */
.logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.col-4.col-md-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}



.get-in-touch {
  display: flex;
  flex-direction: column;
}

.contact-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    clip-path: inset(0px 100% 0px 0px);
    transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-image-wrapper.active {
    clip-path: inset(0px);
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.contact-image-wrapper:hover .contact-img {
    transform: scale(1.05);
}

.contact-title {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-desc {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 40px;
}

#site-footer {
    background: var(--primary-color);
    padding: 80px 0px 40px;
    color: rgb(224, 224, 224);
}

.footer-logo-merged {
    width: 140px;
    height: 70px;
    position: relative;
}

.f-logo-1 {
    position: absolute;
    left: 40px;
    top: -9px;
}

.f-logo-2 {
    position: absolute;
    left: 0px;
    top: 20px;
}

.footer-heading {
    color: rgb(212, 161, 255);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.icon-wrapper {
    width: 24px;
    flex-shrink: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgb(224, 224, 224);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
    padding-left: 5px;
}

.social-icons img {
    width: 24px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-icons a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes glowingTrail {
    0% {
        filter: drop-shadow(rgba(255, 255, 255, 0) 0px 0px 2px) drop-shadow(rgba(255, 255, 255, 0) 0px 0px 4px);
        opacity: 0.7;
        transform: translateX(0px) translateY(0px);
    }

    40% {
        filter: drop-shadow(rgba(255, 255, 255, 0.3) 0px 0px 6px) drop-shadow(rgba(255, 255, 255, 0.5) 0px 0px 18px);
        opacity: 1;
    }

    70% {
        filter: drop-shadow(rgba(255, 255, 255, 0.55) 0px 0px 12px) drop-shadow(rgba(255, 255, 255, 0.7) 0px 0px 25px);
        transform: translateX(8px) translateY(-8px);
    }

    100% {
        filter: drop-shadow(rgba(255, 255, 255, 0.15) 0px 0px 3px) drop-shadow(rgba(255, 255, 255, 0.35) 0px 0px 10px);
        opacity: 0.8;
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes glowingTrailReverse {
    0% {
        filter: drop-shadow(rgba(255, 255, 255, 0) 0px 0px 2px) drop-shadow(rgba(255, 255, 255, 0) 0px 0px 4px);
        opacity: 0.7;
        transform: translateX(0px) translateY(0px);
    }

    40% {
        filter: drop-shadow(rgba(255, 255, 255, 0.3) 0px 0px 6px) drop-shadow(rgba(255, 255, 255, 0.5) 0px 0px 18px);
        opacity: 1;
    }

    80% {
        filter: drop-shadow(rgba(255, 255, 255, 0.7) 0px 0px 14px) drop-shadow(rgb(255, 255, 255) 0px 0px 30px);
        transform: translateX(-10px) translateY(10px);
    }

    100% {
        filter: drop-shadow(rgba(255, 255, 255, 0.15) 0px 0px 3px) drop-shadow(rgba(255, 255, 255, 0.35) 0px 0px 10px);
        opacity: 0.8;
    }
}

.footer-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

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

.line-1.is-animated {
    animation: 6s ease-in-out 0s infinite alternate none running glowingTrail;
}

.line-2.is-animated {
    animation: 7s ease-in-out 0.6s infinite alternate none running glowingTrailReverse;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: 0.8s ease-out 0s 1 normal forwards running fadeInUp;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.anim-line, .anim-fade {
    display: inline-block;
    opacity: 0;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: fadeUp;
    animation-timeline: auto;
    animation-range: normal;
    animation-delay: var(--delay);
}

.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0px);
}

.reveal-logo {
    transform: translateY(30px);
    transition: 0.6s;
    filter: grayscale(100%);
    opacity: 0.6;
}

.reveal-logo.active {
    opacity: 1;
    transform: translateY(0px);
    filter: grayscale(0%);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}


/* --- CONTAINER & STICKY SETTINGS --- */
#section-subnav {
    max-width: 100%; /* Changed to 100% so it spans full width when sticky */
    margin: 0px auto;
    padding: 0 20px; /* Adjusted padding */
    
    /* STICKY MAGIC */
    position: sticky;
    top: 50px;
    z-index: 1000; /* Ensures it stays above other content */
    background-color: #ffffff; /* Must have a background to hide content behind it */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Optional: adds subtle shadow when sticking */
}

.subnav-container {
  max-width: 1200px;          /* adjust if needed */
  margin: 0 auto;             /* CENTER THE WHOLE BLOCK */
  padding: 0 16px;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;        /* CENTER CONTENT */
}

/* --- LINKS --- */
.subnav-links {
    display: flex;
    gap: 40px;
    overflow-x: auto; /* Allows horizontal scroll on mid-sized screens */
    padding-bottom: 12px;
    scrollbar-width: none;
    transition: all 0.35s ease-in-out;
}

.subnav-links::-webkit-scrollbar {
    display: none;
}

.subnav-item {
    font-size: 16px;
    white-space: nowrap;
    font-weight: 500;
    color: rgb(23, 22, 22);
    text-decoration: none; /* Removed underline from links */
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 0; /* Added hit area */
}

.subnav-item.active {
    color: rgb(73, 16, 132);
    font-weight: 700;
}

/* --- INDICATOR LINE --- */
.subnav-line {
    position: absolute;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background: rgb(230, 230, 230);
}

.subnav-indicator {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 4px;
    width: 0px; /* JS will set this */
    background: rgb(73, 16, 132);
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s;
    border-radius: 10px 10px 0 0;
}

/* --- HAMBURGER --- */
.subnav-hamburger {
    width: 30px;
    height: 20px;
    position: absolute;
    right: 0px;
    top: 20px; /* Aligned with padding */
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.subnav-hamburger span {
    width: 100%;
    height: 3px;
    background: rgb(73, 16, 132);
    border-radius: 4px;
    transition: 0.3s;
}

/* --- MOBILE RESPONSIVENESS (< 768px) --- */
@media screen and (max-width: 1025px) {
    .subnav-hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .subnav-links {
        display: block; /* Stack items */
        position: absolute;
        top: 100%; /* Push below header */
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        
        /* Collapsed State */
        max-height: 0; 
        overflow: hidden;
        opacity: 0;
        padding-bottom: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Open State (Toggled via JS) */
    .subnav-links.mobile-open {
        max-height: 400px; /* Allow expansion */
        opacity: 1;
        padding: 20px;
    }

    .subnav-item {
        display: block;
        padding: 15px 0;
        margin-left: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Hide the sliding indicator on mobile as it's tricky with vertical lists */
    .subnav-indicator, .subnav-line {
        display: none;
    }
}


#section-about {
    max-width: 1440px;
    margin: 0px auto;
    padding: 60px 20px;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    flex: 1 1 0%;
    max-width: 100%;
}

.image-mask {
    width: 100%;
    height: 400px;
    background: rgb(9, 9, 9);
    overflow: hidden;
    position: relative;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-content {
    flex: 1 1 0%;
    padding-top: 10px;
}

.section-label {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgb(73, 16, 132);
}

#section-timeline {
    max-width: 1440px;
    margin: 0px auto;
    padding: 68px 40px;
    background: rgb(73, 16, 132);
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    font-family: Inter, sans-serif;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 185px;
    position: relative;
    z-index: 10;
}

.timeline-header h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 300;
    margin: 0px;
    letter-spacing: -1px;
}

.timeline-nav {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 70px;
    height: 70px;
    stroke: rgb(255, 255, 255);
}

.big-number {
    position: absolute;
    top: 53%;
    right: 5%;
    transform: translateY(-50%);
    font-size: clamp(150px, 25vw, 400px);
    color: rgb(105, 27, 185);
    opacity: 0.4;
    line-height: 0.8;
    z-index: 1;
    pointer-events: none;
    transition: 0.5s ease-in-out;
    letter-spacing: -0.05em;
}

.timeline-graphic {
    --marker-position: 5%;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    z-index: 5;
    margin-bottom: 75px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    z-index: 4;
}

.active-point-container {
    position: absolute;
    left: var(--marker-position);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: grab;
}

.year-label {
    background: rgb(255, 255, 255);
    color: rgb(73, 16, 132);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 15px;
}

.dot-main {
    width: 24px;
    height: 24px;
    background: rgb(73, 16, 132);
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
}

.dot-main::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
}

.slide-content-wrapper {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    width: 75%;
    transition: opacity 0.4s ease-in-out;
}

.image-circle-container {
    width: 250px;
    height: 250px;
    background-color: rgb(204, 204, 204);
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgb(73, 16, 132);
    margin-top: -181px;
    margin-bottom: 90px;
    position: relative;
    z-index: 7;
}

.slide-content-wrapper.fading-out {
    opacity: 0;
}

.image-circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin: 0px;
    color: rgba(255, 255, 255, 0.9);
}

#section-vision-mission {
    max-width: 1440px;
    margin: 0px auto;
    padding: 35px 20px;
}

.vm-container {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.vm-block h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

.vm-block p {
    font-size: 17px;
    line-height: 1.2;
    color: rgb(73, 16, 132);
}

#section-awards {
    max-width: 1440px;
    margin: 0px auto;
    padding: 60px 20px 80px;
}

.section-header {
    /* margin-bottom: 40px; */
    position: relative;
}

.section-header h2 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 300;
}

.subtitle {
    font-size: 18px;
    color: rgb(73, 16, 132);
}

.nav-arrows {
    position: absolute;
    top: -16px;
    right: 0px;
}

.arrow-group {
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.arrow-group img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.awards-grid {
    display: block;
}

.award-card {
    background: rgba(225, 208, 231, 0.85);
    padding: 20px;
    text-align: center;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.award-img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-card p {
    font-size: 16px;
    font-weight: 600;
    color: rgb(73, 16, 132);
    line-height: 1.4;
}

#section-testimonials {
    max-width: 1440px;
    margin: 0px auto;
    padding: 60px 20px 80px;
}

.testimonials-grid {
    display: block;
}

.testi-card {
    background: rgb(73, 16, 132);
    color: rgb(255, 255, 255);
    padding: 40px 30px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
}

.testi-card h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.testi-card .quote {
    font-size: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.testi-card .author strong {
    font-size: 16px;
}

.testi-card .author span {
    font-size: 14px;
    opacity: 0.9;
}

.testimonials-grid .owl-stage {
    display: flex;
}

.testimonials-grid .owl-item {
    display: flex;
}

.testimonials-grid .testi-card {
    height: 100%;
}

.testi-card {
    min-height: 380px;
}

#mentor-card {
    max-width: 1440px;
    margin: 32px auto;
    padding: 0px 21px;
    font-family: Inter, sans-serif;
}


#lead-example {
    max-width: 1440px;
    margin: 20px auto;
    padding: 0px 21px;
    font-family: Inter, sans-serif;
}




/* ===== COMMON CARD WRAPPER ===== */
.mentor-wrapper,
.lead-wrapper {
    background: rgb(217, 217, 217);
    border-radius: 16px;
    padding: 0 0 0 89px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 360px; /* SAME HEIGHT */
}

/* ===== LEFT CONTENT ===== */
.mentor-left,
.lead-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== RIGHT IMAGE AREA ===== */
.mentor-right,
.lead-right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.mentor-right img,
.lead-right img {
    width: 100%;
    max-width: 470px;
    height: 354px;       /* SAME IMAGE HEIGHT */
    object-fit: contain;
}

/* ===== TITLES ===== */
.mentor-title,
.lead-title {
    font-size: 50px;
    font-weight: 300;
    color: rgb(45, 45, 168);
    margin-bottom: 10px;
}

.mentor-name {
    font-size: 28px;
    font-weight: 300;
    color: rgb(45, 45, 168);
    margin-bottom: 10px;
}

.lead-name {
    font-size: 35px;
    font-weight: 300;
    color: rgb(45, 45, 168);
    margin-bottom: 10px;
}

.mentor-role,
.lead-role {
    font-size: 18px;
    color: rgb(68, 68, 68);
}

/* ===== EXTRA LEAD TEXT ===== */
.lead-text {
    margin-top: 40px;
    font-size: 16.5px;
    line-height: 1.7;
    color: rgb(51, 51, 51);
    column-count: 2;
    column-gap: 50px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .mentor-wrapper,
    .lead-wrapper {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        min-height: auto;
    }

    .mentor-left,
    .lead-left,
    .mentor-right,
    .lead-right {
        width: 100%;
        justify-content: center;
    }

    .mentor-right img,
    .lead-right img {
        height: 240px;
    }
}


.animated-block {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s, transform 0.8s;
}

.animated-block.visible {
    opacity: 1;
    transform: translateY(0px);
}

/*#section-team {
    max-width: 1440px;
    margin: 0px auto;
    padding: 0px 20px 60px;
}

.team-grid {
    display: block;
    margin-top: 40px;
}

.team-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.35s, box-shadow 0.35s;
}

.image-sweep {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.image-sweep img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.35s, transform 0.35s;
}

.owl-carousel .owl-item:hover .image-sweep img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(49, 15, 145, 0.9), transparent);
    color: rgb(255, 255, 255);
}

.team-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.team-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.team-overlay .reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s, transform 0.35s;
}

.owl-carousel .owl-item:hover .team-overlay .reveal-text {
    opacity: 1;
    transform: translateY(0px);
}

.owl-carousel .owl-item:hover .team-card {
    box-shadow: rgba(73, 16, 132, 0.25) 0px 20px 50px;
    transform: translateY(-6px);
}

@media (hover: none) {
    .image-sweep img {
        filter: grayscale(0%);
        transform: none;
    }

    .team-overlay .reveal-text {
        opacity: 1;
        transform: none;
    }
}*/
/* Font base */


/* ================================
   LEADERSHIP TEAM – STATIC VERSION
   Matches Samarth site exactly
================================ */

/* Font consistency */
#section-team {
  font-family: 'Inter', sans-serif;
}

/* Container */
.team-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 0px;
}

.section-header .subtitle {
  font-size: 15px;
  opacity: 0.7;
}

/* Static 2-card grid */
.team-grid-static {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f3f3;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.team-card:hover {
  transform: translateY(-6px);
}

/* Image */
.image-sweep img {
  width: 100%;
  height:558px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(.4,0,.2,1);
}

.team-card:hover .image-sweep img {
  transform: scale(1.08);
}

/* Gradient overlay (exact style) */
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(109, 40, 217, 0) 45%,
    rgba(109, 40, 217, 0.85) 100%
  );
  z-index: 1;
  transition: opacity 0.6s ease;
}

/* Text overlay */
.team-overlay {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

/* Reveal animation */
.team-overlay h3,
.team-overlay p {
  transform: translateY(14px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}

.team-card:hover .team-overlay h3 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.team-card:hover .team-overlay p {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

/* Typography */
.team-overlay h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.team-overlay p {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 400;
  /* opacity: 0.9; */
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid-static {
    grid-template-columns: 1fr;
  }

  .image-sweep img {
    height: 360px;
  }
}



#section-work {
    max-width: 1440px;
    margin: 0px auto;
    padding: 60px 20px;
}

.work-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.work-image {
    flex: 1 1 0%;
}

.image-mask {
    overflow: hidden;
    border-radius: 18px;
}

.image-mask img {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.work-image:hover .image-mask img {
    transform: scale(1.12);
}

.work-content {
    flex: 1 1 0%;
}

.work-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.work-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(73, 16, 132);
    margin-bottom: 24px;
}

.btn-work {
    display: inline-block;
    background: rgb(73, 16, 132);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border-radius: 24px;
    border: 1px solid rgb(179, 92, 254);
    text-decoration: none;
    transition: 0.3s;
}

.btn-work:hover {
    background: rgb(95, 24, 178);
    transform: translateY(-2px);
}

@media (hover: none) {
    .image-mask img {
        transform: scale(1.08);
    }
}

.section-header {
    text-align: center;
    padding: 60px 1rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 750px;
    margin: 0px auto;
    color: rgb(73, 16, 132);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0px auto;
}

.product-card {
    background: rgb(225, 208, 231);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 30px;
}

.card-image-placeholder {
    width: 100%;
    height: 259px;
    background-color: #debcf5;
    padding: 7px;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(204, 204, 204);
    transition: transform 0.5s;
    /* border-radius: 9px; */
}

.card-image-placeholder img {
	border-radius: 8px;
}

.product-card:hover .card-image-placeholder {
    transform: scale(1.05);
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 18px;
}

.product-card p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: rgb(73, 16, 132);
}

.explore-btn {
    margin-top: auto;
    background-color: rgb(73, 16, 132);
    color: rgb(255, 255, 255);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.explore-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.product-detail-container {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0px auto;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 2rem 0px;
    border-bottom: 1px solid rgb(238, 238, 238);
    transition: background-color 0.3s;
}

.product-row:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.product-row:nth-child(2n) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
}

.product-image img {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 10px 15px);
    transition: transform 0.5s;
}

.product-row:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    flex: 1 1 0%;
}

.product-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info p {
    color: #491084;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pleft{
	 text-align: left;
}

.pright{
	 text-align: right;
}

.download-btn {
    display: inline-block;
    background-color: #491084;
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.download-btn:hover {
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
}

/* --- MAIN CONTACT SECTION --- */
        .contact-section {
            padding: 37px 5%;
            background-color: white;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Left Column: Info */
        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .section-subtitle {
            color: var(--secondary-purple);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background-color: var(--light-lavender);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
            transition: 0.3s;
        }

        .info-item:hover .icon-box {
            background-color: var(--primary-purple);
            color: white;
        }

        .info-content h5 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .info-content span {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Right Column: Form (Styled like Samarth Cards) */
        .contact-form-wrapper {
            flex: 1;
            min-width: 300px;
            background-color: var(--light-lavender); /* Light purple bg from cards */
            padding: 40px;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary-purple);
        }

        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid transparent;
            background-color: white;
            border-radius: 5px; /* Slightly rounded like inputs in image */
            font-family: inherit;
            font-size: 0.95rem;
            transition: 0.3s;
            outline: none;
        }

        input:focus, textarea:focus {
            border-color: var(--secondary-purple);
            box-shadow: 0 0 0 3px rgba(106, 44, 191, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        button.submit-btn {
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: var(--border-radius); /* Pill shape button */
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        button.submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 26, 133, 0.3);
        }

        /* --- MAP SECTION --- */
        .map-section {
            width: 100%;
            height: 400px;
            filter: grayscale(100%); /* Optional: Matches the sleek B&W/Purple vibe */
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

 /* --- 5. MAIN CONTACT LAYOUT (Flexbox) --- */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: -50px auto 50px; /* Pull up to overlap banner slightly */
            padding: 0 20px;
            gap: 0;
            position: relative;
            z-index: 10;
        }

        /* --- LEFT SIDE: GET IN TOUCH --- */
        .left-col-info {
            flex: 1;
            min-width: 350px;
            background: white;
            padding: 60px;
            border-radius: 10px 0 0 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .left-col-info h2 {
            font-size: 2rem;
            color: var(--primary-purple);
            margin-bottom: 20px;
            font-weight: 400;
        }
        .left-col-info p { color: #666; margin-bottom: 40px; }

        .info-card {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
        }
        .info-icon {
            width: 50px;
            height: 50px;
            background: #f3e5f5;
            color: var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            transition: 0.3s;
        }
        .info-card:hover .info-icon {
            background: var(--primary-purple);
            color: white;
        }
        .info-text h4 { font-size: 1.1rem; margin-bottom: 5px; color: #333; }
        .info-text span { color: #666; font-size: 0.95rem; }

        /* --- RIGHT SIDE: FORM (Samarth Dark Purple Card) --- */
        .right-col-form {
            flex: 1;
            min-width: 350px;
            background-color: var(--primary-purple); /* Matches Samarth Form Background */
            padding: 60px;
            border-radius: 0 10px 10px 0;
            color: white;
            box-shadow: 0 20px 40px rgba(74, 20, 140, 0.4);
        }

        /* --- FORM STYLING (For Provided HTML) --- */
        
        /* Grid System simulation for the User's HTML classes 
        .row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
        .col-xl-6, .col-lg-6, .col-md-6, .col-sm-6 {
            width: 50%;
            padding: 0 30px;
            margin-bottom: 20px;
        }
        .col-xs-12 { width: 100%; padding: 0 10px; margin-bottom: 20px; }*/

        /* Input Styling */
        .right-col-form label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .wpcf7-form-control {
            width: 100%;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            padding: 12px 15px;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: 0.3s;
            outline: none;
        }

        .wpcf7-form-control::placeholder { color: rgba(255,255,255,0.5); }
        .wpcf7-form-control:focus {
            border-color: var(--bright-purple);
            background: rgba(255,255,255,0.05);
        }

        textarea.wpcf7-textarea { min-height: 120px; resize: vertical; }

        /* Submit Button */
        input.wpcf7-submit {
            background: linear-gradient(90deg, #9c27b0, #d500f9);
            color: white;
            border: none;
            width: 100%;
            padding: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 30px;
            cursor: pointer;
            margin-top: 10px;
            transition: transform 0.2s;
        }
        input.wpcf7-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

.wpcf7-not-valid-tip {
    color: #FFFFFF;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.wpcf7-form .error {
    border-color: #FFFFFF;
}

.wpcf7-response-output {
    margin-top: 15px;
    padding: 12px;
    display: none;
    font-size: 14px;
}

.wpcf7-response-output.success {
    background: #d4edda;
    color: #155724;
}

.wpcf7-response-output.fail {
    background: #f8d7da;
    color: #721c24;
}



/* --- BLog LAYOUT --- */
    .pxl-blog-page-wrapper {
        max-width: 1300px;
        margin: 60px auto;
        padding: 0 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .pxl-content-area { flex: 3; min-width: 0; }
    .pxl-sidebar-area { flex: 1; min-width: 300px; }

    /* --- BLOG GRID --- */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-item {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: var(--transition);
        border: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
    }

    .blog-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(74, 20, 140, 0.12);
    }

    .blog-media { height: 220px; overflow: hidden; }
    .blog-media img { width: 100%; height: 100%; object-fit: cover; }

    .blog-content { padding: 25px; flex-grow: 1; }
    
    .blog-title { 
        font-size: 1.5rem; /* Outfit looks better slightly larger when weight is 300 */
        color: var(--samarth-purple); 
        text-decoration: none; 
        line-height: 1.2;
        margin-bottom: 15px;
        display: block;
    }

    .blog-meta {
        font-family: var(--font-body);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--samarth-accent);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .blog-excerpt {
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

    /* --- SIDEBAR WIDGETS --- */
    .widget {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 1.4rem;
        color: var(--samarth-purple);
        margin-bottom: 20px;
        border-bottom: 2px solid var(--samarth-light);
        padding-bottom: 10px;
    }

    /* Search Widget */
    .search-form { position: relative; display: flex; }
    .search-form input {
        width: 100%;
        padding: 12px 18px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-family: var(--font-body);
        outline: none;
    }
    .search-form button {
        position: absolute;
        right: 5px;
        top: 5px;
        background: var(--samarth-purple);
        color: white;
        border: none;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        cursor: pointer;
    }

    /* Categories Widget */
    .widget-categories ul { list-style: none; padding: 0; }
    .widget-categories li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        font-family: var(--font-body);
        font-size: 0.95rem;
        border-bottom: 1px solid #f9f9f9;
    }
    .widget-categories li a { color: var(--text-main); text-decoration: none; transition: 0.2s; }
    .widget-categories li a:hover { color: var(--samarth-accent); }

    /* Recent Posts Widget */
    .recent-post-item { display: flex; gap: 15px; margin-bottom: 15px; align-items: center; }
    .recent-post-thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
    .recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .recent-post-info h5 { font-size: 1rem !important; margin: 0; line-height: 1.2; }
    .recent-post-info h5 a { color: var(--samarth-purple); text-decoration: none; }

    /* --- RESPONSIVE --- */
    @media (max-width: 991px) {
        .pxl-content-area, .pxl-sidebar-area { flex: 1 1 100%; }
        .pxl-sidebar-area { order: 2; }
    }
    @media (max-width: 600px) {
        .blog-grid { grid-template-columns: 1fr; }
    }

/* Custom Download Modal Styling */
#downloadModal .modal-content {
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#downloadModal .modal-header {
    background: #1a1a1a;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

#downloadModal .modal-title {
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

#downloadModal .btn-close {
    filter: invert(1);
}

#downloadModal .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

#downloadModal .form-control:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}

#downloadModal .btn-primary {
    background: linear-gradient(90deg, #1a1a1a 0%, #333333 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s;
}

#downloadModal .btn-primary:hover {
    transform: translateY(-2px);
    background: #000;
}

#downloadModal a#toggleAuth {
    color: #555;
    text-decoration: underline;
    font-size: 14px;
}
