* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;

    background:
    linear-gradient(
        180deg,
        #0320a3 0%,
        #010a34 100%
    );

    overflow-x: hidden;
}

body {

    font-family: "Poppins", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.7;

    color: #111;

    background: #ffffff;

    overflow-x: hidden;

}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    padding: 20px 5%;

    z-index: 10;
}
nav ul li a:hover::after {
    width: 100%;
}.logo img {
    height: 180px;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

/* underline animation */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}
.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 140px 12% 100px;

    position: relative;

    overflow: hidden;

}
/* background glow */
.hero::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -200px;
    top: -200px;

    background:
    radial-gradient(
        circle,
        rgba(230,116,16,0.12),
        transparent 70%
    );

    animation:
    heroGlow 8s ease infinite;

}

/* content */
.hero-content {

    max-width: 760px;

    position: relative;

    z-index: 2;

}

/* title */

.hero h1 {

    font-size: 56px;

    line-height: 1.15;
    color: #e67410;

    margin-bottom: 20px;

    animation:
    heroReveal 1s ease;

}

.hero h1 span {

    display: block;

    color: #fffefe;

    font-size: 34px;

    font-weight: 500;

}

/* paragraph */

.hero p {

    font-size: 18px;

    max-width: 650px;

    color: #e4e2e2;

    margin-bottom: 35px;

    animation:
    heroReveal 1.2s ease;

}

/* buttons */

.hero-buttons {

    display: flex;

    gap: 18px;

}

/* button */

.btn {

    text-decoration: none;

    padding: 14px 26px;

    border-radius: 10px;

    transition: .35s;

}

/* primary */

.primary {

    background: #e67410;

    color: white;

}

.primary:hover {

    transform:
    translateY(-3px);

    background:
    #1c55f2;

}

/* secondary */

.secondary {

    border:
    1px solid #e67410;

    color:
    #fffefe;

}

.secondary:hover {

    background:
    #fdfcfc;

    color:
    rgb(1, 1, 1);

}

/* animations */

@keyframes heroReveal {

from{

opacity:0;

transform:
translateY(30px);

}

to{

opacity:1;

transform:
translateY(0);

}

}

@keyframes heroGlow {

0%{
transform:
translate(0);
}

50%{

transform:
translate(-50px,40px);

}

100%{

transform:
translate(0);

}

}

/* responsive */

@media (max-width:900px){

.hero{

padding:
70px 20px;

}

.hero h1{

font-size:
40px;

}

.hero h1 span{

font-size:
26px;

}

.hero-buttons{

flex-direction:
column;

}

}
/* =========================
   HERO REAL WAVES (FIXED MOTION)
========================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-bg {

    position: absolute;

    inset: -2px;

    z-index: 1;

    overflow: hidden;

    background:
    linear-gradient(
        180deg,
        #0320a3 0%,
        #010a34 100%
    );

}

/* =========================
   WAVE BASE
========================= */

.wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 400px;

    opacity: 0.12;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

/* =========================
   REAL CURVED WAVES (SVG)
========================= */

.wave1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e67410' d='M0,256L60,240C120,224,240,192,360,192C480,192,600,224,720,229.3C840,235,960,213,1080,208C1200,203,1320,213,1380,218.7L1440,224L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");

    animation: waveUpDown1 4s ease-in-out infinite;
    opacity: 0.14;
}

.wave2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e67410' d='M0,288L80,272C160,256,320,224,480,213.3C640,203,800,213,960,229.3C1120,245,1280,267,1360,277.3L1440,288L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");

    animation: waveUpDown2 4s ease-in-out infinite;
    opacity: 0.16;
    bottom: -30px;
}

.wave3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e67410' d='M0,224L60,213.3C120,203,240,181,360,186.7C480,192,600,224,720,245.3C840,267,960,277,1080,261.3C1200,245,1320,203,1380,181.3L1440,160L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");

    animation: waveUpDown3 4s ease-in-out infinite;
    opacity: 0.70;
    bottom: -40px;
}

/* =========================
   REAL WAVE MOTION (NO SLIDING)
========================= */

@keyframes waveUpDown1 {
    0%, 100% {
        transform: translateY(0px) scaleY(1);
    }
    50% {
        transform: translateY(-15px) scaleY(1.05);
    }
}

@keyframes waveUpDown2 {
    0%, 100% {
        transform: translateY(0px) scaleY(1);
    }
    50% {
        transform: translateY(-25px) scaleY(1.08);
    }
}

@keyframes waveUpDown3 {
    0%, 100% {
        transform: translateY(0px) scaleY(1);
    }
    50% {
        transform: translateY(-10px) scaleY(1.03);
    }
}
/* =========================
   MAIN LAYOUT
========================= */

main {
    padding: 60px 12%;
}

h1 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #e67410;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67410;
}

h3 {
    font-size: 18px;
    margin-top: 25px;
    color: #e67410;
}

/* =========================
   TEXT + LISTS
========================= */

p {
    margin-bottom: 12px;
}

ul {
    margin-left: 20px;
    margin-top: 10px;
}

ul li {
    margin-bottom: 8px;
}

/* =========================
   LINKS
========================= */

section a {
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

section a:hover {
    border-bottom: 2px solid #111;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #011483;
    color: #fff;
    padding: 50px 12%;
    margin-top: 80px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer nav ul {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    list-style: none;
}

footer small {
    display: block;
    margin-top: 20px;
    opacity: 0.7;
    text-align: center;
}

/* =========================================================
   🎯 ABOUT / MISSION / VISION CARDS
========================================================= */

article,
main > section:nth-of-type(1),
main > section:nth-of-type(2) {

    background: #fff;
    padding: 45px 40px;
    margin-bottom: 40px;

    border-radius: 14px;
    border: 1px solid #eaeaea;

    box-shadow: 0 3px 12px rgba(0,0,0,0.05);

    position: relative;
    overflow: hidden;

    transition: transform 0.35s ease,
                box-shadow 0.35s ease,
                border-color 0.3s ease;
}

/* hover lift */
article:hover,
main > section:nth-of-type(1):hover,
main > section:nth-of-type(2):hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* shine */
article::before,
main > section:nth-of-type(1)::before,
main > section:nth-of-type(2)::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(252, 86, 2, 0.03),
        transparent
    );

    transition: left 0.6s ease;
}

article:hover::before,
main > section:nth-of-type(1):hover::before,
main > section:nth-of-type(2):hover::before {
    left: 100%;
}

/* heading movement */
article:hover h2,
main > section:nth-of-type(1):hover h2,
main > section:nth-of-type(2):hover h2 {
    transform: translateX(5px);
    transition: 0.3s ease;
}

/* =========================================================
   🧩 SERVICES GRID
========================================================= */

.services {
    margin-top: 40px;
}

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

/* SERVICE BOX */
.service-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 30px 25px;

    box-shadow: 0 3px 12px rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    overflow: hidden; /* important fix */
}

/* hover */
.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON FIXED */
.icon {
    font-size: 20px;
    margin-bottom: 10px;

    display: inline-block;
    transition: transform 0.25s ease;
    transform-origin: center;
}

/* stable hover animation */
.service-box:hover .icon {
    transform: translateY(-2px) scale(1.08);
}

/* TITLE */
.service-box h3 {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.service-box:hover h3 {
    transform: translateX(5px);
}

/* LIST */
.service-box ul {
    margin-left: 18px;
}

.service-box ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

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

@media (max-width: 900px) {

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

    header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    main {
        padding: 30px 20px;
    }

    h1 {
        font-size: 26px;
    }
}


/* =========================
   CAREERS SECTION
========================= */

.careers {
    margin-top: 60px;
}

/* =========================
   HIRING BANNER
========================= */

.hiring-banner {
    text-align: center;
    padding: 45px 20px;
    border-radius: 14px;
    margin-bottom: 30px;

    color: #fff;

    background: linear-gradient(-45deg, #f2712c, #fd864f, #085ec8, #5b9ff1);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;

    position: relative;
    overflow: hidden;
}

/* gradient animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ICON */
.banner-icon {
    font-size: 34px;
    margin-bottom: 10px;

    display: inline-block;
    animation: floatIcon 2.5s ease-in-out infinite;
}

/* floating icon */
@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* TITLE */
.hiring-banner h2 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #fdfcfc;
    animation: fadePulse 3s ease-in-out infinite;
}

/* soft pulse */
@keyframes fadePulse {
    0% { opacity: 0.85; }
    50% { opacity: 1; }
    100% { opacity: 0.85; }
}

/* DESCRIPTION */
.hiring-banner p {
    opacity: 0.85;
    font-size: 15px;
}

/* =========================
   JOB LIST
========================= */

.job-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* JOB LINK */
.job-link {
    display: block;
    padding: 14px 18px;

    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;

    text-decoration: none;
    color: #111;
    font-weight: 500;

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;
}

/* hover effect */
.job-link:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(0, 30, 252, 0.08);
}

/* subtle highlight sweep */
.job-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    background: rgba(0, 8, 249, 0.058);

    transition: width 0.3s ease;
}

.job-link:hover::before {
    width: 100%;
}
/* FIX WHITE EDGE WHILE SCROLLING */

body::after{

content:"";

position:fixed;

left:0;

right:0;

top:0;

bottom:0;

background:
linear-gradient(
180deg,
#0320a3 0%,
#010a34 100%
);

z-index:-999;

pointer-events:none;

}
