*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
}


/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    background:#ffffff;
    position:relative;     /* fixed issue */
    width:100%;
    z-index:9999;
    border-bottom:2px solid #ffb366;
}

header img,
.logo{
    width:250px !important;
    height:auto !important;
    max-height:90px !important;
    object-fit:contain !important;
}

nav{
    display:flex;
    gap:30px;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:#08111f;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#14B8A6;
}


/* HERO */

.hero{
    height:70vh;
    background:url(hero.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
     max-width:1000px;
    padding:0 20px;
}

.hero h1{
    font-size:65px;
    color:white;
    margin-bottom:20px;
    line-height:1.1;
}

.hero p{
    font-size:24px;
    color:white;
}


/* PREMIUM SECTION */

.quickhire-premium{
    background:linear-gradient(135deg,#08111f,#142744);
    padding:100px 8%;
    display:flex;
    gap:60px;
    flex-wrap:wrap;
    color:white;
}

.premium-left{
    flex:1;
    min-width:350px;
}

.mini-title{
    color:#00ffaa;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.premium-left h1{
    font-size:84px;
    line-height:1;
    margin:20px 0;
}

.premium-left h1 span{
    color:#ffb366;
}

.premium-left p{
    font-size:18px;
    line-height:1.8;
    color:#d5dce6;
    margin-bottom:35px;
}


/* BUTTONS */

.tech-tags{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:35px;
}

.tech-tags button{
    width:210px;
    height:52px;
    background:transparent;
    border:2px solid #14B8A6;
    color:#14B8A6;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tech-tags button:hover{
    background:#14B8A6;
    color:white;
    transform:translateY(-3px);
}


/* RIGHT CARD */

.premium-right{
    flex:1;
    min-width:350px;
    background:#101b2d;
    padding:45px;
    border-radius:25px;
    box-shadow:0 0 60px rgba(20,184,166,.22);
}

.premium-right h3{
    color:#ffb366;
    margin-bottom:30px;
}

.feature-box{
    margin-bottom:25px;
}

.feature-box h4{
    color:#00ffaa;
    margin-bottom:10px;
}

.feature-box p{
    color:#d6dce4;
    line-height:1.7;
}


/* FOOTER */

footer{
    background:#0F172A;
    color:#00ffaa;;
    text-align:center;
    padding:50px;
}


/* MOBILE */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        height:60vh;
    }

    .hero h1{
        font-size:38px;
    }

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

    .premium-left,
    .premium-right{
        min-width:100%;
    }

    .premium-left h1{
        font-size:42px;
    }

    .tech-tags button{
        width:100%;
    }

}
/* SERVICES PAGE */

.services-page{
    background:linear-gradient(135deg,#08111f,#142744);
    color:white;
    padding:80px 8%;
}

.services-page .mini-title{
    color:#00ffaa;
    font-size:14px;
    font-weight:bold;
    letter-spacing:2px;
}

.services-page h1{
    font-size:70px;
    margin:20px 0;
}

.services-page h1 span{
    color:#ffb366;
}

.service-intro{
    color:#d6dce4;
    font-size:18px;
    line-height:1.8;
    margin-bottom:50px;
    max-width:800px;
}


.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:70px;
}

.service-card{
    background:#101b2d;
    border:2px solid #14B8A6;
    color:#14B8A6;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    border-radius:30px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 0 25px rgba(20,184,166,.12);
}

.service-card:hover{
    background:#14B8A6;
    color:white;
    transform:translateY(-4px);
    box-shadow:0 0 35px rgba(20,184,166,.25);
}


.service-content h2{
    color:#ffb366;
    margin:40px 0 20px;
}

.service-content p,
.service-content li{
    color:#d6dce4;
    line-height:1.8;
}

.service-content ul{
    padding-left:25px;
}


@media(max-width:768px){

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

    .service-grid{
        grid-template-columns:1fr;
    }

}
/* FORCE SERVICES BUTTON DESIGN */

.services-page .service-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:25px !important;
    margin-bottom:70px !important;
}

.services-page .service-card{
    background:#101b2d !important;
    border:2px solid #14B8A6 !important;
    color:#14B8A6 !important;
    height:90px !important;

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

    border-radius:30px !important;
    font-size:18px !important;
    font-weight:600 !important;
    text-align:center !important;

    cursor:pointer;
    transition:.3s;

    box-shadow:0 0 25px rgba(20,184,166,.12) !important;
}

.services-page .service-card:hover{
    background:#14B8A6 !important;
    color:white !important;
    transform:translateY(-4px);
}


@media(max-width:768px){

    .services-page .service-grid{
        grid-template-columns:1fr !important;
    }

}
/* ABOUT PAGE */

.about-page{
    background:linear-gradient(135deg,#08111f,#142744);
    color:white;
    padding:80px 8%;
}

.about-page h1{
    font-size:70px;
    margin:20px 0;
}

.about-page h1 span{
    color:#ffb366;
}

.about-intro{
    color:#d6dce4;
    font-size:18px;
    line-height:1.8;
    margin-bottom:50px;
    max-width:900px;
}


.about-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:70px;
}


.about-card{
    background:#101b2d;
    border:2px solid #14B8A6;
    color:#14B8A6;

    height:90px;

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

    border-radius:30px;

    font-weight:600;

    box-shadow:0 0 25px rgba(20,184,166,.12);
}


.about-content h2{
    color:#ffb366;
    margin:40px 0 20px;
}


.about-content p,
.about-content li{
    color:#d6dce4;
    line-height:1.8;
}


.about-content ul{
    padding-left:25px;
}


@media(max-width:768px){

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

    .about-grid{
        grid-template-columns:1fr;
    }

}
/* Careers Button */
.career-btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:linear-gradient(135deg,#ffb347,#ff8c42);
color:white;
text-decoration:none;
font-size:18px;
font-weight:bold;
border-radius:30px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
transition:0.4s;
}

.career-btn:hover{
transform:translateY(-5px);
box-shadow:0 12px 25px rgba(0,0,0,0.25);
}
/* Careers Hero Banner */

.career-hero{
height:70vh;
background:url("career-banner.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.career-overlay{
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.career-overlay h1{
color:white;
font-size:50px;
margin-bottom:20px;
}

.career-overlay p{
color:white;
font-size:20px;
max-width:800px;
margin-bottom:30px;
}
/* Careers page same theme as Services */

.career-banner-section{

background:
linear-gradient(
rgba(0,0,0,0.45),
rgba(0,0,0,0.45)
),
url("career-banner.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
padding-top:120px;
padding-bottom:80px;
}


.career-banner-section h1{
color:white;
}


.career-banner-section .career-subtitle{
color:white;
}


.career-banner-section .services-container{
margin-top:50px;
}


.career-banner-section .service-box{
background:white;
}
/* Contact Page */

.contact-container{
width:90%;
margin:auto;
display:flex;
gap:40px;
align-items:center;
padding:50px 0;
}


.contact-map{
flex:2;
height:500px;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}


.contact-card{
flex:1;
min-height:500px;
display:flex;
flex-direction:column;
justify-content:center;
}


.contact-card h2{
margin-bottom:30px;
}


.contact-card p{
line-height:1.8;
margin-bottom:25px;
}


@media(max-width:768px){

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

.contact-map,
.contact-card{
width:100%;
}

}
/* Careers page headings */

.service-box h2{
color:#ff8c42;
font-weight:bold;
margin-bottom:20px;
}


/* Paragraph spacing */

.service-box p{
line-height:1.8;
margin-top:15px;
}


/* Space between cards */

.services-container{
gap:35px;
}
.quickhire-premium .premium-left h3 {
    color: #ffb366 !important;
}

.quickhire-premium .premium-left h4 {
    color: #00ffaa !important;
}
