/* =====================================
MITTIVAH FOUNDER DESK
PART - 1
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{

background:#f5f8f3;

color:#222;

overflow-x:hidden;

}

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

.founder-hero{

position:relative;

width:100%;

padding:90px 20px;

background:linear-gradient(135deg,#0d4f2d,#1f6b2f,#43a047);

display:flex;

justify-content:center;

align-items:center;

overflow:hidden;

}

.hero-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.25);

backdrop-filter:blur(2px);

}

.hero-card{

position:relative;

z-index:2;

max-width:1200px;

width:100%;

background:rgba(255,255,255,.12);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.25);

border-radius:30px;

padding:50px;

display:flex;

align-items:center;

gap:50px;

box-shadow:0 20px 60px rgba(0,0,0,.25);

}

/* ===========================
FOUNDER IMAGE
=========================== */

.founder-image img{

width:320px;

height:480px;

object-fit:cover;

object-position:center top;

border-radius:30px;

border:8px solid rgba(255,255,255,.25);

box-shadow:0 20px 45px rgba(0,0,0,.30);

display:block;

}

/* ===========================
CONTENT
=========================== */

.founder-content{

flex:1;

color:#fff;

}

.premium-badge{

display:inline-block;

padding:10px 20px;

border-radius:50px;

background:rgba(255,255,255,.18);

font-size:14px;

font-weight:600;

margin-bottom:20px;

letter-spacing:1px;

}

.founder-content h1{

font-size:48px;

font-weight:700;

margin-bottom:8px;

}

.founder-content h3{

font-size:22px;

font-weight:500;

opacity:.95;

margin-bottom:20px;

}

.hero-text{

font-size:18px;

line-height:1.8;

opacity:.95;

max-width:700px;

}

/* =====================================
PART - 2
BUTTONS + CARDS
===================================== */

/* ===========================
BUTTONS
=========================== */

.hero-buttons{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-top:30px;

}

.btn-primary,
.btn-secondary{

text-decoration:none;

padding:14px 26px;

border-radius:50px;

font-size:15px;

font-weight:600;

transition:.35s;

display:inline-flex;

align-items:center;

justify-content:center;

}

.btn-primary{

background:#ffffff;

color:#1f6b2f;

box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.btn-primary:hover{

background:#f8f8f8;

transform:translateY(-4px);

}

.btn-secondary{

background:rgba(255,255,255,.15);

border:1px solid rgba(255,255,255,.25);

color:#fff;

backdrop-filter:blur(12px);

}

.btn-secondary:hover{

background:#fff;

color:#1f6b2f;

transform:translateY(-4px);

}

/* ===========================
CONTAINER
=========================== */

.container{

max-width:1200px;

margin:auto;

padding:60px 20px;

}

/* ===========================
COMMON CARD
=========================== */

.about-card,
.vision-card,
.mission-card,
.future-card{

background:#fff;

border-radius:25px;

padding:35px;

margin-bottom:30px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

}

.about-card:hover,
.vision-card:hover,
.mission-card:hover,
.future-card:hover{

transform:translateY(-8px);

}

/* ===========================
HEADINGS
=========================== */

.about-card h2,
.vision-card h2,
.mission-card h2,
.future-card h2{

font-size:30px;

color:#1f6b2f;

margin-bottom:25px;

}

/* ===========================
INFO GRID
=========================== */

.info-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.info-box{

background:#f8fbf7;

padding:22px;

border-radius:18px;

border-left:5px solid #2e7d32;

transition:.3s;

}

.info-box:hover{

background:#eef8ed;

}

.info-box h4{

font-size:16px;

color:#1f6b2f;

margin-bottom:8px;

}

.info-box p{

font-size:16px;

color:#444;

font-weight:500;

}

/* ===========================
PARAGRAPHS
=========================== */

.vision-card p,
.mission-card p{

font-size:17px;

line-height:1.9;

color:#555;

}

/* ===========================
FUTURE PLAN
=========================== */

.future-card ul{

list-style:none;

padding:0;

}

.future-card li{

background:#f7fbf6;

padding:18px 22px;

margin-bottom:15px;

border-radius:15px;

font-size:17px;

font-weight:500;

border-left:5px solid #2e7d32;

transition:.3s;

}

.future-card li:hover{

background:#eef8ed;

transform:translateX(8px);

}

/* =====================================
PART - 3
TIMELINE • MESSAGE • RESPONSIVE
===================================== */

/* ===========================
TIMELINE
=========================== */

.timeline-card,
.message-card,
.thankyou-card{

background:#fff;

border-radius:25px;

padding:35px;

margin-bottom:30px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

}

.timeline-card:hover,
.message-card:hover,
.thankyou-card:hover{

transform:translateY(-8px);

}

.timeline-card h2,
.message-card h2,
.thankyou-card h2{

font-size:30px;

color:#1f6b2f;

margin-bottom:30px;

}

.timeline{

position:relative;

padding-left:40px;

}

.timeline::before{

content:"";

position:absolute;

left:10px;

top:0;

bottom:0;

width:4px;

background:#2e7d32;

border-radius:20px;

}

.timeline-item{

position:relative;

margin-bottom:40px;

}

.timeline-item:last-child{

margin-bottom:0;

}

.timeline-item::before{

content:"";

position:absolute;

left:-38px;

top:5px;

width:20px;

height:20px;

background:#2e7d32;

border:4px solid #fff;

border-radius:50%;

box-shadow:0 0 15px rgba(46,125,50,.4);

}

.year{

display:inline-block;

background:#2e7d32;

color:#fff;

padding:6px 15px;

border-radius:50px;

font-size:13px;

font-weight:600;

margin-bottom:12px;

}

.timeline-content h4{

font-size:20px;

color:#1f6b2f;

margin-bottom:10px;

}

.timeline-content p{

font-size:16px;

line-height:1.8;

color:#555;

}

/* ===========================
MESSAGE
=========================== */

.message-card p{

font-size:17px;

line-height:2;

color:#555;

margin-bottom:30px;

}

.signature{

border-top:2px solid #e8e8e8;

padding-top:20px;

}

.signature strong{

font-size:22px;

color:#1f6b2f;

display:block;

margin-bottom:6px;

}

.signature span{

font-size:15px;

color:#777;

}

/* ===========================
THANK YOU
=========================== */

.thankyou-card{

background:linear-gradient(135deg,#1f6b2f,#43a047);

color:#fff;

text-align:center;

}

.thankyou-card h2{

color:#fff;

}

.thankyou-card p{

font-size:17px;

line-height:1.9;

max-width:800px;

margin:auto;

}

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

@media(max-width:992px){

.hero-card{

flex-direction:column;

text-align:center;

}

.founder-image img{

width:210px;

height:330px;

border-radius:20px;

object-fit:cover;

object-position:center top;

}

.info-grid{

grid-template-columns:1fr;

}

.creator-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.hero-card{

padding:30px 20px;

}

.founder-content h1{

font-size:34px;

}

.founder-content h3{

font-size:18px;

}

.hero-text{

font-size:15px;

}

.hero-buttons{

justify-content:center;

}

.btn-primary,
.btn-secondary{

width:100%;

}

.about-card,
.vision-card,
.mission-card,
.future-card,
.timeline-card,
.message-card,
.thankyou-card{

padding:25px;

}

.about-card h2,
.vision-card h2,
.mission-card h2,
.future-card h2,
.timeline-card h2,
.message-card h2,
.thankyou-card h2{

font-size:24px;

}

}

@media(max-width:480px){

.founder-image img{

width:200px;

height:200px;

}

.founder-content h1{

font-size:28px;

}

.hero-text{

font-size:14px;

}

.timeline{

padding-left:25px;

}

.timeline-item::before{

left:-24px;

}

}

/* ===========================
SMOOTH ANIMATION
=========================== */

.hero-card,
.about-card,
.vision-card,
.mission-card,
.future-card,
.timeline-card,
.message-card,
.thankyou-card{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
