@charset "UTF-8";

/* ==========================================================================
   SHABDSETU About Page - about.css
   ========================================================================== */

.active-link {
    color: #ffffff !important;
    border-bottom: 2px solid #e2691f;
    padding-bottom: 4px;
}
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}
/* ============================= HERO ============================= */
.about-hero{
    width:100%;
    height:650px;      /* instead of min-height */
    background-image:url("../IMG/aboutmain.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-buttons {
    display: flex;
    gap: 16px;
     padding: 0 40px;
     margin-top:40px;
}

.hero-buttons .btn {
    width: 280px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.btn-secondary {
    background-color: #e1a34d;
    color: #3d2b1f;
    border: 1px solid #d9c9ae;
}

.btn-secondary:hover {
    background-color: #e0c69e;
}

.about-hero-inner {
    max-width: 1200px;
   
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 40px;
   
}

.about-hero-text {
    flex: 1.2;
}

.about-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 12px;
    margin-top:70px;
}

.about-hero-sub {
    font-size: 18px;
    font-weight: 600;
    color: #8a5a2f;
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a4632;
    margin-bottom: 16px;
}

.about-hero-image {
    flex: 1;
    max-width: 450px;
}

.about-hero-image img {
    width: 100%;
}

/* ================= OUR STORY ================= */
/* ================= OUR STORY ================= */

.about-story{
    position: relative;
    width: 100%;
    height: 800px;
    background: url("../IMG/aboutmain1.png") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

/* Dark overlay for better text readability */
.about-story::before{
    content: "";
    position: absolute;
    inset: 0;
    background: e2c39c;
}

.about-story-container{
    position: relative;
    z-index: 2;

    max-width: 1200px;
    width: 100%;
   margin-left:45px;

    display: flex;
    align-items: center;

         /* Same as Hero */
}

.about-story-content{
    width: 55%;
    max-width: 620px;
}

.story-tag{
    display: inline-block;
    padding: 8px 22px;
    background: #F5E2C8;
    color: #B45F06;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-story-content h2{
    font-size: 48px;
    line-height: 1.2;
    color: #3d2b1f;
    margin-bottom: 22px;
    font-weight: 700;
}

.about-story-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #5b4b3d;
    margin-bottom: 18px;
    max-width: 560px;
}

.about-story-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background: #B45F06;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.about-story-btn:hover{
    background: #8e4904;
    transform: translateY(-3px);
}

/* Hide unused image container */
.about-story-image{
    display: none;
}

/* Responsive */

@media(max-width:768px){

    .about-story{
        min-height: auto;
        padding: 80px 0;
        background-position: 70% center;
    }

    .about-story::before{
        background: rgba(250,245,236,0.90);
    }

    .about-story-container{
        padding: 0 25px;
    }

    .about-story-content{
        width: 100%;
    }

    .about-story-content h2{
        font-size: 34px;
    }

    .about-story-content p{
        font-size: 16px;
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.about-story-container{

    flex-direction:column-reverse;

    text-align:center;
}

.about-story-content h2{

    font-size:34px;
}

.about-story-content p{

    text-align:center;
}

}
/* ============================= FEATURE ICONS ROW ============================= */
/* ================= WHY SHABDSETU ================= */

.about-features{
    width:100%;
    padding:80px 30px;
    background:#E2C39C;
}

.about-features .section-heading{
    text-align:center;
    font-size:38px;
    color:#3d2b1f;
    margin-bottom:60px;
    position:relative;
}

.about-features .section-heading::after{
    content:"";
    width:90px;
    height:5px;
    background:#B45F06;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    border-radius:20px;
}

.about-features-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.about-feature-item{
    flex:1;
    min-width:300px;
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    border:1px solid #f2e4d2;
    position:relative;
    overflow:hidden;
}

.about-feature-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#B45F06,#D77A2C);
}

.about-feature-item:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.about-feature-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#B45F06,#D77A2C);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.4s;
}

.about-feature-item:hover .about-feature-icon{
    transform:rotate(10deg) scale(1.1);
}

.about-feature-item h3{
    font-size:24px;
    color:#3d2b1f;
    margin-bottom:15px;
    font-weight:700;
}

.about-feature-item p{
    color:#6f6254;
    font-size:15px;
    line-height:1.8;
}

/* ================= Responsive ================= */

@media(max-width:992px){

    .about-features-inner{
        gap:25px;
    }

    .about-feature-item{
        min-width:260px;
    }

}

@media(max-width:768px){

    .about-features{
        padding:60px 20px;
    }

    .about-features .section-heading{
        font-size:30px;
    }

    .about-feature-item{
        width:100%;
    }

}
/* ============================= BOOK HIGHLIGHT CARDS ============================= */
/* ================= OUR VISION ================= */

.vision-section{
    width:100%;
    padding:90px 30px;
    background:#fffaf4;
}

.vision-container{
    width:99%;
    margin-left:45px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.vision-image{
    flex:1;
}

.vision-image img{
    width:90%;
    border-radius:2px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    height:500px;
}

.vision-content{
    flex:1;
}

.vision-tag{
    display:inline-block;
    background:#F5E2C8;
    color:#B45F06;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.vision-content h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:#3d2b1f;
    margin-bottom:20px;
    line-height:1.2;
}

.vision-content p{
    font-size:17px;
    line-height:1.9;
    color:#5c4b3d;
    margin-bottom:18px;
    text-align:justify;
}

.vision-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 34px;
    background:#B45F06;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.vision-btn:hover{
    background:#8f4a05;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:992px){

.vision-container{
    flex-direction:column;
    text-align:center;
}

.vision-content h2{
    font-size:38px;
}

.vision-content p{
    text-align:center;
}

}

/* ================= FOOTER ================= */

.footer{

    background:linear-gradient(180deg,#6E3C18,#3B1E0E);

    color:#fff;
	margin-top:1px;
}

.footer-container{

    max-width:1300px;

   

   

    display:grid;

    grid-template-columns:2fr 1fr 1fr 2fr;

    gap:45px;

}

.footer-logo{

    font-size:32px;

    color:#FFD27A;

    margin-bottom:15px;

}

.footer-logo i{

    margin-right:8px;

}

.footer-about{

    color:#ddd;

    line-height:1.8;

    margin-bottom:25px;

}

.footer-column h3{

    color:#FFD27A;

    margin-bottom:20px;

    font-size:20px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#FFD27A;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:#FFD27A;

    color:#3B1E0E;

    transform:translateY(-5px);

}

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    flex:1;

    padding:14px;

    border:none;

    outline:none;

    border-radius:8px 0 0 8px;

}

.newsletter button{

    padding:14px 24px;

    border:none;

    background:#FFD27A;

    color:#3B1E0E;

    font-weight:600;

    cursor:pointer;

    border-radius:0 8px 8px 0;

    transition:.3s;

}

.newsletter button:hover{

    background:#F4B942;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:22px;

    color:#ddd;

}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
    .about-hero-inner,
    .about-tailored-inner {
        flex-direction: column;
        text-align: center;
    }
    .about-tailored-inner {
        flex-direction: column-reverse;
    }
    .about-hero-image,
    .about-tailored-image {
        max-width: 320px;
    }
    .about-features-inner {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }
    .about-feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .about-cards-inner {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .about-hero-text h1 {
        font-size: 30px;
    }
    .about-hero,
    .about-tailored {
        padding: 40px 0;
    }
    .about-hero-inner,
    .about-tailored-inner,
    .about-features-inner,
    .about-cards-inner {
        padding: 0 20px;
    }
    .about-card {
        flex-direction: column;
        text-align: center;
    }
}