* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
html, body {
overflow-x: hidden;
} 
@font-face {
font-family: 'Ubuntu';
src: url('fonts/Ubuntu-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
body {
background: #000;
color: #fff;
}


/* MOBILE TOGGLE BUTTON */
.mobile-navbar {
display: none;
justify-content: space-between;
align-items: center;
padding: 31px;
background: #000;
color: #fff;
position: relative;
z-index: 3000;
}
.mobile-logo {
font-size: 1.7rem;
font-weight: bold;
}
.mobile-toggle {
width: 28px;
height: 22px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.mobile-toggle span {
display: block;
height: 3px;
width: 100%;
background: #fff;
border-radius: 2px;
transition: all 0.4s ease;
}
.mobile-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background: #000;
flex-direction: column;
justify-content: flex-start;
padding: 100px 20px;
z-index: 2000;
}
.mobile-menu.show {
display: flex;
}
.mobile-nav-links a {
display: block;
color: #fff;
text-decoration: none;
font-size: 20px;
margin-bottom: 20px;
transition: opacity 0.2s ease;
}
.mobile-nav-links a:hover {
opacity: 0.8;
}
@media (max-width: 900px) {
.main-navbar,
.top-bar {
display: none;
}
.mobile-navbar {
display: flex;
}
}

/* ===== HEADER WRAPPER ===== */
.header-wrapper {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: transparent;
transition: background 0.35s ease;
}
.header-wrapper:hover {
background: rgba(0, 0, 0, 0.9);
}

/* ===== TOP BAR ===== */
.top-bar {
height: 40px;
overflow: hidden;
transition: height 0.4s ease;
}
.top-bar-inner {
max-width: 1300px;
margin: auto;
height: 40px;
display: flex;
justify-content: flex-end;
align-items: center;
gap: 25px;
padding: 0 30px;
}
.top-bar a {
font-size: 15px;
color: #fff;
text-decoration: none;
opacity: 0.85;
}

/* ===== NAVBAR ===== */
.main-navbar {
transition: padding 0.4s ease;
}
.navbar-inner {
max-width: 1300px;
margin: auto;
padding: 20px 30px;
display: flex;
align-items: center;
}
.nav-left {
display: flex;
align-items: center;
gap: 50px; 
}
.logo-img {
height: 42px;
width: 130px;
display: block;
}
.nav-links {
display: flex;
gap: 37px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
.nav-links a,
.top-bar a {
position: relative;
}

/* ===== UNDERLINE HOVER ONLY FOR TOP BAR & MAIN NAV ===== */
.top-bar a::after,
.nav-links > .nav-item > a::after {
content: "";
position: absolute;
left: 50%;
bottom: -5px;
width: 0;
height: 2px;
background: #fff;
transform: translateX(-50%);
transition: width 0.3s ease;
}
.top-bar a:hover::after,
.nav-links > .nav-item > a:hover::after {
width: 100%;
}
.mega-right a {
text-decoration: none;
}
.mega-right a:hover {
opacity: 1;
}
.mega-right a{
position: relative;
display: block;
padding-left: 18px;
color: #fff;
text-decoration: none;
font-size: 16px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.mega-right a::before{
content: "";
position: absolute;
left: 0;
top: 50%;
width: 3px;
height: 0;
background: #fff;
transform: translateY(-50%);
transition: height 0.3s ease;
}
.mega-right a:hover {
opacity: 1;
transform: translateX(6px);
}
.mega-right a:hover::before {
height: 70%;
}


/* ===== SCROLL STATE (CAPGEMINI STYLE) ===== */
.header-wrapper.scrolled {
background: #020617;
}
.header-wrapper.scrolled .top-bar {
height: 0;
}
.header-wrapper.scrolled .navbar-inner {
padding: 20px 40px;
}
.header-wrapper.scrolled .logo {
font-size: 26px;
font-weight: 600;
}
.header-wrapper.scrolled .nav-links {
display: flex;
gap: 37px;
color: #fff;
text-decoration: none;
font-size: 15px;
}
.header-wrapper.scrolled .nav-left {
display: flex;
align-items: center;
gap: 50px; 
}



/* ===== MEGA MENU BASE ===== */
.main-navbar {
position: relative;
}
.mega-menu {
position: absolute;
left: 0;
top: 100%;
width: 100vw;
min-height: 300px;
display: flex;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.35s ease;
z-index: 999;
}
.nav-item.mega:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
/* LEFT PANEL */
.mega-left {
width: 29%;
padding: 60px;
background: radial-gradient(
circle at top left,
rgb(138, 92, 246),
rgb(6, 181, 212) 40%,
rgb(59, 131, 246) 100%,
transparent 100%
);
}
.mega-left h4 {
font-size: 22px;
margin-bottom: 15px;
}
.mega-left p {
font-size: 14px;
opacity: 0.85;
margin-bottom: 25px;
}
.mega-btn {
display: inline-block;
padding: 10px 22px;
border: 1px solid #fff;
border-radius: 30px;
text-decoration: none;
color: #fff;
font-size: 14px;
}
.mega-btn:hover {
background-color: white;
color: black;
}
.mega-right {
width: 71%;
padding: 40px;
background: #020617;
}
.mega-right a {
display: block;
color: #fff;
text-decoration: none;
font-size: 16px;
margin-bottom: 14px;
opacity: 0.85;
}
.mega-right a:hover {
opacity: 1;
}

/* ===== ABOUT US MEGA MENU ===== */
.about-menu {
min-height: 300px;
}
.about-rights a {
position: relative;
display: block;
padding-left: 18px;
color: #fff;
text-decoration: none;
font-size: 16px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.about-rights a::before {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 3px;
height: 0;
background: #fff;
transform: translateY(-50%);
transition: height 0.3s ease;
}
.about-rights a:hover {
opacity: 1;
transform: translateX(6px);
}
.about-rights a:hover::before {
height: 70%;
}






.hero {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
background: #000000; 
} 
.hero-video {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
object-fit: cover;
transform: translate(-50%, -50%);
z-index: 0;
filter: contrast(1.05) saturate(1.1) brightness(0.9);
}
.hero-overlay{
position:absolute;
inset:0;
z-index:1;

background:

/* Glow accent */
radial-gradient(
circle at right center,
rgba(31, 41, 55, 0.85) 0%,
rgba(17, 24, 39, 0.6) 30%,
rgba(15, 23, 42, 0.35) 50%,
transparent 70%
),

/* Main dark gradient */
linear-gradient(
90deg,
#020617 0%,
rgba(2,6,23,0.95) 20%,
rgba(15,23,42,0.85) 40%,
rgba(17,24,39,0.7) 60%,
rgba(31,41,55,0.4) 80%,
transparent 100%
);

}
.hero-content {
position: relative;
z-index: 2;
height: 100%;
max-width: 1240px;
margin: auto;
padding: 180px 50px;
display: flex;
align-items: center;
}
.hero-left {
max-width: 620px;
}
.hero-left h1 {
font-family: 'Ubuntu Mono', monospace;
font-size: clamp(2.9rem, 5vw, 4.5rem);
font-weight: 700;
line-height: 1.15;
margin-bottom: 20px;
margin-top: 50px;
}
.hero-left p {
font-size: 1.15rem;
opacity: 0.9;
max-width: 520px;
line-height: 1.7;
}
.hero-actions {
display: flex;
gap: 18px;
flex-wrap: wrap;
margin-top: 30px;
}
.btn-primary {
padding: 14px 34px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #fff;
background: #3B82F6;
border-radius: 999px;
text-decoration: none;
border: 1px solid rgba(255,255,255,0.15);
box-shadow:
0 5px 90px rgba(59, 130, 246, 0.6);
transition: all 0.35s ease;
}
.btn-secondary {
padding: 14px 34px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #fff;
text-decoration: none;
border-radius: 999px;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.35);
transition: all 0.35s ease;
box-shadow:
0 5px 90px rgba(59, 130, 246, 0.6);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow:
0 14px 40px rgba(59,130,246,0.7),
0 0 25px rgba(6,182,212,0.6),
0 0 60px rgba(139,92,246,0.5);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #1b3bcae1;
box-shadow:
0 14px 40px rgba(59,130,246,0.7),
0 0 25px rgba(6,182,212,0.6),
0 0 60px rgba(139,92,246,0.5);
}
@media (max-width: 1024px) {
.hero-content {
padding: 140px 40px;
}
.hero-left {
max-width: 560px;
}
}
@media (max-width: 768px) {
.hero {
height: 85vh;
}
.hero-video {
filter: contrast(1.05) saturate(1.05) brightness(0.85);
}
.hero-overlay {
background:
linear-gradient(
180deg,
rgba(0, 0, 0, 0.96) 0%,
rgba(6, 3, 18, 0.92) 45%,
rgba(6, 3, 18, 0.75) 70%,
rgba(6, 3, 18, 0.45) 100%
);
}
.hero-content {
padding: 120px 24px 60px;
align-items: flex-start;
}
.hero-left {
max-width: 100%;
}
.hero-left h1 {
font-size: clamp(2.2rem, 7vw, 2.8rem);
margin-top: 0;
line-height: 1.2;
}
.hero-left p {
font-size: 1.05rem;
max-width: 100%;
line-height: 1.6;
}
.hero-actions {
margin-top: 24px;
flex-direction: column;
gap: 14px;
}
.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
padding: 13px 0;
font-size: 13px;
}
}

@media (max-width: 480px) {
.hero {
height: 60vh;
}
.hero-content {
padding: 100px 20px 50px;
}
.hero-left h1 {
font-size: 2rem;
}
.hero-left p {
font-size: 0.95rem;
}
}
/* 3D POLYGON HOLDER */
.hero-3d {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 100;
pointer-events: none;
filter:
drop-shadow(0 0 40px rgba(59,130,246,0.5))
drop-shadow(0 0 80px rgba(6,182,212,0.6));
}
#polygonCanvas {
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .hero-3d {
    display: none;
  }
}








/* careers-section */
.careers-section {
background: #0F172A;
padding: 80px 80px;
color: #fff;
font-family: 'Ubuntu Mono', monospace;
}
.careers-header {
text-align: left;
max-width: 900px;
margin-bottom: 3.5rem;
}
.careers-header h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
color: #fff;
}
.careers-header p {
font-size: 1.1rem;
line-height: 1.6;
color: #ccc;
}
.careers-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
@media (max-width: 900px) {
.careers-grid {
grid-template-columns: 1fr;
}
}
.career-card {
background: rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
padding: 2.5rem;
min-height: 250px;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow:
inset 0 0 0 3px rgba(255, 255, 255, 0.208),
0 40px 100px rgba(0,0,0,0.9);
}
.career-card:hover {
transform: translateY(-8px);
box-shadow:
inset 0 0 0 3px rgba(255, 255, 255, 0.208),
0 40px 100px rgba(0,0,0,0.9);
}
.career-card h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #ffffff;
}
.career-card p {
font-size: 1rem;
color: #ddd;
line-height: 1.5;
margin-bottom: 1.5rem;
}
.career-card button {
padding: 14px 34px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.6px;
text-transform: uppercase;
color: #fff;
border: 1px solid #3B82F6;
background: #3B82F6;
border-radius: 999px;
text-decoration: none;
transition: all 0.35s ease;
}
.career-card button:hover {
transform: translateY(-2px);
box-shadow:
0 5px 20px rgba(59, 130, 246, 0.6);
}
@media (max-width: 900px) {
.careers-section {
padding: 60px 30px;
}
.careers-header {
text-align: center;
margin-bottom: 2.5rem;
}
.careers-header h1 {
font-size: 2.2rem;
}
.careers-header p {
font-size: 1rem;
}
.career-card {
padding: 2rem;
min-height: auto;
}
.career-card h2 {
font-size: 1.35rem;
}
.career-card p {
font-size: 0.95rem;
}
.career-card button {
align-self: center;
padding: 0.7rem 1.4rem;
font-size: 0.95rem;
}
}
@media (max-width: 600px) {
.careers-section {
padding: 50px 20px;
}
.careers-header h1 {
font-size: 1.9rem;
}
.careers-header p {
font-size: 0.95rem;
line-height: 1.5;
}
.career-card {
padding: 1.6rem;
}
.career-card h2 {
font-size: 1.25rem;
}
.career-card p {
font-size: 0.9rem;
}
.career-card button {
width: 100%;
text-align: center;
font-size: 0.9rem;
}
}
@media (max-width: 420px) {
.careers-header h1 {
font-size: 1.7rem;
}
.career-card h2 {
font-size: 1.15rem;
}
.career-card p {
font-size: 0.85rem;
}
.career-card button {
font-size: 0.85rem;
padding: 0.65rem 1.2rem;
}
}






.a-line {
background: rgba(255,255,255,0.06);
border: 2px solid rgba(255,255,255,0.08);
}



.site-footer {
background: #020617 !important;
color: #fff;
padding: 80px 0 0;
font-family: 'Ubuntu Mono', monospace;
}
.footer-container {
max-width: 1300px;
margin: auto;
padding: 0 40px 60px;
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1fr;
gap: 70px;
}
.footer-col h4 {
font-size: 20px;
margin-bottom: 22px;
font-weight: 600;
}
.footer-col p {
font-size: 15px;
line-height: 1.8;
opacity: 0.85;
margin-bottom: 12px;
max-width: 280px;
}
.footer-col ul {
list-style: none;
padding: 0;
}
.footer-col ul li {
margin-bottom: 10px;
}
.footer-col ul a {
color: #fff;
text-decoration: none;
font-size: 15px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-col ul a:hover {
opacity: 1;
transform: translateX(6px);
}
.follow-title {
margin-top: 30px;
}
.footer-social {
display: flex;
gap: 10px;
margin-top: 10px;
}
.footer-social a  {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 1rem;
margin-right: 10px;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
}
.footer-social a:hover {
background-color: #ffffff;
color: #3B82F6;
transform: scale(1.1);
box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.footer-bottom {
text-align: center;
font-size: 14px;
opacity: 0.6;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul a {
position: relative; 
color: #fff;
text-decoration: none;
font-size: 15px;
opacity: 0.85;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-col ul a::after {
content: "";
position: absolute;
left: 50%;
bottom: -4px;
width: 0;
height: 2px;
background: #ffffff;
transform: translateX(-50%);
transition: width 0.3s ease;
}
.footer-col ul a:hover {
opacity: 1;
transform: translateX(6px);
}
.footer-col ul a:hover::after {
width: 100%;
}

.site-footer {
position: relative;
overflow: hidden;
background: radial-gradient(circle at top left, #3B82F6, #0b0322 70%);
}
.site-footer::before {
content: "";
position: absolute;
top: -120px;
left: -120px;
width: 420px;
height: 420px;
background: radial-gradient(circle at top left, #3B82F6, #0b0322 70%);
clip-path: polygon(
50% 0%,
90% 20%,
100% 60%,
75% 100%,
25% 100%,
0% 60%,
10% 20%
);
z-index: 0;
}
.site-footer::after {
content: "";
position: absolute;
bottom: -140px;
right: -140px;
width: 360px;
height: 360px;
background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(11,3,34,0.85));
clip-path: polygon(
25% 5%, 75% 5%,
100% 50%, 75% 95%,
25% 95%, 0% 50%
);
z-index: 0;
}
.footer-container,
.footer-bottom {
position: relative;
z-index: 2;
}
.site-footer::before,
.site-footer::after {
filter: blur(1px);
}
@media (max-width: 900px) {
.site-footer {
padding-top: 60px;
}
.footer-container {
grid-template-columns: 1fr 1fr;
gap: 40px;
padding: 0 20px 40px;
}
.footer-col h4 {
font-size: 18px;
margin-bottom: 16px;
}
.footer-col p {
font-size: 14px;
max-width: 100%;
}
.footer-col ul a {
font-size: 14px;
}
.footer-social {
justify-content: flex-start;
}
}
@media (max-width: 600px) {
.footer-container {
grid-template-columns: 1fr;
text-align: left;
gap: 35px;
}
.footer-col p {
margin: 0 auto 12px;
}
.footer-col ul {
display: flex;
flex-direction: column;
align-items: left;
}
.footer-col ul a:hover {
transform: none;
}
.footer-social {
justify-content: left;
}
.footer-social a {
width: 44px;
height: 44px;
font-size: 1.1rem;
}
.footer-bottom {
font-size: 13px;
padding: 16px 10px;
}
}
@media (max-width: 420px) {
.footer-col h4 {
font-size: 17px;
}
.footer-col p,
.footer-col ul a {
font-size: 19px;
}
.footer-social a {
width: 42px;
height: 42px;
}
.site-footer::before,
.site-footer::after {
opacity: 0.4;
transform: scale(0.75);
}
}










/* APPLY SECTION */
.apply-section {
  background: #0F172A;
  padding: 10px 80px;
  color: #fff;
  font-family: 'Ubuntu Mono', monospace;
}
.apply-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.apply-visual {
  position: relative;
  min-height: 380px;
}
.poly {
  position: absolute;
background: radial-gradient(circle at top left, #010519, #3B82F6 80%);
  opacity: 0.6;
  clip-path: polygon(
    25% 5%, 75% 5%,
    100% 50%, 75% 95%,
    25% 95%, 0% 50%
  );
}
.poly-lg {
  width: 260px;
  height: 260px;
  top: 40px;
  left: 40px;
}
.poly-md {
  width: 190px;
  height: 190px;
  top: 160px;
  left: 180px;
  opacity: 0.4;
}
.poly-sm {
  width: 120px;
  height: 120px;
  top: 10px;
  left: 210px;
  opacity: 0.3;
}
.apply-form-box {
background: rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 50px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
    margin-bottom: 30px;
}
.apply-form-box h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.apply-form-box p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.apply-form textarea {
  height: auto;
  min-height: 120px;
}
.styled-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.styled-select option {
  background: #000;
  color: #fff;
}
.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 1px rgba(138,43,226,0.4);
}
.apply-form button {
  margin-top: 10px;
  padding: 14px;
border: 1px solid #3B82F6;
background: #3B82F6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  border-radius: 999px;
}
.apply-form button:hover {
  transform: translateY(-2px);
box-shadow:
0 5px 20px rgba(59, 130, 246, 0.6);
}
@media (max-width: 900px) {
  .apply-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .apply-visual {
    display: none;
  }
  .apply-section {
    padding: 80px 30px;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .apply-form-box {
    padding: 35px 25px;
  }
  .apply-form-box h2 {
    font-size: 2rem;
  }
}







/* Container */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start; 
    gap: 12px;
}
.contact-icon {
    color: #3B82F6;
    font-size: 1.2rem;
    margin-top: 1px;
}
.contact-item p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}
.contact-email {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.contact-email:hover {
    color: #3B82F6;
}