/*=========================================
        GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/*=========================================
            RESET
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#1d1d1f;

    overflow-x:hidden;

    line-height:1.6;

}



/*=========================================
            COMMON
=========================================*/

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    width:100%;

    display:block;

}

.container{

    width:min(92%,1250px);

    margin:auto;

}



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

.navbar{

    position:sticky;

    top:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid #ececec;

}



.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}



.logo a{

    font-size:1.8rem;

    font-weight:800;

    letter-spacing:3px;

    color:#111;

}



.nav-links{

    display:flex;

    align-items:center;

    gap:38px;

}



.nav-links a{

    font-size:.95rem;

    font-weight:500;

    color:#6d6d6d;

    transition:.3s;

    position:relative;

}



.nav-links a:hover{

    color:#111;

}



.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#111;

    transition:.3s;

}



.nav-links a:hover::after{

    width:100%;

}



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

.hero{

    min-height:calc(100vh - 82px);

    display:flex;

    align-items:center;

}



.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

    padding:90px 0;

}





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

.hero-image{

    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:24px;

}

.hero-image img{

    width:100%;
    max-width:470px;

    display:block;

    border-radius:24px;

    border:1px solid #ececec;

    object-fit:cover;

    box-shadow:
        0 8px 20px rgba(0,0,0,.05),
        0 20px 45px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

/* Hover */

.hero-image:hover img{

    transform:scale(1.05);

    box-shadow:
        0 18px 35px rgba(0,0,0,.10),
        0 40px 80px rgba(0,0,0,.18);

}
/*=========================================
            CONTENT
=========================================*/

.tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#f4f4f4;

    color:#666;

    font-size:.8rem;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:24px;

}



.hero-content h1{

    font-size:4rem;

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2px;

    color:#111;

    margin-bottom:28px;

}



.hero-content p{

    font-size:1.1rem;

    color:#6b6b6b;

    max-width:580px;

    line-height:1.9;

    margin-bottom:42px;

}



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

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:210px;

    height:58px;

    border-radius:50px;

    background:#111;

    color:#fff;

    font-weight:600;

    transition:.35s;

}



.hero-btn:hover{

    transform:translateY(-4px);

    background:#2b2b2b;

}



/*=========================================
        EMPTY SECTION
=========================================*/

section{

    padding:120px 0;

    border-top:1px solid #f2f2f2;

}



/*=========================================
            TABLET
=========================================*/

@media(max-width:1024px){

.hero-container{

    gap:55px;

}

.hero-content h1{

    font-size:3rem;

}

}



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

@media(max-width:768px){

.navbar .container{

    flex-direction:column;

    justify-content:center;

    padding:20px 0;

    gap:18px;

}



.nav-links{

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}



.hero{

    min-height:auto;

}



.hero-container{

    grid-template-columns:1fr;

    text-align:center;

    gap:45px;

}



.hero-content{

    display:flex;

    flex-direction:column;

    align-items:center;

}



.hero-content h1{

    font-size:2.4rem;

}



.hero-content p{

    font-size:1rem;

}



.hero-image img{

    max-width:330px;

}



section{

    padding:80px 0;

}

}



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

@media(max-width:480px){

.logo a{

    font-size:1.5rem;

}



.nav-links{

    gap:14px;

}



.nav-links a{

    font-size:.85rem;

}



.hero-content h1{

    font-size:2rem;

}



.hero-btn{

    width:180px;

    height:52px;

}

}

/*======================================
            PROJECT SECTION
======================================*/

.projects{

    background:#fafafa;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border:1px solid #e7e7e7;

    border-radius:50px;

    background:#ffffff;

    color:#666;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:24px;

}

.section-heading h2{

    font-size:3rem;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-1.5px;

    color:#111;

    margin-bottom:22px;

}

.section-heading p{

    font-size:1.08rem;

    color:#6d6d6d;

    line-height:1.8;

}



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

.project-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:32px;

}



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

.project-card{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    min-height:320px;

    padding:42px;

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:24px;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}



/* Light Hover Layer */

.project-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(255,255,255,.9),
    rgba(245,245,245,.9));

    opacity:0;

    transition:.35s;

}



.project-card:hover::before{

    opacity:1;

}



/* Premium Hover */

.project-card:hover{

    transform:translateY(-10px);

    border-color:#d9d9d9;

    box-shadow:

    0 30px 70px rgba(0,0,0,.08);

}



/*======================================
        CONTENT
======================================*/

.card-content{

    position:relative;

    z-index:2;

}

.project-number{

    display:inline-block;

    font-size:.82rem;

    color:#9b9b9b;

    font-weight:700;

    margin-bottom:28px;

}

.card-content h3{

    font-size:2rem;

    font-weight:700;

    color:#111;

    line-height:1.2;

    margin-bottom:22px;

}

.card-content p{

    max-width:320px;

    color:#6f6f6f;

    line-height:1.8;

}



/*======================================
            ARROW
======================================*/

.card-arrow{

    position:relative;

    z-index:2;

    width:58px;

    height:58px;

    border-radius:50%;

    background:#f4f4f4;

    border:1px solid #e8e8e8;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    color:#444;

    transition:.35s;

    flex-shrink:0;

}



.project-card:hover .card-arrow{

    background:#111;

    color:#fff;

    transform:translateX(6px);

}



/*======================================
        TABLET
======================================*/

@media(max-width:992px){

.project-grid{

    gap:24px;

}

.project-card{

    min-height:280px;

    padding:34px;

}

.section-heading h2{

    font-size:2.5rem;

}

.card-content h3{

    font-size:1.7rem;

}

}



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

@media(max-width:768px){

.project-grid{

    grid-template-columns:1fr;

}

.section-heading{

    margin-bottom:50px;

}

.section-heading h2{

    font-size:2rem;

}

.section-heading p{

    font-size:1rem;

}

.project-card{

    min-height:auto;

    padding:30px;

}

.card-content h3{

    font-size:1.5rem;

}

.card-content p{

    max-width:100%;

}

.card-arrow{

    width:52px;

    height:52px;

}

}



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

@media(max-width:480px){

.project-card{

    padding:24px;

    border-radius:20px;

}

.card-content h3{

    font-size:1.35rem;

}

.card-content p{

    font-size:.95rem;

}

.section-heading h2{

    font-size:1.75rem;

}

}

/*==========================================
              WHY PINDAL
==========================================*/

.why-pindal{
    background:#ffffff;
    padding:140px 0;
}

.why-pindal .container{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
}



/*==========================================
            LEFT CONTENT
==========================================*/

.why-header{
    position:sticky;
    top:120px;
}

.why-label{

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

    padding:8px 18px;

    border:1px solid #e6e6e6;

    border-radius:50px;

    background:#fafafa;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    color:#666;

    margin-bottom:28px;

}

.why-header h2{

    font-size:3.4rem;

    line-height:1.08;

    letter-spacing:-2px;

    color:#111;

    font-weight:800;

    margin-bottom:28px;

}

.why-header p{

    font-size:1.05rem;

    color:#666;

    line-height:1.9;

    max-width:380px;

}



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

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}



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

.why-card{

    position:relative;

    padding:42px;

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:26px;

    overflow:hidden;

    transition:.45s ease;

}



/* Premium Border */

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#111;

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}



/* Hover */

.why-card:hover{

    background:#ffffff;

    border-color:#d9d9d9;

    transform:translateY(-12px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.07);

}



.why-card:hover::before{

    transform:scaleX(1);

}



/*==========================================
             NUMBER
==========================================*/

.why-card span{

    display:block;

    font-size:.8rem;

    font-weight:700;

    color:#999;

    letter-spacing:2px;

    margin-bottom:30px;

}



/*==========================================
             TITLE
==========================================*/

.why-card h3{

    font-size:1.6rem;

    font-weight:700;

    color:#111;

    line-height:1.3;

    margin-bottom:18px;

}



/*==========================================
             TEXT
==========================================*/

.why-card p{

    font-size:1rem;

    line-height:1.9;

    color:#666;

}



/*==========================================
          PREMIUM EFFECT
==========================================*/

.why-card::after{

    content:"";

    position:absolute;

    right:-70px;

    top:-70px;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(0,0,0,.025);

    transition:.45s;

}



.why-card:hover::after{

    transform:scale(1.3);

}



/*==========================================
              TABLET
==========================================*/

@media(max-width:1100px){

.why-pindal .container{

    grid-template-columns:1fr;

    gap:60px;

}

.why-header{

    position:relative;

    top:0;

}

.why-header p{

    max-width:700px;

}

}



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

@media(max-width:768px){

.why-pindal{

    padding:90px 0;

}

.why-header{

    text-align:center;

}

.why-header h2{

    font-size:2.5rem;

}

.why-header p{

    margin:auto;

}

.why-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.why-card{

    padding:32px;

}

.why-card h3{

    font-size:1.4rem;

}

}



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

@media(max-width:480px){

.why-header h2{

    font-size:2rem;

}

.why-card{

    padding:26px;

    border-radius:22px;

}

.why-card h3{

    font-size:1.25rem;

}

.why-card p{

    font-size:.95rem;

}

}

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

.timeline{
    padding:140px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}



/*==========================================
            SECTION HEADING
==========================================*/

.timeline .section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 90px;
}

.timeline .section-tag{

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

    padding:8px 18px;

    border:1px solid #e8e8e8;

    border-radius:50px;

    background:#fafafa;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    color:#666;

    margin-bottom:22px;

}

.timeline .section-heading h2{

    font-size:3.3rem;

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2px;

    color:#111;

    margin-bottom:22px;

}

.timeline .section-heading p{

    max-width:640px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:1.05rem;

}



/*==========================================
          TIMELINE WRAPPER
==========================================*/

.timeline-wrapper{

    position:relative;

    max-width:1100px;

    margin:auto;

    padding:40px 0;

}



/* Vertical Journey Line */

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:110px;

    top:0;

    bottom:0;

    width:2px;

    background:linear-gradient(
        to bottom,
        #e8e8e8,
        #111,
        #e8e8e8
    );

}



/*==========================================
             TIMELINE ITEM
==========================================*/

.timeline-item{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:60px;

    align-items:flex-start;

    position:relative;

    margin-bottom:80px;

}



/* Timeline Dot */

.timeline-item::before{

    content:"";

    position:absolute;

    left:102px;

    top:18px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#ffffff;

    border:4px solid #111;

    z-index:2;

    transition:.35s;

}



/*==========================================
                YEAR
==========================================*/

.timeline-year{

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    color:#999;

    text-transform:uppercase;

}



/*==========================================
             TIMELINE CARD
==========================================*/

.timeline-card{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:28px;

    padding:42px;

    position:relative;

    transition:.4s ease;

}



/* Premium Accent */

.timeline-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:#111;

    border-radius:5px;

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}



/* Hover */

.timeline-item:hover .timeline-card{

    background:#ffffff;

    transform:translateY(-8px);

    border-color:#dddddd;

    box-shadow:0 30px 70px rgba(0,0,0,.07);

}

.timeline-item:hover::before{

    transform:scale(1.2);

}

.timeline-item:hover .timeline-card::before{

    transform:scaleY(1);

}



/*==========================================
                LABEL
==========================================*/

.timeline-label{

    display:inline-block;

    padding:7px 16px;

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:30px;

    color:#666;

    font-size:.78rem;

    font-weight:600;

    margin-bottom:24px;

}



/*==========================================
                TITLE
==========================================*/

.timeline-card h3{

    font-size:1.7rem;

    color:#111;

    margin-bottom:18px;

    line-height:1.3;

}



/*==========================================
                TEXT
==========================================*/

.timeline-card p{

    color:#666;

    line-height:1.9;

    font-size:1rem;

}



/*==========================================
          BACKGROUND DECORATION
==========================================*/

.timeline::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(0,0,0,.02);

    top:-250px;

    right:-180px;

}

.timeline::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(0,0,0,.018);

    bottom:-220px;

    left:-180px;

}



/*==========================================
             LAPTOP
==========================================*/

@media(max-width:1100px){

.timeline-wrapper{

    max-width:850px;

}

.timeline-wrapper::before{

    left:80px;

}

.timeline-item{

    grid-template-columns:90px 1fr;

    gap:40px;

}

.timeline-item::before{

    left:72px;

}

}



/*==========================================
              TABLET
==========================================*/

@media(max-width:768px){

.timeline{

    padding:100px 0;

}

.timeline .section-heading h2{

    font-size:2.5rem;

}

.timeline-wrapper::before{

    left:20px;

}

.timeline-item{

    grid-template-columns:1fr;

    padding-left:55px;

    gap:18px;

    margin-bottom:60px;

}

.timeline-item::before{

    left:12px;

    top:6px;

}

.timeline-year{

    margin-bottom:5px;

}

.timeline-card{

    padding:30px;

}

.timeline-card h3{

    font-size:1.45rem;

}

}



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

@media(max-width:480px){

.timeline{

    padding:80px 0;

}

.timeline .section-heading h2{

    font-size:2rem;

}

.timeline .section-heading p{

    font-size:.95rem;

}

.timeline-card{

    padding:24px;

    border-radius:22px;

}

.timeline-card h3{

    font-size:1.25rem;

}

.timeline-card p{

    font-size:.95rem;

}

.timeline-label{

    font-size:.72rem;

    padding:6px 14px;

}

.timeline-wrapper::before{

    left:16px;

}

.timeline-item{

    padding-left:48px;

}

.timeline-item::before{

    left:8px;

    width:16px;

    height:16px;

}

}

/*==========================================
        BECOME PART OF PINDAL
==========================================*/

.join-pindal{
    padding:140px 0;
    background:#ffffff;
}

.join-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

    padding:90px 70px;

    background:#fafafa;

    border:1px solid #e9e9e9;

    border-radius:32px;

    transition:.45s ease;

}

.join-content:hover{

    border-color:#dcdcdc;

    box-shadow:0 28px 70px rgba(0,0,0,.06);

    transform:translateY(-4px);

}

/*==========================================
            TAG
==========================================*/

.join-pindal .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border:1px solid #e5e5e5;

    border-radius:50px;

    background:#ffffff;

    color:#666;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:28px;

}

/*==========================================
            HEADING
==========================================*/

.join-content h2{

    font-size:3.5rem;

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2px;

    color:#111;

    margin-bottom:28px;

}

/*==========================================
            DESCRIPTION
==========================================*/

.join-content p{

    max-width:680px;

    margin:0 auto;

    color:#666;

    font-size:1.08rem;

    line-height:1.9;

}

/*==========================================
            BUTTONS
==========================================*/

.join-buttons{

    margin-top:55px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary Button */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:#111;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    border:1px solid #111;

}

.btn-primary:hover{

    background:#222;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* Secondary Button */

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:#ffffff;

    color:#111;

    text-decoration:none;

    border:1px solid #dcdcdc;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    border-color:#111;

    background:#f7f7f7;

    transform:translateY(-3px);

}

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

@media(max-width:992px){

.join-content{

    padding:70px 50px;

}

.join-content h2{

    font-size:2.9rem;

}

}

@media(max-width:768px){

.join-pindal{

    padding:100px 0;

}

.join-content{

    padding:60px 35px;

}

.join-content h2{

    font-size:2.4rem;

}

.join-content p{

    font-size:1rem;

}

.join-buttons{

    flex-direction:column;

    align-items:center;

}

.btn-primary,
.btn-secondary{

    width:100%;

    max-width:280px;

}

}

@media(max-width:480px){

.join-content{

    padding:45px 25px;

    border-radius:24px;

}

.join-content h2{

    font-size:2rem;

}

.join-content p{

    font-size:.95rem;

    line-height:1.8;

}

}

/*==========================================
                CONTACT
==========================================*/

.contact{
    padding:120px 0;
    background:#ffffff;
}

.contact-header{
    text-align:center;
    max-width:720px;
    margin:0 auto 70px;
}

.contact .section-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #e5e5e5;
    border-radius:50px;
    background:#fafafa;
    color:#666;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.contact-header h2{
    font-size:3.2rem;
    font-weight:800;
    color:#111;
    letter-spacing:-2px;
    margin-bottom:20px;
}

.contact-header p{
    font-size:1.05rem;
    color:#666;
    line-height:1.8;
}


/*==========================================
            SOCIAL GRID
==========================================*/

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


/*==========================================
            SOCIAL CARD
==========================================*/

.contact-card{

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    text-decoration:none;

    transition:.35s ease;

    color:#111;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    border-color:#111;

}


/*==========================================
                ICON
==========================================*/

.contact-card i{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 24px;

    background:#111;

    color:#fff;

    border-radius:18px;

    font-size:30px;

    transition:.35s;

}

.contact-card:hover i{

    transform:scale(1.08);

}


/*==========================================
                TEXT
==========================================*/

.contact-card h3{

    font-size:1.35rem;

    margin-bottom:10px;

    font-weight:700;

}

.contact-card p{

    color:#666;

    line-height:1.7;

    font-size:.96rem;

}


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

@media(max-width:992px){

.contact-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-header h2{

    font-size:2.6rem;

}

}

@media(max-width:768px){

.contact{

    padding:90px 0;

}

.contact-grid{

    grid-template-columns:1fr;

}

.contact-header{

    margin-bottom:50px;

}

.contact-header h2{

    font-size:2.2rem;

}

.contact-card{

    padding:35px 25px;

}

}

@media(max-width:480px){

.contact-header h2{

    font-size:1.9rem;

}

.contact-card i{

    width:64px;

    height:64px;

    font-size:26px;

}

}