:root {
    --primary-color: #000; /* black */
    --accent-color: #c1001f; /* red */
    --dropdown-bg: #000;
}

/* Body */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;

    background: #f8f8f8;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}
.top-bar a:hover { color: var(--accent-color); }
.top-bar .divider {
    border-left: 1px solid rgba(255,255,255,0.4);
    margin: 0 10px;
    height: 16px;
}

/* Main Navbar */
.navbar-custom {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px 15%;
    transition: all 0.3s ease;
}
.navbar-custom .navbar-brand img { height: 60px; }
.navbar-custom .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    transition: 0.3s;
}
.navbar-custom .nav-link:hover { color: var(--accent-color) !important; }
.navbar-custom .btn-careers {
    background: var(--accent-color);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}
.navbar-custom .btn-careers:hover { background: #000; }

/* Dropdown Styles */
.navbar .dropdown-menu {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: block;
    visibility: hidden;
    background: var(--dropdown-bg);
}
.navbar .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.navbar .dropdown-item:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateX(5px);
}

/* Dropdown animation */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

/* Triangle pointer for dropdown */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--dropdown-bg) transparent;
}

/* Alignment for dropdowns */
.navbar .nav-item.dropdown:nth-child(1) .dropdown-menu { left: 0; }
.navbar .nav-item.dropdown:nth-child(3) .dropdown-menu { right: 0; }

/* Mobile adjustments */
@media(max-width: 991px){
    .navbar-custom { padding: 10px 5%; }
    .navbar .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        background: var(--primary-color) !important;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .navbar .dropdown-item { padding-left: 30px; }
    .navbar .dropdown-menu::before { display: none; }
    .navbar-toggler { border: none; }
    .navbar-toggler-icon i { font-size: 24px; color: #000; }
}

@media (max-width: 991px) {

    /* BODY FIX */
    body {
        padding-top: 0;
    }

    /* TOP BAR FIX */
    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px 10px;
        gap: 6px;
    }

    .top-bar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .top-bar a,
    .top-bar i {
        white-space: nowrap;
    }

    /* NAVBAR FIX */
    .navbar-custom {
        padding: 8px 12px;
        border-radius: 0;
        width: 100%;
    }

    .navbar-collapse {
        width: 100%;
        background: #fff;
        padding: 10px 0;
        margin-top: 8px;
        border-radius: 12px;
        overflow-x: hidden;
    }

    /* DROPDOWN RESET (NO SLIDE AT ALL) */
    .navbar .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        background: #000 !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .navbar .dropdown.show .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-item {
        padding: 12px 20px;
        transform: none !important;
    }

    .navbar .dropdown-menu::before {
        display: none;
    }
}






:root{
  --primary:#c60000;
  --dark:#0f0f0f;
  --text:#444;
  --muted:#777;
  --light:#f6f7f9;
}

body{
  font-family:'Inter',sans-serif;
}

/* ================= HERO ================= */
.team-hero{
  padding:50px 0;
  background:linear-gradient(90deg,#fff 55%, #f4f4f4 45%);
}

.team-hero h1{
  font-size:52px;
  font-weight:800;
  color:var(--dark);
}

.team-hero span{ color:var(--primary); }

.team-hero p{
  font-size:18px;
  max-width:620px;
  margin-top:20px;
  color:var(--text);
}

.hero-image{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* ================= LEADERS ================= */
.leaders{
  padding:100px 0;
  background:#fff;
}

.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 70px;
}

.section-title h2{
  font-size:40px;
  font-weight:800;
  color:var(--dark);
}

.section-title p{
  font-size:17px;
  color:var(--muted);
  margin-top:12px;
}

/* LEADER CARD */
.leader-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  height:100%;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.leader-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.leader-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 30%, rgba(0,0,0,.8));
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.leader-overlay h3{
  font-size:22px;
  font-weight:700;
}

.leader-overlay span{
  font-size:14px;
  color:#ffb3b3;
}

.leader-overlay p{
  font-size:14px;
  margin-top:10px;
  opacity:.9;
}

/* ================= TEAM GRID ================= */
.team-members{
  padding:100px 0;
  background:var(--light);
}

.member-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:.3s;
  height:100%;
}

.member-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.member-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.member-info{
  padding:22px;
}

.member-info h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:4px;
}

.member-info span{
  font-size:14px;
  color:var(--primary);
}

.member-info p{
  font-size:14px;
  color:var(--text);
  margin-top:10px;
}

/* ================= CTA ================= */
.team-cta{
  margin-top:90px;
  background:linear-gradient(135deg,#111,#000);
  color:#fff;
  padding:80px 40px;
  border-radius:20px;
  text-align:center;
}

.team-cta h2{
  font-size:38px;
  font-weight:800;
}

.team-cta p{
  max-width:650px;
  margin:15px auto 30px;
}

.team-cta a{
  padding:14px 40px;
  background:var(--primary);
  color:#fff;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
}

.team-cta a:hover{
  background:#a30000;
}

/* RESPONSIVE */
@media(max-width:768px){
  .team-hero h1{font-size:38px;}
  .section-title h2{font-size:30px;}
}








/******************footer*********************/



.footer{
  background:linear-gradient(180deg,#4b4b4b,#3b3b3b);
  color:#dcdcdc;
  padding:70px 20px 0;
  font-family:Arial, sans-serif;
  position:relative;
  overflow:hidden;
}

/* soft glow */
.footer::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top,#ffffff12,transparent 60%);
  pointer-events:none;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* COLUMNS */
.footer-column{
  flex:1 1 250px;
  min-width:220px;
  animation:footerFade .9s ease forwards;
  opacity:0;
  transform:translateY(30px);
}

.footer-column:nth-child(1){animation-delay:.1s}
.footer-column:nth-child(2){animation-delay:.25s}
.footer-column:nth-child(3){animation-delay:.4s}
.footer-column:nth-child(4){animation-delay:.55s}

@keyframes footerFade{
  to{opacity:1;transform:translateY(0);}
}

/* HEADINGS */
.footer-column h3{
  font-size:18px;
  margin-bottom:18px;
  color:#fff;
  position:relative;
}

.footer-column h3::after{
  content:'';
  width:40px;
  height:2px;
  background:#e60012;
  position:absolute;
  left:0;
  bottom:-8px;
  transition:width .4s ease;
}

.footer-column:hover h3::after{
  width:70px;
}

/* LINKS */
.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-column ul li{
  margin-bottom:10px;
}

.footer-column ul li a{
  text-decoration:none;
  color:#dcdcdc;
  font-size:14px;
  position:relative;
  padding-left:0;
  transition:all .35s ease;
}

.footer-column ul li a::before{
  content:'›';
  position:absolute;
  left:-12px;
  opacity:0;
  color:#e60012;
  transition:all .35s ease;
}

.footer-column ul li a:hover{
  color:#fff;
  padding-left:12px;
}

.footer-column ul li a:hover::before{
  opacity:1;
  left:0;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:14px;
  margin-top:14px;
  flex-wrap:wrap;
}

.social-icons img{
  width:38px;
  height:38px;
  background:#ffffff20;
  padding:8px;
  border-radius:8px;
  transition:all .4s ease;
}

.social-icons img:hover{
  background:#e60012;
  transform:translateY(-6px) scale(1.05);
  box-shadow:0 10px 25px #e6001240;
}

/* BUTTON */
.contact-btn{
  display:inline-block;
  margin-top:20px;
  background:linear-gradient(135deg,#e60012,#ff2c3d);
  color:#fff;
  padding:13px 30px;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
  letter-spacing:.5px;
  transition:all .4s ease;
  box-shadow:0 10px 30px #e6001233;
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px #e6001260;
  color:#fff;
}

/* BOTTOM BAR */
.footer-bottom{
  text-align:center;
  font-size:13px;
  color:#c0c0c0;
  margin-top:60px;
  background:#2f2f2f;
  padding:16px 10px;
  position:relative;
}

.footer-bottom::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  width:0;
  height:2px;
  background:#e60012;
  transform:translateX(-50%);
  animation:bottomLine 1.2s ease forwards;
}

@keyframes bottomLine{
  to{width:120px;}
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-container{gap:30px;}
}

@media(max-width:600px){
  .footer{
    padding:50px 15px 0;
    text-align:center;
  }
  .footer-column h3::after{
    left:50%;
    transform:translateX(-50%);
  }
  .social-icons{
    justify-content:center;
  }
}

