 html, body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}
.pt-7 {padding-top: 90px;}
.logo img{height:401px; width:430px; border-radius:50%; object-fit:cover; box-shadow:0 5px 15px rgba(0,0,0,0.2);}
/* Founder/Co-Founder cards */
.founders-section .section-title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.app-logo {
  height: 160px;
  width: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0ea5a3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.app-logo:hover {
  transform: scale(1.05) rotate(2deg);
}
.founder-profile {
  margin-top: 0;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.founder-profile:hover {
  transform: translateY(-8px);
}
.founder-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0ea5a3;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.founder-name {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg,#ff7f50,#ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-info-grid {
  display: flex;
  flex-direction: column; /* sab vertical stack hote rahenge */
  gap: 40px; /* card ke beech space */
  align-items: center;
}
.hero-section {
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #ff4d4d, #b30000); /* red gradient */
  border-radius: 0 0 50px 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

/* Founder Card Styling */
.founder-card {
  max-width: 700px; /* thoda readable width */
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
}

/* Paragraph line spacing */
.founder-card p {
  margin-bottom: 15px; /* paragraphs ke beech gap */
  line-height: 1.8;     /* line spacing */
}
.role {
  font-size: 1rem;
  font-weight: 600;
  color: #0ea5a3;
  margin-bottom: 10px;
}
.bio {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.product-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-box ul li {
  position: relative;
  padding-left: 20px;
}
/* NAVBAR */
.glass-nav {
  background: #cac6c68d !important; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,.navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
  color: orange !important; 
}
section, .timeline-box, .feature-card, .product-box, .journey-section .container {
  opacity: 0;
  transform: translateY(50px);
  animation: bounceUp 0.8s forwards;
}
/* Staggered delays so elements bounce one after another */
section:nth-child(1), .timeline-box:nth-child(1), .feature-card:nth-child(1), .product-box:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2), .timeline-box:nth-child(2), .feature-card:nth-child(2), .product-box:nth-child(2) { animation-delay: 0.4s; }
section:nth-child(3), .timeline-box:nth-child(3), .feature-card:nth-child(3), .product-box:nth-child(3) { animation-delay: 0.6s; }
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 83vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80")
              no-repeat center center/cover;
  filter: blur(3px);
  z-index: 1;
}
/* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  padding: 0 15px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.296);
  margin: 0;
  animation: heroFade 1.5s ease-in-out infinite alternate;
}
.hero p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-top: 15px;
  animation: heroFade 1.8s ease-in-out infinite alternate;
}
.hero .container h1,.hero .container p {
  z-index: 2;
}
.hero .bg-shape {
  position: absolute;
  opacity: 0.8;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  transition: transform 1.5s ease;
  z-index: 3;
}
.hero .bg-shape:hover { transform: scale(1.1) rotate(8deg); }
.hero .shape1 { top: 8%; left: -5%; width: 250px; animation: float 5s infinite ease-in-out; }
.hero .shape2 { bottom: 5%; right: -10%; width: 280px; animation: float 18s infinite ease-in-out; }
.hero .shape3 { top: 45%; right: 20%; width: 200px; animation: float 15s infinite ease-in-out; }
/* HERO */
.journey-section .col-md-4:nth-child(1) .flex-block {
  background: linear-gradient(135deg, #16a34a, #22c55e); 
}

.journey-section .col-md-4:nth-child(2) .flex-block {
  background: linear-gradient(135deg, #0ea5a3, #22d3ee); 

}

.journey-section .col-md-4:nth-child(3) .flex-block {
  background: linear-gradient(135deg, #f59e0b, #fbbf24); 
}
h2.section-title {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color:var(--primary-color) ;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}
.img-fluid{
  height: 300px; 
}
h2.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0ea5a3, #22d3ee);
  animation: underline 1s forwards 0.8s;
}
.app-image-wrapper {
  position: relative;
  max-width: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.app-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.list-check {
  list-style: none;
  padding-left: 0;
}
.anim-fade-up:nth-child(1) { animation-delay: 0.2s; }
.anim-fade-up:nth-child(2) { animation-delay: 0.4s; }
.anim-fade-up:nth-child(3) { animation-delay: 0.6s; }
.anim-fade-up:nth-child(4) { animation-delay: 0.8s; }
.flex-block {
  padding: 18px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-align: center;
  background: linear-gradient(135deg, #0ea5a3, #22d3ee);
  color: #fff;
  font-weight: 600;
  height: 100%;
}
.flex-block h5 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.flex-block:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
.flex-block ul li {text-align: left;}
.milestone {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}
.nav-logo {
  height: 40px;
  width: auto;
}
.nav-logo-extra {
  height: 40px;  
  width: auto;
  margin-left: 5px;
}
.anim-fade-up, .anim-scale, .anim-rise, .anim-fade-left, .anim-fade-right {
  opacity: 0;
  transform: translateY(20px); 
  transition: all 0.8s ease;
}
.anim-fade-up.visible,.anim-fade-down.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-fade-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}
.timeline-box {
  background: #fff;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 400px;
}
.timeline-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.timeline-box h4 {color:#0ea5a3;}
.timeline-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.timeline-points {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.timeline-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.anim-scale {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.anim-scale.visible {
  transform: scale(1);
  opacity: 1;
}
.btn-glow {
  background: linear-gradient(90deg, #0ea5a3, #22d3ee);
  border: none; color: #fff;
  box-shadow: 0 0 15px rgba(14,165,163,0.6);
  transition: all 0.3s ease;
}
.btn-glow:hover {box-shadow:0 0 30px rgba(14,165,163,0.9); transform:translateY(-3px);}
.timeline-grid {
  gap: 20px;
  justify-items: center; 
}
/* ANIMATIONS */
.anim-fade-up {opacity:0; transform:translateY(20px); animation:fadeUp .8s forwards;}
.anim-fade-left {opacity:0; transform:translateX(-20px); animation:fadeLeft .8s forwards;}
.anim-rise {opacity:0; transform:translateY(30px); animation:rise .9s forwards;}
.anim-scale {opacity:0; transform:scale(0.9); animation:scaleIn .9s forwards;}
.delay-1 {animation-delay:.3s;}
.delay-2 {animation-delay:.6s;}
.logo-glass {
  background:none;
  backdrop-filter: blur(8px);
  padding: 5px 8px;
  margin-right: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
/* Section styling */
.feature-card {
  overflow:hidden; border-radius:12px; background:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
.feature-card .feature-img {
  height:225px; overflow:hidden; border-radius:12px 12px 0 0;
}
.feature-card .feature-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.5s;
}
.feature-card:hover .feature-img img {transform:scale(1.1);}
.journey-section {
  padding: 60px 20px;
  text-align: center;
}
.journey-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}
.journey-section .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-items: center;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  font-size: 2.5rem;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
footer {
      text-align: center;
      padding: 15px;
      background: #fff;
      font-size: 16px;
      color: #666;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
      z-index: 2;
      position: relative;
    }
    footer a { color: whitesmoke; margin: 0 8px; text-decoration: none; }
    footer a:hover { text-decoration: underline; }






