/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  padding-top: 80px; /* fixed navbar space */
}

/* ================= NAVBAR ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000;
  z-index: 100000;
  overflow: visible;
}

.header-inner {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO (SIZE INCREASED) */
.logo img {
  height: 75px;   /* 🔥 logo bada */
  width: auto;
}

/* NAV MENU */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;  /* ADD */
  overflow: visible;  
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px; /* spacing balanced */
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 4px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #2cff77;
}

/* ================= MEGA MENU ================= */
.mega-menu {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  background: #fff;
  padding: 25px 40px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: none;
  z-index: 100000;
}
.mega-dropdown {
  position: relative;
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

.mega-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.mega-col h4 {
  color: #e53935;
  margin-bottom: 12px;
  font-size: 16px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 6px;
}

.mega-col ul li a {
  color: #444;
  font-size: 14px;
}

.mega-col ul li a:hover {
  color: #3623dd;
  text-decoration: underline;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-slider,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* HERO OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.tagline-1 {
  font-size: 24px;
  margin-bottom: 8px;
}

.tagline-2 {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-get-started {
  padding: 14px 35px;
  background: linear-gradient(135deg, #2b38cb, #3dc144);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

/* ================= SLIDER ARROWS ================= */
.slider-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-nav span {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
/* ================= WHAT WE DO (FULL PAGE COVER) ================= */
.what-we-do-digitaladdworld {
  position: relative;
  width: 100%;
  min-height: 90vh;          /* PURE SCREEN HEIGHT */
  background: linear-gradient(135deg, #4ee6ea, #2fd3d8);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BIG abstract shapes */
.what-we-do-digitaladdworld::before,
.what-we-do-digitaladdworld::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}

.what-we-do-digitaladdworld::before {
  top: -250px;
  left: -250px;
}

.what-we-do-digitaladdworld::after {
  bottom: -250px;
  right: -250px;
}

/* Inner content */
.what-we-do-inner {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  position: relative;
  z-index: 2;
}

.what-we-do-content {
  max-width: 650px;
}

.what-we-do-content h2 {
  font-size: 56px;
  margin-bottom: 35px;
  color: #1b1b1b;
}

.what-we-do-content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 25px;
  color: #000;
}

.highlight-text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .what-we-do-digitaladdworld {
    min-height: auto;
  }

  .what-we-do-inner {
    padding: 80px 20px;
    text-align: center;
  }

  .what-we-do-content {
    max-width: 100%;
  }

  .what-we-do-content h2 {
    font-size: 36px;
  }
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .mega-menu {
    display: none !important;
  }

  .logo img {
    height: 60px;
  }
}
/* ============================= */
/* ================= TRUSTED BY ================= */
.trusted-by {
  padding: 80px 6%;
  background: #ffffff;
  text-align: center;
}

.trusted-by h2 {
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #111;
}

/* LOGO GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 45px;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  width: auto;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  filter: none;              /* ❌ grayscale hata diya */
  transition: transform 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.15);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .trusted-by {
    padding: 60px 20px;
  }

  .trusted-by h2 {
    font-size: 26px;
  }

  .logo-grid {
    gap: 30px;
  }

  .logo-grid img {
    max-width: 70px;
  }
}

/* ================= Contact Section ================= */

#contact {
  background: linear-gradient(135deg, #eef2ff, #f9f9f9);
}

#contact h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #222;
}

#contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#contact-form label {
  text-align: left;
  font-weight: 600;
  color: #444;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border 0.3s, box-shadow 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #35309c;
  box-shadow: 0 0 0 3px rgba(53,48,156,0.15);
}

#contact-form button {
  background: linear-gradient(135deg, #35309c, #6a5acd);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* ================= Transform Your Business Section ================= */

.transform-business {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #35309c, #6a5acd);
  color: #ffffff;
  text-align: center;
}

.transform-container {
  max-width: 900px;
  margin: auto;
}

.main-heading {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sub-heading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffd700;
}

.description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #f1f1f1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #ffffff;
  color: #35309c;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #ffffff;
  color: #35309c;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 38px;
  }

  .sub-heading {
    font-size: 22px;
  }

  .description {
    font-size: 16px;
  }
}
/* ================= FEATURES ================= */
.features-section {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

/* FEATURE CARD */
.feature-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 18px 26px;
  border-radius: 14px;
  min-width: 260px;
  max-width: 300px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON */
.feature-card span {
  font-size: 18px;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .features-section {
    gap: 16px;
    margin-top: 40px;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.our-services {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9ff;
}

.our-services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  background: #5b4bdb;
  color: #fff;
}

.service-detail-box {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  text-align: left;
}

.service-detail-box h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.service-detail-box ul {
  columns: 2;
  list-style: none;
  padding: 0;
}

.service-detail-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
}
/* ================= DIGITAL MARKETING OFFERS ================= */

.offers-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8f9ff, #eef0ff);
  text-align: center;
}

/* Title */
.offers-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 12px;
}

/* Subtitle */
.offers-subtitle {
  max-width: 850px;
  margin: 0 auto 70px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* Cards Container */
.offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

/* Offer Card */
.offer-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Gradient Top Border */
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #4f46e5, #9333ea);
}

/* Hover Effect */
.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Highlighted Card */
.offer-card.active {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #ffffff;
}

/* Text color fix for active */
.offer-card.active h3,
.offer-card.active p,
.offer-card.active li {
  color: #ffffff;
}

/* Badge */
.offer-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #4f46e5;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* Active Badge */
.offer-card.active .offer-badge {
  background: #ffffff;
  color: #4f46e5;
}

/* Card Heading */
.offer-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1f2937;
}

/* Description */
.offer-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Services List */
.offer-card ul {
  margin-top: 15px;
  padding-left: 18px;
}

.offer-card ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 10px;
  list-style: disc;
}

/* Button */
.offer-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Button Hover */
.offer-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Button on Active Card */
.offer-card.active .offer-btn {
  background: #ffffff;
  color: #4f46e5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .offers-title {
    font-size: 34px;
  }

  .offers-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .offer-card {
    padding: 35px 25px;
  }
}
/* ================= CTA / TAGLINE SECTION ================= */

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  text-align: center;
  color: #ffffff;
}

/* Content */
.cta-content {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.cta-content h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Text */
.cta-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 45px;
  opacity: 0.95;
}

/* Buttons Wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-btn {
  padding: 15px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-btn.primary {
  background: #ffffff;
  color: #4f46e5;
}

/* Secondary Button */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

/* ================= WHAT WE DO TEXT ANIMATION ================= */

/* initial hidden state */
.what-we-do-animate .line {
  opacity: 0;
  transform: translateY(40px);
}

/* active animation */
.what-we-do-animate.active .line {
  animation: fadeUp 0.8s ease forwards;
}

/* delay for each line */
.what-we-do-animate.active .line-1 { animation-delay: 0.2s; }
.what-we-do-animate.active .line-2 { animation-delay: 0.6s; }
.what-we-do-animate.active .line-3 { animation-delay: 1s; }
.what-we-do-animate.active .line-4 { animation-delay: 1.4s; }
.what-we-do-animate.active .line-5 { animation-delay: 1.8s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= WHAT WE DO LINE ANIMATION ================= */

.what-we-do-animate .line {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* jab line show hogi */
.what-we-do-animate .line.show {
  opacity: 1;
  transform: translateY(0);

}

/* spacing */
.what-we-do-inner {
  max-width: 900px;
  margin: auto;
}

.what-we-do-inner p,
.what-we-do-inner .highlight-text {
  margin-bottom: 16px;
  line-height: 1.7;
}
.reveal-section .line {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section .line.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== MOBILE NAVBAR FIX ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {

  nav {
    justify-content: flex-end;
  }

  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    display: none;   /* 🔴 IMPORTANT */
  }

  nav ul.active {
    display: flex;   /* ✅ show on toggle */
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== MOBILE FIX ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1e3a5f;
    width: 260px;
    height: calc(100vh - 70px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;

    /* 🔥 IMPORTANT */
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
  }

  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 10px 0;
  }

  .mega-row {
    grid-template-columns: 1fr;
  }
}
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 260px;
    height: calc(100vh - 70px);
    background: #000;

    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;

    z-index: 1050;   /* 🔥 THIS FIXES IT */
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
  }
}
/* ===== DESKTOP FORCE FIX ===== */
@media (min-width: 901px) {
  .nav-links {
    position: static !important;
    display: flex !important;
    flex-direction: row;
    height: auto;
    width: auto;
    background: transparent;
  }

  .menu-toggle {
    display: none !important;
  }
}
