/* Reset */
*{margin:0;padding:0;box-sizing:border-box;font-family:"Poppins",sans-serif}
body{color:#333;line-height:1.6;background:#fff}

/* Navbar */
/* Navbar */
/* Navbar */
.navbar {
    background: transparent;     /* transparent background */
    box-shadow: none;            /* remove shadow */
    position: absolute;          /* sit on top of hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;               /* above hero overlay */
    height: 80px; 
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;   
    height: 100%; 
  }
  
  .logo img {
    height: auto;
    max-width: 160px;
    display: block;
  }
  
  /* Navbar Links */
  .nav-links {
    display: flex;
    gap: 40px;
  }
  
  .nav-links a {
    color: #fff;                 /* white links for hero background */
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff254c;              /* brand color on hover */
  }
  
  .nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
  }
  
  .nav-links a:visited {
    color: #fff;
  }
  
  
  
/* ---- Hero section styles (scoped) ---- */
:root{
  /* replace the path below with your real image path if needed */
  --hero-img: url("/assets/images/Black\ And\ Gold\ Elegant\ Business\ Name\ Facebook\ Cover.png");
  --accent: #ff254c; /* warm orange like image */
  --dark: #0f0f10;
}

.hero-section{
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 40px 20px;
}

/* background image (blurred) */
.hero-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.6);
  transform: scale(1.05);
  z-index: 1;
}

/* existing dark overlay (heavier at bottom) */
.hero-section::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 75%);
  z-index: 2;
}

/* layout container */
.hero-inner{
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 55px auto;
  padding: 30px;
}

/* big stacked headline */
.hero-title{
  font-family: "Montserrat", "Arial", sans-serif;
  line-height: 0.9;
  letter-spacing: 2px;
  margin: 10px 0 22px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 56px;
}

/* make second line slightly thinner and larger spacing */
.hero-title .line-1{ display:block; font-size:48px; color:var(--accent); }
.hero-title .line-2{ display:block; font-size:64px; margin-top:6px; letter-spacing:4px; color:var(--accent); }

/* sub text */
.hero-sub{
  color: #eee;
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.6;
}

/* features row (three cards) */
.hero-features{
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 24px auto 36px;
  flex-wrap: wrap;
}

/* single feature */
.feature{
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px;
  width: 260px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative;
}

/* little orange accent strip bottom like image */
.feature::after{
  content: "";
  position:absolute;
  bottom: -10px;
  left: 18px;
  right: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 8px;
  z-index: 0;
  transform: translateY(6px);
  box-shadow: 0 6px 18px rgba(255,176,0,0.12);
}

/* icon circle */
.feature-icon{
  z-index: 2;
  flex: 0 0 60px;
  height:60px;
  width:60px;
  border-radius:50%;
  background: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #111;
  font-size:22px;
  box-shadow: 0 6px 18px rgba(255,176,0,0.12);
}

/* label text above the orange strip */
.feature-label{
  z-index: 2;
  color: #fff;
  font-weight:700;
  font-size:16px;
  line-height:1.1;
  text-align:left;
}

/* hover */
.feature:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

/* CTA + contact row */
.hero-cta-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  margin-top: 6px;
  flex-wrap:wrap;
}

/* CTA button */
.btn-cta{
  display:inline-block;
  background: var(--accent);
  color: #111;
  font-weight:800;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration:none;
  letter-spacing:1px;
  box-shadow: 0 10px 30px rgba(255,176,0,0.12);
  transition: transform .18s ease;
}
.btn-cta:hover{ transform: translateY(-4px); }

/* small contact mini details */
.contact-mini{
  color: #ddd;
  display:flex;
  gap:18px;
  align-items:center;
  font-size:15px;
}
.contact-mini .contact-item i{ color: var(--accent); margin-right:8px; }

/* Responsive tweaks */
@media (max-width: 1024px){
  .hero-title .line-1{ font-size:40px; }
  .hero-title .line-2{ font-size:52px; }
  .feature{ width: 230px; }
}

@media (max-width: 760px){
  .hero-section{ min-height: 760px; padding: 30px 12px; }
  .hero-title .line-1{ font-size:34px; }
  .hero-title .line-2{ font-size:40px; }
  .hero-sub{ font-size:16px; padding: 0 12px; }
  .hero-features{ flex-direction: column; gap:16px; align-items:center; }
  .feature{ width: 90%; max-width:420px; justify-content:center; text-align:center; flex-direction:column; padding:18px 22px; }
  .feature::after{ left: 40px; right:40px; bottom:-8px; height:14px; }
  .feature-label{ text-align:center; }
  .feature-icon{ margin-bottom:8px; }
  .hero-cta-row{ flex-direction:column; gap:12px; }
}

/* About */
.about{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:30px;max-width:90%;margin:auto;}
.about img{width:100%;border-radius:10px}
.about-text p{
    font-size: 18px;
    margin-bottom: 12px;
}
/* Services */
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px}
.card{background:#fff;padding:25px;text-align:center;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,0.08);transition:transform 0.3s}
.card:hover{transform:translateY(-6px)}
.card i{font-size:2rem;margin-bottom:15px;color:#ff254c}

/* Portfolio Section */


.portfolio-section h1{
  font-size: 50px;
  color: #ff254c;
  text-transform: uppercase;
text-align: center;
padding-bottom: 20px;
}
.portfolio-section {
  padding: 30px 110px;
  background-color: #111;
 
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  justify-items: center;
}

/* Hexagon Style Boxes */
.portfolio-box {
  background: #FFFFFF;
  color: #111;
  text-align: center;
  padding: 10px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transition: 0.3s ease;
  max-width: 350px;
  width: 100%;
}

.portfolio-box:hover {
  
  transform: translateY(-8px);
}

/* Icon */
.portfolio-box i {
  font-size: 45px;
  color: #ff004f;
  margin-bottom: 15px;
}

/* Headings */
.portfolio-box h1{
  font-size: 25px;
  margin: 10px 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

/* Read More Style */
.portfolio-box .read-more {
  font-size: 16px;
  color: #ff004f;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-box .read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
  .portfolio-section{
    padding: 30px 1px;
  }
  .hero h1 {
      font-size: 3rem;
  }
  
}


/* Clients */
.grid-4{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:2px;align-items:center;justify-items:center;text-align: center;}
.grid-4 img{max-width:60px;filter:grayscale(0%);transition:filter 0.3s}
.grid-4 img:hover{filter:grayscale(100%)}
.clients h2{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}
/* Footer */
.site-footer{background:#111;color:#ccc;padding:60px 20px 20px}
.footer-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px;margin-bottom:20px}
.footer-col h3,.footer-col h4{color:#fff;margin-bottom:15px}
.footer-col a{display:block;color:#ccc;margin-bottom:8px;text-decoration:none}
.footer-col a:hover{color:#ff254c}
.footer-col input{padding:10px;width:100%;margin-bottom:10px;border:none;border-radius:6px}
.socials a{margin-right:10px;color:#ccc;font-size:1.2rem}
.socials a:hover{color:#ff254c}
.socials{
    display: flex;
}

.footer-bottom{text-align:center;padding-top:15px;border-top:1px solid rgba(255,255,255,0.1)}

/* Buttons */
.btn{display:inline-block;background:#ff254c;color:#fff;padding:10px 22px;border-radius:3px;text-decoration:none;transition:background 0.3s;font-size: 18px;font-weight: 400;}
.btn:hover{background:#d1183d}
.nav-links .btn {
    background: #ff254c;
    color: #fff; /* text stays white */
    padding: 8px 24px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3)
  }
  .nav-links .btn:hover{
    color: #fff;
    transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 37, 76, 0.4);
  }
@media(max-width:768px){
  .nav-links {
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 70px;             /* below navbar */
    left: 0;
    right: 0;
    background: #fff;
    padding: 0 20px;       /* remove vertical padding (we’ll animate height) */
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    max-height: 0;         /* collapsed */
    opacity: 0;
    transform: translateY(-10px); /* slight upward offset */
    transition: all 0.4s ease-in-out;
    z-index: 999;
    text-align: start;
  }

  .nav-links.active {
    max-height: 400px;     /* enough to fit all links */
    opacity: 1;
    transform: translateY(0);
    padding: 20px;         /* show padding only when open */
  }

    .nav-toggle {
      display: block;
      font-size: 1.8rem;
      cursor: pointer;
      color: #fff;
      z-index: 1000;     /* always above menu */
      position: relative; /* keeps button visible */
      user-select: none;
    }
    .about{
      grid-template-columns: 1fr;
    }
  }
  

  /* Dropdown wrapper */
.dropdown {
    position: relative;
  }
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    cursor: pointer;
  }
  
  /* Submenu */
  .dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #a32525;
    width: 350px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
    z-index: 999;
  }
  .dropdown-menu a {
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .dropdown-menu a:hover {
    background: #f7f7f7;
    color: #ff254c;
  }
  
  /* Show submenu on hover (desktop) */
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  
  /* Mobile fixes */
  @media(max-width:768px){
    .nav-links {
      flex-direction: column;
      gap: 15px;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #ff254c;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      display: none;
    }
    .nav-links.active {
      display: flex;
    }
    .dropdown-menu {
      position: relative;
      top: 0;
      left: 0;
      box-shadow: none;
      padding-left: 15px;
    }
    .dropdown:hover .dropdown-menu {
      display: none; /* disable hover on mobile */
    }
    .dropdown.open .dropdown-menu {
      display: flex; /* open when clicked */
   
    }
    #mobile-btn{
    background: #fff;
    color: #ff254c;
   }
  }
  

 /* Section Layout */
.services-section {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    position: relative;
  }
  
  /* Left Triangle */
  .left-shape {
    width: 260px;
    height: 260px;
    background: #1e5cb3;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slideInLeft 1s ease-out;
  }
  
  /* Circle */
  .circle-box {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    animation: zoomIn 1s ease-out;
  }
  
  .circle-box span {
    font-size: 14px;
    color: #555;
    font-weight: normal;
  }
  
  /* Services List */
  .services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 50px;
  }
  
  /* Dotted Connector Line */
  .connector {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 2px dotted #bbb;
    margin-left: 12px;
  }
  
  /* Service Row */
  .service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    min-width: 280px;
    max-width: 700px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s forwards;
  }
  
  .service-row i {
    margin-left: 12px;
    font-size: 20px;
  }
  
  /* Service Colors + Animation Delay */
  .sourcing { background: #8e44ad; animation-delay: 0.3s; }
  .product-dev { background: #6c5ce7; animation-delay: 0.5s; }
  .merchandising { background: #3498db; animation-delay: 0.7s; }
  .quality { background: #e67e22; animation-delay: 0.9s; }
  .shipment { background: #27ae60; animation-delay: 1.1s; }
  
  /* Animations */
  @keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .services-section {
      flex-direction: column;
      gap: 50px;
    }
  
    .left-shape {
      margin: 0 auto;
    }
  
    .services-list {
      padding-left: 0;
      align-items: center;
    }
  
    .connector {
      display: none; /* Hide dotted line on mobile */
    }
   
  }
  

.grid-4{
    background: #e0e5ec;
    max-width: 500px;
    height: 70px;
    border-radius:50px ;
    margin: auto;
}
  .socials-one {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    transform: translateX(50px);
    animation: fadeInRight 0.8s forwards;
  }
  
  .social-one {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #e0e5ec;
    box-shadow: 6px 6px 10px #c2c8d0, -6px -6px 10px #ffffff;
    font-size: 1.2em;
    cursor: pointer;
  }




  /* Progress Bars */
.skills {
  margin: 20px 0 30px;
}

.skill {
  margin-bottom: 20px;
}

.skill-name {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s forwards;
}

.progress {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 10px;
  transition: width 2s ease-in-out;
}

/* Colors */
.facebook { background: #8e44ad; }   /* Purple */
.audience { background: #f39c12; }   /* Orange */
.creative { background: #000; }      /* Black */

/* Fade In Left Animation */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .skill-name {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .progress {
    height: 6px;
  }
}


/* Newsletter Section */
.newsletter {
  background: #111; /* purple background */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.newsletter-content h4 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
}

.newsletter-content h4::before,
.newsletter-content h4::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 0 10px;
  vertical-align: middle;
}

.newsletter-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.newsletter-content p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 50px 0 0 50px;
}

.newsletter-form button {
  background: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  color: #ff254c;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.newsletter-form button:hover {
  color: #000;
}

.send-icon {
  font-style: normal; /* make the ✈ look clean */
}

/* Responsive */
@media (max-width: 600px) {
  .newsletter-content h3 {
    font-size: 24px;
  }

  .newsletter-content p {
    font-size: 14px;
    padding: 0 10px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 20px;
    overflow: visible;
  }

  .newsletter-form input {
    border-radius: 20px;
    margin-bottom: 10px;
    width: 100%;
  }

  .newsletter-form button {
    border-radius: 20px;
    width: 100%;
    padding: 12px;
  }
}


/* Our Clients Section */
.clients {
  background: #fff;
  padding: 80px 20px;
}

.clients-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.clients-text {
  flex: 1 1 300px;
}

.clients-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.clients-text h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f39c12; /* orange underline */
  margin-bottom: 10px;
}

.clients-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.clients-logos {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.client img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.client img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-container {
    flex-direction: column;
    text-align: center;
  }

  .clients-text h3 {
    font-size: 26px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client img {
    max-width: 100px;
  }
}


/* -------------------------
   Animation Keyframes (your original)
   ------------------------- */
   @keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
  }
  
  @keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
  }
  
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  
  /* -------------------------
     Animation utilities
     ------------------------- */
  /* Start hidden so animation is visually clean */
  .portfolio-box {
    opacity: 0;              /* make sure boxes are invisible until animation runs */
    will-change: transform, opacity;
  }
  
  /* When JS adds .in-view, we attach the animation */
  .in-view.slideInLeft { animation: slideInLeft 0.8s cubic-bezier(.2,.9,.2,1) both; }
  .in-view.zoomIn      { animation: zoomIn      0.7s cubic-bezier(.2,.9,.2,1) both; }
  .in-view.fadeInRight { animation: fadeInRight 0.7s cubic-bezier(.2,.9,.2,1) both; }
  
  /* Delay helpers — combine with element: <div class="portfolio-box slideInLeft delay-03"> */
  .delay-03 { animation-delay: 0.3s; }
  .delay-05 { animation-delay: 0.5s; }
  .delay-07 { animation-delay: 0.7s; }
  .delay-09 { animation-delay: 0.9s; }
  .delay-11 { animation-delay: 1.1s; }
  
  /* Optional: If you used color classes like .sourcing in the other section,
     separate color from animation. If you want the colors, reuse them; otherwise ignore. */
  .sourcing     { background: #8e44ad; }
  .product-dev  { background: #6c5ce7; }
  .merchandising{ background: #3498db; }
  .quality      { background: #e67e22; }
  .shipment     { background: #27ae60; }
  

  /* =========================
   ABOUT PAGE SCOPED STYLES
   ========================= */
.about-page {
  background: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Headings inside About page only */
.about-page h1, 
.about-page h2, 
.about-page h3, 
.about-page h4 {
  margin: 10px 0;
  color: #fff;
}

/* =====================
   About Intro Section
   ===================== */
.about-page .about-intro {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: auto;
}
.about-page .about-intro h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ff004f;
}
.about-page .about-intro p {
  font-size: 18px;
  color: #ddd;
}

/* =====================
   Mission & Values
   ===================== */
.about-page .values {
  padding: 60px 20px;
  text-align: center;
}
.about-page .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.about-page .value-box {
  background: #111;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.about-page .value-box:hover {
  transform: translateY(-10px);
}
.about-page .value-box i {
  font-size: 40px;
  color: #ff004f;
  margin-bottom: 10px;
}

/* =====================
   Stats Section
   ===================== */
.about-page .stats {
  text-align: center;
  padding: 60px 20px;
}
.about-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.about-page .stat h1 {
  font-size: 40px;
  color: #ff004f;
}

/* =====================
   CEO Section
   ===================== */
.about-page .ceo {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}
.about-page .ceo-card {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255,0,79,0.4);
}
.about-page .ceo-card img {
  width: 300px;
  height: 380px;
  object-fit: cover;
}
.about-page .ceo-info {
  padding: 70px;
  flex: 1;
}
.about-page .ceo-info h2 {
  font-size: 28px;
}
.about-page .ceo-info h4 {
  color: #aaa;
  margin-bottom: 20px;
}
.about-page .socials a {
  margin-right: 10px;
  font-size: 22px;
  color: #ff004f;
  transition: 0.3s;
}
.about-page .socials a:hover {
  color: #fff;
}

/* =====================
   CTA Section
   ===================== */
.about-page .cta {
  text-align: center;
  padding: 80px 20px;
  background: #ff004f;
}
.about-page .cta h2 {
  margin-bottom: 20px;
}
.about-page .cta .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #ff004f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}
.about-page .cta .btn:hover {
  background: #111;
  color: #fff;
}

/* =====================
   Animations
   ===================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.about-page .animate-fade { animation: fadeIn 1s ease forwards; }
.about-page .animate-slide { animation: slideIn 1s ease forwards; }
.about-page .animate-zoom { animation: zoomIn 1s ease forwards; }

/* Animation delays */
.about-page .delay-02 { animation-delay: 0.2s; }
.about-page .delay-04 { animation-delay: 0.4s; }
.about-page .delay-06 { animation-delay: 0.6s; }

/* =====================
   Responsive
   ===================== */
@media(max-width: 768px) {
  .about-page .ceo-card { 
    flex-direction: column; 
    text-align: center; 
  }
  .about-page .ceo-card img { 
    width: 100%; 
    height: auto; 
  }
  .about-page .ceo-info {
      padding: 11px;
  }
}


.contact-page {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px;
}

/* Hero */
.contact-page .contact-hero {
  text-align: center;
  padding: 80px 20px 50px;
}
.contact-page .contact-hero h1 {
  font-size: 42px;
  color: #ff004f;
}
.contact-page .contact-hero p {
  font-size: 18px;
  color: #ddd;
}

/* Grid */
.contact-page .contact-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Contact Form */
.contact-page .contact-form h2 {
  margin-bottom: 20px;
  color: #ff004f;
}
.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}
.contact-page .contact-form button {
  background: #ff004f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-page .contact-form button:hover {
  background: #e60045;
}

/* Contact Info */
.contact-page .contact-info h2 {
  margin-bottom: 20px;
  color: #ff004f;
}
.contact-page .contact-info p {
  margin: 10px 0;
}
.contact-page .contact-info i {
  margin-right: 10px;
  color: #ff004f;
}
.contact-page .socials {
  margin-top: 15px;
}
.contact-page .socials a {
  margin-right: 10px;
  font-size: 20px;
  color: #ff004f;
  transition: 0.3s;
}
.contact-page .socials a:hover {
  color: #fff;
}

/* Map */
.contact-page .map iframe {
  width: 100%;
  border-radius: 12px;
  margin-top: 30px;
}

/* Animations */
.contact-page .animate-fade { animation: fadeIn 1s ease forwards; }
.contact-page .animate-slide { animation: slideIn 1s ease forwards; }
.contact-page .animate-zoom { animation: zoomIn 1s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media(max-width: 768px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }
}


.services-page {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding-bottom: 60px;
}

/* Hero */
.services-page .services-hero {
  text-align: center;
  padding: 80px 20px 50px;
}
.services-page .services-hero h1 {
  font-size: 42px;
  color: #ff004f;
}
.services-page .services-hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: auto;
}

/* Services Grid */
.services-page .services-section {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
}
.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 40px;
}

/* Service Card */
.services-page .service-card {
  background: #111;
  padding: 40px; /* bigger box */
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  min-height: 350px;
}
.services-page .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,0,79,0.4);
}
.services-page .service-card i {
  font-size: 50px;
  color: #ff004f;
  margin-bottom: 20px;
}
.services-page .service-card h2 {
  margin: 15px 0;
  color: #ff004f;
  font-size: 22px;
  text-align: center;
}
.services-page .service-card .sub-services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-page .service-card .sub-services li {
  margin: 10px 0;
  color: #ddd;
  font-size: 16px;
}

/* Animations */
.services-page .animate-fade { animation: fadeIn 1s ease forwards; }
.services-page .animate-slide { animation: slideIn 1s ease forwards; }
.services-page .animate-zoom { animation: zoomIn 1s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Animation Delays */
.delay-02 { animation-delay: 0.2s; }
.delay-04 { animation-delay: 0.4s; }
.delay-06 { animation-delay: 0.6s; }
.delay-08 { animation-delay: 0.8s; }
.delay-10 { animation-delay: 1.0s; }
.delay-12 { animation-delay: 1.2s; }
.delay-14 { animation-delay: 1.4s; }
.delay-16 { animation-delay: 1.6s; }

/* Responsive */
@media(max-width: 992px) {
  .services-page .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}
@media(max-width: 600px) {
  .services-page .services-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


.hire-page {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Hero */
.hire-page .hire-hero {
  text-align: center;
  padding: 80px 20px 50px;
}
.hire-page .hire-hero h1 {
  font-size: 42px;
  color: #ff004f;
}
.hire-page .hire-hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: auto;
}

/* Why Hire Us */
.hire-page .why-hire {
  padding: 60px 20px;
  text-align: center;
}
.hire-page .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.hire-page .why-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.hire-page .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,0,79,0.3);
}
.hire-page .why-card i {
  font-size: 40px;
  color: #ff004f;
  margin-bottom: 15px;
}

/* Hire Form */
.hire-page .hire-form {
  max-width: 700px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}
.hire-page .hire-form h2 {
  margin-bottom: 20px;
  color: #ff004f;
}
.hire-page .hire-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hire-page .hire-form input,
.hire-page .hire-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}
.hire-page .hire-form button {
  background: #ff004f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.hire-page .hire-form button:hover {
  background: #e60045;
}

/* CTA */
.hire-page .cta {
  text-align: center;
  padding: 80px 20px;
  background: #ff004f;
}
.hire-page .cta h2 {
  margin-bottom: 20px;
}
.hire-page .why-hire h2{
  color: #FFFFFF;
}
.hire-page .cta .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #ff004f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}
.hire-page .cta .btn:hover {
  background: #111;
  color: #fff;
}

/* Animations */
.hire-page .animate-fade { animation: fadeIn 1s ease forwards; }
.hire-page .animate-slide { animation: slideIn 1s ease forwards; }
.hire-page .animate-zoom { animation: zoomIn 1s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Animation Delays */
.delay-02 { animation-delay: 0.2s; }
.delay-04 { animation-delay: 0.4s; }

/* Responsive */
@media(max-width: 768px) {
  .hire-page .why-grid {
    grid-template-columns: 1fr;
  }
}


.career-page {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Hero */
.career-page .career-hero {
  text-align: center;
  padding: 80px 20px 50px;
}
.career-page .career-hero h1 {
  font-size: 42px;
  color: #ff004f;
}
.career-page .career-hero p {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: auto;
}

/* Why Work With Us */
.career-page .why-work {
  padding: 60px 20px;
  text-align: center;
}
.career-page .work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.career-page .work-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: 0.3s;
}
.career-page .work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,0,79,0.3);
}
.career-page .work-card i {
  font-size: 40px;
  color: #ff004f;
  margin-bottom: 15px;
}

/* Open Positions */
.career-page .open-positions {
  padding: 60px 20px;
  text-align: center;
}
.career-page .positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.career-page .position-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: 0.3s;
}
.career-page .position-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,0,79,0.3);
}
.career-page .position-card h3 {
  color: #ff004f;
  margin-bottom: 10px;
}
.career-page .position-card .btn {
  margin-top: 15px;
  background: #ff004f;
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.career-page .position-card .btn:hover {
  background: #e60045;
}

/* Form */
.career-page .career-form {
  max-width: 700px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}
.career-page .career-form h2 {
  margin-bottom: 20px;
  color: #ff004f;
}
.career-page .career-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.career-page .career-form input,
.career-page .career-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}
.career-page .career-form button {
  background: #ff004f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.career-page .career-form button:hover {
  background: #e60045;
}
.career-page .why-work h2{
  color: #FFFFFF;
}
.career-page .open-positions h2{
  color: #FFFFFF;
}

/* Animations */
.career-page .animate-fade { animation: fadeIn 1s ease forwards; }
.career-page .animate-slide { animation: slideIn 1s ease forwards; }
.career-page .animate-zoom { animation: zoomIn 1s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Delay Helpers */
.delay-02 { animation-delay: 0.2s; }
.delay-04 { animation-delay: 0.4s; }

/* Responsive */
@media(max-width: 768px) {
  .career-page .work-grid,
  .career-page .positions-grid {
    grid-template-columns: 1fr;
  }
}


/* Overlay */
.popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 25px rgba(255,0,79,0.4);
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #ff004f;
}

/* Actions */
.popup-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.popup-btn.whatsapp {
  background: #25D366;
  color: #fff;
}
.popup-btn.call {
  background: #ff004f;
  color: #fff;
}
.popup-btn:hover {
  transform: scale(1.05);
}

/* Animation */
.animate-popup {
  animation: zoomIn 0.4s ease forwards;
}
@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =============================
   Digital Wave Plus Preloader
   ============================= */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #ff004f; /* your orange */
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 15px rgba(255, 176, 0, 0.2);
}

.loader-pulse {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,0,0.15) 0%, transparent 70%);
  animation: pulse 1.5s ease-in-out infinite;
  z-index: 0;
}

.loader-text {
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInText 2s ease-in-out infinite alternate;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

@keyframes fadeInText {
  0% { opacity: 0.3; letter-spacing: 2px; }
  100% { opacity: 1; letter-spacing: 4px; color: #ff004f; }
}

/* ============================
   OUR PLATFORMS SECTION
   ============================ */
   .clients-section {
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
    color: #111;
  }
  
  .section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .section-title span {
    color: #ff004f;
  }
  
  .section-subtitle {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
  }
  
  /* Logo Grid */
  .clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
  }
  
  /* Logo Container */
  .client-logo {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  /* Image Styles */
  .client-logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  /* Slightly smaller icons */
  .small-logo img {
    width: 85px;
    height: 85px;
  }
  
  /* Hover Effect */
  .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .client-logo:hover img {
    transform: scale(1.05);
  }
  
  /* Fade Animation */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .client-logo.show {
    animation: fadeUp 0.8s ease forwards;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
  
    /* 2 icons per row */
    .clients-logos {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  
    .client-logo {
      width: 120px;
      height: 120px;
    }
  
    .client-logo img {
      width: 80px;
      height: 80px;
    }
  
    .small-logo img {
      width: 70px;
      height: 70px;
    }
  }
    
