

/* ----------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------- */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Inter", sans-serif;
  background: #fff;
  color:#1a1a1a;
  overflow-x:hidden;
}


/* -----------------------------------
   HEADER (Premium Glass Navbar)
------------------------------------*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 12px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container{
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}
/* LOGO */
.logo-box{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* FIXED LOGO SIZE – will NEVER stretch */
.logo-img{
  width: 100px;      /* MAIN FIX */
  height: 100px;     /* MAIN FIX */
  object-fit: contain; 
  display: block;
}

/* LOGO TEXT */
.logo-text{
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}

/* NAV */
.nav a{
  margin-left: 20px;
  font-weight: 700;
  color: #ff6a00;
  text-decoration: none;
}

/* Buttons */
.btn-nav{
  border: 2px solid #ff6a00;
  padding: 8px 14px;
  border-radius: 6px;
}

.btn-nav:hover{
  background: #ff6a00;
  color: white;
}

/* MOBILE */
@media(max-width: 768px){
  .nav{
    display: none;
  }
  .logo-img{
    width: 45px;
    height: 45px;
  }
}
/* ----------------------------------------------------
   MOBILE MENU BUTTON
---------------------------------------------------- */
.menu-icon {
  display: none;
  font-size: 32px;
  color: #ff6a00;
  cursor: pointer;
  font-weight: 900;
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------- */
@media(max-width: 850px) {

  .menu-icon {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: -260px;
    width: 240px;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    border-left: 3px solid #ff6a00;
    transition: 0.35s ease;
    z-index: 999999;
  }

  /* When menu is opened */
  .nav.show {
    right: 0;
  }

  /* Mobile nav links */
  .nav a {
    margin: 0;
    padding: 10px 0;
    text-align: left;
    color: #ff6a00;
    font-size: 18px;
    font-weight: 700;
  }

  .btn-nav {
    margin-top: 12px;
    text-align: center;
  }

  /* Hide desktop nav */
  .nav-container nav {
    display: none;
  }

  /* Show our custom nav */
  #mobileMenu {
    display: flex;
  }
}


/* ----------------------------------------
   ABOUT HERO SECTION (Premium)
-----------------------------------------*/
.about-hero {
  width: 100%;
  padding: 120px 8% 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4eb 0%, #ffe1c7 100%);
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}

/* Soft wave background */
.about-hero::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('wave.svg') no-repeat bottom center/cover;
  opacity: 0.25;
}

/* Dark overlay glow */
.about-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 115, 0, 0.25), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

/* ------------ TEXT ------------- */
.ah-text {
  flex: 1;
  z-index: 2;
  animation: fadeSlideLeft 1s ease forwards;
  opacity: 0;
}

.ah-text h1 {
  font-size: 48px;
  font-weight: 900;
  color: #ff6a00;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ah-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 500px;
  font-weight: 500;
}

/* ------------ IMAGE ------------- */
.ah-img {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
  animation: fadeSlideRight 1s ease forwards;
  opacity: 0;
}

.ah-img img {
  width: 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(255, 115, 0, 0.35);
  animation: imgFloat 4s ease-in-out infinite alternate;
}

/* ------------ ANIMATIONS ------------- */
@keyframes fadeSlideLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Floating image glow */
@keyframes imgFloat {
  0% { transform: translateY(0); box-shadow: 0 15px 40px rgba(255, 115, 0, 0.3); }
  100% { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(255, 115, 0, 0.45); }
}

/* ------------ RESPONSIVE ------------- */
@media(max-width: 900px) {
  .about-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 6% 60px;
  }

  .ah-text h1 { font-size: 38px; }

  .ah-img img {
    width: 80%;
    height: auto;
  }
}
/* -----------------------------------------
   WHO WE ARE — Premium Section
------------------------------------------*/
.who-section {
  padding: 90px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf5 0%, #ffe8d2 100%);
  border-radius: 40px;
  margin: 60px auto;
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.15);

  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.who-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Wave background effect */
.who-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -20%;
  width: 140%;
  height: 180px;
  background: url("wave.svg") no-repeat center/cover;
  opacity: 0.18;
}

/* Title */
.who-section h2 {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6a00, #ff944d);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

/* Animated underline */
.who-section h2::after {
  content: "";
  width: 0%;
  height: 4px;
  background: #ff6a00;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
  transition: 0.5s ease;
}

.who-section.visible h2::after {
  width: 60%;
}

/* Paragraph */
.who-section p {
  color: #444;
  font-size: 18px;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Soft orange glow behind text */
.who-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.3), transparent 70%);
  filter: blur(45px);
  z-index: 0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .who-section {
    padding: 70px 8%;
    border-radius: 30px;
  }

  .who-section h2 {
    font-size: 32px;
  }

  .who-section p {
    font-size: 16.5px;
  }
}
/* ----------------------------------------------------
   FOUNDER STORY — Premium Clean Design (Updated Final)
---------------------------------------------------- */

.founder-section {
  padding: 90px 10%;
  margin: 60px auto;
  background: linear-gradient(135deg, #fff4eb 0%, #ffe8d2 50%, #ffd4b0 100%);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.founder-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.founder-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6a00, #ff914d);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 35px;
}

/* Main container (column layout) */
.founder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  z-index: 2;
  position: relative;
}

/* Founder Image Card */
.founder-img {
  background: transparent;  /* same as whole background */
  padding: 20px;
  border-radius: 24px;
  box-shadow: none;         /* remove card shadow */
}

/* Founder Image */
.founder-img img {
  width: 340px;
  height: 400px;
  object-fit: cover;
  border-radius: 22px;
  background: transparent;
  mix-blend-mode: multiply;
}

/* Founder Text */
.founder-text {
  width: 100%;
  max-width: 900px;
  background: transparent;   /* same as whole background */
  padding: 32px 36px;
  border-radius: 20px;
  box-shadow: none;          /* remove card shadow */
}

.founder-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Quote */
.founder-text blockquote {
  margin: 25px 0;
  padding: 18px 24px;
  background: #fff3e8;
  border-left: 6px solid #ff6a00;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: #cc4a00;
  box-shadow: 0 8px 22px rgba(255,120,0,0.18);
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

@media(max-width: 900px) {
  .founder-img img {
    width: 260px;
    height: 320px;
  }
}

@media(max-width: 600px) {
  .founder-section h2 {
    font-size: 32px;
  }
  .founder-text {
    padding: 25px;
  }
  .founder-text p {
    font-size: 16px;
  }
}


/* ----------------------------------------------------
   MISSION & VISION — Premium Design
---------------------------------------------------- */
.mv-section {
  max-width: 1150px;
  margin: 70px auto;
  padding: 0 24px;
  display: flex;
  gap: 35px;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.mv-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Box Styling */
.mv-box {
  flex: 1;
  padding: 35px;
  border-radius: 18px;

  background: linear-gradient(145deg, #fff4e8, #ffe4d1);
  border-left: 6px solid #ff6a00;

  box-shadow: 0 14px 28px rgba(255, 100, 0, 0.22);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(30px);
}

.mv-section.visible .mv-box {
  opacity: 1;
  transform: translateY(0);
}

/* Heading */
.mv-box h3 {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6a00, #ff914d);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* Paragraph */
.mv-box p {
  color: #444;
  font-size: 17px;
  line-height: 1.65;
}

/* Hover Effect */
.mv-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(255, 120, 0, 0.28);
}

/* Shine Glow Animation */
.mv-box::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -130%;
  width: 350%;
  height: 350%;
  background: radial-gradient(circle, rgba(255,120,0,0.18), transparent 70%);
  opacity: 0;
  transition: 0.5s ease;
}

.mv-box:hover::before {
  opacity: 1;
  animation: mvShine 5s linear infinite;
}

@keyframes mvShine {
  0% { transform: translate(-15%, -15%); }
  100% { transform: translate(15%, 15%); }
}

/* Responsive */
@media (max-width: 900px) {
  .mv-section {
    flex-direction: column;
    gap: 25px;
  }
}
/* ----------------------------------------------------
   CORE VALUES — Premium Animated Section
---------------------------------------------------- */

.values-section {
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;

  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.values-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.values-section h2 {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6a00, #ff9952);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 35px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* VALUE CARD */
.value-card {
  padding: 28px 20px;
  background: linear-gradient(145deg, #fff3e6, #ffe5d1);
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #ff6a00;

  border: 2px solid rgba(255, 120, 0, 0.25);
  box-shadow: 0 12px 28px rgba(255, 120, 0, 0.18);

  position: relative;
  overflow: hidden;
  cursor: default;

  opacity: 0;
  transform: translateY(25px);
  transition: 0.55s ease;
}

.values-section.visible .value-card {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Lift */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(255, 120, 0, 0.28);
}

/* Floating glow animation */
.value-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 350%;
  height: 350%;
  background: radial-gradient(
      circle,
      rgba(255, 140, 0, 0.18),
      transparent 70%
  );
  opacity: 0;
  transition: 0.45s ease;
}

.value-card:hover::before {
  opacity: 1;
  animation: valueGlow 4.5s linear infinite;
}

@keyframes valueGlow {
  0% { transform: translate(-18%, -18%); }
  100% { transform: translate(18%, 18%); }
}
/* ----------------------------------------------------
   JOURNEY TIMELINE — Premium Design
---------------------------------------------------- */

.timeline-section {
  max-width: 1150px;
  margin: 90px auto;
  padding: 0 24px;
  text-align: center;

  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.timeline-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-section h2 {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff6a00, #ff944d);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 45px;
}

/* MAIN TIMELINE WRAPPER */
.timeline {
  position: relative;
  padding-left: 35px;
  border-left: 4px solid #ff8a33;
  margin: 0 auto;
  max-width: 650px;
}

/* ITEMS */
.tl-item {
  position: relative;
  padding: 18px 22px;
  margin-bottom: 30px;
  background: #fff6ef;
  border-radius: 12px;
  font-size: 18px;
  text-align: left;
  color: #222;
  font-weight: 600;

  border: 1px solid rgba(255, 120, 0, 0.25);
  box-shadow: 0 10px 22px rgba(255, 100, 0, 0.18);

  opacity: 0;
  transform: translateX(-25px);
  transition: 0.6s ease;
}

.timeline-section.visible .tl-item {
  opacity: 1;
  transform: translateX(0);
}

/* DOT INDICATOR */
.tl-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -41px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #ff6a00, #ff9b52);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 120, 0, 0.6);
}

/* Hover lift */
.tl-item:hover {
  transform: translateX(8px);
  box-shadow: 0 14px 32px rgba(255, 120, 0, 0.32);
}

/* Hover glow pulse */
.tl-item:hover::before {
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255,120,0,0.5); }
  50% { box-shadow: 0 0 22px rgba(255,120,0,0.9); }
  100% { box-shadow: 0 0 10px rgba(255,120,0,0.5); }
}

/* MOBILE */
@media (max-width: 600px) {
  .timeline {
    padding-left: 25px;
  }

  .tl-item {
    font-size: 16px;
    padding: 16px;
  }

  .tl-item::before {
    left: -32px;
  }
}
/* ----------------------------------------------------
   CONTACT SECTION (Premium)
---------------------------------------------------- */
.contact-section{
  padding:80px 24px;
  background:linear-gradient(135deg,#fff4eb,#ffe1cc);
  border-top-left-radius:60px;
  border-top-right-radius:60px;
  position:relative;
  overflow:hidden;
}

/* wave */
.contact-section::before{
  content:"";
  position:absolute;
  top:-40px;
  left:0;
  width:100%;
  height:120px;
  background:url('wave.svg') no-repeat top center/cover;
  opacity:0.25;
}

.contact-section h2{
  text-align:center;
  font-size:38px;
  color:#ff6a00;
  font-weight:900;
  margin-bottom:40px;
}

.contact-box{
  max-width:1000px;
  margin:auto;
  display:flex;
  gap:40px;
  padding:30px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
  border-radius:22px;
  box-shadow:0 15px 30px rgba(255,120,0,0.20);
  border:1px solid rgba(255,120,0,0.20);
}

.contact-info{
  flex:1;
  padding:10px;
}

.contact-info h3{
  font-size:24px;
  font-weight:800;
  color:#ff6a00;
  margin-bottom:15px;
}

.contact-info p{
  font-size:16px;
  margin-bottom:10px;
  color:#333;
}


/* Form */
.contact-form{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ffb98a;
  font-size:16px;
  background:white;
  box-shadow:0 5px 14px rgba(255,120,0,0.15);
}

.contact-form textarea{
  height:150px;
}

.contact-form button{
  background:linear-gradient(90deg,#ff6a00,#ff9440);
  color:white;
  padding:12px;
  border-radius:10px;
  border:none;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,106,0,0.35);
}

/* Mobile */
@media(max-width:850px){
  .contact-box{
    flex-direction:column;
    text-align:center;
  }
}
/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer{
  background:#ff6a00;
  color:white;
  padding:50px 20px 20px;
  margin-top:60px;
  border-top-left-radius:50px;
  border-top-right-radius:50px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.footer h3,
.footer h4{
  font-weight:800;
  margin-bottom:12px;
}

.footer-about{
  flex:1;
}

.footer-about p{
  max-width:300px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  text-decoration:none;
  color:white;
  margin-bottom:6px;
  transition:0.3s;
  font-weight:600;
}

.footer-links a:hover{
  opacity:0.75;
}

.footer-contact p{
  margin-bottom:6px;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:0.85;
}

/* ----------------------------------------------------
   GLOBAL SCROLL REVEAL ANIMATION (Premium)
---------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When visible */
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Optional directional reveals */
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-up {
  transform: translateY(40px);
}
.reveal-down {
  transform: translateY(-40px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-down.visible {
  transform: translate(0,0);
}
