/*=========================================================
        PRAKRUTHI BOYS & GIRLS HOSTEL
                ABOUT PAGE
=========================================================*/

/*=========================================================
                    GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================================
                    ROOT VARIABLES
=========================================================*/

:root{

    --primary:#0b1f3a;

    --primary-light:#16355f;

    --primary-dark:#071426;

    --secondary:#fff;

    --white:#FFFFFF;

    --black:#222222;

    --text:#374151;

    --border:#E5E7EB;

    --shadow-sm:0 2px 8px rgba(0,0,0,.08);

    --shadow-md:0 5px 20px rgba(0,0,0,.20);

    --shadow-lg:0 10px 30px rgba(0,0,0,.30);

    --radius:6px;

    --transition:.3s ease;

}

/*=========================================================
                        RESET
=========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--black);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

}

/*=========================================================
                    CONTAINER
=========================================================*/

.container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 20px;

}

/*=========================================================
                    COMMON SECTION
=========================================================*/

section{

    padding:70px 0;

    position:relative;

}

/*=========================================================
                    SECTION TITLE
=========================================================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:50px;

    background:#EAF7E8;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title h2{

    font-size:46px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:18px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--text);

    font-size:17px;

}

/*=========================================================
                    BUTTONS
=========================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

    color:var(--white);

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-lg);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:var(--white);

}

/*=========================================================
                    COMMON CARD
=========================================================*/

.card{

    background:var(--white);

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*=========================================================
                    SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#F2F2F2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

/*=========================================================
                    TEXT SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#ffffff;

}/*=========================================================
                    ABOUT SECTION
=========================================================*/

.about-section{

    background:var(--white);

}

/*================ ABOUT LAYOUT =================*/
.eyebrow{
    display:inline-block;
    color:#0066cc;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-heading{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-sub{
    max-width:700px;
    margin:0 auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}
.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

/*================ IMAGE =================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.about-image:hover img{

    transform:scale(1.03);

}

/*================ EXPERIENCE CARD =================*/

.experience-card{

    position:absolute;

    right:-25px;

    bottom:35px;

    width:190px;

    background:var(--white);

    border-radius:20px;

    text-align:center;

    padding:25px;

    box-shadow:var(--shadow-lg);

    border:1px solid var(--border);

}

.experience-card h2{

    font-size:46px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:8px;

}

.experience-card span{

    font-size:15px;

    color:var(--text);

    line-height:1.5;

}

/*================ CONTENT =================*/

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about-content .section-badge{

    width:max-content;

}

.about-content h2{

    font-size:46px;

    font-weight:700;

    line-height:1.25;

    margin:20px 0;

    color:var(--black);

}

.about-content p{

    font-size:16px;

    color:var(--text);

    line-height:1.9;

    margin-bottom:18px;

}

/*================ FEATURES =================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:20px;

}

/*================ FEATURE ITEM =================*/

.feature-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 20px;

    background:var(--secondary);

    border:1px solid var(--border);

    border-radius:18px;

    transition:var(--transition);

}

.feature-item:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.feature-item i{

    font-size:22px;

    color:var(--primary);

    transition:var(--transition);

}

.feature-item span{

    font-size:15px;

    font-weight:500;

    color:var(--black);

    transition:var(--transition);

}

.feature-item:hover i,

.feature-item:hover span{

    color:var(--white);

}

/*================ DECORATION =================*/

.about-section::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(62,142,65,.05);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.about-section::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(95,175,83,.08);

    border-radius:50%;

    bottom:-80px;

    right:-80px;

}/*=========================================================
                VISION & MISSION SECTION
=========================================================*/

.vision-section{

    background:var(--secondary);

}

/*================ WRAPPER =================*/

.vision-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:50px;

}

/*================ COMMON CARD =================*/

.vision-card,
.mission-card{

    position:relative;

    background:var(--white);

    padding:40px;

    border-radius:28px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;

}

.vision-card:hover,
.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

    border-color:var(--primary);

}

/*================ TOP BORDER =================*/

.vision-card::before,
.mission-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--primary-light)

    );

}

/*================ ICON =================*/

.vision-icon,
.mission-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

    color:var(--white);

    font-size:34px;

    margin-bottom:25px;

    transition:var(--transition);

}

.vision-card:hover .vision-icon,
.mission-card:hover .mission-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*================ TITLE =================*/

.vision-card h3,
.mission-card h3{

    font-size:30px;

    font-weight:700;

    color:var(--black);

    margin-bottom:18px;

}

/*================ DESCRIPTION =================*/

.vision-card p,
.mission-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.9;

    margin-bottom:25px;

}

/*================ LIST =================*/

.vision-card ul,
.mission-card ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.vision-card li,
.mission-card li{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    color:var(--black);

    font-weight:500;

}

.vision-card li i,
.mission-card li i{

    color:var(--primary);

    font-size:18px;

}

/*================ DECORATION =================*/

.vision-section::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(62,142,65,.05);

    top:-120px;

    right:-120px;

}

.vision-section::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(95,175,83,.08);

    bottom:-90px;

    left:-90px;

}
/*=========================================================
                WHY CHOOSE PRAKRUTHI
=========================================================*/

.why-section{

    padding:90px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.why-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(62,142,65,.05);

    border-radius:50%;

    top:-180px;

    right:-150px;

}

.why-section::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(95,175,83,.06);

    border-radius:50%;

    bottom:-100px;

    left:-100px;

}

/*=========================================================
                    WRAPPER
=========================================================*/

.why-wrapper{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:2;

}

/*=========================================================
                    CONTENT
=========================================================*/

.why-content{

    width:100%;

}

.why-content .section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 26px;

    border-radius:50px;

    background:#EAF7E8;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

}

.why-content .section-badge i{

    font-size:16px;

}

.why-content h2{

    font-size:54px;

    font-weight:700;

    line-height:1.15;

    color:var(--black);

    margin:25px 0 18px;

}

.title-line{

    width:90px;

    height:5px;

    border-radius:50px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--primary-light)

    );

    margin-bottom:28px;

}

.why-content>p{

    font-size:17px;

    color:var(--text);

    line-height:1.9;

    margin-bottom:40px;

}

/*=========================================================
                    FEATURES
=========================================================*/

.why-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/*=========================================================
                    FEATURE CARD
=========================================================*/

.why-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    background:#ffffff;

    border-radius:22px;

    border:1px solid #ECECEC;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.why-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

/*=========================================================
                    ICON
=========================================================*/

.why-icon{

    width:64px;

    height:64px;

    min-width:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

    color:#ffffff;

    font-size:25px;

    transition:.35s;

}

.why-item:hover .why-icon{

    transform:rotate(-8deg) scale(1.08);

}

/*=========================================================
                    TEXT
=========================================================*/

.why-text{

    flex:1;

}

.why-text h4{

    font-size:20px;

    font-weight:600;

    color:var(--black);

    margin-bottom:8px;

}

.why-text p{

    font-size:15px;

    color:var(--text);

    line-height:1.7;

    margin:0;

}/*=========================================================
                    RIGHT IMAGE
=========================================================*/

.why-image{

    position:relative;

    overflow:hidden;

    border-radius:30px;

}

.why-image img{

    width:100%;

    height:760px;

    object-fit:cover;

    display:block;

    border-radius:30px;

}

.why-image:hover img{

    transform:scale(1.03);

}

/*================ IMAGE OVERLAY =================*/

.why-image::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:35px;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.20),

        rgba(0,0,0,.02) 45%,

        transparent

    );

    z-index:1;

    pointer-events:none;

}

/*=========================================================
                    FLOATING BADGE
=========================================================*/
.why-badge{

    position:absolute;

    right:25px;

    bottom:25px;

    width:220px;

    height:220px;

    background:linear-gradient(
        135deg,
        #2F8B39,
        #56A84A
    );

    border-radius:28px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    z-index:10;

}

.why-badge i{

    font-size:34px;

    margin-bottom:15px;

}

.why-badge h3{

    font-size:62px;

    font-weight:700;

    line-height:1;

    margin-bottom:12px;

    color:#fff;

}

.why-badge p{

    font-size:18px;

    font-weight:500;

    margin:0;

    color:#fff;

}
/*=========================================================
                    TRUST ROW
=========================================================*/

.why-bottom{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.why-info{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    border-radius:18px;

    background:#F8FCF7;

    border:1px solid #E6EFE6;

    transition:.35s;

}

.why-info:hover{

    transform:translateY(-5px);

    border-color:var(--primary);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.why-info i{

    width:52px;

    height:52px;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

    color:#ffffff;

    font-size:22px;

}

.why-info span{

    font-size:15px;

    font-weight:600;

    color:var(--black);

    line-height:1.5;

}

/*=========================================================
                WHY SECTION ANIMATIONS
=========================================================*/

.why-content{

    animation:fadeLeft .8s ease forwards;

}

.why-image{

    animation:fadeRight .8s ease forwards;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=========================================================
                HOVER EFFECTS
=========================================================*/

.why-item{

    cursor:pointer;

}

.why-item:hover{

    background:#ffffff;

}

.why-item:hover .why-icon{

    background:linear-gradient(

        135deg,

        #2E7031,

        #5FAF53

    );

}

.why-image img{

    transition:.6s ease;

}

.why-image:hover img{

    transform:scale(1.04);

}

.why-badge{

    transition:.35s;

}

.why-image:hover .why-badge{

    transform:translateY(-8px);

}

.why-info{

    cursor:pointer;

}

.why-info:hover{

    background:var(--primary);

}

.why-info:hover i{

    background:#ffffff;

    color:var(--primary);

}

.why-info:hover span{

    color:#ffffff;

}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:1200px){

    .why-wrapper{

        gap:50px;

    }

    .why-content h2{

        font-size:46px;

    }

    .why-image img{

        height:680px;

    }

}

@media(max-width:992px){

    .why-wrapper{

        grid-template-columns:1fr;

    }

    .why-image{

        order:-1;

    }

    .why-content{

        text-align:center;

    }

    .why-content .section-badge{

        margin:auto;

    }

    .title-line{

        margin:25px auto;

    }

    .why-features{

        grid-template-columns:repeat(2,1fr);

    }

    .why-bottom{

        grid-template-columns:repeat(3,1fr);

    }

    .why-image img{

        height:600px;

    }

}

@media(max-width:768px){

    .why-content h2{

        font-size:36px;

    }

    .why-content>p{

        font-size:16px;

    }

    .why-features{

        grid-template-columns:1fr;

    }

    .why-bottom{

        grid-template-columns:1fr;

    }

    .why-image img{

        height:480px;

    }

    .why-badge{

        width:170px;

        padding:20px;

        right:20px;

        bottom:20px;

    }

    .why-badge h3{

        font-size:42px;

    }

    .why-badge p{

        font-size:15px;

    }

}

@media(max-width:576px){

    .why-section{

        padding:70px 0;

    }

    .why-content h2{

        font-size:30px;

    }

    .why-item{

        padding:18px;

    }

    .why-icon{

        width:55px;

        height:55px;

        min-width:55px;

        font-size:20px;

    }

    .why-text h4{

        font-size:18px;

    }

    .why-text p{

        font-size:14px;

    }

    .why-image img{

        height:400px;

        border-radius:25px;

    }

    .why-badge{

        width:150px;

        padding:18px;

        border-radius:18px;

    }

    .why-badge h3{

        font-size:34px;

    }

    .why-badge p{

        font-size:14px;

    }

}

/*=========================================================
                        FAQ SECTION
=========================================================*/

.faq-section{

    position:relative;

    background:var(--secondary);

    overflow:hidden;

}

/*================ FAQ WRAPPER =================*/

.faq-wrapper{

    max-width:900px;

    margin:50px auto 0;

}

/*================ FAQ ITEM =================*/

.faq-item{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.faq-item:hover{

    box-shadow:var(--shadow-md);

    border-color:var(--primary);

}

/*================ QUESTION =================*/

.faq-question{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:22px 28px;

    font-size:18px;

    font-weight:600;

    color:var(--black);

    cursor:pointer;

    transition:var(--transition);

}

.faq-question:hover{

    color:var(--primary);

}

.faq-question i{

    font-size:18px;

    color:var(--primary);

    transition:var(--transition);

}

/*================ ANSWER =================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 28px 25px;

    color:var(--text);

    line-height:1.8;

    font-size:15px;

}

/*================ ACTIVE =================*/

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-question{

    color:var(--primary);

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*================ DECORATION =================*/

.faq-section::before{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:rgba(62,142,65,.05);

    top:-120px;

    right:-120px;

}

.faq-section::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(95,175,83,.08);

    bottom:-80px;

    left:-80px;

}/*=========================================================
                    BOOK YOUR STAY
=========================================================*/
/*=========================================================
                    CTA SECTION
=========================================================*/

.cta-section{

    padding:80px 0;

    background:#ffffff;

}

.cta-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    padding:90px 70px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*================ DECORATION =================*/

.cta-card::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-140px;

    right:-120px;

}

.cta-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-90px;

    left:-90px;

}

/*================ CONTENT =================*/

.cta-box{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

}

.cta-box .section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    color:#ffffff;

    backdrop-filter:blur(8px);

    margin-bottom:25px;

}

.cta-box h2{

    color:#ffffff;

    font-size:56px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.95);

    font-size:19px;

    line-height:1.8;

}

/*================ BUTTONS =================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.cta-section .btn-primary{

    min-width:220px;

    height:60px;

    border-radius:50px;

    background:#ffffff;

    color:var(--primary);

    font-weight:600;

    box-shadow:none;

}

.cta-section .btn-primary:hover{

    background:#F5F5F5;

    transform:translateY(-4px);

}

.cta-section .btn-outline{

    min-width:220px;

    height:60px;

    border-radius:50px;

    border:2px solid #ffffff;

    color:#ffffff;

    font-weight:600;

}

.cta-section .btn-outline:hover{

    background:#ffffff;

    color:var(--primary);

}
/*=========================================================
                    SIMPLE ANIMATIONS
=========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:992px){

    section{

        padding:60px 0;

    }

    .about-wrapper,

    .why-wrapper{

        grid-template-columns:1fr;

        gap:45px;

    }

    .vision-wrapper{

        grid-template-columns:1fr;

    }

    .about-content h2,

    .why-content h2,

    .section-title h2,

    .cta-box h2{

        font-size:38px;

    }

    .about-image img,

    .why-image img{

        height:500px;

    }

}

@media(max-width:768px){

    .container{

        padding:0 18px;

    }

    .about-features,

    .why-features{

        grid-template-columns:1fr;

    }

    .experience-card,

    .why-badge{

        position:static;

        width:100%;

        margin-top:20px;

    }

    .about-image img,

    .why-image img{

        height:380px;

    }

    .section-title{

        margin-bottom:35px;

    }

    .section-title h2{

        font-size:30px;

    }

    .about-content h2,

    .why-content h2{

        font-size:32px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .btn-primary,

    .btn-outline{

        width:100%;

    }

}

@media(max-width:576px){

    section{

        padding:50px 0;

    }

    .about-content h2,

    .why-content h2{

        font-size:28px;

    }

    .section-title h2{

        font-size:26px;

    }

    .vision-card,

    .mission-card,

    .faq-item{

        padding:25px;

    }

    .faq-question{

        padding:18px;

        font-size:16px;

    }

    .faq-answer p{

        padding:0 18px 20px;

    }

}
@media(max-width:768px){

    .cta-card{

        padding:60px 25px;

        border-radius:25px;

    }

    .cta-box h2{

        font-size:36px;

    }

    .cta-box p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-section .btn-primary,

    .cta-section .btn-outline{

        width:100%;

        max-width:280px;

    }

}



.about-section::before,
.about-section::after,
.vision-section::before,
.vision-section::after,
.why-section::before,
.why-section::after,
.faq-section::before,
.faq-section::after{

    display:none !important;

    content:none !important;

}