/*==================================
Hero Section
===================================*/

.hero-section{
    /* margin-top: -140px; */
    background: #010C1A;
    padding: 40px 0;
}

.hero-container{
    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left */

.hero-left{
    flex: 1;
}

.hero-left h1{
        /* margin-top: 100px; */
    color: #fff;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-left h1 span{
    color: #dca52a;
}

.hero-left p{
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 40px;
}

.talk-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
    margin-bottom: 40px;
}

.talk-btn:hover{
    background: #dca52a;
    color: #fff;
}

/* ====================== */
/* Image / Carousel */
/* ======================== */
.hero-image {
    flex: 1;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-track img {
    width: 100%;
    max-width: 650px;
    flex-shrink: 0;
    border-radius: 12px;
    /* object-fit: cover; */
    aspect-ratio: 16 / 9;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
}

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

/* Fix mobile margin */
@media (max-width: 576px) {
    .hero-image {
        margin-top: 0;
    }
}

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

@media (max-width:1200px){

    .hero-left h1{
        font-size: 40px;
    }

    .hero-left p{
        font-size: 18px;
    }

}

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

@media (max-width:991px){

    .hero-container{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-left h1{
        font-size: 40px;
    }

    .hero-left p{
        max-width: 100%;
        font-size: 14px;
    }

}

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

@media (max-width:767px){



    .hero-left h1{
        font-size: 48px;
    }

    .hero-left p{
        font-size: 16px;
    }

    .talk-btn{
        padding: 15px 30px;
        font-size: 16px;
    }

}

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

@media (max-width:576px){

    .hero-left h1{
        font-size: 30px;
    }
    .hero-image img {
    margin-top: 0px;
    width: 100%;
    max-width: 650px;
}

    .hero-left p{
        font-size: 12px;
    }

    .talk-btn{
        width: 100%;
    }

}





/*==================================
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
===========================*/


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

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

.blog-title{
    margin-bottom:50px;
    text-align:left;
}

/* Subtitle */

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

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

/* Heading */

.blog-title h2{
    margin-top:20px;
    color:#fff;
    font-size:50px;
    line-height:1.1;
    text-align:left;
}

.blog-title h2 span{
    padding:0;
    color:#D99B2B;
    font-size:50px;
}

.blog-title h2 span::before{
    display:none;
}

/* Paragraph */

.blog-title p{
    margin-top:20px;
    max-width:650px;
    color:#9a9a9a;
    font-size:20px;
    text-align:left;
}


/*================ Cards ================*/

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

.blog-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.blog-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* Large Card */
.large-card{
    position: relative;
    background:#26272d;
    display:flex;
      align-items: flex-end;
    gap:25px;
    padding:50px 20px;
       max-width:650px; 
}



.large-card img{
    width:230px;
    height:260px;
    border-radius:12px;
}

.large-card .blog-content{
    flex: 1;
    text-align: left;
    align-self: flex-end;
    padding-bottom: 5px;
}
.blog-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.blog-content p{
    color:#bdbdbd;
    font-size:16px;
}

/* Small Cards */

.blog-card:not(.large-card) .blog-content{
    position:absolute;
    left:20px;
    bottom:20px;
    text-align:left;
}

.blog-card:not(.large-card) h3{
    font-size:22px;
}


/* Arrow */
.blog-arrow{
    position:absolute;
       top: 50px;
    right: 70px;

    width:60px;
    height:60px;
    border:3px solid rgba(255,255,255,.5);
    border-radius:50%;

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

    color:#fff;
    font-size:18px;
    transition:.3s;
}

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


/* Button */

.view-btn{
    margin-top:30px;
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
}

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

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

.right-blog-section{
    display:flex;
    flex-direction:column;
    gap:25px;
}

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

.view-btn{
    width:max-content;
    margin-top:0;
}

/*==================================
Large Laptop
===================================*/
@media (max-width:1200px){

    .blog-wrapper{
        grid-template-columns:1fr;
    }

    .large-card{
        max-width:100%;
        padding:35px 20px;
    }

    .large-card img{
        width:200px;
        height:220px;
    }

    .small-blog-cards{
        grid-template-columns:1fr 1fr;
    }

}


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

    .blog-title span{
        font-size:20px;
    }

    .blog-title h2,
    .blog-title h2 span{
        font-size:42px;
    }

    .blog-title p{
        font-size:18px;
    }

    .large-card{
        max-width:100%;
        gap:20px;
        padding:30px 20px;
    }

    .large-card img{
        width:180px;
        height:200px;
    }

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

    .blog-arrow{
        top:20px;
        right:20px;
    }

}


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

    .blogs-section{
        padding:30px 0;
    }

    .blog-title span{
        font-size:18px;
        padding-left:45px;
    }

    .blog-title span::before{
        width:30px;
    }

    .blog-title h2,
    .blog-title h2 span{
        font-size:34px;
    }

    .blog-title p{
        font-size:16px;
    }

    .large-card{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        gap:20px;
    }

    .large-card img{
        width:100%;
        height:250px;
    }

    .large-card .blog-content{
        width:100%;
    }

    .blog-content h3{
        font-size:22px;
    }

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

    .blog-arrow{
        width:50px;
        height:50px;
        font-size:15px;
        top:15px;
        right:15px;
    }

    .small-blog-cards{
        grid-template-columns:1fr;
    }

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

}


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

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

    .blog-title span{
        font-size:16px;
    }

    .blog-title h2,
    .blog-title h2 span{
        font-size:28px;
    }

    .blog-title p{
        font-size:14px;
    }

    .large-card{
        padding:15px;
    }

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

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

    .blog-content p{
        font-size:13px;
    }

    .blog-arrow{
        width:45px;
        height:45px;
        font-size:14px;
    }

    .view-btn{
        width:100%;
        font-size:14px;
        padding:12px 20px;
    }

    .view-btn span{
        width:40px;
        height:40px;
    }

}


/*==================================
Extra Small Devices
===================================*/
@media (max-width:400px){

    .blog-title h2,
    .blog-title h2 span{
        font-size:24px;
    }

    .blog-title span{
        font-size:15px;
    }

    .large-card img{
        height:180px;
    }

    .blog-content h3{
        font-size:18px;
    }

    .blog-content p{
        font-size:12px;
    }

    .blog-arrow{
        width:40px;
        height:40px;
        font-size:12px;
    }

}
