* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
   line-height: 1.75;
   
}

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

/* Container */
.container {
  width: 90%;
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}

section {
  padding: 120px 0;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
 background:  #0f172a;
 
  z-index: 1000;
}

.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
}


.logo img {
  height: 45px;
  width: auto;
}
.logo img {
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.85;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
    letter-spacing: 0.5px;
}

.hamburger {
  display: none;

  font-size: 22px;
  color:white;
  cursor: pointer;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.section-sub {
  font-size: 15px;
  text-align: center;
  margin-bottom: 60px;
  color: #64748b;
}

section + section {
  margin-top: -10px;
}



/* ================= NAVIGATION ================= */

nav a{
  color:white;
  text-decoration:none;
  margin-left:30px;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  opacity:0.7;
  text-decoration:underline;
}

nav a.active{
  font-weight:600;
  border-bottom:2px solid white;
  padding-bottom:4px;
}


/* ================= HERO ================= */

.hero{
  position:relative;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding:150px 20px;
}

.hero::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top:-200px;
  right:-200px;
  z-index:0;
  pointer-events:none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:auto;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
}

.hero span {
  background: linear-gradient(90deg, #38bdf8, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-tagline {
  margin-bottom: 30px;
  opacity: 0.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.3),
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.3)
  );
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  left: 130%;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

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

/* ================= ABOUT ================= */

.about-content h2{
  font-size:32px;          
  font-weight:600;         
  line-height:1.3;         
  margin-bottom:20px;
  color:#0f172a;
}
.about-content p{
  font-size:15px;
  line-height:1.7;
  color:#555;
  text-align: justify;
}
.about-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 1;
}

.about-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;

  background: #ffffff;
  padding: 60px 70px;
  border-radius: 22px;

  box-shadow: 
    0 30px 80px rgba(15, 23, 42, 0.08),
    0 10px 30px rgba(15, 23, 42, 0.04);

  position: relative;
}


.about-content {
  flex: 1 1 400px;
}

.about-image {
  width: 350px;
  height: 350px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-box {
  flex: 1 1 300px;
  padding: 40px;
  color: #fff;
  border-radius: 22px;
}
.light {
  background: #5c7fa3;  /* slightly deeper */
  color: #ffffff;
}
.grey {
  background: #cbd5e1;
  color: #0f172a;
}

.dark {
  background: #1e3a5f;
  color: #ffffff;   /* add this */
}

.about-section {
  padding: 140px 0;
  background: linear-gradient(to bottom, #f4f6f9, #eef2f7);
  position: relative;
}

.about-wrapper {
  transform: translateY(-40px);
}

/* ================= WHY SECTION CLEAN MODERN ================= */
.why-modern {
  padding-top: 40px;   
  padding-bottom: 120px;
  margin-top: -40px;   
  background:  #f8fafc; 
}
.why-modern-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-modern-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 40px 30px;
  transition: all 0.3s ease;
   border-top: 3px solid #0f172a;
}

.why-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* ONE SINGLE ICON COLOR */
.why-modern-card i {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0f172a;   
}

.why-modern-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f172a;
}

.why-modern-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ================= IMPACT SECTION ================= */

.impact{
  background:#0f172a;
  color:#fff;
  text-align:center;
  padding:110px 20px;
}

.impact .section-title{
  margin-bottom:70px;
  color:#fff;
}

.impact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:40px;
  max-width:1000px;
  margin:auto;
}

.impact-grid > div{
  background:rgba(255,255,255,0.05);
  padding: 50px 30px;
  border-radius:22px;
  transition:0.3s ease;
}

.impact-grid > div {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-grid > div:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);

  box-shadow:
    0 25px 60px rgba(56,189,248,0.15);
}


/* Counter Number */
.counter{
  font-size:48px;
  font-weight:700;
  margin-bottom:15px;
  display:block;
}

/* Description */
.impact-grid p{
  font-size:15px;
  opacity:0.85;
  margin:0;
}

/* ================= VERTICALS ================= */

.verticals-section {
  padding: 120px 0;
}

.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vertical-card {
  flex: 1 1 300px;
  max-width: 350px;

  background: #ffffff;
  border-radius: 22px;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(15,23,42,0.05);

  box-shadow: 
    0 20px 50px rgba(15,23,42,0.08);

  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.vertical-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 35px 80px rgba(15,23,42,0.15);
}

.vertical-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.vertical-card:hover img {
  transform: scale(1.05);
}


.vertical-content {
  padding: 25px;
}
.vertical-content h3{
  font-size:22px;
  margin-bottom:15px;
  color:#0f172a;
  font-weight: 700;
}

.vertical-content p{
  font-size:14px;
  line-height:1.7;
  color:#555;
  text-align: justify;
  margin-bottom:20px;
}

.vertical-link{
  text-decoration:none;
  font-weight:600;
  color:#0f172a;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:0.3s ease;
}

.vertical-link span{
  transition:0.3s ease;
}

.vertical-card:hover .vertical-link{
  color:#38bdf8;
}

.vertical-card:hover .vertical-link span{
  transform:translateX(5px);
}

/* ================= TEAM SECTION ================= */
.founder-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 140px 0;
  color: #ffffff;
}

/* MAIN TITLE */

.founder-main-title {
  text-align: center;
  font-size: 40px;
  color: #ffffff;
}

/* -------- FOUNDER CARD -------- */

.founder-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;

  background: #ffffff;
  padding: 10px;
  border-radius: 28px;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.25);
}

.founder-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.founder-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.founder-content h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #64748b;
  font-weight: 500;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
 
  max-width: 600px;
}

/* -------- PARTNERS SECTION -------- */

.partners-section {
  margin-top: 120px;
  text-align: center;
}

.partners-title {
  font-size: 24px;
  margin-bottom: 60px;
  color: #ffffff;
}

.partners-bar {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.partner-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;   /* This centers logo horizontally */
  justify-content: center;
}

.partner-item img {
  display: block;
  margin:0 auto 15px auto;
  height: 75px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.partner-item img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.partner-item span {
  font-size: 15px;
  color: #cbd5e1;
  letter-spacing: 0.5px;
}


/* ================= CONTACT =================*/

.contact-modern{
  padding:120px 20px;
  text-align:center;
  background:#ffffff;
}

.contact-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:120px;
  margin-top:60px;
  flex-wrap:wrap;
}

.contact-block{
  max-width:300px;
}

.contact-icon{
  font-size:42px;
  margin-bottom:20px;
}

.contact-block h3{
  font-size:20px;
  margin-bottom:10px;
  color:#0f172a;
}

.contact-info{
  font-size:16px;
  color:#555;
  letter-spacing:0.5px;
}


/* ================= FOOTER ================= */

footer{
  background:#0f172a;
  color:#fff;
  padding:70px 20px;
}

.footer-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
}

footer h4{
  margin-bottom:15px;
}

footer p,
footer a{
  color:#cbd5e1;
  font-size:14px;
  text-decoration:none;
}

footer a:hover{
  opacity:0.7;
    text-decoration: underline;
}

.copy{
  text-align:center;
  margin-top:50px;
  font-size:13px;
  color:#cbd5e1;
}


/* ================= MOBILE ================= */

@media(max-width:768px){

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    gap: 20px;
    display: none;
    
  }
 
  section{
    padding: 60px 0;  
  }
  .nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
.hero{
    padding-top: 100px !important;
    min-height: auto;
  }
  
   .hero-content {
    width: 100%;
  }

  /* ===== ABOUT MOBILE ORDER: HEADING → IMAGE → TEXT ===== */
.about-wrapper{
  flex-direction:column;
  padding:30px 15px;      
  gap:15px;  
  margin-bottom: 1px;              
  text-align:center;
}

/* Force correct order */
.about-content{
  order:1;
}

.about-image{
  order:2;
  margin:0;              
}

.about-content p{
  order:3;
  margin-top:5px;        
}

.about-image {
  width: 220px;
  height: 220px;
  margin: 20px auto;
}

.about-bottom{
  margin-top:5px;
  gap:15px;
}
  /* ===== TEAM MOBILE FIX ===== */

#team{
  padding:80px 20px;
}

.team-grid{
  grid-template-columns:1fr;   
  gap:25px;
}

.team-card{
  padding:30px 20px;          
}

.team-card img{
  width:100px;
  height:100px;
}

#team .section-sub{
  margin-bottom:40px;
}

}

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

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

 



/* ================= ABOUT SECTION V3 FULL WIDTH ================= */

.about-v3-wrapper {
  width: 100%;
  padding: 140px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

/* Inner alignment  */
.about-v3-inner {
  width: 100%;
  padding: 0 100px; 
}

/* ================= TOP ROW ================= */

.about-v3-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* TEXT */

.about-v3-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

.about-v3-text p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  max-width: 650px;
}

/* ================= SLIDER ================= */

.about-v3-slider {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.about-v3-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.active-v3 {
  opacity: 1;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .about-v3-inner {
    padding: 0 60px;
  }
}

@media (max-width: 992px) {

  .about-v3-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-v3-slider {
    height: 360px;
  }


}

.about-v3-wrapper .about-bottom.container {
  width: 100%;
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  margin: 80px 0 0 0;
}
@media (max-width: 992px) {

  .about-v3-wrapper .about-bottom.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 60px;
  }

  .about-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-box {
    padding: 30px;
  }

}

@media (max-width: 768px) {
  .about-v3-text p {
    text-align: left;
  }
}






/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .founder-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 30px;
  }
  

  .founder-image img {
    height: 320px;
  }

  .partners-bar {
    gap: 50px;
  }
}

@media (max-width: 768px) {

  .founder-main-title {
    font-size: 30px;
  }
}
