*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins';
  
}

/* BUBBLES */
.bubbles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, gold, silver);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(2px);
}

.topbar {
  background: linear-gradient(90deg, #050b18, #07132d);
  border-bottom: 1px solid rgba(0, 136, 255, 0.25);
  font-size: 14px;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.topbar-container {
  max-width: 1300px;
  margin: auto;
  padding: 8px 16px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 10px;
}

/* ---------- LEFT CONTACT ---------- */
.topbar-left {
  display: flex;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfd8ff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.topbar-item i {
  color: #1e90ff;
  text-shadow: 0 0 6px rgba(30, 144, 255, 0.8);
}

.topbar-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ---------- CENTER MARQUEE ---------- */
.topbar-center {
  overflow: hidden;
  position: relative;
}

.marquee {
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-scroll 20s linear infinite;
  color: #7ecbff;
  text-shadow: 0 0 8px rgba(0, 136, 255, 0.7);
}

/* MARQUEE KEYFRAMES */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------- RIGHT SOCIAL ICONS ---------- */
.topbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.topbar-right a {
  color: #1e90ff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  background: rgba(30, 144, 255, 0.08);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  list-style: none;
  text-decoration: none;
}

/* ICON HOVER EFFECT */
.topbar-right a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  box-shadow: 0 0 12px rgba(30, 144, 255, 0.8);
  transform: translateY(-2px) scale(1.08);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 770px) {
  .topbar-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  .topbar-right {
    margin-top: 6px;
  }
}

@media(max-width:378px){
  .topbar-item span{
    font-size: 0.9em;
  }
}

@media(max-width:322px){
  .topbar-item span{
    font-size: 0.7em;
  }
}
@media(max-width:1026px){
  .topbar-left{
    font-size: 0.7em;
  }
}
@media (max-width: 1026px) and (min-width: 901px) {
  .topbar-container {
    grid-template-columns: 1fr 1.5fr 1fr;
    display: grid;
    align-items: center;
  }

  .topbar-left {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    
  }

  .topbar-center {
    text-align: center;
  }

  .topbar-right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 0;
  }
}
body { 
  background:linear-gradient(135deg, #c3c6ca, #f7f9fc); 
  padding-top: 80px;
}




/* hero section */
/* BASE */
.about-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #000;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) blur(4px);
  animation: zoom 22s ease-in-out infinite;
}

@keyframes zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ABOUT US CLEAR TEXT *

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.85)
  );
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

/* TEXT */
.title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 38px;
}

.title span {
  background: linear-gradient(135deg, #00c6ff, #b60fcc);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== TYPEWRITER (CLIP-PATH BASED – FIXED) ===== */
.typewriter {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: reveal 3.5s steps(50, end) forwards;
}

/* subtitle delay */
.subtitle {
  animation-delay: 3.8s;
}


/* reveal animation */
@keyframes reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .typewriter {
    clip-path: none;
    animation: none;
  }

  .typewriter::after {
    display: none;
  }

  .focus-text {
    font-size: 3rem;
    letter-spacing: 4px;
  }
  .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  margin-top: 100px;
}
}
@media(max-width:428px){
  .hero-content{
    font-size: 0.9em;
  }
}

@media(max-width:378px){
  .hero-content{
    font-size: 0.8em;
    margin-top: 150px;
  }
  .hero-content p{
    margin-top: -20px;
    font-size: 1.1em;
  }
}

/* who we are section */
/* WHO WE ARE SECTION */
.who-we-are {
  background: linear-gradient(to bottom, #0c0c0c, #120b6d);
  padding: 120px 10%;
  color: #fff;
}

.who-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TITLE */
.who-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 20px;
  min-height: 60px;
}

#whoTypeText {
  background: linear-gradient(120deg, #4ff2fe, #00f2fe, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-right: 2px solid #6c63ff;
  padding-right: 6px;
}

/* TEXT */
.who-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 18px;
  text-align: justify;
}

.highlight {
  color: aqua;
}

/* CTA */
.who-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(120deg, #6c63ff, #00f2fe);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.who-cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(120deg, #d60a88, #ca0909);
}

/* IMAGE */
.who-image {
  position: relative;
}

.who-image img {
  width: 100%;
  border-radius: 20px;
}

.who-image-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(108,99,255,0.3), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .who-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #whoTypeText {
    border-right: none;
  }
}
/* IMAGE FLOAT ANIMATION */
.who-image {
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
}

/* IMAGE */
.who-image img {
  width: 100%;
  border-radius: 20px;
}

/* GLOW PULSE */
.who-image-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(
    circle,
    rgba(108,99,255,0.35),
    transparent 65%
  );
  filter: blur(30px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

/* FLOAT KEYFRAMES */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* GLOW KEYFRAMES */
@keyframes glowPulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .who-image {
    animation: none;
  }
}


/* WHO WE ARE SECTION */
.who-we-are {
  position: relative;
  overflow: hidden;
}

/* TOP SVG BACKGROUND */
.who-we-are::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M1000 0H0v52C62.5 28 125 4 250 4c250 0 250 96 500 96 125 0 187.5-24 250-48V0Z' fill='%23FFFFF6'/%3E%3C/svg%3E")
    no-repeat center / 100% 100%;
  z-index: 1;
}

/* BOTTOM SVG BACKGROUND */
.who-we-are::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 100h1000V48c-62.5 24-125 48-250 48-250 0-250-96-500-96C125 0 62.5 24 0 48v52Z' fill='%23FFFFF6'/%3E%3C/svg%3E")
    no-repeat center / 100% 100%;
  z-index: 1;
}

/* KEEP CONTENT ABOVE SVG */
.who-container {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE HEIGHT */
@media (max-width: 768px) {
  .who-we-are::before,
  .who-we-are::after {
    height: 70px;
  }
}



/* founder section */
/* FOUNDER SECTION */
.founder-section {
  background: linear-gradient(180deg, #f5fbff, #eef6ff);
  padding: 140px 10%; /* more vertical padding */
  color: #222;
  margin-top: -80px;
}

/* CONTAINER GRID */
.founder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: auto;
  align-items: start;
}

/* CARD STYLE */
.founder-card {
  background: linear-gradient(135deg, #6c63ff, #00f2fe);
  border-radius: 40px;
  padding: 80px 40px 40px 40px; /* taller card */
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* IMAGE WRAPPER WITH REVEAL */
.founder-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* bigger image */
  margin: -50px auto 30px auto; /* float above card */
  border-radius: 50%;
  overflow: hidden;
}

/* IMAGE REVEAL ANIMATION */
.founder-image-wrapper img {
  width: 100%;
  display: block;
  transform: translateY(-100%);
  animation: revealImage 1.5s ease forwards, floatImage 6s ease-in-out 1.5s infinite;
}

/* FLOAT ANIMATION */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* IMAGE REVEAL */
@keyframes revealImage {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

/* IMAGE GLOW */
.image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212, 225, 231, 0.25), transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

/* NAME & ROLE */
.founder-name {
  font-size: 1.8rem; /* bigger name */
  font-weight: 700;
  margin-top: 20px;
  background: linear-gradient(120deg, #b80d9b, #070707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-role {
  font-size: 1.1rem; /* slightly bigger role */
  opacity: 0.85;
  margin-bottom: 20px;
  background: linear-gradient(120deg, #e710c3, #070707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTENT */
.founder-content {
  color: #222;
}

.founder-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: black;
}

.founder-content p {
  font-size: 1.1rem; /* slightly bigger text */
  line-height: 1.8;
  margin-bottom: 18px;
  color: black;
  text-align: justify;
}
.founder-title{
    background: linear-gradient(120deg, #ce1891, #070707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .founder-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image-wrapper {
    max-width: 300px; /* adjust for smaller screens */
    margin: -90px auto 20px auto;
  }
}

/* founder journey */
/* SECTION *
.futuristic-cards-section.light-bg {
 background: linear-gradient(180deg, #f5fbff, #eef6ff);
  padding: 80px 5%;
  color: #333;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 300px;
}

/* SECTION TITLE *
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 50px;
  margin-top: 60px;
}


.section-title span {
  background: linear-gradient(120deg,#6c63ff,#00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARDS CONTAINER *
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* CARD *
.card {
  background: rgb(6, 60, 82); 
  border-radius: 20px;
  padding: 20px;
  width: 220px;
  min-height: 180px;
  box-shadow: 0 8px 20px rgba(108,99,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(108,99,255,0.4);
}

/* ICON *
.card-icon {
  font-size: 2.3rem;
  color: aquamarine;
  margin-bottom: 10px;
  animation: floatIcon 2s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* YEAR *
.card-year {
  font-weight: 900;
  color: bisque;
  margin-bottom: 8px;
}

/* DESCRIPTION *
.card-desc {
  font-size: 0.9rem;
  line-height: 1.3;
  color: white;
  text-align: center;
}

/* RESPONSIVE *
@media(max-width:768px){
  .cards-container {
    gap: 20px;
  }
  .card {
    width: 240px;
    min-height: 150px;
  }
}

@media(max-width:770px){
  .founder-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* bigger image *
  margin: -50px auto 30px auto; 
  border-radius: 50%;
  overflow: hidden;
}

}*/


/*founder journey*/
.founder-journey-v2 {
  background: #ffffff; /* inside white */
  color: #0b102a;
  position: relative;
  overflow: hidden;
  margin-top: -90px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* =====================================
   WAVES – DARK & INTERSECTING VISIBLE
===================================== */
.wave svg {
  display: block;
  width: 100%;
}

.wave svg g path:nth-child(1) {
  fill: #030922;
  opacity: 0.6;
}

.wave svg g path:nth-child(2) {
  fill: #040c2f;
  opacity: 0.75;
}

.wave svg g path:nth-child(3) {
  fill: #061242;
  opacity: 0.85;
}

.wave svg g path:nth-child(4) {
  fill: #09136e;
  opacity: 1;
}
.wave.bottom {
  transform: rotate(180deg);
}

/* =====================================
   HEADER
===================================== */
.journey-header-v2 {
  text-align: center;
  margin-bottom: 50px;
}

.journey-header-v2 h2 {
  font-size: 36px;
  background: linear-gradient(90deg, #09136e, #4da3ff, #09136e);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite;
}

.journey-header-v2 p {
  color: #5f6f9f;
}

/* =====================================
   GRID
===================================== */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

/* =====================================
   DARK CARDS ONLY
===================================== */
.journey-box {
  background: #070b24;
  padding: 18px 20px; /* compact height */
  border-radius: 16px;
  position: relative;
  min-height: 150px;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

/* SHINE EFFECT */
.journey-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.15),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: 0.7s ease;
}

/* GRADIENT BORDER */
.journey-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    #4da3ff,
    #09136e,
    #4da3ff
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER */
.journey-box:hover::before {
  transform: translateX(120%);
}

.journey-box:hover::after {
  opacity: 1;
}

.journey-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(77,163,255,0.35);
}

/* =====================================
   YEAR BADGE
===================================== */
.year-badge {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, #d811ad, #09136e);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(77,163,255,0.8);
}

/* GOLD SPECIAL */
.gold .year-badge {
  background: radial-gradient(circle, #ffd700, #b8860b);
  box-shadow: 0 0 20px rgba(255,215,0,0.9);
}

/* VISION CARD */
.vision {
  background: linear-gradient(135deg, #09136e, #0a1b8a);
}

/* TEXT */
.journey-box p {
  font-size: 14.5px;
  line-height: 1.6;
}

.journey-box span {
  color: #9fd6ff;
}

/* =====================================
   ANIMATION
===================================== */
@keyframes textShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .journey-header-v2 h2 {
    font-size: 26px;
  }
  .journey-box {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .journey-header-v2 h2 {
    font-size: 22px;
  }
  .year-badge {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}

/* vison and mission section */
/* ================= SECTION ================= */

.vmv-section {
  min-height: 60vh;
  padding: 120px 6%;
  background: linear-gradient(135deg, #020231, #040d58);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}

/* ================= CONTAINER ================= */

.vmv-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 80px 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  margin-top: -100px;
}

/* ================= LEFT MENU ================= */

.vmv-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vmv-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.3rem;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.vmv-btn::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ff003c;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

.vmv-btn.active {
  color: #ff003c;
  font-weight: 600;
}

.vmv-btn.active::before {
  opacity: 1;
  box-shadow: 0 0 15px #ff003c;
}

/* ================= CENTER LINE ================= */

.vmv-line {
  position: relative;
  width: 4px;
  height: 320px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}

.line-indicator {
  position: absolute;
  width: 100%;
  height: 33%;
  background: linear-gradient(180deg, #ff003c, #ff6a00);
  border-radius: 10px;
  transition: 0.6s ease;
  box-shadow: 0 0 25px #ff003c;
  animation: pulse 2s infinite;
}

.line-indicator.top { top: 0; }
.line-indicator.middle { top: 33%; }
.line-indicator.bottom { bottom: 0; }

@keyframes pulse {
  0% { box-shadow: 0 0 15px #ff003c; }
  50% { box-shadow: 0 0 35px #ff6a00; }
  100% { box-shadow: 0 0 15px #ff003c; }
}

/* ================= CONTENT ================= */

.vmv-content {
  position: relative;
  
}

/* CONTENT SWITCH */
.contents {
  display: none;
  align-items: center;
  gap: 40px;
  animation: fadeSlide 0.6s ease forwards;
}

.contents.active {
  display: flex;
}

/* TEXT */
.vmv-text {
  flex: 1;
}

.vmv-text h3 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  background: linear-gradient(120deg, #ff6a00, #ff003c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vmv-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e6e6e6;
  max-width: 420px;
}

/* IMAGE */
.vmv-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.vmv-image img {
  width: 260px;
  height: 200px;
  
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 30px rgba(255,0,60,0.3),
    inset 0 0 20px rgba(255,255,255,0.05);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

.vmv-image::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,0,60,0.45), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

/* ================= ANIMATION ================= */

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */


/* ================= LARGE TABLETS / SMALL LAPTOPS ================= */
@media (max-width:1024px){

  .vmv-container{
    grid-template-columns: 180px 60px 1fr;
    gap:30px;
    padding:40px 30px;
    margin-top:-60px;
  }

  .vmv-text h3{
    font-size:2rem;
  }

  .vmv-text p{
    font-size:1rem;
  }

  .vmv-image img{
    width:230px;
    height:180px;
  }
}


/* ================= TABLETS ================= */
@media (max-width:900px){

  .vmv-section{
    padding:100px 5%;
  }

  .vmv-container{
    grid-template-columns:1fr;
    gap:25px;
    padding:30px 20px;
    margin-top:-40px;
    text-align:center;
  }

  .vmv-menu{
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
  }

  .vmv-btn{
    font-size:1.1rem;
  }

  .vmv-line{
    height:180px;
    margin:15px auto;
  }

  .contents.active{
    flex-direction:column;
    gap:25px;
  }

  .vmv-text p{
    margin:auto;
    max-width:520px;
  }
}


/* ================= LARGE PHONES ================= */
@media (max-width:768px){

  .vmv-section{
    padding:90px 5%;
  }

  .vmv-btn{
    font-size:1rem;
  }

  .vmv-text h3{
    font-size:1.7rem;
  }

  .vmv-text p{
    font-size:0.95rem;
  }

  .vmv-image img{
    width:200px;
    height:160px;
  }
}


/* ================= MEDIUM PHONES ================= */
@media (max-width:600px){

  .vmv-section{
    padding:80px 5%;
  }

  .vmv-menu{
    gap:14px;
  }

  .vmv-btn{
    font-size:0.95rem;
  }

  .vmv-text h3{
    font-size:1.5rem;
  }

  .vmv-image img{
    width:180px;
    height:140px;
  }
}


/* ================= SMALL PHONES ================= */
@media (max-width:480px){

  .vmv-container{
    padding:25px 15px;
  }

  .vmv-btn{
    font-size:0.9rem;
  }

  .vmv-text h3{
    font-size:1.35rem;
  }

  .vmv-text p{
    font-size:0.9rem;
    line-height:1.6;
  }

  .vmv-image img{
    width:160px;
    height:130px;
  }
}


/* ================= VERY SMALL PHONES ================= */
@media (max-width:360px){

  .vmv-section{
    padding:90px 4%;
  }

  .vmv-btn{
    font-size:0.8rem;
  }

  .vmv-text h3{
    font-size:1.2rem;
  }

  .vmv-text p{
    font-size:0.85rem;
  }

  .vmv-image img{
    width:140px;
    height:120px;
  }
}
/*
@media (max-width: 900px) {
  .vmv-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vmv-menu {
    flex-direction: row;
    justify-content: center;
  }

  .vmv-line {
    height: 200px;
    margin: 30px auto;
  }

  .contents.active {
    flex-direction: column;
  }

  .vmv-text p {
    margin: auto;
  }
}



/* ===== SMALL PHONES ===== *
@media (max-width:400px){
  .vmv-text h3{ font-size:1.3rem; }
  .vmv-btn{ font-size:0.9rem; }
}*/


/* why profenaa */
/* ================================
   WHY CHOOSE PROFENAA – COLLEGES
================================ */

.why-profenaa-layered {
  padding: 120px 5%;
  background: linear-gradient(180deg, #f5fbff, #eef6ff);
  margin-top: -130px;
  position: relative;
  overflow: hidden;
}

/* --------------------------------
   TOP CONTENT CARD
-------------------------------- */
.big-bg-card {
  max-width: 1300px;
  margin: auto;
  background: linear-gradient(135deg, #1b4cff, #8d0a71);
  color: #fff;
  padding: 80px 90px 150px;
  border-radius: 36px;
}

.big-bg-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 20px;
}

.big-bg-card span {
  background: linear-gradient(120deg, #ffffff, #d6ecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-bg-card p {
  max-width: 900px;
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.95;
}

.big-bg-card .sub-para {
  margin-top: 16px;
  opacity: 0.85;
}
.big-bg-card .main-para{
  text-align: justify;
}
.big-bg-card .sub-para{
  text-align: justify;
}
/* --------------------------------
   SLIDER WRAPPER
-------------------------------- */
.layered-slider {
  max-width: 1000px;
  margin: -100px auto 0;
  position: relative;
  min-height: 85vh;
}

/* --------------------------------
   SLIDES
-------------------------------- */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(70px);
  transition: all 0.8s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}

/* --------------------------------
   BOOK CARD
-------------------------------- */
.book-card {
  /*background: linear-gradient(135deg, #f7fbff, #e3f1ff);*/
  background: linear-gradient(135deg, #f3f5f7, #9bb7ee);
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 35px 80px rgba(0,0,0,0.25),
    0 0 40px rgba(77,163,255,0.55);
  animation: glowPulse 4.5s ease-in-out infinite;
}

/* IMAGE (YOUR CHANGE) *
.book-card img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
  max-height: 520px;
  padding: 80px 100px 10px 100px;
  border-radius: 30px !important;
}*/
  .book-card img {
  width: 75%;
  height: 420px;
  object-fit: cover;
  display: block;
  margin: 60px auto 30px auto; /* center horizontally */
  border-radius: 24px;
}


/* --------------------------------
   CARD CONTENT
-------------------------------- */
.book-card .content {
  padding: 50px 125px 60px;
}

.book-card h3 {
  font-size: 2rem;
  color: #09136e;
  margin-bottom: 6px;
  margin-left: 30px;
}

.book-card span {
  display: block;
  font-size: 1rem;
  color: brown;
  margin-bottom: 20px;
  margin-left: 30px;
}

.book-card p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: black;
  margin-left: 30px;
}



/* --------------------------------
   NUMBER NAV
-------------------------------- */
.number-nav {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 3;
}

.num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(27,76,255,0.15);
  color: #1b4cff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.num:hover {
  transform: scale(1.05);
}

.num.active {
  background: linear-gradient(135deg, #1b4cff, #00c2ff);
  color: #fff;
  box-shadow: 0 0 22px rgba(27,76,255,0.65);
}

/* --------------------------------
   GLOW ANIMATION
-------------------------------- */
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 35px 80px rgba(0,0,0,0.25),
      0 0 40px rgba(77,163,255,0.45);
  }
  50% {
    box-shadow:
      0 50px 100px rgba(0,0,0,0.32),
      0 0 55px rgba(77,163,255,0.75);
  }
}

/* =================================
   TABLET
================================= */
@media (max-width: 992px) {
  .big-bg-card {
    padding: 65px 55px 130px;
  }

  .layered-slider {
    min-height: 95vh;
  }

  .book-card img {
    height: 60vh;
  }

  .book-card .content {
    padding: 42px 45px;
  }

  .book-card h3 {
    font-size: 1.8rem;
  }
}

/* =================================
   MOBILE
================================= */
@media (max-width: 576px) {
  .big-bg-card {
    padding: 50px 30px 120px;
    border-radius: 26px;
  }

  .layered-slider {
    margin-top: -80px;
    min-height: 105vh;
  }

  .book-card img {
    height: 45vh;
  }

  .book-card .content {
    padding: 32px;
  }

  .book-card h3 {
    font-size: 1.5rem;
  }

  .number-nav {
    margin-top: 35px;
  }

  .num {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}

/* profenaa journey */
.journey-slider-2 {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f5f9ff, #eef3ff);
  margin-top: -50px;
}

.slider-container-2 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  position: relative;
}

/* LEFT IMAGE */
.slider-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-image {
  display: none;
  text-align: center;
}

.slider-image.active {
  display: block;
}

/* LEFT IMAGE */
.slider-image img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;           /* Prevent stretching */
  object-fit: cover;             /* Proper image scaling */
  height: auto;

  border-radius: 22px;
  border: 2px solid rgba(0, 0, 128, 0.4);

  background: #fff;
  padding: 6px;

  box-shadow:
    0 25px 55px rgba(59,130,246,0.35),
    0 0 25px rgba(99,102,241,0.4);

  animation: imageFloatPro 7s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* SHINE EFFECT */
.slider-image img::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.45) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  animation: shineMove 4.5s infinite;
}

/* FLOATING ANIMATION */
@keyframes imageFloatPro {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* SHINE ANIMATION */
@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}
@media (max-width: 900px) {
  .slider-image img {
    max-width: 260px;
    animation: imageFloatPro 6s ease-in-out infinite;
  }
}

/*@media (max-width: 480px) {
  .slider-image img {
    max-width: 210px;
    animation: none; 
  }
}*/

/* RIGHT CONTENT */
.slider-right {
  position: relative;
  margin-top: 50px;
}

.content-box {
  display: none;
  animation: fadeSlide 0.8s ease forwards;
}
/* RIGHT CONTENT – SHINING CARD EFFECT */
.content-box {
  position: relative;
  padding: 30px 34px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);

  border: 2px solid rgba(59, 130, 246, 0.35);

  box-shadow:
    0 18px 45px rgba(59, 130, 246, 0.25),
    0 0 25px rgba(99, 102, 241, 0.25);

  overflow: hidden;
}

/* SHINE OVERLAY */
.content-box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%
  );

  transform: rotate(25deg);
  animation: contentShine 5s infinite;
}

/* SHINE ANIMATION */
@keyframes contentShine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}



/*@media (max-width: 900px) {
  .content-box {
    padding: 24px;
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .content-box {
    padding: 20px;
    box-shadow:
      0 10px 30px rgba(59, 130, 246, 0.2),
      0 0 18px rgba(99, 102, 241, 0.25);
  }
}
*/
.content-box.active {
  display: block;
}

.content-box h3 {
  font-size: 30px;
  margin-bottom: 12px;
  color: purple;
  text-align: justify;
}

.content-box p {
  font-size: 15.5px;
  line-height: 1.7;
  color: black;
  text-align: justify;
  max-width: 520px;
}

/* Bottom Progress Line */
.slider-line {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.slider-bar {
  width: 40px;
  height: 6px;
  border-radius: 6px;
  background: #c7d2fe;
  transition: 0.4s;
}

.slider-bar.active {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 0 12px rgba(99,102,241,0.8);
}

/* Animations */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE *
@media (max-width: 900px) {
  .slider-container-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-box p {
    margin: auto;
  }

  .slider-image img {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .slider-image img {
    width: 200px;
  }

  .content-box h3 {
    font-size: 22px;
  }

  .content-box p {
    font-size: 14.5px;
  }
}

@media(max-width:770px){
  .slider-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;           
  object-fit: cover;             
  height: auto;
  animation: imageFloatPro 7s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.content-box h3 {
  font-size: 30px;
  text-align: center;
}
.slide{
  margin-top: 30px;
}
.big-bg-card p {
  max-width: 600px;
  font-size: 0.9rem;
  opacity: 0.9;
}
}
@media(mx-width:428px){
  .slide{
  margin-top: 80px;
}
  
}
@media(max-width:325px){
  .content-box p {
  font-size: 12px;
  line-height: 1.7;
  color: black;
  text-align: justify;
  max-width: 250px;
}

}*/

/* ============================= */
/* TABLET VIEW (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px){

  .slider-container-2{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .slider-left{
    order: 1;
  }

  .slider-right{
    order: 2;
    margin-top: 0;
  }

  .slider-line{
    order: 3;
    margin-top: 35px;
  }

  .slider-image img{
    max-width: 500px;
    margin: auto;
  }

  .content-box{
    margin: auto;
    max-width: 650px;
  }

  .content-box h3{
    text-align: center;
    font-size: 26px;
  }

  .content-box p{
    text-align: center;
    margin: auto;
  }
}


/* ============================= */
/* MOBILE VIEW (≤ 768px) */
/* ============================= */
@media (max-width: 768px){

  .journey-slider-2{
    padding: 70px 20px;
  }

  .slider-image img{
    max-width: 460px;
  }

  .content-box{
    padding: 24px;
  }

  .content-box h3{
    font-size: 24px;
  }

  .content-box p{
    font-size: 15px;
  }

  .slider-bar{
    width: 32px;
    height: 5px;
  }
}


/* ============================= */
/* LARGE MOBILE (≤ 576px) */
/* ============================= */
@media (max-width: 576px){

  .journey-slider-2{
    padding: 60px 18px;
  }

  .slider-image img{
    max-width: 400px;
    animation: none; /* remove floating on small screens */
  }

  .content-box{
    padding: 22px;
    border-radius: 14px;
  }

  .content-box h3{
    font-size: 22px;
  }

  .content-box p{
    font-size: 14.5px;
  }

  .slider-line{
    gap: 10px;
  }
}


/* ============================= */
/* SMALL MOBILE (≤ 420px) */
/* ============================= */
@media (max-width: 420px){

  .slider-image img{
    max-width: 300px;
  }

  .content-box{
    padding: 20px;
  }

  .content-box h3{
    font-size: 20px;
  }

  .content-box p{
    font-size: 14px;
  }

  .slider-bar{
    width: 26px;
  }
}


/* ============================= */
/* VERY SMALL DEVICES (≤ 320px) */
/* ============================= */
@media (max-width: 320px){

  .slider-image img{
    max-width: 370px;
  }

  .content-box h3{
    font-size: 18px;
  }

  .content-box p{
    font-size: 13px;
    line-height: 1.6;
  }
}
/* count section */
/* IMPACT SECTION */
.impact-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #eaf4ff, #f6fbff);
  font-family: 'Poppins', sans-serif;
  
}

/* TITLE */
.impact-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #0b1d3a;
  margin-top: -50px;
}

.impact-title span {
  background: linear-gradient(120deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
/* GRID – FORCE 5 IN ONE LINE */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards in one line */
  gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.impact-card {
  background: linear-gradient(180deg, #2ee9d0, #85b0e0);
  border-radius: 120px 120px 20px 20px;
  padding: 50px 25px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 80, 160, 0.15);
  position: relative;
  transition: transform 0.4s ease;
}

.impact-card:hover {
  transform: translateY(-12px);
}

/* ICON */
.impact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dd0dba, #38bdf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: -80px auto 20px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
  animation: floatIcon 4s ease-in-out infinite;
}

/* NUMBERS */
.impact-card h3 {
  font-size: 2.4rem;
  color: #0b1d3a;
  margin-bottom: 10px;
}

/* TEXT */
.impact-card p {
  font-size: 1rem;
  color: black !important;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .impact-title {
    font-size: 2.2rem;
  }

  .impact-card {
    padding: 45px 20px 35px;
  }
}

@media(max-width:428px){
  .impact-card{
    margin-top: 45px;
  }
}
/* ICON CONTAINER */


/* ICON FLOAT */
@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* CARD HOVER – EXTRA DEPTH */
.impact-card:hover .impact-icon {
  box-shadow: 0 0 35px rgba(79, 172, 254, 0.9);
  transform: scale(1.05);
}

/* RESPONSIVE ICON SIZE */
@media (max-width: 768px) {
  .impact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


/* cta section */
/* FINAL CTA SECTION */
.final-cta {
  padding: 120px 6%;
  background: linear-gradient(135deg, #eaf4ff, #f5fbff);
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}

/* SOFT BACKGROUND GLOW */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(79,172,254,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,242,254,0.25), transparent 40%);
  z-index: 0;
}

/* CONTAINER */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #0a1a3a;
  line-height: 1.25;
}

.cta-content h2 span {
  background: linear-gradient(90deg, #0a088a, #d80b27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3b4a6b;
  max-width: 520px;
}

/* CTA BUTTONS */
.cta-actions {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.cta-primary,
.cta-secondary {
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY */
.cta-primary {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  box-shadow: 0 12px 30px rgba(79,172,254,0.35);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(79,172,254,0.55);
  background: linear-gradient(135deg, #cc0662, #00f2fe);
}

/* SECONDARY */
.cta-secondary {
  border: 2px solid #4facfe;
  color: #4facfe;
  background: transparent;
  
}

.cta-secondary:hover {
  background: #4facfe;
  color: #fff;
}

/* RIGHT INFO BOX */
.cta-info {
  background: rgba(6, 147, 182, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 30px 80px rgba(10,30,60,0.15);
  display: grid;
  gap: 25px;
}
.cta-info:hover{
  background: rgba(9, 224, 160, 0.75);
}
/* INFO ITEMS */
.info-item h4 {
  font-size: 1.05rem;
  color: #0a1a3a;
  margin-bottom: 6px;
}
.info-item h4 span{
  color: purple;
}
.info-item p {
  color: navy;
  font-size: 0.95rem;
}

/* HOVER EFFECT */
.cta-info:hover {
  transform: translateY(-4px);
  transition: 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-info {
    max-width: 500px;
    margin: auto;
  }
}


/* footer */
/* FOOTER */
.profenaa-footer {
  /*background: linear-gradient(135deg, #4864c0, #0b6fa8);*/
  background: #05071a;
  color: #e5e7eb;
  padding-top: 80px;
  font-size: 0.95rem;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Brand */
.footer-logo {
  width: 50px;
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #dbeafe;
  line-height: 1.6;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #93c5fd;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
}

.footer-contact i {
  color: #93c5fd;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #dbeafe;
}

/* Social Icons */
.footer-social a {
  margin-left: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social a {
    margin-left: 6px;
    margin-right: 6px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.5),
    0 0 20px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: all 0.35s ease;
  text-decoration: none;
}

/* WhatsApp Icon */
.whatsapp-float i {
  color: #fff;
  font-size: 30px;
}

/* Hover Effects */
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(37, 211, 102, 0.8),
    0 0 35px rgba(37, 211, 102, 0.9);
}

/* Pulse Animation */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    left: 18px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

/*loader*/
.preloader {
  position: fixed;
  inset: 0;
  background: #020b18;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader {
  width: 55px;
  height: 55px;
  border: 5px solid rgba(255,255,255,0.2);
  border-top: 5px solid #00c6ff;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/*rocket icon*/
.rocket-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top, #ffffff, #3b82f6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow:
    0 10px 30px rgba(59, 130, 246, 0.6),
    0 0 30px rgba(59, 130, 246, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Rocket Icon */
.rocket-top i {
  font-size: 26px;
  color:orangered;
  transform: rotate(-45deg);
}

/* Hover Lift */
.rocket-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 18px 45px rgba(59, 130, 246, 0.9),
    0 0 45px rgba(59, 130, 246, 1);
}

/* Pulse Ring */
.rocket-top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
  animation: rocketPulse 2s infinite;
  z-index: -1;
}

@keyframes rocketPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Shine Sweep */
.rocket-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: rotate(25deg);
  animation: shineMove 3.5s infinite;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .rocket-top {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .rocket-top i {
    font-size: 22px;
  }
}



/*icons*/
.social-float-icons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;

  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(60px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.social-float-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;
  text-decoration: none;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 22px rgba(255,255,255,0.25);

  animation: pulseGlow 2.5s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.social-float-icons a.facebook {
  background: rgba(24, 119, 242, 0.85);
}

.social-float-icons a.instagram {
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.9),
    rgba(253, 29, 29, 0.9),
    rgba(252, 176, 69, 0.9)
  );
}

.social-float-icons a.linkedin {
  background: rgba(10, 102, 194, 0.85);
}

.social-float-icons a.youtube {
  background: rgba(255, 0, 0, 0.85);
}
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.6),
      0 0 14px rgba(0,0,0,0.15),
      0 0 22px var(--glow-color);
  }
  50% {
    box-shadow:
      0 0 10px rgba(255,255,255,0.9),
      0 0 22px rgba(0,0,0,0.25),
      0 0 40px var(--glow-color);
  }
  100% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.6),
      0 0 14px rgba(0,0,0,0.15),
      0 0 22px var(--glow-color);
  }
}
.social-float-icons a {
  --glow-color: rgba(0, 0, 0, 0.4); /* fallback */
}
.social-float-icons a.facebook {
  background: rgba(24, 119, 242, 0.9);
  --glow-color: rgba(24, 119, 242, 0.9);
}

.social-float-icons a.instagram {
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.95),
    rgba(253, 29, 29, 0.95),
    rgba(252, 176, 69, 0.95)
  );
  --glow-color: rgba(225, 48, 108, 0.9);
}

.social-float-icons a.linkedin {
  background: rgba(10, 102, 194, 0.9);
  --glow-color: rgba(10, 102, 194, 0.9);
}

.social-float-icons a.youtube {
  background: rgba(255, 0, 0, 0.9);
  --glow-color: rgba(255, 0, 0, 0.9);
}
.social-float-icons a {
  animation: pulseGlow 2.4s infinite ease-in-out;
}
.social-float-icons a:hover {
  transform: scale(1.15);
  animation-play-state: paused;
  box-shadow:
    0 0 20px #fff,
    0 0 45px var(--glow-color);
}

.social-float-icons a:hover {
  transform: scale(1.15);
  animation-play-state: paused;
}

/* Brand hover glow */
.social-float-icons a.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 25px #1877f2;
}

.social-float-icons a.instagram:hover {
  box-shadow: 0 0 28px #e1306c;
}

.social-float-icons a.linkedin:hover {
  background: #0a66c2;
  box-shadow: 0 0 25px #0a66c2;
}

.social-float-icons a.youtube:hover {
  background: #ff0000;
  box-shadow: 0 0 25px #ff0000;
}
@media (max-width: 768px) {
  .social-float-icons {
    right: 16px;
  }

  .social-float-icons a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .social-float-icons {
    right: 12px;
  }

  .social-float-icons a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
