: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{
  --red:#ff002a;
  --black:#000;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  background:#fff;
  color:#222;
  line-height:1.7;
}

/* ================= HERO ================= */
.hero{
  background: radial-gradient(circle at top right, #33000f, #000);
  padding: 150px 20px;
  color: #fff;
}

.hero-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1{
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-content span{color:var(--red);}

.hero-content p{
  margin: 24px 0 34px;
  font-size: 18px;
  opacity: 0.92;
}

.hero-btn{
  display:inline-block;
  padding:16px 46px;
  background:linear-gradient(120deg,#ff002a,#c3001f);
  color:#fff;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
}

.hero-image img{
  height:430px;
  object-fit:cover;
  border-radius:30px;
}

/* ================= SECTION TITLE ================= */
.title{
  text-align:center;
  max-width:760px;
  margin:100px auto 60px;
}

.title h2{
  font-size:40px;
  font-weight:800;
}

.title span{color:var(--red);}

.title p{margin-top:10px;color:#666}



/* ================= MODERN PROCESS ================= */
.process-section{
  background:radial-gradient(circle at top,#1a0005,#080000);
  padding:100px 20px;
  color:#fff;
}

.process-section .title{
  text-align:center;
  margin-bottom:70px;
}

.process-section h2{
  font-size:40px;
  font-weight:800;
}

.process-section span{
  background:linear-gradient(135deg,#c1001f,#ff4d6d);
  -webkit-background-clip:text;
  color:transparent;
}
/* ================= ADVANCED PROCESS SECTION ================= */
.process-section {
  padding: 80px 20px;
  background: linear-gradient(160deg,#000000,#000000);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.process-section .title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.process-section .title span {
  background: linear-gradient(135deg,#c1001f,#ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-section .title p {
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Timeline Layout */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.process-timeline::before {
  content:'';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #c1001f, #ff4d6d);
  border-radius: 2px;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-num {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c1001f,#ff4d6d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(255,77,109,.15);
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,77,109,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.process-icon img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.process-step:hover .process-icon {
  transform: scale(1.15) rotate(5deg);
}

.step-content {
  max-width: 400px;
  background: rgba(255,255,255,0.08);
  padding: 20px 25px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.step-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
}

.step-content p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

.process-step:hover .step-content {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* Responsive */
@media(max-width:768px){
  .process-step, .process-step:nth-child(even){
    flex-direction: column !important;
    text-align: center;
  }
  .process-timeline::before{
    left: 30px;
  }
}


/* ICON STYLING */
.why-icon-new{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  position:relative;
}

.icon-circle, .icon-square, .icon-triangle, .icon-star{
  width:50px;
  height:50px;
  margin:auto;
  position:relative;
  top:10px;
  transition: all 0.4s ease;
}

/* Circle Icon */
.icon-circle{
  border-radius:50%;
  background: linear-gradient(135deg,#ff002a,#c1001f);
  box-shadow:0 0 15px #ff002a;
}

/* Square Icon */
.icon-square{
  background: linear-gradient(135deg,#ff002a,#c1001f);
  box-shadow:0 0 15px #ff002a;
}

/* Triangle Icon */
.icon-triangle{
  width:0;
  height:0;
  border-left:25px solid transparent;
  border-right:25px solid transparent;
  border-bottom:50px solid #ff002a;
  filter: drop-shadow(0 0 10px #ff002a);
}

/* Star Icon */
.icon-star{
  position: relative;
  display:inline-block;
  color:#ff002a;
  width:50px;
  height:50px;
  background: #ff002a;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  box-shadow:0 0 15px #ff002a;
}

/* Hover Animations */
.why-card-new:hover .icon-circle,
.why-card-new:hover .icon-square,
.why-card-new:hover .icon-triangle,
.why-card-new:hover .icon-star{
  transform: scale(1.3) rotate(10deg);
}

/* Text */
.why-card-new h4{
  font-size:22px;
  margin-bottom:12px;
  color:#ff002a;
}

.why-card-new p{
  font-size:15px;
  color:#ccc;
  line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
  .why-grid-new{
    grid-template-columns:1fr;
  }
}


/* ================= CTA ================= */
.cta-new{
  background:radial-gradient(circle,#ff002a,#000);
  padding:120px 20px;
  text-align:center;
  color:#fff;
}

.cta-new h2{font-size:42px;font-weight:800;}
.cta-new a{
  display:inline-block;
  margin-top:25px;
  padding:16px 50px;
  background:#fff;
  color:#000;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
}












/* ================= MODERN SERVICES ================= */
:root {
  --red: #c1001f;
  --red-gradient: linear-gradient(135deg,#c1001f,#ff4d6d);
  --black: #0b0b0b;
}

.services-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

.services-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-title h2 {
  font-size: 42px;
  font-weight: 800;
}

.services-title span {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.services-title p {
  max-width: 640px;
  margin: 14px auto 0;
  color: #555;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 24px;
  background: #111; /* black theme */
  color: #fff;
  transition: 0.35s ease;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--red-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.25;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-gradient);
  margin: 0 auto 22px;
  font-size: 32px;
  transition: 0.35s;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.15);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}







  /* ================= WHY ================= */
.why{
  background:linear-gradient(160deg, #0d0004, #000);
  padding:100px 20px;
  color:#fff;
  margin-top:100px;
}

/* Grid Layout */
.why-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:36px;
}

/* Card */
.why-box{
  background:#0b0b0b;
  border-radius:28px;
  border:1px solid rgba(255,0,46,.25);
  overflow:hidden;
  padding-bottom:35px;
  text-align:center;
  transition:0.4s;
  box-shadow:0 0 0 rgba(255,0,46,0);
  position:relative;
}

/* Image Area */
.why-img{
  height:170px;
  overflow:hidden;
  border-bottom:2px solid rgba(255,0,46,.3);
}

.why-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

/* Hover Animations */
.why-box:hover img{
  transform:scale(1.15);
}

.why-box:hover{
  transform:translateY(-12px);
  box-shadow:0 0 55px rgba(255,0,46,.45);
  border-color:var(--red);
}

/* Text */
.why-box h4{
  color:var(--red);
  margin-top:22px;
  font-size:20px;
  font-weight:700;
}

.why-box p{
  margin-top:8px;
  opacity:0.85;
  padding:0 20px;
  font-size:15px;
}

/* Responsive */
@media(max-width:600px){
  .why{
    padding:70px 20px;
  }
  
  .why-box{
    padding-bottom:28px;
  }

  .why-img{
    height:150px;
  }
}






  
/* ================= INDUSTRIES NEW ================= */
.industry-section{
  padding:90px 20px;
  background:#ffffff;
  color:#fff;
}

.industry-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.industry-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,0,46,.35);
  backdrop-filter:blur(8px);
  transition:.4s;
}

.industry-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  opacity:.85;
  transition:.4s;
}

.industry-card:hover img{
  opacity:1;
  transform:scale(1.08);
}

.industry-content{
  padding:20px;
  color:#000000;
  font-size:16px;
  font-weight:600;
  text-align:center;
}

.industry-card:hover{
  box-shadow:0 0 45px rgba(255,0,46,.5);
  transform:translateY(-12px);
}









  /* ================= FEATURED DIGITAL MARKETING ================= */
.feature-section{
  background:#000;
  padding:100px 20px;
  color:#fff;
  font-family:'Poppins',sans-serif;
}

.feature-section .title h2{
  font-size:42px;
  font-weight:800;
  margin-bottom:60px;
  text-align:center;
}

.feature-section .title span{
  color:#ff002a;
}

/* GRID */
.feature-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.feature-card{
  background:linear-gradient(135deg,rgba(255,0,46,0.1),rgba(255,77,109,0.05));
  padding:30px;
  border-radius:24px;
  border:1px solid rgba(255,0,46,0.25);
  text-align:center;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.feature-card:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 60px rgba(255,0,46,0.3);
}

/* IMAGE FIX */
.feature-img{
  width:100%;
  height:160px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:12px;
}

/* TEXT */
.feature-card h4{
  font-size:20px;
  margin-bottom:12px;
  font-weight:700;
}

.feature-card p{
  font-size:15px;
  color:#ccc;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 600px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  .feature-img{
    height:180px;
  }
}





  /* ================= DIGITAL MARKETING POPUP ================= */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.popup-box{
  width:900px;
  max-width:95%;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  animation:popupScale .3s ease;
}

@keyframes popupScale{
  from{transform:scale(.85);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.popup-left img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.popup-right{
  padding:40px;
  position:relative;
}

.popup-right h2{
  font-size:30px;
  font-weight:800;
  color:#000;
}

.popup-right p{
  margin:10px 0 25px;
  color:#555;
  font-size:15px;
}

.popup-right form input,
.popup-right form select,
.popup-right form textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  outline:none;
}

.popup-right form input:focus,
.popup-right form textarea:focus,
.popup-right form select:focus{
  border-color:#ff002a;
}

.popup-right form button{
  width:100%;
  padding:14px;
  background:linear-gradient(120deg,#ff002a,#c3001f);
  color:#fff;
  font-size:16px;
  font-weight:700;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:.3s;
}

.popup-right form button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(255,0,46,.45);
}

.popup-close{
  position:absolute;
  top:14px;
  right:18px;
  font-size:28px;
  cursor:pointer;
  color:#000;
}

/* MOBILE */
@media(max-width:768px){
  .popup-box{
    grid-template-columns:1fr;
  }
  .popup-left{
    display:none;
  }
}







.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;
  }
}
