/* ==========================================
ABOUT PAGE
Sarbabharatiya Sangeet-O-Sanskriti Parishad
========================================== */

:root{
    --primary:#7B1E1E;
    --secondary:#C89B3C;
    --dark:#1a1a1a;
    --text:#555;
    --light:#faf7f2;
    --white:#ffffff;
    --border:#e7e2d9;
    --shadow:0 15px 45px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.8;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

.container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

section{
    position:relative;
}

.sectionHeading{
    text-align:center;
    margin-bottom:70px;
}

.sectionHeading span{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.sectionHeading h2{
    margin-top:12px;
    font-size:46px;
    color:var(--dark);
    font-family:'Cormorant Garamond',serif;
}

.sectionHeading h3{
    margin-top:15px;
    font-size:24px;
    color:var(--primary);
    font-weight:600;
}

.sectionHeading p{
    max-width:760px;
    margin:20px auto 0;
    color:#666;
}
.aboutHero{

    height:95vh;

    background:url('../images/about-hero.jpg') center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.aboutOverlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(20,20,20,.72),rgba(70,20,20,.65));

}

.aboutHeroContent{

    position:relative;

    z-index:2;

    max-width:760px;

    color:#fff;

}

.aboutTag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:30px;

}

.aboutHeroContent h1{

    font-size:72px;

    line-height:1.05;

    font-family:'Cormorant Garamond',serif;

}

.aboutHeroContent h1 span{

    color:var(--secondary);

}

.aboutHeroContent p{

    margin-top:30px;

    font-size:18px;

    max-width:620px;

    opacity:.95;

}

.aboutBtn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:45px;

    background:var(--secondary);

    color:#fff;

    padding:16px 34px;

    border-radius:60px;

    font-weight:600;

}

.aboutBtn:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.heroCurve{

    position:absolute;

    left:0;

    bottom:-2px;

    width:100%;

    line-height:0;

}

.heroCurve svg{

    display:block;

    width:100%;

}
.aboutIntro{

    background:var(--light);

    padding:120px 0;

}

.aboutGrid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.aboutImage{

    position:relative;

}

.aboutImage img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.aboutContent p{

    margin-bottom:25px;

    font-size:17px;

    color:#666;

}

.featureList{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.featureItem{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:18px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.featureItem i{

    color:var(--secondary);

    font-size:20px;

}

.featureItem:hover{

    transform:translateY(-6px);

}
@media(max-width:991px){

.aboutGrid{

grid-template-columns:1fr;

}

.aboutHero{

height:80vh;

}

.aboutHeroContent h1{

font-size:52px;

}

.featureList{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.aboutHeroContent h1{

font-size:42px;

}

.sectionHeading h2{

font-size:36px;

}

.aboutHeroContent p{

font-size:16px;

}

.aboutBtn{

padding:14px 26px;

}

}
/*=========================================
HISTORY SECTION
=========================================*/

.historySection{
    padding:120px 0;
    background:#fff;
    position:relative;
}

.historyHeading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.historyHeading span{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}

.historyHeading h2{
    margin:15px 0 20px;
    font-size:48px;
    line-height:1.2;
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
}

.historyHeading p{
    color:#666;
    font-size:17px;
}

.historyGrid{
    display:grid;
    grid-template-columns:42% 58%;
    gap:70px;
    align-items:center;
}

/* LEFT IMAGE */

.historyImage{
    position:relative;
}

.historyImage img{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.5s;
}

.historyImage:hover img{
    transform:scale(1.03);
}

.historyBadge{
    position:absolute;
    bottom:25px;
    right:-20px;
    width:130px;
    height:130px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:6px solid #fff;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.historyBadge strong{
    font-size:32px;
    margin-top:4px;
    color:var(--secondary);
}

/*=========================================
TIMELINE
=========================================*/

.timeline{
    position:relative;
    padding-left:40px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:15px;
    top:0;
    width:3px;
    height:100%;
    background:linear-gradient(var(--secondary),var(--primary));
}

.timelineItem{
    position:relative;
    display:flex;
    gap:25px;
    margin-bottom:40px;
}

.timelineItem:last-child{
    margin-bottom:0;
}

.timelineIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 20px rgba(123,30,30,.25);
}

.timelineContent{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid #eee;
}

.timelineContent:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.timelineContent h3{
    color:var(--secondary);
    font-size:26px;
    margin-bottom:5px;
    font-family:'Cormorant Garamond',serif;
}

.timelineContent h4{
    color:var(--primary);
    font-size:21px;
    margin-bottom:10px;
}

.timelineContent p{
    color:#666;
    line-height:1.8;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

.historyGrid{
    grid-template-columns:1fr;
}

.historyImage{
    max-width:650px;
    margin:auto;
}

.timeline{
    margin-top:40px;
}

}

@media(max-width:768px){

.historySection{
    padding:80px 0;
}

.historyHeading h2{
    font-size:36px;
}

.timeline{
    padding-left:25px;
}

.timeline::before{
    left:10px;
}

.timelineItem{
    gap:15px;
}

.timelineIcon{
    width:50px;
    height:50px;
    min-width:50px;
    font-size:18px;
}

.timelineContent{
    padding:20px;
}

.historyBadge{
    width:95px;
    height:95px;
    right:10px;
    bottom:10px;
}

.historyBadge strong{
    font-size:22px;
}

}

/*=========================================
MISSION | VISION | VALUES
=========================================*/

.purposeSection{
    padding:120px 0;
    background:var(--light);
}

.purposeGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.purposeCard{
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.purposeCard::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}

.purposeCard:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.purposeIcon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#9b2929);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    transition:.35s;
}

.purposeCard:hover .purposeIcon{
    transform:rotateY(180deg);
    background:linear-gradient(135deg,var(--secondary),#d6aa47);
}

.purposeCard h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
}

.purposeCard p{
    color:#666;
    line-height:1.9;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.whySection{
    padding:120px 0;
    background:#fff;
}

.whyGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.whyImage{
    position:relative;
}

.whyImage img{
    border-radius:22px;
    width:100%;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
    transition:.4s;
}

.whyImage:hover img{
    transform:scale(1.03);
}

.whyContent span{
    display:inline-block;
    color:var(--secondary);
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
    font-weight:600;
}

.whyContent h2{
    margin:18px 0 25px;
    font-size:48px;
    line-height:1.2;
    font-family:'Cormorant Garamond',serif;
    color:var(--dark);
}

.whyContent p{
    margin-bottom:35px;
    color:#666;
    font-size:17px;
    line-height:1.9;
}

.whyList{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.whyList div{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fafafa;
    border:1px solid #eee;
    border-radius:12px;
    padding:16px 18px;
    transition:.3s;
    font-weight:500;
}

.whyList div:hover{
    background:var(--primary);
    color:#fff;
    transform:translateX(8px);
}

.whyList div i{
    color:var(--secondary);
    font-size:18px;
}

.whyList div:hover i{
    color:#fff;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .purposeGrid{
        grid-template-columns:1fr;
    }

    .whyGrid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .purposeSection,
    .whySection{
        padding:80px 0;
    }

    .whyContent h2{
        font-size:36px;
    }

    .purposeCard{
        padding:35px 25px;
    }

    .purposeIcon{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .whyList{
        grid-template-columns:1fr;
    }

}

/*=========================================
ACHIEVEMENT / COUNTER SECTION
=========================================*/

.achievementSection{
    padding:120px 0;
    background:linear-gradient(135deg,#7B1E1E,#5a1515);
    color:#fff;
}

.counterGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.counterCard{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:45px 25px;
    text-align:center;
    transition:.35s;
}

.counterCard:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.15);
}

.counterCard h3{
    font-size:58px;
    color:var(--secondary);
    font-family:'Cormorant Garamond',serif;
    margin-bottom:12px;
}

.counterCard p{
    font-size:18px;
    color:#f5f5f5;
}

/*=========================================
SECRETARY SECTION
=========================================*/

.leaderSection{
    padding:120px 0;
    background:#fff;
}

.leaderGrid{
    display:grid;
    grid-template-columns:40% 60%;
    gap:70px;
    align-items:center;
}

.leaderImage img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.leaderContent span{
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.leaderContent h2{
    margin:18px 0 25px;
    font-size:46px;
    line-height:1.2;
    color:var(--dark);
    font-family:'Cormorant Garamond',serif;
}

.leaderContent p{
    margin-bottom:22px;
    font-size:17px;
    color:#666;
    line-height:1.9;
}

.leaderContent h4{
    margin-top:30px;
    color:var(--primary);
    font-size:24px;
    font-family:'Cormorant Garamond',serif;
}

/*=========================================
CALL TO ACTION
=========================================*/

.aboutCTA{
    padding:120px 0;
    background:var(--light);
}

.ctaBox{
    background:linear-gradient(135deg,var(--primary),#9d2d2d);
    color:#fff;
    text-align:center;
    padding:80px 60px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.ctaBox::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.ctaBox span{
    display:inline-block;
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.ctaBox h2{
    margin:20px 0;
    font-size:52px;
    line-height:1.2;
    font-family:'Cormorant Garamond',serif;
}

.ctaBox p{
    max-width:760px;
    margin:0 auto 40px;
    color:#f2f2f2;
    font-size:17px;
}

/*=========================================
BUTTONS
=========================================*/

.ctaButtons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primaryBtn,
.secondaryBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.35s;
}

.primaryBtn{
    background:var(--secondary);
    color:#fff;
}

.primaryBtn:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-5px);
}

.secondaryBtn{
    border:2px solid rgba(255,255,255,.45);
    color:#fff;
}

.secondaryBtn:hover{
    background:#fff;
    color:var(--primary);
    transform:translateY(-5px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1100px){

    .counterGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .leaderGrid{
        grid-template-columns:1fr;
    }

    .leaderImage{
        max-width:500px;
        margin:auto;
    }

}

@media(max-width:768px){

    .achievementSection,
    .leaderSection,
    .aboutCTA{
        padding:80px 0;
    }

    .counterGrid{
        grid-template-columns:1fr;
    }

    .counterCard h3{
        font-size:44px;
    }

    .leaderContent h2{
        font-size:34px;
    }

    .ctaBox{
        padding:50px 25px;
    }

    .ctaBox h2{
        font-size:36px;
    }

    .ctaButtons{
        flex-direction:column;
    }

    .primaryBtn,
    .secondaryBtn{
        width:100%;
    }

}