html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}
html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; 
}

/* NAVBAR */

.navbar{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 85px;

    padding: 0 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background-color: rgba(11,22,35,0.88);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

/* HAMBURGER */

.menu-toggle{
    display: none;

    font-size: 32px;

    color: white;

    cursor: pointer;
}
/* LOGO */

.logo{
    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;
}

.logo img{
    height: 58px;

    width: auto;

    object-fit: contain;

    display: block;
}


.nav-links{
    display: flex;
    align-items: center; 
    gap: 35px; 
    list-style: none; 
}

.nav-links.active{
    display: flex;
}

.nav-links a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500; 
    position: relative;
}

.nav-links a:hover{
    color: #F58220; 
}

/* UNDERLINE */

.nav-links a::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;

    height: 2px;

    background-color: #F58220;

    transition: 0.3s;
}

.nav-links a:hover::after{
    width: 100%;
}

/* ACTIVE NAV LINK */

.nav-links a.active{
    color: #F58220;
}

.nav-links a.active::after{
    width: 100%;
}

/* HERO SECTION */

.hero{
    min-height: 100vh;

    background:
        linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
        ),

        url('images/hero-pipeline.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding: 0 80px;

    color: white;
}

/* HERO CONTENT */

.hero-content{
    max-width: 950px;
    padding-top: 60px; 
}

.hero-content h1{
    font-size: 26px;

    font-weight: 400;

    margin-bottom: 15px;

    color: #e2e8f0;
}

.hero-content h2{
    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-weight: 700;
    color: #F58220; 
    white-space: nowrap;
}

.hero-content h2 span{
    color: #F58220; 
}

.hero-content h3{
    font-size: 30px;

    margin-bottom: 20px;

    color: #f1f5f9;

    font-weight: 500;
}

.hero-content p{
    font-size: 21px;

    line-height: 1.8;

    color: #cbd5e1;

    margin-bottom: 40px;

    max-width: 700px;
}
/* GENERAL SECTION */

.section{
    min-height: 100vh;

    padding: 120px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: all 1s ease;
    font-size: 52px; 
    overflow: hidden; 
}

.section h2{
    font-size: 40px;
    margin-bottom: 25px;
}

.section p{
    max-width: 900px;

    font-size: 20px;
}
/* SERVICES + CAREERS */

#services,
#careers{

    position: relative;

    overflow: hidden;

    background: none;
}

/* BACKGROUND LAYER */

#services::before,
#careers::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
    rgba(5,15,25,0.90),
    rgba(5,15,25,0.90)
    ),
    url("images/about-pipeline.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    z-index: 0;
}

/* CONTENT ABOVE BG */

#services *,
#careers *{
    position: relative;

    z-index: 2;
}

/* TEXT */

#services h2,
#careers h2{
    color: white;
}

#services p,
#careers p{
    color: #dbe4ee;
}

/* GLASS CARDS */

#services .service-card,
#careers .job-card{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.22);
}

/* CARD TITLES */

#services .service-card h3,
#careers .job-card h3{
    color: white;
}
/* LIGHT SECTION */

.light-section{
    background-color: #f8fafc;
}
.light-section h2{
    color: #0f172a;
}

.light-section p{
    color: #64748b;
}

/* DARK SECTION */

.dark-section h2{
    color: white;
}

.dark-section p{
    color: #cbd5e1;
}

/* SCROLL ANIMATION */

.hidden{
    opacity: 0;
    transform: translateY(100px);
}

.show{
    opacity: 1;
    transform: translateY(0);
}
/* ACTIVE NAV LINK */

.nav-link.active{
    color: #F58220;
    border-bottom: 2px solid #F58220; 
    padding-bottom: 5px;
}
/* ABOUT SECTION */

.section-content{
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;
}

/* TEXT SIDE */

.text-content{
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2{
    font-size: 64px;

    margin-bottom: 25px;

    color: #0f172a;
}

.text-content p{
    font-size: 18px;

    line-height: 1.8;

    color: #475569;

    max-width: 650px;

    margin-bottom: 18px;
}

/* IMAGE SIDE */

.image-content{
    flex: 1;

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

.image-content img{
    width: 100%;

    max-width: 760px;

    height: 380px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
/* SERVICES */

.services-container{
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-card{
    background-color: #16324F; 

    padding: 35px;

    border-radius: 20px;

    flex: 1;

    min-height: 320px;

    display: flex;
    flex-direction: column;

    transition: 0.4s;
}

.service-card:hover{
    transform: translateY(-10px);
}

.service-title{
    height: 100px;
}

.service-card h3{
    color: white;

    font-size: 30px;

    line-height: 1.3;
}

.service-card p{
    color: #cbd5e1;

    font-size: 18px;

    line-height: 1.8;
}

/* PROJECTS SECTION */

.projects-gallery{
    margin-top: 50px;

    display: grid;

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

    gap: 24px;
}

.projects-gallery img{
    width: 100%;

    height: 240px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.10);

    transition: 0.4s;
}

.projects-gallery img:hover{
    transform: scale(1.03);
}

/* CLIENTS SECTION */

.client-category{
    margin-top: 60px;
}

.client-category h3{
    font-size: 28px;

    margin-bottom: 30px;

    color: #0f172a;
}

.clients-grid{
    display: grid;

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

    gap: 25px;
}

.client-card{
    background-color: white;

    padding: 30px 20px;

    border-radius: 18px;

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

    text-align: center;

    transition: 0.3s;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.client-card:hover{
    transform: translateY(-8px);
}

.client-card img{
    width: 110px;

    height: 70px;

    object-fit: contain;

    margin-bottom: 18px;
}

.client-card p{
    font-size: 16px;

    font-weight: 500;

    color: #334155;
}

.client-category:last-child .clients-grid{
    max-width: 900px;

    margin: auto;
}
/* CAREERS SECTION */

.careers-subtitle{
    text-align: center;

    max-width: 700px;

    margin:
    20px auto 60px;

    font-size: 18px;

    line-height: 1.8;

    color: #475569;
}

.jobs-container{
    display: grid;

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

    gap: 30px;
}

.job-card{
    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.job-card:hover{
    transform: translateY(-8px);
}

.job-card h3{
    font-size: 28px;

    margin-bottom: 15px;

    color: #0f172a;
}

.job-card p{
    color: #64748b;

    margin-bottom: 30px;

    font-size: 17px;
}
/* SERVICES & CAREERS DARK BACKGROUND */

#services,
#careers{

    background:
    linear-gradient(
    rgba(5,15,25,0.90),
    rgba(5,15,25,0.90)
    ),

    url("images/about-bg.jpg") center/cover no-repeat !important;

    background-attachment: fixed;

    color: white;
}

/* HEADINGS */

#services h2,
#careers h2{
    color: white;
}

/* SUBTEXT */

#services p,
#careers .careers-subtitle{
    color: #cbd5e1;
}

/* GLASS CARDS */

#services .service-card,
#careers .job-card{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.22);
}

/* CARD TITLES */

#services .service-card h3,
#careers .job-card h3{
    color: white;
}

/* CARD TEXT */

#services .service-card p,
#careers .job-card p{
    color: #cbd5e1;
}
/* CONTACT */

.contact-box{
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box a{
    color: #F58220;

    text-decoration: none;

    font-size: 24px;

    transition: 0.3s;
}

.contact-box a:hover{
    color: white;
    transform: translateX(10px);
}
/* CONTACT FORM */

.contact-container{
    margin-top: 60px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;
}

/* LEFT */

.contact-info h3{
    font-size: 32px;

    margin-bottom: 20px;

    color: #0f172a;
}

.contact-info p{
    font-size: 18px;

    line-height: 1.8;

    color: #475569;

    margin-bottom: 25px;
}

.contact-info a{
    display: block;

    margin-bottom: 18px;

    color: #F58220;

    text-decoration: none;

    font-size: 18px;

    transition: 0.3s;
}

.contact-info a:hover{
    transform: translateX(5px);
}

/* FORM */

.contact-form{
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;

    padding: 18px 20px;

    border: 1px solid #dbe2ea;

    border-radius: 14px;

    font-size: 16px;

    outline: none;

    transition: 0.3s;

    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #F58220;

    box-shadow:
    0 0 0 4px rgba(245,130,32,0.12);
}

.contact-form textarea{
    resize: none;
}

.image-content img,
.project-card img{
    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    transition: 0.4s;
}

.image-content img:hover,
.project-card img:hover{
    transform: scale(1.03);
}

/* BUTTON */

.primary-btn{
    padding: 16px 36px;

    background-color: #F58220; 

    border: none;

    color: white;

    font-size: 18px;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.3s;
}

.primary-btn:hover{
    background-color: #d97706;
}

/* ABOUT PAGE */

.about-page-content{
    max-width: 1000px;

    margin: auto;
}

.about-page-content h1{
    font-size: 56px;

    margin-bottom: 40px;

    color: #0f172a;
}

.about-page-content h2{
    font-size: 34px;

    margin-top: 55px;

    margin-bottom: 25px;

    color: #1e293b;
}

.about-page-content p{
    font-size: 18px;

    line-height: 1.9;

    color: #475569;

    margin-bottom: 20px;
}

.about-page-content ul{
    list-style: none;

    padding-left: 0;

    margin-bottom: 35px;
}

.about-page-content li{
    position: relative;

    padding-left: 28px;

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 16px;

    color: #475569;
}

/* CUSTOM BULLETS */

.about-page-content li::before{
    content: "•";

    position: absolute;

    left: 0;
    top: 0;

    color: #F58220; 

    font-size: 24px;

    line-height: 1.2;
}
/* ======================================== */
/* MOBILE RESPONSIVE DESIGN */
/* ======================================== */

@media(max-width: 768px){

    /* NAVBAR */

    .navbar{
        padding: 0 25px;
    }

    .logo{
        font-size: 18px;
    }

    .logo img{
        height: 48px;
    }
    .nav-links{

        position: fixed;
    
        top: 0;
    
        right: -100%;
    
        width: 75%;
    
        height: 100vh;
    
        background:
        rgba(5,15,25,0.92);
    
        backdrop-filter: blur(14px);
    
        -webkit-backdrop-filter: blur(14px);
    
        display: flex;
    
        flex-direction: column;
    
        justify-content: center;
    
        align-items: center;
    
        gap: 35px;
    
        transition: 0.4s ease;
    
        z-index: 999;
    
        overflow-x: hidden;
    }
    
    .nav-links.active{
        right: 0;
    }
    .nav-links a{
        font-size: 14px;
    }
    .nav-links a:hover::after{
        width: 100%;
    }
    
    .nav-links a.active::after{
        width: 100%;
    }
    .nav-links a::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #F58220;
        transition: 0.3s;
    }

    .menu-toggle{
        display: block;
        margin-left: auto;
        font-size: 30px;
        z-index: 2000;
    }
    .contact-container{
        grid-template-columns: 1fr;
    
        gap: 40px;
    }
    .jobs-container{
        grid-template-columns: 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr;
    
        text-align: center;
    
        gap: 40px;
    }
    
    .footer-logo-section p{
        margin: auto;
    }

    /* HERO SECTION */

    .hero{
        padding: 0 25px;

        text-align: center;
    }
    .hero{
        min-height: 100vh;
    
        padding-top: 100px;
    
        padding-bottom: 60px;
    }

    .hero-content{
        padding-top: 40px;
    }

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

    .hero-content h2{
        font-size: 28px;

        white-space: normal;
    }

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

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

    .hero-buttons{
        justify-content: center;
    }

    .primary-btn{
        padding: 14px 28px;

        font-size: 16px;
    }

    /* GENERAL SECTIONS */

    .section{
        padding: 80px 25px;
    }

    .section h2{
        font-size: 34px;
    }

    /* ABOUT SECTION */

    .section-content{
        flex-direction: column;
    }

    .image-content img{
        max-width: 100%;

        height: 280px;
    }

    /* SERVICES */

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

    .service-card{
        min-height: auto;
    }

    .service-title{
        height: auto;
    }

    /* PROJECTS */

    .projects-gallery{
        grid-template-columns: 1fr;
    }

    .projects-gallery img{
        height: 240px;
    }

    /* CONTACT */

    .contact-box a{
        font-size: 18px;

        word-break: break-word;
    }

    /* MOBILE CLIENTS SECTION */

.clients-grid{
    display: flex;

    overflow-x: auto;

    gap: 18px;

    padding-bottom: 10px;

    scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */

.clients-grid::-webkit-scrollbar{
    display: none;
}

.client-card{
    min-width: 220px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.92);
}
}
/* FOOTER */

.footer{
    background: #07111f;

    color: white;

    padding-top: 70px;

    margin-top: 80px;
}

.footer-container{
    width: 90%;

    margin: auto;

    display: grid;

    grid-template-columns:
    2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 50px;
}

/* LOGO SECTION */

.footer-logo-section img{
    height: 65px;

    margin-bottom: 18px;
}

.footer-logo-section h3{
    font-size: 24px;

    margin-bottom: 15px;
}

.footer-logo-section p{
    color: #c7d0db;

    line-height: 1.8;

    max-width: 420px;
}

/* LINKS */

.footer-links h4,
.footer-contact h4{
    font-size: 20px;

    margin-bottom: 20px;

    color: #F58220;
}

.footer-links,
.footer-contact{
    display: flex;

    flex-direction: column;
}

.footer-links a,
.footer-contact a{
    text-decoration: none;

    color: #d5dbe3;

    margin-bottom: 14px;

    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color: #F58220;

    transform: translateX(5px);
}

/* BOTTOM */

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 22px 10px;

    color: #aab4c0;

    font-size: 14px;
}
/* SCROLL REVEAL */

.hidden{
    opacity: 0;

    transform: translateY(70px);

    transition:
    all 1s ease;
}

.show{
    opacity: 1;

    transform: translateY(0);
}
/* ABOUT PAGE */

.about-hero{
    min-height: 100vh;

    background:
    linear-gradient(
    rgba(5,15,25,0.82),
    rgba(5,15,25,0.82)
    ),

    url("images/about-pipeline.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}

.about-overlay{
    padding: 140px 20px 80px;
}

.about-page-content{
    max-width: 1150px;

    margin: auto;
}

.about-page-content h1{
    text-align: center;

    font-size: 64px;

    margin-bottom: 70px;

    color: white;
}

/* GLASS CARDS */

.about-card{
    background:
    rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 45px;

    margin-bottom: 40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.22);
}

.about-card h2{
    font-size: 34px;

    margin-bottom: 28px;

    color: #F58220;
}

.about-card p,
.about-card li{
    font-size: 18px;

    line-height: 1.9;

    color: #e2e8f0;
}

/* LISTS */

.about-card ul{
    list-style: none;

    padding-left: 0;

    margin-top: 20px;
}

.about-card li{
    position: relative;

    padding-left: 32px;

    margin-bottom: 18px;
}

.about-card li::before{
    content: "•";

    position: absolute;

    left: 0;

    top: 0;

    color: #F58220;

    font-size: 26px;
}

.closing-line{
    margin-top: 35px;

    font-style: italic;

    color: #cbd5e1;
}
/* BACK TO HOME BUTTON */

.back-home-btn{

    display: inline-block;

    margin-bottom: 40px;

    padding: 12px 22px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border:
    1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    color: white;

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s;
}

.back-home-btn:hover{

    background: #F58220;

    transform: translateX(-5px);
}
@media(min-width: 769px){

    .back-home-btn{
        display: none;
    }

}
/* MOBILE */

@media(max-width: 768px){

    .about-page-content h1{
        font-size: 42px;
    }

    .about-card{
        padding: 30px;
    }

    .about-card h2{
        font-size: 28px;
    }

}
/* GLOBAL MOBILE OVERFLOW FIX */

html,
body{
    overflow-x: hidden;
}
img{
    max-width: 100%;
    height: auto; 
}

html,
body{
    overflow-x: hidden;
}
/* FINAL MOBILE FIX */

@media(max-width: 768px){

    .footer-container{

        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;

        width: 100%;

        padding: 0 25px;
    }

    .footer-logo-section p{
        max-width: 100%;
    }

    .footer-links,
    .footer-contact{
        align-items: center;
    }

    .footer-contact a,
    .footer-links a{
        word-break: break-word;
    }

}
/* MOBILE LEGAL & ABOUT PAGES */

@media(max-width: 768px){

    .about-page-content h1{
        font-size: 34px;
    }

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

    .about-card p,
    .about-card li{

        font-size: 15px;

        line-height: 1.7;
    }

    .about-card{
        padding: 24px;
    }

}