/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f9f6f1;
}

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

.main-header{
    width:100%;
    background:#5b0f14;
    padding:15px 60px;
    border-bottom:4px solid #e6c15a;
    position:relative;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

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

.logo img{
    width:180px;
  height: 80px;
    border-radius:20px;
}

/* ================= NAVBAR ================= */

.navbar ul{
    list-style:none;
    display:flex;
    gap:25px;
}

.navbar ul li a{
    text-decoration:none;
    color:#ffffff;
    font-size:16px;
    font-weight:500;
    padding:10px 18px;
    border:1px solid transparent;
    transition:0.3s;
    border-radius:4px;
}

.navbar ul li a:hover{
    background:#e6c15a;
    color:#5b0f14;
    border:1px solid #e6c15a;
}

/* ================= HEADER ENQUIRY BUTTON ================= */

/* ================= HEADER ENQUIRY BUTTON ================= */

.nav-enquiry{
    background: linear-gradient(135deg, #d4af37, #f3d27a);
    color: #5b0f14;
    padding: 8px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    box-shadow:
        0 0 8px rgba(212,175,55,0.6),
        0 0 18px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
}

/* Soft premium hover (subtle only) */
.nav-enquiry:hover{
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(212,175,55,0.9),
        0 0 25px rgba(212,175,55,0.6);
}

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

.menu-toggle{
    display:none;
    font-size:28px;
    color:#ffffff;
    cursor:pointer;
}

/* ================= MARQUEE ================= */

.top-marquee{
    width:100%;
    background:#e6c15a;
    color:#5b0f14;
    font-size:15px;
    font-weight:600;
    padding:10px 0px;
    border-bottom:2px solid #5b0f14;
}

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

@media(max-width:991px){

    .main-header{
        padding:15px 20px;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#5b0f14;
        max-height:0;
        overflow:hidden;
        transition:0.4s ease;
        z-index:9999;   /* 🔥 important */
    }

    .navbar.active{
        max-height:500px;  /* opens smoothly */
    }

    .navbar ul{
        flex-direction:column;
        gap:0;
    }

    .navbar ul li{
        border-top:1px solid #e6c15a;
    }

    .navbar ul li a{
        display:block;
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
        z-index:10000;  /* 🔥 ensure clickable */
    }
}

/* ================= SLIDER ================= */

.hero-slider{
    width:100%;
    height:500px;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.slide.active{
    opacity:1;
}

/* SLIDE CONTENT */

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#ffffff;
    background:rgba(0,0,0,0.5);
    padding:30px 40px;
    border-radius:10px;
}

.slide-content h2{
    font-size:36px;
    margin-bottom:10px;
}

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

/* NAVIGATION BUTTONS */

.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:#ffffff;
    background:rgba(0,0,0,0.5);
    padding:10px 18px;
    cursor:pointer;
    border-radius:5px;
    user-select:none;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.prev:hover, .next:hover{
    background:#e6c15a;
    color:#5b0f14;
}

/* ================= MOBILE SLIDER FIX ================= */

@media(max-width:768px){

    .hero-slider{
        height:300px;
    }

    .slide img{
        height:300px;
    }

    .slide-content{
        width:90%;
        padding:20px 15px;
    }

    .slide-content h2{
        font-size:22px;
    }

    .slide-content p{
        font-size:14px;
    }

    .prev, .next{
        font-size:20px;
        padding:8px 12px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }
}

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

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

.about-section{
    width:100%;
    padding:80px 60px;
    background:#f9f6f1;
}

.about-container{
    display:flex;
    gap:40px;
    align-items:stretch;   /* IMPORTANT FOR SAME HEIGHT */
}

/* BOTH BOXES SAME WIDTH */

.about-content,
.about-image{
    width:50%;
    border-radius:12px;
    transition:0.4s ease;
}

/* LEFT CONTENT BOX */

.about-content{
    background:#ffffff;
    padding:40px;
    border:2px solid #e6c15a;
    box-shadow:0px 10px 30px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h2{
    font-size:32px;
    color:#5b0f14;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

.about-content p{
    font-size:16px;
    line-height:28px;
    color:#333333;
    margin-bottom:15px;
}

/* RIGHT IMAGE BOX */

.about-image{
    border:3px solid #e6c15a;
    overflow:hidden;
    display:flex;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

/* HOVER EFFECT */

.about-content:hover{
    transform:scale(1.03);
    box-shadow:0px 15px 40px rgba(230,193,90,0.6);
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-image:hover{
    box-shadow:0px 15px 40px rgba(230,193,90,0.6);
}

@media(max-width:991px){

    .about-section{
        padding:50px 20px;
    }

    .about-container{
        flex-direction:column;
    }

    .about-content,
    .about-image{
        width:100%;
    }

    .about-image{
        height:300px;
    }

    .about-content h2{
        font-size:24px;
    }

    .about-content p{
        font-size:14px;
        line-height:24px;
    }
}

/* ================= SERVICES SECTION ================= */

.services-section{
    width:100%;
    padding:70px 60px;
    background:#f4f1ec;
}

.services-heading{
    text-align:center;
    margin-bottom:50px;
}

.services-heading h2{
    font-size:32px;
    color:#5b0f14;
    font-family:'Playfair Display', serif;
}

/* CONTAINER FIXED ALIGNMENT */

.services-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    max-width:1000px;   /* controls 3 per row */
    margin:0 auto;      /* center the whole section */
}

/* FIXED CARD WIDTH */

.service-card{
    width:300px;              /* FIXED WIDTH */
    height:230px;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
    transition:0.4s ease;
    border:2px solid #e6c15a;
    background:#ffffff;
}

/* IMAGE */

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

/* OVERLAY */

.service-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:15px;
    background:linear-gradient(to top, rgba(91,15,20,0.9), rgba(91,15,20,0.2));
    color:#ffffff;
    text-align:left;
    transition:0.4s ease;
}

.service-overlay h3{
    font-size:18px;
    margin:0;
}

/* HOVER EFFECT */

.service-card:hover{
    transform:translateY(-10px) scale(1.04);
    box-shadow:0px 15px 45px rgba(230,193,90,0.7);
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-card:hover .service-overlay{
    background:linear-gradient(to top, rgba(230,193,90,0.95), rgba(230,193,90,0.3));
    color:#5b0f14;
}

@media(max-width:768px){

    .services-section{
        padding:50px 20px;
    }

    .service-card{
        width:100%;   /* full width on mobile */
        max-width:350px;
    }
}


/* ================= WHY SECTION ================= */

.why-section{
    width:100%;
    padding:80px 60px;
    background:#f4f1ec;
}

.why-heading{
    text-align:center;
    margin-bottom:50px;
}

.why-heading h2{
    font-size:32px;
    color:#5b0f14;
    font-family:'Playfair Display', serif;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.why-box{
    background:#ffffff;
    padding:40px 20px;
    text-align:center;
    border-radius:12px;
    border:2px solid #e6c15a;
    transition:0.4s ease;
    cursor:pointer;
}

.why-icon{
    font-size:36px;
    margin-bottom:15px;
}

.why-box h3{
    font-size:18px;
    color:#5b0f14;
}

.why-box:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0px 15px 40px rgba(230,193,90,0.6);
}


/* ================= HOME GALLERY SECTION ================= */

.home-gallery{
    padding:100px 20px;
    background:#f9f6f1;
}

.gallery-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.gallery-heading{
    font-size:36px;
    font-family:'Playfair Display', serif;
    color:#5b0f14;
    margin-bottom:15px;
}

.gallery-subheading{
    font-size:16px;
    color:#777;
    margin-bottom:60px;
}

/* ================= VIDEO GRID ================= */

.gallery-video-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
}

/* ================= VIDEO CARD ================= */

.gallery-video-card{
    border-radius:20px;
    padding:5px;
    background:linear-gradient(135deg,#d4af37,#f3d27a);
    box-shadow:0 0 15px rgba(212,175,55,0.4);
    transition:0.4s ease;
}

.gallery-video-card video{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

.gallery-video-card:hover{
    box-shadow:
        0 0 20px rgba(212,175,55,0.8),
        0 0 40px rgba(212,175,55,0.5);
    transform:translateY(-5px);
}

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

.gallery-btn-wrapper{
    margin-top:40px;
    display:flex;
    justify-content:flex-end;
}

.gallery-view-btn{
    background:#5b0f14;
    color:#fff;
    padding:10px 25px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s ease;
}

.gallery-view-btn:hover{
    background:#c79a2b;
    color:#5b0f14;
}

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

@media(max-width:992px){
    .gallery-video-grid{
        grid-template-columns:1fr;
    }

    .gallery-video-card video{
        height:280px;
    }

    .gallery-btn-wrapper{
        justify-content:center;
    }
}

/* ================= COUNTER SECTION ================= */

/* ================= COUNTER SECTION ================= */

.counter-section{
    width:100%;
    padding:80px 60px;
    background:#5b0f14;
}

.counter-container{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    text-align:center;
}

.counter-box{
    background:#ffffff;
    padding:40px 20px;
    border-radius:15px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.counter-icon{
    font-size:30px;
    color:#e6c15a;
    margin-bottom:15px;
    transition:0.4s ease;
}

.counter-box h2{
    font-size:40px;
    color:#5b0f14;
    margin-bottom:10px;
}

.counter-box p{
    font-size:16px;
    color:#333333;
}

/* HOVER EFFECT */

.counter-box:hover{
    transform:translateY(-10px);
    box-shadow:0px 20px 50px rgba(230,193,90,0.6);
}

.counter-box:hover .counter-icon{
    transform:scale(1.2) rotate(5deg);
    color:#5b0f14;
}

@media(max-width:991px){

    .why-section,
    .counter-section{
        padding:50px 20px;
    }

    .why-container{
        grid-template-columns:repeat(2, 1fr);
    }

    .counter-container{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){

    .why-container,
    .counter-container{
        grid-template-columns:1fr;
    }

    .why-heading h2{
        font-size:24px;
    }
}

.counter-section{
    width:100%;
    padding:80px 60px;
    background:#5b0f14;
    margin-bottom:60px;   /* 🔥 SPACE BEFORE FOOTER */
}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    padding:80px 0;
    background:#f9f6f1;
    overflow:hidden;
}

.testimonial-header{
    text-align:center;
    margin-bottom:50px;
}

.testimonial-header h2{
    font-size:38px;
    color:#5b0f14;
    margin-bottom:10px;
}

.testimonial-header p{
    color:#777;
    font-size:16px;
}

.testimonial-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
}

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

@keyframes scrollTestimonials{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* CARD */

.testimonial-card{
    width:320px;
    background:#fff;
    padding:30px 25px;
    border-radius:20px;
    border:1px solid #c79a2b;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
    text-align:left;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.stars{
    color:#c79a2b;
    font-size:18px;
    margin-bottom:15px;
}

.testimonial-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#5b0f14;
    font-weight:600;
}

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

@media(max-width:768px){

    .testimonial-section{
        padding:50px 0;
    }

    .testimonial-header h2{
        font-size:26px;
    }

    .testimonial-card{
        width:260px;
        padding:20px;
    }

    .testimonial-track{
        gap:20px;
        animation-duration:35s;
    }

}


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

.main-footer{
    background:#5b0f14;
    color:#ffffff;
    padding:70px 60px 30px 60px;
    border-top:5px solid #e6c15a;  /* 🔥 GOLD LINE */
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:20px;
    color:#e6c15a;
}

.footer-logo{
    width:120px;
    margin-bottom:15px;
    border-radius:12px;
}

.footer-text{
    font-size:14px;
    line-height:22px;
    margin-bottom:20px;
}

.social-icons a{
    display:inline-block;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    margin-right:10px;
    border-radius:50%;
    background: #000;
    color:#5b0f14;
    font-size:18px;
    transition:0.4s ease;
}

.social-icons a:hover{
    transform:scale(1.2);
    background:#ffffff;
}

/* LINKS */

.footer-links{
    list-style:none;
}

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

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#e6c15a;
    padding-left:5px;
}

/* CONTACT LINKS */

.footer-box a{
    color:#e6c15a;
    text-decoration:none;
}

.footer-box a:hover{
    text-decoration:underline;
}

/* FOOTER BOTTOM */

.footer-bottom{
    margin-top:40px;
    text-align:center;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.2);
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
}
.acp-link{
    color:#e6c15a;
    font-weight:600;
    text-decoration:none;
    border-bottom:2px solid #e6c15a;
    transition:0.3s;
}

.acp-link:hover{
    color:#ffffff;
    border-bottom:2px solid #ffffff;
}


@media(max-width:991px){

    .main-footer{
        padding:50px 20px 30px 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

   
}
/* ================= GOLD BLING BUTTON ================= */

/* ================= GOLD BLING BUTTON FIXED ================= */

.gold-blink-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 22px;
    background:linear-gradient(135deg, #f7e27a, #e6c15a, #caa93d);
    color:#7a0f16 !important; 
    font-weight:700;
    font-size:14px;
    border-radius:30px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0px 0px 15px rgba(230,193,90,0.6);
    vertical-align:middle;   /* 🔥 alignment fix */
}

/* Shine Effect */
.gold-blink-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-80px;
    width:60px;
    height:100%;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.8),
        rgba(255,255,255,0.2)
    );
    transform:skewX(-20deg);
    animation:shine 2.5s infinite;
}

/* Shine Animation */
@keyframes shine{
    0%{ left:-80px; }
    100%{ left:120%; }
}

/* Hover */
.gold-blink-btn:hover{
    transform:scale(1.08);
    box-shadow:0px 0px 25px rgba(230,193,90,0.9);
}



/* ================= ABOUT US PAGE ================= */


/* ================= ABOUT HERO ================= */

.about-hero{
    width:100%;
    height:430px;
    position:relative;
    background:url('../images/about/about-banner.jpeg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/* Dark Maroon Overlay */

.about-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(rgba(91,15,20,0.75), rgba(91,15,20,0.75));
    z-index:1;
}

/* Content */

.about-hero-content{
    position:relative;
    z-index:2;
    color:#ffffff;
    padding:0 20px;
}

.about-hero-content h1{
    font-size:44px;
    margin-bottom:15px;
    font-family:'Playfair Display', serif;
}

.about-hero-content p{
    font-size:18px;
    color:#f5d97b;
    letter-spacing:1px;
}

.about-detailed{
    padding:80px 60px;
    background:#f9f6f1;
}

.about-detailed-container{
    display:flex;
    gap:50px;
    align-items:center;
}

.about-detailed-text{
    width:50%;
}

.about-detailed-text h2{
    font-size:32px;
    color:#5b0f14;
    margin-bottom:20px;
}

.about-detailed-text p{
    font-size:16px;
    line-height:28px;
    margin-bottom:15px;
}

.about-detailed-image{
    width:50%;
}

.about-detailed-image img{
    width:100%;
    border-radius:15px;
    border:3px solid #e6c15a;
}
.about-different{
    padding:80px 60px;
    background:#ffffff;
    text-align:center;
}

.section-title{
    font-size:32px;
    color:#5b0f14;
    margin-bottom:50px;
}

.different-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.different-box{
    padding:40px 20px;
    border-radius:15px;
    border:2px solid #e6c15a;
    transition:0.4s;
  
}

.different-box i{
    font-size:30px;
    color:#e6c15a;
    margin-bottom:15px;
}

.different-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(230,193,90,0.6);
}

/* ================= ROYAL TIMELINE ================= */

.royal-timeline-section{
    padding:100px 60px;
    background:#f9f6f1;
    position:relative;
}

.royal-timeline{
    position:relative;
    max-width:900px;
    margin:0 auto;
}

/* Vertical Golden Line */

.royal-timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(to bottom, #f5d97b, #e6c15a, #d4a017);
    transform:translateX(-50%);
}

/* Timeline Block */

.timeline-block{
    position:relative;
    width:50%;
    padding:30px 40px;
    opacity:0;
    transform:translateY(60px);
    transition:0.8s ease;
}
.timeline-block:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-block:nth-child(even){
    left:50%;
}


/* Year Badge */

.timeline-year{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    background:#5b0f14;
    color:#ffffff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    z-index:2;
}


/* Content Box */

.timeline-content{
    background:#ffffff;
    padding:25px;
    border-radius:15px;
    border:2px solid #e6c15a;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.timeline-content h3{
    font-size:18px;
    color:#5b0f14;
    margin-bottom:10px;
}

.timeline-content p{
    font-size:14px;
    line-height:22px;
}
/* ================= FOUNDATION YEAR SPECIAL STYLE ================= */

.foundation-year .timeline-year{
    background:linear-gradient(45deg, #f5d97b, #e6c15a, #d4a017);
    color:#5b0f14;
    font-weight:700;
    transform:scale(1.1);
    box-shadow:0 0 20px rgba(230,193,90,0.9);
    animation:glowPulse 2s infinite alternate;
}

.foundation-year .timeline-content{
    border:3px solid #e6c15a;
    box-shadow:0 0 30px rgba(230,193,90,0.6);
}

/* Glow Animation */

@keyframes glowPulse{
    from{
        box-shadow:0 0 15px rgba(230,193,90,0.6);
    }
    to{
        box-shadow:0 0 30px rgba(230,193,90,1);
    }
}
/* Scroll Animation Active */

.timeline-block.show{
    opacity:1;
    transform:translateY(0);
}


.about-cta{
    padding:80px 20px;
    background:#5b0f14;
    text-align:center;
    color:#ffffff;
}

.about-cta h2{
    font-size:30px;
    margin-bottom:25px;
}

.cta-btn{
    display:inline-block;
    padding:10px 28px;
    background:#e6c15a;
    color:#5b0f14;
    text-decoration:none;
    font-weight:600;
    border-radius:30px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#ffffff;
}


@media(max-width:991px){

/* ================= HERO ================= */

.about-hero{
    height:300px;
    padding:0 20px;
}

.about-hero-content h1{
    font-size:28px;
}

.about-hero-content p{
    font-size:14px;
}

/* ================= ABOUT DETAILED ================= */

.about-detailed{
    padding:50px 20px;
}

.about-detailed-container{
    flex-direction:column;
    gap:30px;
}

.about-detailed-text,
.about-detailed-image{
    width:100%;
}

.about-detailed-text h2{
    font-size:24px;
}

.about-detailed-text p{
    font-size:14px;
    line-height:24px;
}

/* ================= DIFFERENT SECTION ================= */

.about-different{
    padding:50px 20px;
}

.section-title{
    font-size:24px;
    margin-bottom:30px;
}

.different-container{
    grid-template-columns:1fr;
    gap:20px;
}

.different-box{
    padding:30px 20px;
}

@media(max-width:991px){

.royal-timeline::before{
    left:50%;
    transform:translateX(-50%);
}

.timeline-block{
    width:100%;
    left:0 !important;
    padding:60px 20px 20px 20px;
    text-align:center !important;
}

.timeline-year{
    left:50%;
    transform:translateX(-50%);
    top:0;
}

}
/* ================= CTA ================= */

.about-cta{
    padding:50px 20px;
}

.about-cta h2{
    font-size:22px;
}

.cta-btn{
    padding:8px 22px;
    font-size:14px;
}

}