/* styles.css */
/* Theme variables */
:root{
  --bg:#080808;
  --panel:#0f0f0f;
  --accent:#d90429;
  --muted:#bdbdbd;
  --glass: rgba(255,255,255,0.03);
  --radius:14px;
  --max-width:1200px;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  color-scheme: dark;
}

*{
  box-sizing:border-box
}

html,body{
  height:100%;
  margin:0;
  background:linear-gradient(180deg,var(--bg) 0%, #050505 100%);
  /* color:#eee; */
  scroll-behavior:smooth
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo img {
  height: 40px;
  width: auto;
  /* border-radius: 20px; */
}


a{
  color:inherit;
  text-decoration:none
}
/* img{
  max-width:100%;display:block
} */

/* NAV */
.nav{
  position:fixed;
  left:0;right:0;
  top:14px;display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 28px;
  z-index:60;
  backdrop-filter: blur(6px);
   border-bottom: 3px solid red;
}
.logo{
  font-weight:700;
  letter-spacing:1px;
  color:var(--accent);
  font-size:20px;
  cursor:pointer
}
.nav-links{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center
}
.nav-links a{
  padding:8px 12px;
  border-radius:8px;
  color:var(--muted)
}
.nav-links a:hover{
  color:red;
  background:rgba(255,255,255,0.03)
}
.cta{
  background:linear-gradient(90deg,var(--accent),#ff3b3b);
  padding:8px 14px;
  border-radius:10px;
  color:#fff;
  font-weight:600
}
.mobile-toggle{
  display:none;
  background:transparent;
  border:none;
  color:#fff;
  font-size:20px
}

/* Mobile nav: hide by default, show when .open applied */
@media (max-width: 980px) {
  /* Force toggle visible */
  .mobile-toggle { display: block; }

  /* Hide wrapper by default on mobile */
  .nav-links-wrap {
    display: none;            /* hidden until open */
    position: relative;
  }

  /* When .nav has .open OR nav-links-wrap has .open — show dropdown */
  .nav.open .nav-links-wrap,
  .nav-links-wrap.open {
    display: flex !important;
    position: absolute;
    top: 64px;                /* adjust if your header height is different */
    right: 16px;
    left: auto;
    background: rgba(15,15,15,0.98);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    min-width: 220px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
  }

  /* make links stack and visible */
  .nav-links-wrap .nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links-wrap .nav-links a {
    color: #fff;              /* ensure visible on dark bg */
    padding: 10px 12px;
    display: block;
    border-radius: 8px;
    text-decoration: none;
  }

  .nav-links-wrap .nav-links a:hover,
  .nav-links-wrap .nav-links a:focus {
    background: rgba(255,255,255,0.04);
    color: #ff6666;
    outline: none;
  }
   .cta {
    display: none !important;
  }
}


/* NEW CODE */
/* services */
/* -------- TITLES -------- */
/* .our-services-title {
    text-align: center;
    font-size: 34px;
    margin: 30px 0;
    font-weight: 700;
    color: red;
}
.cards-grid {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

/.card {
    background: white;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.center-img {
    display: block;
    margin: 0 auto 15px auto;
    width: 70%;
    max-width: 180px;
}

.card-title {
    font-size: 20px;
    margin: 10px 0;
    color: red;
}

.card-text {
    font-size: 15px;
    color: #555;
}*/

/* -------- BUTTON -------- */
/*.learn-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #333;
} */


/* -------- MOBILE RESPONSIVE -------- */
/* @media(max-width: 768px) {
    .cards-grid
    {
        grid-template-columns: 1fr;
    }
} */

/* SERVICES */
/* -------- TITLES -------- */
.our-services-title {
    text-align: center;
    font-size: 34px;
    margin: 30px 0;
    font-weight: 700;
    color: red;
}

/* -------- GRID -------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

/* -------- CARDS -------- */
.card {
    background: white;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.3s ease;

    /* ⭐ Make all cards same height */
    height: 500px;  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.center-img {
    display: block;
    /* width: 70%; */
    /* max-width: 180px; */
    /* height: 150px;         */
     /* ⭐ Equal image height */

     width: 90%;
  max-width: 300px;
  height: 250px;
    object-fit: contain;   /* Prevents image distortion */
    margin: 0 auto 10px auto;
}
/* .big-img{
  width: 900%;
  max-width: 300px;
  height: 250px;
   object-fit: contain;    Prevents image distortion 
    margin:5px;

} */

.card-title {
    font-size: 20px;
    margin: 10px 0;
    color: red;
}

.card-text {
    font-size: 15px;
    color: #555;
    padding: 0 5px;
}

/* -------- BUTTON -------- */
.learn-btn {
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.learn-btn:hover {
    background: #333;
}

/* -------- RESPONSIVE -------- */
@media(max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .card {
        height: auto;
    }

    
}




/* ABOUT *//* ================= ABOUT SECTION ================= */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Title */
.about-title {
  color: #ff0000;
  font-size: 3rem;
  margin-bottom: 60px;
  animation: fadeUp 1s ease forwards;
}

/* Cards rows */
.cards-row, .values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Individual Card */
.about-card{
  background-color: #111;
  border: 2px solid #ff0000;
  padding: 25px;
  border-radius: 15px;
  width: 600px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card {
  background-color: #111;
  border: 2px solid #ff0000;
  padding: 25px;
  border-radius: 15px;
  width: 300px;

  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover, .value-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff0000;
}

.about-card h2, .value-card h {
  color: #ff0000;
  margin-bottom: 12px;
}

/* Values intro paragraph */
.values-intro {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 15px;
  animation: fadeUp 1s ease forwards;
}

/* Values Heading */
.values-title {
  color: #ff0000;
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

/* Animations */
.animate-text, .animate-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .cards-row, .values-row {
    flex-direction: column;
    align-items: center;
  }
  .about-card, .value-card {
    width: 90%;
  }
}

/* client */

.clients-bottom-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
   background: white;
  /* background: #000; */
   /* black background */
  padding: 10px 0;
}

.client-track {
  display: flex;
  gap: 10px;
  animation: scrollLeft 30s linear infinite;
}

.client-item {
  flex: 0 0 auto;
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); optional: makes images white on black background */
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional: pause scroll on hover */
.clients-bottom-strip:hover .client-track {
  animation-play-state: paused;
}



/* CONTACT */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

.contact-section {
  padding: 50px 20px;
}

.eyebrow {
  color: red;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-left, .contact-right {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item p {
  margin: 0;
  font-size: 1rem;
}

.map {
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: red;
  transform: scale(1.2);
}

.contact-right h2 {
  color: red;
  margin-bottom: 20px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input, 
.contact-right textarea {
  padding: 12px;
  border: 2px solid red;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 1rem;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #aaa;
}

.contact-right button {
  padding: 12px;
  background: red;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.contact-right button:hover {
  transform: scale(1.05);
}

.animate-card {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

@media(max-width: 768px){
  .contact-wrapper {
    flex-direction: column;
  }
}

/* HERO */

/* ---------------- HERO SECTION ---------------- */

.hero {
  width: 100%;
  min-height: 80vh;
  padding: 70px 20px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

/* MAIN CONTENT */
.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
}

.hero h1 span {
  color: red;
  font-weight: 800;
}

.hero h4 {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero p.lead {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #c9c9c9;
}

/* BUTTONS */
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero-actions a {
  padding: 12px 26px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-actions .primary {
  background: red;
  color: #fff;
}

.hero-actions .primary:hover {
  background: #c40000;
}

.hero-actions .secondary {
  border: 2px solid red;
  color: red;
}

.hero-actions .secondary:hover {
  background: red;
  color: white;
}

/* STATS CONTAINER */
.stats {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat {
  text-align: center;
}

.counter {
  font-size: 36px;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: red;
}

.stat .muted {
  font-size: 15px;
  color: #bfbfbf;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero h4 {
    font-size: 18px;
  }
  .stats {
    flex-direction: column;
    gap: 20px;
  }
}


/* FOOTER */
footer{
  padding:24px;
  text-align:center;
  color:var(--muted);
  font-size:14px
}

/* Decorations & animations */
.accent-orb{
  position:fixed;
  right:-120px;
  top:60%;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle at 20% 20%, rgba(217,4,41,0.18), 
         transparent 40%), linear-gradient(135deg, rgba(217,4,41,0.04), 
         transparent);
  pointer-events:none;
  filter:blur(28px);
  z-index:0;
  transition:transform .15s
}
.reveal{
  opacity:0;
  transform:translateY(18px) scale(.995);
  transition:all .7s cubic-bezier(.2,.9,.2,1)
}
.reveal.in-view{
  opacity:1;
  transform:none
}

/* Responsive */
@media (max-width:980px){
  .hero{grid-template-columns:1fr; padding:110px 5vw 64px}
  .about-wrapper{grid-template-columns:1fr}
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .hero-card{order:2}
}

/* Accessibility focus */
a:focus, 
button:focus,
 input:focus, 
 textarea:focus{
  outline:3px solid rgba(217,4,41,0.22);outline-offset:2px
}



