
/*==================================
    Hero Carousel
===================================*/

.carousel-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

.carousel-track{
    display:flex;
    transition:transform .8s ease-in-out;
    will-change:transform;
}

.slide{
    min-width:100%;
    flex:0 0 100%;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.slide img{
    width:100%;
    height:590px;
    object-fit:contain;
    object-position:top center;
    display:block;
}

/*==================================
    Navigation
===================================*/

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:1.5px solid #c9a227;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#c9a227;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    z-index:20;
    transition:.3s;
    opacity:0;
}

.carousel-section:hover .carousel-btn{
    opacity:1;
}

.carousel-btn:hover{
    background:#dba22d;
    color:#fff;
}

.carousel-btn.prev{
    left:20px;
}

.carousel-btn.next{
    right:20px;
}

/*==================================
    Dots
===================================*/

.carousel-dots{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    border:none;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#dba22d;
    transform:scale(1.3);
}

/*==================================
    Progress
===================================*/

.carousel-progress{
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#dba22d;
    z-index:20;
}

/*==================================
    Large Desktop
===================================*/

@media (max-width:1400px){

    .slide img{
        height:520px;
    }

}

/*==================================
    Laptop
===================================*/

@media (max-width:1200px){

    .slide img{
        height:460px;
    }

    .carousel-btn{
        width:46px;
        height:46px;
        font-size:22px;
    }

}

/*==================================
    Tablet
===================================*/

@media (max-width:992px){

    .slide img{
        height:380px;
    }

    .carousel-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .carousel-btn.prev{
        left:15px;
    }

    .carousel-btn.next{
        right:15px;
    }

    .carousel-dots{
        bottom:18px;
    }

}

/*==================================
    Mobile
===================================*/

@media (max-width:768px){

    .slide img{
        height:280px;
    }

    .carousel-btn{
        width:38px;
        height:38px;
        font-size:18px;
        opacity:1;
    }

    .carousel-btn.prev{
        left:10px;
    }

    .carousel-btn.next{
        right:10px;
    }

    .carousel-dots{
        bottom:15px;
        gap:8px;
    }

    .dot{
        width:10px;
        height:10px;
    }

}

/*==================================
    Small Mobile
===================================*/

@media (max-width:480px){

    .slide img{
        height:220px;
    }

    .carousel-btn{
        width:34px;
        height:34px;
        font-size:16px;
    }

    .carousel-dots{
        bottom:12px;
        gap:6px;
    }

    .dot{
        width:8px;
        height:8px;
    }

    .carousel-progress{
        height:3px;
    }

}


/*==================================
PHILOSOPHY SECTION
==================================*/

.philosophy-section{
    position: relative;
    /* padding: 100px 0; */
    overflow: hidden;
    /* background: #f8f8f8; */
}

.philosophy-bg-image{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.philosophy-bg-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-wrapper{
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1400px;
    /* margin: auto; */
    margin-left: 190px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; /* Top Alignment */
}

.philosophy-content{
    max-width: 550px;
    padding-top: 40px;
}

.sub-title{
    display: inline-block;
    color: #dba22d;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.sub-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 2px;
    background: #dba22d;
}

.philosophy-content h2{
    font-size: 40px;
    line-height: 1.1;
    color: #000;
    margin: 15px 0 25px;
    font-family: Ponomar;
}
.philosophy-content p{
    color: #000;
    font-size: 22px;
    /* line-height: 1.8; */
}

.philosophy-features{
    margin-top: 40px;
    width: 100%;
}

.feature-item{
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.icon{
    font-size: 50px;
    color: #dba22d;
}

.text h4{
    font-size: 28px;
    color: #000;
    margin-bottom: 10px;
}

.text p{
    color: #000;
    font-size: 16px;
    /* line-height: 1.6; */
}
/* ================= Laptop ================= */

@media (max-width:1200px){

    .philosophy-wrapper{
        width:92%;
        margin:auto;
        gap:50px;
    }

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

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

    .icon{
        font-size:40px;
    }

    .text h4{
        font-size:22px;
    }

}


/* ================= Tablet ================= */

@media (max-width:991px){

    .philosophy-wrapper{
        width:90%;
        margin:auto;
        grid-template-columns:1fr;
        gap:40px;
    }

    .philosophy-content{
        max-width:100%;
        /* padding-top:20px; */
    }

    .philosophy-content h2{
        font-size:38px;
    }

    .philosophy-content p{
        font-size:17px;
    }

    .philosophy-features{
        margin-top:0;
    }

    .icon{
        font-size:35px;
    }

}


/* ================= Mobile ================= */

@media (max-width:767px){

    .philosophy-section{
        padding:60px 0;
    }

    .philosophy-wrapper{
        width:92%;
        gap:30px;
    }

    .sub-title{
        font-size:16px;
    }

    .sub-title::after{
        width:100px;
    }

    .philosophy-content h2{
        font-size:32px;
        line-height:1.2;
    }

    .philosophy-content p{
        font-size:15px;
        line-height:1.7;
    }

    .feature-item{
        gap:15px;
        padding:20px 0;
    }

    .icon{
        font-size:28px;
    }

    .text h4{
        font-size:18px;
        margin-bottom:5px;
    }

    .text p{
        font-size:14px;
    }

}


/* ================= Small Mobile ================= */

@media (max-width:576px){
    .philosophy-content {
    /* max-width: 550px; */
    padding-top: 0px;
}

    .philosophy-wrapper{
        width:94%;
    }

    .philosophy-content h2{
        font-size:28px;
    }

    .feature-item{
        /* flex-direction:column; */
        align-items:flex-start;
    }

    .icon{
        font-size:24px;
    }

    .text h4{
        font-size:17px;
    }

    .text p{
        font-size:13px;
    }

}


/* ================= Extra Small ================= */

@media (max-width:380px){

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

    .sub-title{
        font-size:14px;
    }

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

    .text h4{
        font-size:15px;
    }

    .text p{
        font-size:12px;
    }

}



/*==========================
PROCESS SECTION
==========================*/
.process-section .container {
    max-width: 100% !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.process-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 50px;
    /* remove padding here */
}


.process-section{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.process-bg img {
    margin-left: -10px !important;
    width: 104% !important;
    height: 102%;
    object-fit: cover;
    object-position: center;
    display: block;        /* removes inline image gap */
}

.process-section {
    position: relative;
    padding: 33px 55px;
    overflow: hidden;
    margin: 0;             /* remove any outer margin */
}

.process-wrapper{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 50px;
}

/* Left */

.process-content{
    color: #fff;
}

.process-subtitle{
        margin-bottom: 45px;
    display: inline-block;
    position: relative;
    color: #DD982E;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.process-subtitle::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;      /* Underline length */
    height: 2px;       /* Underline thickness */
    background: #DD982E;
}

.process-content h2{
    font-size: 27px;
    /* line-height: 1.15; */
    color: #fff;
    margin-bottom: 25px;
    /* font-family: Georgia, serif; */
}

.process-content h2 span{
    color: #DD982E;
}

.process-content p{
    font-size: 12px;
    /* line-height: 1.8; */
    color: #fff;
    margin-bottom: 35px;
}

.framework-btn{
    display: inline-block;
    color: #DD982E;
    border: 2px solid #DD982E;
    text-decoration: none;
    padding: 16px 30px;
    font-size: 15px;
    transition: .3s;
}

.framework-btn:hover{
    background: #DD982E;
    color: #000;
}

/* Right */

.process-icons{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    text-align: center;
}

.circle-icon{
    width: 90px;
    height: 90px;
    border: 2px solid #DD982E;
    border-radius: 50%;
    margin: auto auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DD982E;
    font-size: 35px;
}

.process-item h4{
    color: #DD982E;
    font-size: 22px;
    margin-bottom: 15px;
}

.process-item p{
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

/* ================= Large Laptop ================= */

@media (max-width:1200px){

    .process-section .container{
        padding-left:40px !important;
        padding-right:40px !important;
    }

    .process-wrapper{
        grid-template-columns:40% 60%;
        gap:40px;
    }

    .process-icons{
        grid-template-columns:repeat(3,1fr);
        gap:30px;
    }

}


/* ================= Tablet ================= */

@media (max-width:991px){

    .process-section{
        padding:60px 30px;
    }

    .process-section .container{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .process-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

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

    .process-subtitle::after{
        left:50%;
        transform:translateX(-50%);
    }

    .process-icons{
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }

}


/* ================= Mobile ================= */

@media (max-width:767px){

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

    .process-content h2{
        font-size:40px;
        line-height:1.2;
    }

    .process-content p{
        font-size:16px;
        line-height:1.7;
    }

    .framework-btn{
        padding:14px 25px;
        font-size:14px;
    }

    .process-icons{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .circle-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .process-item h4{
        font-size:18px;
    }

    .process-item p{
        font-size:14px;
    }

}


/* ================= Small Mobile ================= */

@media (max-width:576px){

    .process-section{
        padding:40px 15px;
    }

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

    .process-content h2{
        font-size:32px;
    }

    .process-content p{
        font-size:15px;
    }

    .process-subtitle{
        font-size:16px;
    }

    .process-subtitle::after{
        width:130px;
        left:50%;
        transform:translateX(-50%);
    }

    .process-icons{
        grid-template-columns:1fr;
        gap:25px;
    }

    .circle-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

}


/* ================= Extra Small ================= */

@media (max-width:380px){

    .process-content h2{
        text-align: left;
        font-size:28px;
    }

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

    .framework-btn{
        width:100%;
        text-align:center;
    }

}


/*================================
PILLARS SECTION
================================*/

.pillars-section{
    padding:40px 0;
    background:#f8f8f8;
}
.pillars-heading{
    text-align:center;
    margin-bottom:50px;
}

.pillars-heading span{
    position:relative;
    display:inline-block;
    color:#111;
    font-size:20px;
    font-weight:500;
    text-transform:uppercase;
    padding-bottom:15px;
}

.pillars-heading span::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:100px;         /* Underline length */
    height:2px;          /* Thickness */
    background:#DD982E;  /* Gold color */
}
.pillars-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.pillar-item{
    text-align:center;
    padding:0 30px;
    border-right:1px solid #ddd;
}

.pillar-item:last-child{
    border-right:none;
}

.pillar-icon{
    width:70px;
    height:70px;
    border:1.5px solid #B37000;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B37000;
    font-size:32px;
}

.pillar-item h4{
    position: relative;
    color:#000;
    font-size:20px;
    line-height:1.5;
    margin-bottom:30px;
    padding-bottom:15px;
}

.pillar-item h4::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:100px;          /* Line length */
    height:1px;          /* Line thickness */
    background:#DD982E;  /* Gold color */
}
.pillar-item p{
    font-size:14px;
    line-height:1.7;
    color:#000;
}


/*============= Laptop =============*/

@media(max-width:1200px){

    .pillar-item{
        padding:0 20px;
    }

}


/*============= Tablet =============*/

@media(max-width:991px){

    .pillars-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:50px;
    }

    .pillar-item{
        border-right:none;
    }

}


/*============= Mobile =============*/

@media(max-width:767px){

    .pillars-section{
        padding:15px 0;
    }

    .pillars-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .pillar-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

    .pillar-item h4{
        font-size:18px;
    }

}


/*============= Small Mobile =============*/

@media(max-width:576px){

    .pillar-item{
        padding:0 10px;
    }

    .pillar-item p{
        font-size:13px;
    }

}


/*==========================
BLOG SECTION
===========================*/


.fc-blogs-section{
    padding:50px 0;
}

.fc-blogs-container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

/* ===============================
   Header
================================== */

.fc-blogs-header{
    margin-bottom:50px;
    text-align:left;
}

.fc-blogs-header span{
    display:inline-block;
    position:relative;
    color:#D99B2B;
    font-size:24px;
    font-weight:500;
    padding-left:55px;
}

.fc-blogs-header span::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:3px;
    background:#D99B2B;
}

.fc-blogs-header h2{
    margin-top:20px;
    color:#fff;
    font-size:50px;
    line-height:1.1;
}

.fc-blogs-header h2 span{
    color:#D99B2B;
    padding:0;
    font-size:50px;
}

.fc-blogs-header h2 span::before{
    display:none;
}

.fc-blogs-header p{
    margin-top:20px;
    max-width:650px;
    color:#9a9a9a;
    font-size:20px;
    line-height:1.7;
}

/* ===============================
   Grid
================================== */

.fc-blogs-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:90px;
}

/* ===============================
   Featured Card
================================== */

.fc-blog-featured{
    background:#26272d;
    border-radius:16px;
    display:flex;
    align-items:flex-end;
    gap:25px;
    padding:45px 25px;
    position:relative;
    overflow:hidden;
}

.fc-blog-featured img{
    width:240px;
    height:280px;
    border-radius:12px;
    object-fit:cover;
    flex-shrink:0;
}

.fc-blog-featured .fc-blog-content{
    flex:1;
}

.fc-blog-featured .fc-blog-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.fc-blog-featured .fc-blog-content p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.7;
}

.fc-blog-arrow{
    position:absolute;
    top:30px;
    right:30px;
    width:60px;
    height:60px;
    border:2px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
    cursor:pointer;
}

.fc-blog-arrow:hover{
    background:#fff;
    color:#000;
}

/* ===============================
   Right Section
================================== */

.fc-blog-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.fc-blog-small-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.fc-blog-card:not(.fc-blog-featured){
    position:relative;
    border-radius:16px;
    overflow:hidden;
}

.fc-blog-card:not(.fc-blog-featured) img{
    width:100%;
    height:200px;
    object-fit:fill;
    display:block;
}

.fc-blog-card:not(.fc-blog-featured) .fc-blog-content{
    position:absolute;
    left:20px;
    bottom:20px;
}

.fc-blog-card:not(.fc-blog-featured) h3{
    color:#fff;
    font-size:22px;
    line-height:1.3;
}

/* ===============================
   Button
================================== */

.fc-blog-btn{
    width:max-content;
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:15px 30px;
    border-radius:50px;
    background:#fff;
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.fc-blog-btn span{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.fc-blog-btn:hover{
    transform:translateY(-3px);
}

/* ===============================
   Responsive
================================== */
/* ===============================
   Tablet
================================== */
@media (max-width:991px){

    .fc-blogs-section{
        padding:40px 0;
    }

    .fc-blogs-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .fc-blogs-header{
        text-align:center;
        margin-bottom:35px;
    }

    .fc-blogs-header h2,
    .fc-blogs-header h2 span{
        font-size:40px;
    }

    .fc-blogs-header p{
        max-width:100%;
        font-size:18px;
    }

    .fc-blog-featured{
        padding:30px;
        gap:20px;
    }

    .fc-blog-featured img{
        width:220px;
        height:250px;
    }

    .fc-blog-small-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .fc-blog-btn{
        margin:auto;
    }

}


/* ===============================
   Mobile
================================== */
@media (max-width:767px){

    .fc-blogs-container{
        width:92%;
    }

    .fc-blogs-header{
        text-align:center;
        margin-bottom:30px;
    }

    .fc-blogs-header span{
        font-size:18px;
        padding-left:40px;
    }

    .fc-blogs-header span::before{
        width:28px;
    }

    .fc-blogs-header h2,
    .fc-blogs-header h2 span{
        font-size:30px;
    }

    .fc-blogs-header p{
        font-size:15px;
    }

    .fc-blogs-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .fc-blog-featured{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }

    .fc-blog-featured img{
        width:100%;
        height:220px;
    }

    .fc-blog-featured .fc-blog-content h3{
        font-size:24px;
    }

    .fc-blog-featured .fc-blog-content p{
        font-size:15px;
    }

    .fc-blog-arrow{
        width:45px;
        height:45px;
        top:15px;
        right:15px;
    }

    .fc-blog-small-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .fc-blog-card:not(.fc-blog-featured) img{
        width:100%;
        height:220px;
    }

    .fc-blog-btn{
        width:100%;
        justify-content:center;
    }

}


/* ===============================
   Small Mobile
================================== */
@media (max-width:480px){

    .fc-blogs-header h2,
    .fc-blogs-header h2 span{
        font-size:26px;
    }

    .fc-blog-featured img{
        height:190px;
    }

    .fc-blog-card:not(.fc-blog-featured) img{
        height:180px;
    }

    .fc-blog-featured .fc-blog-content h3{
        font-size:20px;
    }

    .fc-blog-featured .fc-blog-content p{
        font-size:14px;
    }

}

