/* =========================
HEADER AREA
========================= */

.header-area{
    /* position: sticky; */
    top: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* MAIN ROW */
.header-area .row{
    display: flex;
    align-items: center;
}

/* =========================
LOGO
========================= */

.logo-section{
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.logo{
    width: 200px;
    object-fit: contain;
}

/* =========================
RIGHT SIDE
========================= */

.right-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================
TOP CONTACT BAR
========================= */

.top-contact{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;

    border-bottom: 1px solid #ececec;

    padding-bottom: 0px;
    margin-bottom: 0px;
}

/* CONTACT TEXT */

.contact-box{
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    color: #111;
}

.contact-box i{
    color: white;
    font-size: 25px;
    border: 1px solid #4b36a6 ;
    background-color: blue;
    border-radius:50%;

}

.contact-box a{
    text-decoration: none;
    color:#e3010f;
    font-weight: 500;
}

/* =========================
SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a{
    width: 34px;
    height: 34px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background:blue;

    color: #4b36a6;
    text-decoration: none;

    transition: 0.3s;
}

.social-icons a:hover{
    background: #4b36a6;
    color: #fff;
}
.top-box{
    width: 397px !important;
}
/* =========================
NAVBAR
========================= */

.navbar{
    padding: 0;
}

.navbar-nav{
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link{
    color: #111;
    font-size: 15px;
    font-weight: 600;

    padding: 8px 10px !important;

    transition: 0.3s;
}

.navbar-nav .nav-link:hover{
    color:#e3010f;
}

.navbar-nav .nav-link.active{
    color:#e3010f;
}

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

.nav-btns{
    display: flex;
    align-items: center;
    gap: 14px;
}

.enquire-btn{
    /* background: #4b36a6; */
    /* background: linear-gradient(to right, black, rgba(0, 0, 0, 0.462), rgba(255, 0, 0, 0.317)); */
    /* background: linear-gradient(to right, #ffffff57, #0000008a); */
    
    border: 3px solid  #e3010f;
    border-radius: 5px !important;
    /* border-image: linear-gradient(
        to right,
        black,
        rgb(0, 0, 0),
        #e3010f
    ) 1; */

    color: #211e1e;

    padding: 11px 30px;

    font-size: 14px;
    font-weight: 600;
    transition: 1s ease-in-out;
}

.enquire-btn:hover{
    background: #d61d1d;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.register-btn{
    /* background: #ff2f2f; */
    background: linear-gradient(to right, #e3010f, black);
    color: #fff;

    padding: 11px 24px;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;
    transition: 0.5s ease-in-out;
}

.register-btn:hover{
    background: #d61d1d;
    color: #fff;
    transition: 0.5s ease-in-out;
}

/* =========================
DROPDOWN
========================= */

.dropdown-menu{
    border-radius: 6px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.dropdown-item{
    font-size: 14px;
    padding: 10px 18px;
}

.dropdown-item:hover{
    background: #4b36a6;
    color: #fff;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .logo-section{
        justify-content: center;
    }

    .logo{
        width: 180px;
    }

    .top-contact{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        text-align: center;
    }

    .navbar-collapse{
        padding-top: 15px;
    }

    .navbar-nav{
        text-align: center;
    }

    .nav-btns{
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }

}
/* =========================
MOBILE NAVBAR
ONLY LOGO + HAMBURGER
========================= */

@media(max-width:991px){

    /* TOP CONTACT HIDE */
    .top-contact{
        display:none;
    }

    /* HEADER ROW */
    .header-area .row{
        align-items:center;
    }

    /* LOGO SIDE */
    .logo-section{
        padding:10px 0;
    }

    .logo{
        width:160px;
    }

    /* NAVBAR */
    .navbar{
        padding:0;
    }

    /* HAMBURGER ICON */
    .navbar-toggler{
        border:none;
        padding:0;
        box-shadow:none !important;
    }

    .navbar-toggler i{
        font-size:28px;
        color:#082f68;
    }

    /* RIGHT SIDE */
    .right-header{
        width:100%;
    }

    /* MENU OPEN AREA */
    .navbar-collapse{
        background:#fff;
        padding-top:15px;
        text-align:center;
    }

    /* MENU ITEMS */
    .navbar-nav{
        width:100%;
    }

    .navbar-nav .nav-link{
        display:block;
        padding:12px 0 !important;
        border-bottom:1px solid #f1f1f1;
    }

    /* BUTTONS */
    .nav-btns{
        justify-content:center;
        margin-top:15px;
        padding-bottom:15px;
        flex-wrap:wrap;
    }

}
/* =========================
DROPDOWN
========================= */

.dropdown-menu{
    border-radius: 6px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.dropdown-item{
    font-size: 14px;
    padding: 10px 18px;
}

.dropdown-item:hover{
    background: #4b36a6;
    color: #fff;
}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .logo-section{
        justify-content: center;
    }

    .logo{
        width: 180px;
    }

    .top-contact{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        text-align: center;
    }

    .navbar-collapse{
        padding-top: 15px;
    }

    .navbar-nav{
        text-align: center;
    }

    .nav-btns{
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }

}

/* =============
HOME SLIDER CSS
============ */

.hero{
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

#hero-carousel{
    position: relative;
}

#hero-carousel .carousel-item img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

/* BUTTONS */
.carousel-control-prev,
.carousel-control-next{
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

/* =========================
OUR TOPPERS WALL SECTION
========================= */

.champions-section{
    background: #f5f5f5;
    padding: 50px 20px;
    margin-top: 0;     /* important */
    position: relative;
    z-index: 2;
}

/* HEADING */
.champion-heading{
    font-size: 58px;
    font-weight: 800;
    color: #222;
}

.champion-heading span{
    color: #20d46b;
}

.heading-line{
    width: 250px;
    height: 5px;
    background: black;
    margin: 20px auto 0;
    border-radius: 20px;
}

.champion-heading{
    font-size:58px;
    font-weight:800;
    
    background: linear-gradient(to right,  #e3010f, black);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    display:inline-block;
} 



/* CARD */
.champion-card{
    text-align: center;
    transition: 0.3s;
}

.champion-card:hover{
    transform: translateY(-6px);
}

/* IMAGE */
.student-img{
    position: relative;
    width: 170px;
    height: 170px;
    margin: auto;
}

.student-img img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:fill;
    padding:4px;

    background:linear-gradient(to right,  #e3010f, black);
}

/* BADGE */
.rank-badge{
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #198cff; */
      background:linear-gradient(to right,  #e3010f, black);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* TEXT */
.champion-card h5{
    margin-top: 14px;
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.champion-card p{
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE */
@media(max-width:991px){

    #hero-carousel .carousel-item img{
        height: 70vh;
    }

    .champion-heading{
        font-size: 42px;
    }



    .student-img{
        width: 140px;
        height: 140px;
    }

}

@media(max-width:576px){

    #hero-carousel .carousel-item img{
        height: 50vh;
    }

    .champion-heading{
        font-size: 30px;
    }

    .heading-line{
        width: 170px;
    }

    .student-img{
        width: 120px;
        height: 120px;
    }

    .rank-badge{
        font-size: 10px;
        padding: 6px 10px;
    }

}


/* =====================
ABOUT SECTION
===================== */

.about-section{
    padding:80px 0;
    background:#fff;
}

/* IMAGE GRID */
.about-image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:180px 180px 180px;
    gap:12px;
}

/* COMMON */
.grid-item{
    overflow:hidden;
    border-radius:25px;
}

.grid-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.grid-item:hover img{
    transform:scale(1.05);
}

/* CUSTOM GRID */
.item-1{
    grid-column:1/2;
    grid-row:1/2;
}

.item-2{
    grid-column:2/3;
    grid-row:1/3;
}

.item-3{
    grid-column:1/2;
    grid-row:2/4;
}

.item-4{
    grid-column:2/3;
    grid-row:3/4;
}

/* CONTENT */
.about-content{
    padding-left:30px;
}

/* SUBTITLE */
.about-subtitle{
    color:#0a2c63;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}

.about-subtitle::after{
    content:"";
    width:70px;
    height:3px;
    background:#e3010f;
    position:absolute;
    left:0;
    bottom:-8px;
}

/* TITLE */
.about-title{
    font-size:35px;
    font-weight:800;
    color:#072c61;
    /* line-height:1.1; */
    /* margin-bottom:25px; */
}

/* TEXT */
.about-text{
    font-size:19px;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
}

.counter-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:800;
    color:#082f68;

    background:#fff;
    z-index:1;
}

/* PROGRESS BORDER */
.counter-circle::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;

    background:
    conic-gradient(
        #082f68 0deg 300deg,
        #dfe7f5 300deg 360deg
    );

    /* BORDER THICKNESS */
    -webkit-mask:
    radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 calc(100% - 3px)
    );

    mask:
    radial-gradient(
        farthest-side,
        transparent calc(100% - 4px),
        #000 calc(100% - 3px)
    );
}

/* FEATURES */
.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:18px;
    font-size:18px;
    color:#444;
}

.feature-list i{
    color:#082f68;
    margin-right:10px;
}

/* BUTTON */
.about-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 38px;
    border:2px solid #082f68;
    border-radius:14px;
    color:#082f68;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    transition:0.3s;
}

.about-btn:hover{
    background:#082f68;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:991px){

    .about-content{
        padding-left:0;
    }

    .about-title{
        font-size:40px;
    }

}

@media(max-width:576px){

    .about-image-grid{
        grid-template-rows:140px 140px 140px;
    }

    .about-title{
        font-size:30px;
    }

    .about-text{
        font-size:16px;
    }

    .counter-circle{
        width:65px;
        height:65px;
        font-size:18px;
    }

    .counter-box h5{
        font-size:18px;
    }

}

.img-about{
    object-fit: cover;
    border: 1px solid red;
    border-radius: 5px;
    box-shadow: #e3010f 0px 5px 15px;
}
/* =========================
   COURSE CARDS SECTION
========================= */

.card-slider-section{
    background:#f5f5f5;
    padding:60px 0;
    overflow:hidden;
}

/* MAIN SLIDER */

.slider-main{
    width:92%;
    overflow:hidden;
    margin:auto;
}

/* SLIDER */

.slider-wrapper{
    display:flex;
    gap:20px;
    width:max-content;

    animation:smoothPauseSlide 20s linear infinite;
}

/* CARD */

.custom-card{
    position:relative;
    overflow:hidden;

    width:280px;
    min-width:280px;

    background:#fff;
    padding:20px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,0.1);

    flex-shrink:0;

    transition:0.3s ease;
    max-height: 530px;
}

.custom-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */

.custom-card img{
    width:100%;
    height:240px;

    object-fit:cover;

    border-radius:12px;
}

/* TITLE */

.custom-card h5{
    margin-top:18px;
    margin-bottom:8px;

    font-weight:700;
    font-size:22px;
}

.custom-card h5 a{
    text-decoration:none;
    color:#000;
}

.custom-card span{
    color:#082f68;
    font-weight:600;
    font-size:15px;
}

/* TEXT */

.custom-card p{
    margin-top:10px;
    margin-bottom:12px;

    color:#666;
    font-size:15px;
    line-height:24px;
}

/* LIST */

.custom-card ul{
    padding-left:18px;

    list-style-type:circle;

    font-size:14px;
    line-height:24px;

    color:#333;
}

.custom-card ul li{
    margin-bottom:8px;
}

/* =========================
   TOP BUTTON
========================= */

.hybrid-btn{
    position:absolute;

    top:30px;
    right:30px;

    background:#082f68;
    color:#fff;

    padding:6px 14px;

    font-size:12px;
    font-weight:600;

    border-radius:30px;

    z-index:2;

    border:none;
}

/* =========================
   HOVER EFFECT
========================= */

.card-hover-content{
    position:absolute;

    top:0;
    right:-100%;

    width:100%;
    height:100%;

    background:#082f68;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:25px;

    transition:0.5s ease;

    z-index:5;

    border-radius:15px;
}

.custom-card:hover .card-hover-content{
    right:0;
}

/* HOVER BUTTON */

.hover-top-btn{
    position:absolute;

    top:20px;
    right:20px;

    background:#fff;
    color:#082f68;

    border:none;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;
}

/* HOVER TEXT */

.hover-text{
    color:#fff;

    font-size:16px;
    line-height:28px;

    margin-top:20px;
    margin-bottom:20px;
}

/* READ MORE */

.read-more-btn{
    width:fit-content;

    background:gold;
    color:#082f68;

    text-decoration:none;

    padding:10px 22px;

    border-radius:30px;

    font-weight:700;

    position:relative;
    overflow:hidden;

    transition:0.4s ease;

    display:inline-block;
}

/* SHINE */

.read-more-btn::before{
    content:"";

    position:absolute;

    top:-50%;
    left:-75%;

    width:40px;
    height:200%;

    background:rgba(255,255,255,0.7);

    transform:rotate(25deg);

    transition:0.7s;
}

.read-more-btn:hover{
    background:#082f68;
    color:#fff;

    box-shadow:0 0 20px rgba(8,47,104,0.7);
}

.read-more-btn:hover::before{
    left:130%;
}

/* =========================
   SLIDE ANIMATION
========================= */

@keyframes smoothPauseSlide{

    0%{
        transform:translateX(0);
    }

    15%{
        transform:translateX(0);
    }

    25%{
        transform:translateX(-300px);
    }

    40%{
        transform:translateX(-300px);
    }

    50%{
        transform:translateX(-600px);
    }

    65%{
        transform:translateX(-600px);
    }

    75%{
        transform:translateX(-900px);
    }

    90%{
        transform:translateX(-900px);
    }

    100%{
        transform:translateX(-1200px);
    }
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .custom-card{
        width:260px;
        min-width:260px;
    }

    .custom-card img{
        height:220px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .card-slider-section{
        padding:50px 0;
    }

    .slider-wrapper{
        gap:16px;
    }

    .custom-card{
        width:240px;
        min-width:240px;

        padding:18px;
    }

    .custom-card img{
        height:200px;
    }

    .custom-card h5{
        font-size:20px;
    }

    .custom-card p{
        font-size:14px;
    }

    .custom-card ul{
        font-size:13px;
        line-height:22px;
    }

    .hover-text{
        font-size:14px;
        line-height:24px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .card-slider-section{
        padding:40px 0;
    }

    .slider-wrapper{
        gap:14px;
    }

    .custom-card{
        width:85vw;
        min-width:85vw;

        padding:16px;
    }

    .custom-card img{
        height:190px;
    }

    .custom-card h5{
        font-size:18px;
    }

    .custom-card p{
        font-size:13px;
        line-height:22px;
    }

    .custom-card ul{
        font-size:12px;
        line-height:20px;
        padding-left:16px;
    }

    .hybrid-btn{
        top:20px;
        right:20px;

        padding:5px 12px;

        font-size:11px;
    }

    .hover-top-btn{
        font-size:11px;
    }

    .hover-text{
        font-size:13px;
        line-height:22px;
    }

    .read-more-btn{
        padding:8px 18px;
        font-size:13px;
    }

}


/* =========================
   DIRECTORS SECTION
========================= */

.directors-section{
    padding: 80px 0;
    background: #f5f7fb;
}

/* TITLE */

.section-title{
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 42px;
    font-weight: 800;
    color: #082f68;
    margin-bottom: 10px;
}

.section-title p{
    color: #666;
}

/* CARD */

.director-card{
    background:#ffefd5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

.director-card:hover{
    transform: translateY(-8px);
}

/* IMAGE */

.director-card img{
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-fit: contain;
    padding: 6px 0  0  0;
}

/* CONTENT */

.director-content{
    padding: 0 0 25px 0;
}

.director-content h4{
    color: #082f68;
    font-weight: 800;
    margin-bottom: 5px;
    text-align: center;
}

.director-content p{
    color: #666;
    line-height: 26px;
    text-align: center;
}

.director-one{
    background-color: #ffefd5;
}

.director-tow{
    background-color:#e3010f1c;
}

.director-three{
    background-color:#87ceeb45;
}

.director-text{
    color: #e3010f !important;
    font-weight: 500;
}
/* HIDDEN TEXT */

.more-text{
    display: none;
    margin-top: 15px;
}

/* ACTIVE */

.director-card.active .more-text{
    display: block;
}

/* BUTTON */

.read-btn{
    background: gold;
    color: #082f68;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 12px;
    transition: 0.4s;
}

.read-btn:hover{
    background: #082f68;
    color: #fff;
}

.director-content{
    text-align: center;
}

.read-btn{
    display: inline-block;
    margin: 20px auto 0;
}
/* HIDDEN TEXT */

.more-text{
    display: none;
    transition: 0.4s;
}

/* SHOW TEXT */

.director-card.active .more-text{
    display: block;
}


/* ============================
Testimonial
======================= */
.key-feature-section{
    padding: 80px 0;
    background: #eef0f5;
}

.key-feature-section .container{
    width: 90%;
    margin: auto;
}

/* MAIN FLEX */

.feature-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */

.feature-content{
    width: 32%;
}

.feature-content h2{
    font-size: 60px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-content h2 span{
    color: #ff2d2d;
    position: relative;
}

.feature-content h2 span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 5px;
    background: orange;
    border-radius: 10px;
}

.feature-content p{
    font-size: 15px;
    line-height: 1;
    color: #444;
    margin-bottom: 30px;
}

.feature-content ul{
    padding: 0;
    margin: 0;
}

.feature-content ul li{
    list-style: none;
    font-size: 14px;
    color: #2e3d59;
    margin-bottom: 22px;
    position: relative;
    padding-left: 38px;
    font-weight: 500;
}

.feature-content ul li::before{
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #4338ca;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT SIDE */

.feature-videos{
    width: 68%;
    display: flex;
    gap: 25px;
}

.video-card{
    width: 33.33%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-card video{
    width: 100%;
    height: 494px;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */

@media(max-width:991px){

    .feature-wrapper{
        flex-direction: column;
    }

    .feature-content{
        width: 100%;
    }

    .feature-videos{
        width: 100%;
        overflow-x: auto;
    }

    .video-card{
        min-width: 260px;
    }

}

@media(max-width:576px){

    .feature-content h2{
        font-size: 42px;
    }

    .feature-content p{
        font-size: 18px;
    }

    .feature-content ul li{
        font-size: 17px;
    }

}

/* =========================
   GOOGLE REVIEW SECTION
========================= */

.google-review-section{
    background: #f3f5f7;
    overflow: hidden;
}

.review-heading{
    font-size: 42px;
    font-weight: 700;
    /* color: #111; */
        
}

.review-subtitle{
    color: #666;
    font-size: 18px;
}

.google-rating h3{
    font-size: 35px;
    font-weight: 700;
}

.google-rating p{
    font-size: 18px;
    color: #555;
}

.google-text{
    font-size: 45px;
    font-weight: 700;
    color: #4285F4;
}

.stars{
    color: #fbbc05;
    font-size: 40px;
    letter-spacing: 4px;
}

.review-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.review-track{
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollSlider 30s linear infinite;
}

.review-card{
    width: 320px;
    min-height: 250px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.review-card:hover{
    transform: translateY(-8px);
}

.review-card h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-card span{
    color: #777;
    font-size: 14px;
}

.review-card img{
    width: 28px;
    height: 28px;
}

.stars-card{
    color: #fbbc05;
    font-size: 22px;
    margin-bottom: 15px;
}

.review-card p{
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* AUTO SLIDER ANIMATION */

@keyframes scrollSlider {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .review-heading{
        font-size: 30px;
    }

    .review-card{
        width: 280px;
    }

}


/* =========================
        FAQ SECTION
========================= */

.faq-section{
    background: #f8f9fa;
}

.faq-heading{
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.faq-subtitle{
    font-size: 18px;
    color: #666;
}

.custom-faq .accordion-item{
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.custom-faq .accordion-button{
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 22px 25px;
    color: #111;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed){
    /* background: #0d6efd; */
        background: linear-gradient(to right, #ff0707, #041d4c);

    color: #fff;
}

.custom-faq .accordion-body{
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    background: #fff;
}

/* REMOVE DEFAULT ICON */

/* REMOVE DEFAULT ACCORDION ICON */

.custom-faq .accordion-button::after{
    display: none;
}

/* CUSTOM PLUS ICON */

.custom-faq .accordion-button{
    position: relative;
    padding-right: 70px;
}

.custom-faq .accordion-button::before{
    content: "+";
    position: absolute;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background:#e3010f;
    color: #fff;
    font-size: 24px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s;
}

/* WHEN OPEN */

.custom-faq .accordion-button:not(.collapsed)::before{
    content: "-";
    background:#e3010f;
    color: white;
    transform: rotate(180deg);
}
/* RESPONSIVE */

@media(max-width:768px){

    .faq-heading{
        font-size: 30px;
    }

    .custom-faq .accordion-button{
        font-size: 16px;
        padding: 18px;
    }

    .custom-faq .accordion-body{
        font-size: 15px;
    }

}


/* =========================
        FOOTER CSS
========================= */

.modern-footer{
    /* background:#e3010f ; */
    background: linear-gradient(to right, #e3010f, black);
    padding-top: 80px;
    position: relative;

}

/* LOGO */

/* .footer-contact{ 
     width: 47px;
    height: 47px;
    min-width: 57px;
    border: 2px solid #4338ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4338ca;
    font-size: 30px;
} */

.footer-logo{
    width: 220px;
    margin-bottom: 8px;
}

/* ABOUT TEXT */

.footer-about p{
    color: white;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 8px;
}

/* SOCIAL ICONS */

.footer-social{
    display: flex;
    gap: 15px;
}

/* .footer-social a{
    width: 38px;
    height: 38px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: 0.4s;
    padding: 2px 0 0.5px 0;
}  */

.footer-social a:hover{
    background: #4338ca;
    transform: translateY(-5px);
}

/* FOOTER TITLES */

.footer-links h4,
.footer-contact h4{
    font-size: 20px;
    font-weight: 700;
    color:white;
    /* margin-bottom: 30px; */
}

/* LINKS */

.footer-links ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li{
    margin-bottom: 16px;
}

.footer-links ul li a{
    text-decoration: none;
    color:white;
    font-size: 15px;
    transition: 0.4s;
}

.footer-links ul li a:hover{
    color: white;
    padding-left: 6px;
}
.footer-text{
    /* backgroun: linear-gradient(to right, black, white); */
    
    /* background: linear-gradient(to right, black, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: black;
    font-weight: 700;
}
/* CONTACT BOX */

.contact-box{
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

/* .contact-box .icon  img{
  color: white !important;

} */
.contact-box .text h5{
    font-size: 16px;
    /* color: #4338ca; */
    color: white;
    margin-bottom: 8px ;
    font-weight: 600;
}

.contact-box .text p{
    margin: 0;
    color: white;
    font-size: 15px;
    /* line-height: 1.8; */
}
 .contact-box{
    display: flex;
    /* align-items: flex-start; */
    gap: 15px;
}

.contact-box .icon{
    margin-top: 0px !important;
    /* padding-top: 2px; */
    margin-bottom: 42px !important;
}

.contact-box .icon img{
    width: 35px;
    /* height: 35px; */
    background-color: white;
    border-radius: 50%;
}

.contact-box .text h5{
    margin: 0;
    line-height: 35px; 
}

.contact-box .text p{
    margin-top: 2px;
}
/* FOOTER BOTTOM */

.footer-bottom{
    border-top: 1px solid #ddd;
    padding: 15px 0;
    margin-top: 30px;
    text-align: center;
    background: black;
        /* background: linear-gradient(to right, rgb(227, 1, 15), black) text !important; */
    }
    
    .footer-bottom p{
        margin: 0;
        font-size: 15px;
        color: white;
    /* color: #444; */
}

.footer-bottom a{
    color: #4338ca;
    text-decoration: none;
    font-weight: 600;
}
.footer-box{
    margin-bottom: 20px !important;
}
/* =========================
    SCROLL TOP BUTTON
========================= */

.scroll-top-btn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 51px;
    height: 47px;
    border: none;
    border-radius: 50%;
    /* background: black; */
    background: linear-gradient(to right, #e3010f, black);

    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.scroll-top-btn:hover{
    background: #2d249b;
    transform: translateY(-5px);
}

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

@media(max-width:991px){

    .footer-links h4,
    .footer-contact h4{
        font-size: 28px;
    }

    .contact-box .text h5{
        font-size: 24px;
    }

}

@media(max-width:767px){

    .modern-footer{
        padding-top: 60px;
    }

    .footer-logo{
        width: 180px;
    }

    .footer-about p,
    .footer-links ul li a,
    .contact-box .text p,
    .footer-bottom p{
        font-size: 15px;
    }

    .footer-links h4,
    .footer-contact h4{
        font-size: 24px;
    }

    .contact-box{
        gap: 14px;
    }

    .contact-box .icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .contact-box .text h5{
        font-size: 20px;
    }

}

/* =========================
Socal Media Icons
=========================== */
/* css id="4s9kdl" */
/* SOCIAL ICONS */

.footer-social{
    display: flex;
    gap: 15px;
}

.footer-social a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background-color: #fff;
    transition: 0.4s;
}

/* HOVER BACKGROUND */

.footer-social a:hover{
    background-color: rgb(245, 240, 240) !important;
    transform: translateY(-5px);
}

/* INSTAGRAM */

.bi-instagram{
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );

    -webkit-background-clip: text;{
    -webkit-text-fill-color: transparent;

    font-size: 30px;
}

/* FACEBOOK */

.bi-facebook{
    color: #1877f2;
    font-size: 30px;
}

/* YOUTUBE */

.bi-youtube{
    color: #ff0000;
    font-size: 30px;
}

