/*
==========================================================
ONLINE PANDIT
Premium Website Stylesheet
Author : Ankur Srivastava
Version : 1.0
==========================================================
*/


/*==========================================================
1. GOOGLE FONTS
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/*==========================================================
2. ROOT VARIABLES
==========================================================*/

:root{

    --primary:#7B1E22;
    --secondary:#D4AF37;

    --dark:#1f1f1f;
    --text:#666;

    --white:#fff;

    --light:#FFF8F2;

    --border:#ececec;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}


/*==========================================================
3. RESET
==========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:var(--text);

    overflow-x:hidden;

    background:#fff;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    margin:0;
    padding:0;
    list-style:none;

}

section{

    padding: 0px 0;

}

h1,h2,h3,h4,h5,h6{

    font-family:'Playfair Display',serif;

    color:var(--dark);

    font-weight:700;

}

p{

    line-height:1.9;

}


/*==========================================================
4. COMMON
==========================================================*/

.container{

    max-width:1320px;

}

.text-primary{

    color:var(--primary)!important;

}


/*==========================================================
5. TOP BAR
==========================================================*/

.top-bar{

    background:var(--primary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-left{

    display:flex;

    gap:25px;

    align-items:center;

}

.top-left a{

    color:#fff;

}

.top-left a:hover{

    color:var(--secondary);

}

.top-left i{

    color:var(--secondary);

    margin-right:8px;

}

.top-right{

    color:#fff;

}

.top-right i{

    color:var(--secondary);

}


/*==========================================================
6. NAVBAR
==========================================================*/

.custom-navbar{

    background:#fff;

    box-shadow:var(--shadow);

    padding:14px 0;

    transition:.4s;

    z-index:999;

}

.navbar-brand img{

    height:70px;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-item{

    margin-left:10px;

}

.navbar-nav .nav-link{

    color:#222;

    font-weight:600;

    font-size:15px;

    position:relative;

    padding:10px 16px!important;

}

.navbar-nav .nav-link::after{

    position:absolute;

    content:"";

    left:50%;

    bottom:0;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:70%;

    left:15%;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .active{

    color:var(--primary)!important;

}


/*==========================================================
7. DROPDOWN
==========================================================*/

.dropdown-menu{

    border:none;

    border-radius:12px;

    box-shadow:var(--shadow);

    padding:10px;

}

.dropdown-item{

    border-radius:8px;

    padding:10px 16px;

}

.dropdown-item:hover{

    background:var(--light);

    color:var(--primary);

}


/*==========================================================
8. BOOK BUTTON
==========================================================*/

.btn-book{

    margin-left:30px;

    background:var(--secondary);

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.btn-book:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-2px);

}


/*==========================================================
9. STICKY NAVBAR
==========================================================*/

.custom-navbar.fixed{

    padding:8px 0;

    animation:slideDown .5s;

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}


/*==========================================================
10. MOBILE
==========================================================*/

@media(max-width:991px){

.top-bar{

display:none;

}

.navbar-brand img{

height:60px;

}

.navbar-nav{

padding-top:20px;

}

.btn-book{

margin:20px 0 0;

display:inline-flex;

}

.navbar-nav .nav-item{

margin-left:0;

}

}

@media(max-width:576px){

section{

padding:70px 0;

}

}

/*=========================================
 HERO SECTION
==========================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url('../images/hero_bg.png') center center/cover no-repeat;

}

.hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,8,8,.82) 0%,
        rgba(8,8,8,.60) 35%,
        rgba(8,8,8,.20) 65%,
        rgba(8,8,8,0) 100%
    );

}

.hero-section .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.15);

    border:1px solid rgba(212,175,55,.35);

    color:#FFD86B;

    padding:12px 24px;

    border-radius:40px;

    font-size:15px;

    font-weight:500;

    margin-bottom:30px;

}

.hero-tag i{

    font-size:18px;

}

.hero-title{

    color:#fff;

    font-size:64px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.hero-title span{

    color:#D4AF37;

}

.hero-desc{

    color:#E6E6E6;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-feature{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;

}

.hero-feature div{

    color:#fff;

    font-size:16px;

    font-weight:500;

}

.hero-feature i{

    color:#D4AF37;

    margin-right:8px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-book-now{

    background:#D4AF37;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-book-now:hover{

    background:#fff;

    color:#7B1E22;

}

.btn-services{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-services:hover{

    background:#fff;

    color:#7B1E22;

}

@media(max-width:992px){

.hero-section{

    text-align:center;

    min-height:850px;

}

.hero-content{

    margin:auto;

}

.hero-title{

    font-size:46px;

}

.hero-feature{

    grid-template-columns:1fr;

}

.hero-buttons{

    justify-content:center;

}

}

@media(max-width:576px){

.hero-title{

    font-size:34px;

}

.hero-desc{

    font-size:16px;

}

.hero-tag{

    font-size:13px;

}

}

/*=========================================
TRUST SECTION
==========================================*/

.trust-section{

    margin-top: 10px;

    position:relative;

    z-index:20;

}

.trust-box{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.trust-box:hover{

    transform:translateY(-10px);

}

.trust-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF7EA;

    display:flex;

    justify-content:center;

    align-items:center;

}

.trust-icon i{

    font-size:32px;

    color:#D4AF37;

}

.trust-box h2{

    font-size:42px;

    color:#7B1E22;

    margin-bottom:10px;

    font-weight:700;

}

.trust-box h5{

    margin-bottom:15px;

    font-weight:600;

}

.trust-box p{

    color:#666;

    margin:0;

    line-height:1.8;

}

@media(max-width:991px){

.trust-section{

margin-top:60px;

}

}

/*=========================================
ABOUT SECTION
==========================================*/

.about-section{

    padding:100px 0;

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:25px;

    right:-25px;

    background:#7B1E22;

    color:#fff;

    padding:25px;

    width:180px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

.experience-box h3{

    color:#D4AF37;

    font-size:42px;

    margin-bottom:5px;

}

.section-tag{

    color:#D4AF37;

    font-weight:600;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.section-title{

    font-size:44px;

    margin-bottom:25px;

    line-height:1.3;

}

.section-title span{

    color:#7B1E22;

}

.about-text{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-list{

    padding:0;

    margin:0;

    list-style:none;

}

.about-list li{

    margin-bottom:15px;

    font-size:16px;

    font-weight:500;

}

.about-list i{

    color:#D4AF37;

    margin-right:10px;

}

@media(max-width:991px){

.experience-box{

    position:relative;

    right:0;

    bottom:0;

    margin:25px auto 0;

}

.section-title{

    font-size:34px;

}

}

/*=========================================
POPULAR SERVICES
==========================================*/

.services-section{

    background:#fdfaf6;

    padding:100px 0;

}

.section-description{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

}

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h4{

    margin-bottom:15px;

    color:#7B1E22;

}

.service-content p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;

}

.service-btn{

    display:inline-block;

    background:#7B1E22;

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    font-weight:600;

}

.service-btn:hover{

    background:#D4AF37;

    color:#fff;

}

@media(max-width:768px){

.service-card img{

    height:220px;

}

}


/*=========================================
HOW IT WORKS
==========================================*/

.process-section{

    padding:100px 0;

    background:#ffffff;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    position:relative;

    border:1px solid #eee;

    transition:.4s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.process-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:50px;

    font-weight:700;

    color:#f3f3f3;

}

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    background:#FFF7EA;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    font-size:36px;

    color:#D4AF37;

}

.process-card h4{

    margin-bottom:15px;

    color:#7B1E22;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

/*=========================================
WHY CHOOSE US
==========================================*/

.why-section{
    padding: 0px 0;
}

.why-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
}

.why-image{
    position: relative;
    overflow: visible;
}

.section-title{
    font-size:48px;
    line-height:1.25;
}

.section-description{
    margin:25px 0 35px;
}

.why-box{

    display:flex;
    gap:20px;
    padding:25px;
    margin-bottom:20px;

    background:#ffffff;

    border-left:5px solid #D4AF37;

    border-radius:15px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.why-box:hover{

    transform:translateX(10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.why-icon{

    width:70px;

    height:70px;

    background:#FFF6E8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.why-icon i{

    font-size:28px;

    color:#D4AF37;

}

.why-box h5{

    color:#7B1E22;

    margin-bottom:10px;

}

.why-box p{

    margin:0;

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.why-image{

    margin-bottom:40px;

}

}

.experience-badge{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#7B1E22;

    color:#fff;

    padding:25px 30px;

    border-radius:18px;

}

.experience-badge h2{

    color:#D4AF37;

    font-size:48px;

    margin:0;

}


/*=========================================================
                COUNTRIES WE SERVE SECTION
=========================================================*/

.countries-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

/* Heading */

.countries-section .section-tag{
    display:inline-block;
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.countries-section .section-title{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
    line-height:1.3;
}

.countries-section .section-title span{
    color:#7B1E22;
}

.countries-section .section-description{
    max-width:720px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.9;
}

/*==========================
        WORLD MAP
==========================*/

.world-map{
    margin-top:60px;
    margin-bottom:70px;
    text-align:center;
}

.world-map img{

    width:100%;
    max-width:1100px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*==========================
        COUNTRIES
==========================*/

.country-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.country-card{

    background:#ffffff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    border:1px solid #f1f1f1;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.country-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.country-card img{

    width:70px;

    height:70px;

    object-fit:cover;

    border-radius:50%;

    border:2px solid #D4AF37;

    margin-bottom:18px;

}

.country-card span{

    display:block;

    font-size:17px;

    font-weight:600;

    color:#333;

}

/*==========================
        COUNTER
==========================*/

.counter-box{

    margin-top:70px;

    display:inline-block;

    background:#7B1E22;

    color:#ffffff;

    padding:30px 70px;

    border-radius:18px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.counter-box h2{

    color:#D4AF37;

    font-size:54px;

    margin-bottom:8px;

    font-weight:700;

}

.counter-box p{

    margin:0;

    font-size:18px;

    letter-spacing:.5px;

}

/*==========================
        RESPONSIVE
==========================*/

@media (max-width:992px){

    .countries-section{

        padding:80px 0;

    }

    .countries-section .section-title{

        font-size:38px;

    }

    .country-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

    .world-map{

        margin-bottom:50px;

    }

}

@media (max-width:768px){

    .countries-section .section-title{

        font-size:32px;

    }

    .countries-section .section-description{

        font-size:16px;

    }

    .counter-box{

        width:100%;

        padding:25px;

    }

}

@media (max-width:576px){

    .country-wrapper{

        grid-template-columns:1fr;

        gap:18px;

    }

    .country-card{

        padding:20px;

    }

    .country-card img{

        width:60px;

        height:60px;

    }

    .counter-box h2{

        font-size:42px;

    }

}


/*=========================================
CLIENT TESTIMONIALS
==========================================*/

.testimonial-section{

    padding:100px 0;

    background:#fdfaf6;

}

.testimonial-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.quote-icon{

    width:60px;

    height:60px;

    background:#D4AF37;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    margin-bottom:25px;

}

.testimonial-card p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

    font-style:italic;

}

.stars{

    color:#D4AF37;

    margin-bottom:25px;

}

.stars i{

    margin-right:3px;

}

.client-info{

    display:flex;

    align-items:center;

}

.client-info img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    margin-right:18px;

    border:3px solid #D4AF37;

}

.client-info h5{

    margin:0;

    color:#7B1E22;

    font-weight:700;

}

.client-info span{

    color:#777;

    font-size:14px;

}

@media(max-width:991px){

.testimonial-card{

    margin-bottom:30px;

}

}


/*=========================================
FAQ SECTION
==========================================*/

.faq-section{

    padding:100px 0;

    background:#FFFDF8;

}

.accordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.accordion-button{

    background:#ffffff;

    font-size:18px;

    font-weight:600;

    color:#333;

    padding:22px 25px;

    box-shadow:none;

}

.accordion-button:not(.collapsed){

    background:#7B1E22;

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    font-size:16px;

    color:#666;

    line-height:1.8;

    padding:25px;

    background:#ffffff;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(100);

}


/*=========================================
COMMON PRIMARY BUTTON
==========================================*/

.btn-book-now{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 35px;

    background:#7B1E22;

    color:#ffffff;

    font-size:16px;

    font-weight:600;

    border-radius:50px;

    text-decoration:none;

    transition:all .3s ease;

    box-shadow:0 10px 25px rgba(123,30,34,.25);

}

.btn-book-now:hover{

    background:#D4AF37;

    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.btn-book-now i{

    transition:transform .3s ease;

}

.btn-book-now:hover i{

    transform:translateX(5px);

}


/*=========================================
CALL TO ACTION
==========================================*/

.cta-section{

    padding: 0px 0;

    background:#ffffff;

}

.cta-box{

    background:linear-gradient(135deg,#7B1E22,#5C1317);

    border-radius:25px;

    padding:70px;

    color:#ffffff;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.cta-tag{

    display:inline-block;

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.cta-box h2{

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:20px;

}

.cta-box h2 span{

    color:#D4AF37;

}

.cta-box p{

    color:#f5f5f5;

    font-size:17px;

    line-height:1.9;

    max-width:650px;

}

.btn-cta-primary{

    display:inline-block;

    background:#D4AF37;

    color:#222;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;

}

.btn-cta-primary:hover{

    background:#ffffff;

    color:#7B1E22;

}

.btn-cta-outline{

    display:inline-block;

    border:2px solid #ffffff;

    color:#ffffff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-cta-outline:hover{

    background:#ffffff;

    color:#7B1E22;

}

.btn-cta-primary i,
.btn-cta-outline i{

    margin-right:8px;

}

@media(max-width:991px){

    .cta-box{

        padding:45px 30px;

        text-align:center;

    }

    .cta-box h2{

        font-size:34px;

    }

    .btn-cta-primary,
    .btn-cta-outline{

        width:100%;

        margin-top:10px;

    }

}


/*=========================================
FOOTER
==========================================*/

.footer-section{

    background:#5B191C;

    color:#ffffff;

    padding:80px 0 25px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-widget h4{

    color:#D4AF37;

    margin-bottom:25px;

    font-size:22px;

    font-weight:600;

}

.footer-widget p{

    color:#dddddd;

    line-height:1.9;

}

.footer-widget ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-widget ul li{

    margin-bottom:14px;

}

.footer-widget ul li a{

    color:#dddddd;

    text-decoration:none;

    transition:.3s;

}

.footer-widget ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:#dddddd;

}

.contact-info i{

    color:#D4AF37;

    margin-top:4px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.1);

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#5B191C;

    transform:translateY(-5px);

}

.footer-divider{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.15);

}

.footer-section a{

    color:#dddddd;

    text-decoration:none;

}

.footer-section a:hover{

    color:#D4AF37;

}

.copyright{

    margin:0;

    color:#dddddd;

}

@media(max-width:991px){

.footer-widget{

    margin-bottom:35px;

}

.footer-logo{

    width:180px;

}

}

@media(max-width:576px){

.footer-section{

    text-align:center;

}

.contact-info li{

    justify-content:center;

}

.footer-social{

    text-align:center;

}

}

/*=========================================
ABOUT INTRO
==========================================*/

.about-intro{

    padding:100px 0;

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.experience-box{

    position:absolute;

    bottom:30px;

    right:-20px;

    background:#7B1E22;

    color:#fff;

    padding:25px 30px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.experience-box h2{

    color:#D4AF37;

    font-size:48px;

    margin:0;

    font-weight:700;

}

.experience-box span{

    font-size:15px;

}

.about-intro p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-list{

    list-style:none;

    padding:0;

}

.about-list li{

    margin-bottom:18px;

    font-size:16px;

    color:#444;

}

.about-list i{

    color:#D4AF37;

    margin-right:10px;

}

@media(max-width:992px){

.experience-box{

    right:20px;

}

}

@media(max-width:768px){

.about-intro{

    padding:80px 0;

}

.experience-box{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:20px;

    display:inline-block;

}

}

/*=========================================
OUR JOURNEY
==========================================*/

.journey-section{

    padding:0px 0;

    background:#FFFDF8;

}

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:70px;

    top:0;

    width:3px;

    height:100%;

    background:#D4AF37;

}

.timeline-item{

    position:relative;

    display:flex;

    margin-bottom:50px;

}

.timeline-year{

    width:140px;

    text-align:center;

    font-size:22px;

    font-weight:700;

    color:#7B1E22;

    position:relative;

}

.timeline-year::after{

    content:"";

    width:18px;

    height:18px;

    background:#D4AF37;

    border:4px solid #fff;

    border-radius:50%;

    position:absolute;

    right:-9px;

    top:8px;

    box-shadow:0 0 0 4px rgba(212,175,55,.25);

}

.timeline-content{

    flex:1;

    background:#fff;

    padding:30px;

    margin-left:40px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-6px);

}

.timeline-content h4{

    color:#7B1E22;

    margin-bottom:15px;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

    margin:0;

}

@media(max-width:768px){

.timeline::before{

left:25px;

}

.timeline-item{

flex-direction:column;

padding-left:50px;

}

.timeline-year{

width:auto;

text-align:left;

margin-bottom:15px;

}

.timeline-year::after{

left:-34px;

right:auto;

}

.timeline-content{

margin-left:0;

}

}

/*=========================================
VISION & MISSION
==========================================*/

.vision-mission-section{

    padding:10px 0;

    background:#ffffff;

}

.vm-card{

    background:#ffffff;

    padding:45px;

    border-radius:20px;

    text-align:center;

    border:1px solid #eee;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.4s;

    height:100%;

}

.vm-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.vm-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF7EA;

    display:flex;

    justify-content:center;

    align-items:center;

}

.vm-icon i{

    font-size:40px;

    color:#D4AF37;

}

.vm-card h3{

    color:#7B1E22;

    font-size:28px;

    margin-bottom:20px;

}

.vm-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}

@media(max-width:991px){

    .vm-card{

        padding:35px;

    }

}

/*=========================================
OUR CORE VALUES
==========================================*/

.values-section{

    padding:10px 0;

    background:#FFFDF8;

}

.value-card{

    background:#ffffff;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #f0f0f0;

    transition:.35s;

    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.value-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    background:#FFF6E8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.value-icon i{

    font-size:38px;

    color:#D4AF37;

}

.value-card h4{

    color:#7B1E22;

    margin-bottom:18px;

    font-size:24px;

    font-weight:600;

}

.value-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

@media(max-width:991px){

.value-card{

margin-bottom:20px;

}

}

/*=========================================
ACHIEVEMENTS
==========================================*/

.achievement-section{

    padding:100px 0;

    background:#ffffff;

}

.achievement-card{

    background:#fff;

    text-align:center;

    padding:45px 30px;

    border-radius:20px;

    border:1px solid #f2f2f2;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    height:100%;

}

.achievement-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.achievement-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF6E8;

    display:flex;

    justify-content:center;

    align-items:center;

}

.achievement-icon i{

    font-size:38px;

    color:#D4AF37;

}

.achievement-card h2{

    font-size:48px;

    font-weight:700;

    color:#7B1E22;

    margin-bottom:10px;

}

.achievement-card h5{

    color:#444;

    font-size:20px;

    margin:0;

}

@media(max-width:991px){

.achievement-card{

margin-bottom:20px;

}

}

/*=========================================
WHY FAMILIES TRUST US
==========================================*/

.trust-section{

    padding:0px 0;

    background:#FFFDF8;

}

.trust-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.trust-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.trust-item i{

    color:#D4AF37;

    font-size:26px;

    margin-top:5px;

}

.trust-item h5{

    color:#7B1E22;

    margin-bottom:8px;

}

.trust-item p{

    margin:0;

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.trust-image{

margin-top:40px;

}

}

/*=========================================
MEET OUR ACHARYA
==========================================*/

.acharya-section{

    padding:100px 0;

    background:#ffffff;

}

.acharya-image img{

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    width:100%;

}

.acharya-section h3{

    color:#7B1E22;

    font-size:38px;

    font-weight:700;

}

.acharya-section p{

    color:#666;

    line-height:1.9;

}

.profile-box{

    background:#FFF8EC;

    padding:25px;

    border-radius:18px;

    text-align:center;

    transition:.3s;

    border:1px solid #F5E6B5;

}

.profile-box:hover{

    background:#7B1E22;

    color:#fff;

    transform:translateY(-8px);

}

.profile-box:hover h4{

    color:#D4AF37;

}

.profile-box h4{

    font-size:42px;

    color:#7B1E22;

    margin-bottom:10px;

}

.profile-box span{

    font-size:16px;

    font-weight:500;

}

