
:root{
  --primary:#1976B6;
  --dark:#0f172a;
  --muted:#64748b;
  --light:#f4f7fb;
  --white:#ffffff;
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--light);
  color:var(--dark);
}

body{
  cursor:default;
}

.about-box,
.about-box *{
  cursor:default;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,.05);

  box-shadow:
    0 8px 30px rgba(0,0,0,.05);
}

.logo-img{
  height:70px;
  width:auto;
  display:block;
  transition:.3s;
}

.logo-img:hover{
  transform:scale(1.05);
}

.logo span{
  display:block;
  font-size:11px;
  color:#333;
  letter-spacing:3px;
}

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

nav a{
  text-decoration:none;
  color:#0f172a;
  font-weight:700;
  font-size:17px;
  position:relative;
  transition:.25s;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:3px;
  background:#1976B6;
  border-radius:999px;
  transition:.25s;
}

nav a:hover{
  color:#1976B6;
}

nav a:hover::after{
  width:100%;
}

.lang-switch{
  display:flex;
  gap:10px;
  align-items:center;
}

.lang-switch button{
  border:none;
  background:#e8f1f9;
  color:#1976B6;
  padding:11px 18px;
  border-radius:14px;
  cursor:pointer;
  font-weight:800;
  font-size:14px;
  transition:.25s;
}

.lang-switch button:hover{
  transform:translateY(-2px);
}

.lang-switch button.active{
  background:linear-gradient(135deg,#1f8de0,#1976B6);
  color:white;
  box-shadow:0 10px 25px rgba(25,118,182,.3);
}

.lang-switch button.active{
  background:#1976B6;
  color:white;
  box-shadow:0 6px 18px rgba(25,118,182,.35);
}

.hero{
  min-height:92vh;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
  padding:100px 7%;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(3,10,24,.88) 0%, rgba(3,10,24,.72) 45%, rgba(3,10,24,.45) 100%),
    url('https://images.unsplash.com/photo-1553413077-190dd305871c?q=80&w=1800&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  color:white;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  opacity:.9;
}

.hero h1{
  font-size:76px;
  line-height:.95;
  margin:22px 0;
  font-weight:900;
  max-width:900px;
  letter-spacing:-2px;
}

.hero-desc{
  font-size:24px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
  max-width:760px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:38px;
  background:linear-gradient(135deg,#1e88d9,#1976B6);
  color:white;
  padding:18px 34px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:17px;
  box-shadow:0 10px 30px rgba(25,118,182,.35);
  transition:.3s;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(25,118,182,.45);
}

.stats-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:34px;
  padding:38px;
  backdrop-filter:blur(18px);
  box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.stats-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.stats-grid div{
  background:white;
  border-radius:18px;
  padding:20px;
  color:#111;
}

.stats-grid b{
  display:block;
  font-size:34px;
  color:var(--primary);
}

.stats-grid span{
  color:var(--muted);
}

.section{
  padding:55px 5%;
  background:white;
}

.alt{
  background:#edf5fb;
}

.section h2{
  font-size:44px;
  margin-bottom:20px;
}

.lead{
  color:var(--muted);
  max-width:850px;
  font-size:20px;
}

.brands-slider{
  overflow:hidden;
  position:relative;
  width:100%;
  margin-top:50px;
}

.brands-track{
  display:flex;
  gap:25px;
  width:max-content;
  animation:scrollBrands 60s linear infinite;
}

.brands-slider:hover .brands-track{
  animation-play-state:paused;
}

@keyframes scrollBrands{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-33.333%);
  }
}

.brand-card{
  min-width:380px;
  height:240px;
  background:white;
  border-radius:28px;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  transition:.3s;
  flex-shrink:0;
  pointer-events: none;
}
.brand-card,
.brand-card img{
  cursor:default;
  user-select:none;
}

.brand-card img{
  pointer-events:none;
}

.brand-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.brand-card img{
  max-width:260px;
  max-height:140px;
  object-fit:contain;
}

footer{
  background:#071426;
  color:white;
  padding:60px 5%;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
  flex-wrap:wrap;
}

.footer-map{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.footer-map iframe{
  width:100%;
  height:280px;
  border:none;
  display:block;
}

.footer-title{
  font-size:42px;
  font-weight:900;
  margin-bottom:12px;
  color:white;
}

.footer-info{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-item{
  font-size:18px;
  color:#dbe7f3;
  line-height:1.7;
}

.footer-item strong{
  color:#4db2ff;
}

.copy{
  margin-top:50px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#7f97ad;
  font-size:15px;
}

.logo-img{
  height:60px;
  width:auto;
  display:block;
}

.about-box{
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  padding:48px;
  border-radius:30px;
  box-shadow:0 18px 55px rgba(0,0,0,.08);
  max-width:100%;
  margin:0 auto;
}

.section-label{
  color:#1976B6;
  font-weight:900;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:12px;
}

.about-title{
  font-size:52px;
  font-weight:900;
  color:#071426;
  margin-bottom:35px;
  position:relative;
}

.about-title::after{
  content:'';
  width:120px;
  height:6px;
  background:#1976B6;
  border-radius:999px;
  position:absolute;
  left:0;
  bottom:-14px;
}

.follow-text{
  margin-top:18px;
  margin-bottom:10px;
  color:#6fb8ff;
  font-size:18px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.about-layout{
  display:block;
  width:100%;
}

.about-text{
  font-size:21px;
  line-height:2;
  color:#405775;
  max-width:100%;
  text-align:justify;
}
.about-highlights{
  display:grid;
  gap:18px;
}

.about-highlights div{
  background:white;
  border-radius:22px;
  padding:26px;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.about-highlights b{
  display:block;
  font-size:38px;
  color:#1976B6;
}

.about-highlights span{
  color:#64748b;
  font-weight:700;
}


.career-section{
  background:#ffffff;
}

.career-box{
  background:linear-gradient(135deg,#1976B6,#0b416d);
  color:white;
  border-radius:30px;
  padding:55px 65px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 15px 45px rgba(25,118,182,.25);
}

.career-label{
  font-size:13px;
  font-weight:800;
  letter-spacing:3px;
  opacity:.8;
  margin-bottom:12px;
}

.career-box h2{
  font-size:46px;
  margin-bottom:16px;
  color:white;
}

.career-box p{
  font-size:20px;
  line-height:1.6;
  color:#eaf5ff;
}

.career-btn{
  background:white;
  color:#1976B6;
  padding:18px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  white-space:nowrap;
}

.footer-item a{
  color:#dbe7f3;
  text-decoration:none;
  font-weight:700;
}

.footer-item a:hover{
  color:#4db2ff;
  text-decoration:underline;
}

.social-links{
  display:flex;
  gap:22px;
  align-items:center;
}

.social-links a{
  transition:.25s;
}

.social-links a:hover{
  transform:translateY(-5px) scale(1.12);
}

.social-links img{
  width:36px;
  height:36px;
  object-fit:contain;
}

@media(max-width:900px){

.career-box{
  flex-direction:column;
  align-items:flex-start;
  padding:40px 30px;
}
.footer-grid{
  grid-template-columns:1fr;
}

.footer-map iframe{
  height:240px;
}
  .topbar{
    flex-direction:column;
    gap:20px;
  }

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

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

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

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

  .hero{
  grid-template-columns:1fr;
  padding:90px 6%;
  min-height:auto;
}

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

.hero-desc{
  font-size:19px;
}

.topbar{
  padding:18px 5%;
}

nav{
  gap:18px;
}

nav a{
  font-size:15px;
}

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

.about-title{
  font-size:38px;
}

.about-box{
  padding:30px;
}

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

.footer-title{
  font-size:40px;
}

.footer-item{
  font-size:17px;
}
  
}
