
:root{
    --primary-color: #b65419;
    --primary:#b65419;
    --light-bg:#f9f6f3;
    --text-dark:#222;
    --border:#e5e5e5;
}

body{
    /* font-family: 'Segoe UI', sans-serif; */
    background:#f8f9fa;
}

.section-title{
    font-size:42px;
    font-weight:600;
    color:var(--primary-color);
}

.page-hero img {
    height: 350px;
}

/* TIMELINE */

.timeline{
    position:relative;
    padding:60px 0;
    background-color: #b65519d6;
    border-radius: 20px;
}

/* Base line */
.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:3px;
    height:100%;
    background:#e5e5e5;
    background-color: #fff0e69d
}

/* Animated progress line */
.timeline-progress{
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:3px;
    height:0;
    /* background:var(--primary-color); */
    background: #fff;
    transition:height 0.2s ease-out;
    z-index:2;
}

.timeline-item{
    position:relative;
    margin-bottom:80px;
}

.timeline-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(odd) .timeline-content{
    margin-right:60px;
    text-align:right;
}

.timeline-item:nth-child(even) .timeline-content{
    margin-left:60px;
}

.timeline-number{
    position:absolute;
    top:20px;
    left:50%;
    transform:translate(-50%, -50%);
    width:50px;
    height:50px;
    background:var(--primary-color);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:18px;
    z-index:3;
    box-shadow:0 0 0 5px #fff;
}

.timeline-icon{
    font-size:40px;
    color:var(--primary-color);
    margin-bottom:15px;
}
.timeline-icon img {
    width: 90px;
    height: 90px;
}

.timeline h5{
    font-weight:600;
    margin-bottom:10px;
}

.timeline p{
    color:#666;
    font-size:15px;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

.page-hero img {
    height: auto;
    /* border-radius: 20px; */
}

.timeline::before,
.timeline-progress{
    left:20px;
}

.timeline-item{
    padding-left:60px;
}

.timeline-item:nth-child(odd) .timeline-content,
.timeline-item:nth-child(even) .timeline-content{
    margin:0 0 0 40px;
    text-align:left;
}

.timeline-number{
    left:20px;
}

.section-title{
    font-size:30px;
}

@media(max-width: 500px){
.timeline-item:nth-child(odd) .timeline-content,
.timeline-item:nth-child(even) .timeline-content{
    margin:0 0 0 0px;
    text-align:left;
}
.timeline-content {
    padding: 25px;
}
}


}


/* ===========================faq section start====================== */

.faq-section{
    padding:80px 20px;
    background:var(--light-bg);
}

.container{
    max-width:1200px;
    margin:auto;
}

.faq-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.faq-left{
    flex:1 1 600px;
}

.faq-right{
    flex:1 1 350px;
}

/* Heading */
.faq-heading{
    font-size:2rem;
    font-weight: 400 !important;
    margin-bottom:40px;
    color:var(--text-dark);
}

.faq-heading span{
    color:var(--primary);
}

/* Accordion */
.accordion-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    margin-bottom:20px;
    overflow:hidden;
    transition:all 0.3s ease;
}

.accordion-header{
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 5px;
    cursor:pointer;
    font-weight:500;
    font-size:18px;
}

.accordion-header:hover{
    background: var(--primary-color);
    color: var(--light-bg);
}
.accordion-header:hover .accordion-icon {
    color: var(--light-bg);
}
.accordion-icon{
    font-size:22px;
    color:var(--primary);
    transition:transform 0.3s ease;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    padding:0 25px;
}

.accordion-content p{
    padding:20px 0;
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* Active */
.accordion-item.active{
    border-color:var(--primary);
}

.accordion-item.active .accordion-icon{
    transform:rotate(45deg);
}

/* Right Card */
.faq-card{
    background:#fff;
    padding:40px;
    border-radius:16px;
    border:1px solid var(--border);
    text-align:center;
}

.faq-card-icon{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.faq-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.faq-card p{
    font-size:15px;
    color:#666;
    margin-bottom:30px;
    line-height:1.6;
}

.faq-btn{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    transition:0.3s ease;
}

.faq-btn:hover{
    background:#923f0f;
}

/* Responsive */
@media(max-width:992px){
    .faq-heading{
        font-size:38px;
    }
}

@media(max-width:768px){
    .faq-wrapper{
        flex-direction:column;
    }

    .faq-heading{
        font-size:32px;
    }

    .faq-card{
        padding:30px;
    }
}

/* ===========================faq section end====================== */