/* ================= ROOT ================= */
:root {
  --yellow: #ffc451;
  --dark: #0b0b0b;
  --text-dark: #111827;
  --text-muted: #6b7280;
}

/* ================= BASE ================= */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.custom-navbar {
  background-color: #000 !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  padding: 14px 0;
}

.navbar {
  background-color: #000 !important;
}

/* Navbar CTA Button */
.nav-cta {
  border-radius: 30px;
  font-size: 14px;
  padding: 8px 22px;
  box-shadow: 0 6px 18px rgba(255, 196, 81, 0.45);
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-cta:hover {
  background-color: #ffb703;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 196, 81, 0.6);
}


/* BRAND TEXT */
.brand-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.brand-white {
  color: #ffffff !important;
  font-weight: 900;
}

.brand-yellow {
  color: #ffc451 !important;
  font-weight: 900;
  margin-left: 0; /* 🔥 REMOVE GAP */
}

/* Nav links */
.custom-navbar .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  margin-left: 24px;
  opacity: 1 !important;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--yellow) !important;
}

/* NEW HERO SECTION */
.hero-new{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#facc15,#fbbf24);
  text-align:center;
  padding:100px 20px 60px;
}

/* TITLE */
.hero-title{
  font-size:clamp(2.2rem,5vw,4rem);
  font-weight:800;
  color:#111;
  line-height:1.2;
  margin-bottom:20px;
}

/* HIGHLIGHT */
.hero-title .highlight{
  display:inline-block;
  background:#111;
  color:#facc15;
  padding:8px 20px;
  border-radius:50px;
  margin-top:10px;
}

/* SUBTITLE */
.hero-subtitle{
  font-size:1.1rem;
  color:#1f2937;
  max-width:600px;
  margin:0 auto 30px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

/* MOBILE FIX */
/*@media(max-width:576px){*/
/*  .hero-new{*/
/*    padding-top:120px;*/
/*  }*/

/*  .hero-title{*/
/*    font-size:2.2rem;*/
/*  }*/

/*  .hero-title .highlight{*/
/*    padding:6px 16px;*/
/*  }*/
/*}*/



/* ================= HERO ANIMATION ================= */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SERVICES ================= */
.service-box {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* glow effect */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 200, 80, 0.35),
    rgba(255, 200, 80, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-box:hover::before {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 55px rgba(17, 24, 39, 0.18),
    0 0 0 1px rgba(255, 200, 80, 0.45);
}

/* keep content above glow */
.service-box > * {
  position: relative;
  z-index: 1;
}

/* emoji */
.service-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-box:hover .service-emoji {
  transform: scale(1.25) rotate(6deg);
  filter: drop-shadow(0 6px 14px rgba(255, 180, 60, 0.8));
}

.service-box h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-box p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* check text (no dots) */
.service-check {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-top: 6px;
}


/* ================= INTRO ================= */
#intro {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #facc15, #fbbf24, #fde047);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.intro-content {
  text-align: center;
  animation: pop 0.5s ease;
}

.brand {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1f2933;
}

.tagline {
  margin-top: 6px;
  font-size: 1rem;
  color: #374151;
}

/* loading bar */
.run-bar {
  width: 160px;
  height: 4px;
  background: rgba(0,0,0,0.25);
  margin-top: 18px;
  overflow: hidden;
  border-radius: 10px;
}

.run {
  width: 40%;
  height: 100%;
  background: #111;
  animation: run 0.6s linear infinite;
}

/* hide site initially */
#mainContent {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* animations */
@keyframes pop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes run {
  from { transform: translateX(-100%); }
  to { transform: translateX(260%); }
}

/* ABOUT SECTION */
.about {
  padding:60px 0;
}

/* About heading */
.about h2{
  font-size:32px;
  margin-bottom:15px;
}

/* Paragraph spacing */
.about p{
  font-size:18px;
  line-height:1.6;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #ffc107; /* Yellow */
  border-radius: 15px;
  z-index: -1;
}

.image-wrapper img {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.about-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* Card headings */
.about-card h5{
  font-weight:700;
  margin-bottom:px;
}

/* Card text */
.about-card p{
  margin:0;
  font-size:14px;
  color:#555;
}

.stats-section{
  background:#ffc107;              /* dark background */
  padding:55px 0;
  text-align:center;
}

.stats-section h2{
  color:#111;                /* yellow numbers */
  font-size:40px;
  font-weight:650;
  margin-bottom:8px;
}

.stats-section p{
  color:#111;                /* yellow text */
  font-size:16px;
  font-weight:600;
  margin:0;
}

/* STATS HOVER */
.stats-section .col-md-3{
  transition:0.3s ease;
}

.stats-section .col-md-3:hover{
  transform:translateY(-6px);
}


/* CORE VALUES */
.core-values{
  background:#f8f9fb;
  padding:60px 0;
}

.value-card{
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  height:100%;
}

.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 22px rgba(0,0,0,0.15);
}

.value-card h5{
  font-weight:700;
  margin-bottom:8px;
}

.value-card p{
  font-size:14px;
  color:#666;
  margin:0;
}


/* TEAM SECTION */
.team-section{
  background:#ffffff;
  padding:60px 0;
}

.team-card{
  background:#fff;
  padding:30px 20px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  height:100%;
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 28px rgba(0,0,0,0.15);
}


/* TEAM IMAGE */
.team-card img{
  width:150px;
  height:150px;
  object-fit:cover;
  object-position:center top; /* better face alignment */
  border-radius:50%;
  border:5px solid #ffc107;
  display:block;
  margin:0 auto 15px;
}


/* TEAM TEXT */
.team-card h5{
  font-weight:700;
  margin-bottom:5px;
}

.team-card p{
  color:#777;
  font-size:15px;
  margin:0;
}

.contact{
  background:#f8f9fb;
}

/* Contact items */
.contact-item{
  display:flex;
  align-items:center;
  margin-bottom:18px;
  font-size:15px;
}

/* Yellow circle icons */
.icon-circle{
  width:38px;
  height:38px;
  background:#ffc107;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:12px;
  font-size:18px;
}

/* Form clean style */
.contact-form{
  max-width:100%;
}

.footer{
  background:#0b0b0b;
  color:#fff;
  padding:60px 0 20px;
}

.footer-logo{
  font-weight:700;
  color:#ffc107;
}

.footer-text{
  color:#bbb;
  font-size:14px;
}

.footer h5{
  margin-bottom:15px;
  font-weight:600;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#bbb;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:#ffc107;
}

.footer p{
  color:#bbb;
  font-size:14px;
}

.social-icons a{
  display:inline-block;
  margin-right:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  color:#ffc107;
}

.footer hr{
  border-color:#222;
  margin:30px 0;
}

.footer-bottom{
  font-size:14px;
}

.footer-bottom a{
  color:#bbb;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#ffc107;
}

.email-link {
  color: white;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
