/* =====================================================
   ROOT VARIABLES (Brand System)
===================================================== */
:root {
  --primary: #0a1aff;        /* Navy Blue */
  --secondary: #ff9800;      /* Orange / Gold */
  --dark: #020617;
  --light: #ffffff;
  --text-dark: #0a0a23;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-glow: 0 20px 50px rgba(255, 152, 0, 0.35);
  --radius: 18px;
}

/* =====================================================
   GLOBAL RESET
===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* =====================================================
   REUSABLE UTILITIES
===================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 1rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 3rem;
  font-weight: 700;
}

.dark {
  background: var(--dark);
  color: var(--light);
}

.grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* =====================================================
   HERO SECTION
===================================================== */
/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* Background Wrapper */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Animated Gradient Banner */
.gradient-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #0a1aff,
    #020617,
    #ff9800,
    #0a1aff
  );
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ================= FLOATING AI VECTORS ================= */
.vector {
  position: absolute;
  width: 120px;
  height: 120px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 2;
  z-index: 2;
  animation: floatVector 10s linear infinite;
}

/* Individual Positions */
.v1 {
  top: 20%;
  left: 10%;
  animation-duration: 14s;
}

.v2 {
  top: 60%;
  left: 70%;
  animation-duration: 18s;
}

.v3 {
  top: 35%;
  left: 45%;
  animation-duration: 22s;
}

/* Floating Animation */
@keyframes floatVector {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}


/* =====================================================
   SERVICES (Glassmorphism Cards)
===================================================== */
.service-card {
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  font-weight: 600;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-glow);
  border-color: var(--secondary);
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.why-grid div {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

/* Counters */
.counters {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.counters div {
  font-size: 1.3rem;
}

.counters span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
}

/* =====================================================
   PROCESS TIMELINE
===================================================== */
/* PAGE WRAPPER – controls left & right spacing */
:root {
  --accent: #3b82f6;
  --bg-dark: #020617;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
  --text: #e5e7eb;
}

.industry-hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
}

/* Background Image */
.bg-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1526378722484-bd91ca387e72")
    center / cover no-repeat;
  animation: slowZoom 22s ease-in-out infinite;
}

@keyframes slowZoom {
  50% { transform: scale(1.06); }
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2,6,23,0.92),
    rgba(2,6,23,0.85)
  );
}

/* Floating Logos */
.floating-logos img {
  position: absolute;
  bottom: -80px;
  width: 90px;
  opacity: 0.12;
  animation: floatUp 18s linear infinite;
}

.floating-logos img:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-logos img:nth-child(2) { left: 30%; animation-delay: 4s; }
.floating-logos img:nth-child(3) { left: 50%; animation-delay: 8s; }
.floating-logos img:nth-child(4) { left: 70%; animation-delay: 12s; }
.floating-logos img:nth-child(5) { left: 85%; animation-delay: 16s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  10% { opacity: 0.15; }
  100% { transform: translateY(-130vh) scale(1.2); opacity: 0; }
}

/* Content */
.industry-container {
  position: relative;
  z-index: 0;
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #ff6a00;
  margin-bottom: 60px;
}

/* Cards */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.industry-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-10px);
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
  color: var(--text);
}

.card-body h3 {
  color: white;
  margin: 0 0 6px;
}

.card-body strong {
  display: block;
  margin-top: 12px;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}




/* =====================================================
   INDUSTRIES
===================================================== */
.industries-grid div {
  padding: 1.6rem;
  background-color: #ff5a00;
  margin-top: 10px;
}
#industries{
  background: var(--dark);
  margin-top: 20px;
  color: #000;
}
#cptext{
  color: #ff5a00;
  padding: 5rem 1rem;
}

/* =====================================================
   PORTFOLIO / CASE STUDIES
===================================================== */
/* ================= PARTNERS SECTION ================= */
/* ================= PARTNERS SECTION ================= */
.partners-section {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.partners-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ff6a00;
  margin-bottom: 14px;
}

.partners-subtitle {
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #475569;
}

/* GRID */
.partners-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  align-items: center;
}

/* LOGO CARD */
.partner-logo {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* LOGO IMAGE – COLORFUL BUT FADED */
.partner-logo img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;

  /* KEY PART */
  filter: none;           /* keep colors */
  opacity: 0.75;          /* soft faded look */
}

/* OPTIONAL: very subtle lift (no color change) */
.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37,99,235,0.18);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .partners-subtitle {
    margin-bottom: 40px;
  }
}



/* =====================================================
   TESTIMONIALS
===================================================== */
/* ================= TESTIMONIALS MARQUEE ================= */

/* ================= OUR WORK ================= */
/* ================= IMPRESSIVE WORK SHOWCASE ================= */

/* ================= TESTIMONIALS MARQUEE ================= */
.testimonials-marquee {
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 50px;
}

/* WRAPPER */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

/* CARD */
.testimonial-card {
  min-width: 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* HEADER (IMAGE + NAME) */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2563eb;
}

.testimonial-header strong {
  font-size: 15px;
  color: #0f172a;
  display: block;
}

/* STARS */
.stars {
  font-size: 14px;
  color: #f97316;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

/* ANIMATION */
@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 240px;
  }
}

/* ================= TESTIMONIALS MARQUEE ================= */
.testimonials-marquee {
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #ff6a00;
  margin-bottom: 50px;
}

/* WRAPPER */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.marquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marqueeMove 40s linear infinite;
}

/* CARD */
.testimonial-card {
  min-width: 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

/* HEADER */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2563eb;
}

.stars {
  font-size: 14px;
  color: #f97316;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

/* 🚀 KEY FIX */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 240px;
  }
}




/* ================= NAVBAR ================= */
/* --- 1. General Styles --- */
/* --- Global Reset & Font --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* --- VARIABLES (Easy to change colors) --- */
:root {
  --primary-color: #ff6a00; /* Your Brand Orange */
  --text-dark: #1a1d3a;     /* Deep Midnight Blue (Text) */
  --bg-white: #ffffff;
  --bg-off-white: #f8f9fa;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Soft Modern Shadow */
}

/* --- 1. The Navbar Container --- */
.agency-navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  height: 80px; /* Fixed concise height */
  transition: 0.3s ease-in-out;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* --- 2. Logo Styling --- */
.nav-logo a {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 45px; /* Control height, let width auto-adjust */
  width: auto;
  transition: transform 0.3s;
}

.nav-logo img:hover {
  transform: scale(1.03);
}

/* --- 3. Navigation Links (Desktop) --- */
.nav-menu {
  display: flex;
  gap: 35px; /* More breathing room */
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark); /* Dark text is more professional than orange text */
  font-weight: 500; /* Sleek, not too bold */
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: 0.3s;
}

/* Subtle Underline Effect */
.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* --- 4. The "Contact Us" Button --- */
.nav-btn {
  background: var(--primary-color);
  color: #fff; /* White text on Orange button */
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3); /* Glowing shadow */
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--text-dark); /* Dark Blue on Hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 29, 58, 0.3);
}

.mobile-only-btn {
  display: none;
}

/* --- 5. Burger Icon --- */
#nav-toggle { display: none; }

.burger {
  display: none;
  cursor: pointer;
  z-index: 1001; /* Ensure it stays above the mobile menu */
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark); /* Dark lines */
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .nav-inner { height: 70px; }
  .agency-navbar { height: 70px; }
  .nav-logo img { height: 40px; }

  .burger { display: block; }
  .nav-actions { display: none; /* Hide desktop button */ }

  .nav-menu {
      position: fixed;
      top: 0;
      right: -100%; /* Slide out to the right */
      width: 75%; /* Don't cover full screen */
      height: 100vh;
      background-color: var(--bg-white);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
      gap: 30px;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      transition: right 0.4s ease-in-out;
  }

  .nav-menu a {
      color: var(--text-dark);
      font-size: 18px;
      font-weight: 600;
      width: 100%;
      text-align: center;
  }
  
  /* Mobile Button */
  .mobile-only-btn {
      display: inline-block;
      background-color: var(--primary-color);
      color: white !important;
      padding: 12px 30px;
      border-radius: 50px;
      margin-top: 10px;
      box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
  }

  /* When checkbox is checked */
  #nav-toggle:checked ~ .nav-menu {
      right: 0; /* Slide in */
  }

  /* Burger Animation */
  #nav-toggle:checked ~ .burger span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
      background: var(--primary-color);
  }
  #nav-toggle:checked ~ .burger span:nth-child(2) {
      opacity: 0;
  }
  #nav-toggle:checked ~ .burger span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
      background: var(--primary-color);
  }
}
/* ================= FOOTER ================= */
/* --- Variables --- */
:root {
  --bg-dark: #0f1014;       /* Almost Black */
  --text-white : #ff6a00;
  --text-grey: #ffffff;
  --accent: #00822e;        /* Your Brand Orange */
  --border-light: rgba(255, 255, 255, 0.1);
}

/* --- Base Layout --- */
.agency-footer {
  background-color: var(--bg-dark);
  color: var(--text-grey);
  padding: 40px 20px 15px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* 4 Columns: Brand (Wide) | Links | Contact | CTA (Wide) */
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr; 
  gap: 60px;
}

/* --- Typography --- */
h3, h4, h2 { color: var(--text-white); margin-bottom: 20px; }
h4 { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
p { line-height: 1.6; font-size: 0.95rem; margin-bottom: 25px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- Col 1: Brand & Badges --- */
.footer-logo h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }

.social-links { display: flex; gap: 15px; margin-bottom: 30px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* Custom CSS Badges (Replaces Images) */
.certifications {
  display: flex;
  gap: 15px; /* Space between the two badges */
  align-items: center;
  margin-top: 15px;
  margin-bottom: 25px;
}

.partner-badge {
  height: 45px; /* Professional height for footer badges */
  width: auto;  /* Auto width to keep the shape correct */
  display: block;
  background: white; /* Optional: If the transparent image needs a white box behind it */
  padding: 2px 5px;  /* Tiny padding if using white background */
  border-radius: 4px; /* Soft corners */
}

/* --- Col 2 & 3: Links & Contact --- */
.nav-col ul { list-style: none; padding: 0; }
.nav-col li { margin-bottom: 12px; }
.nav-col a:hover { color: var(--accent); padding-left: 5px; }

.contact-col address { font-style: normal; margin-bottom: 20px; line-height: 1.6; }
.contact-link { display: block; margin-bottom: 10px; font-weight: 500; }
.contact-link.highlight { color: var(--text-white); font-size: 1.1rem; font-weight: 700; }

/* --- Col 4: The BIG CTA (The Star of the Show) --- */
.cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Right Align */
  text-align: right;
}

.cta-headline {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 30px;
}
.cta-headline span { color: var(--text-grey); font-weight: 400; }

/* The Circle Button */
.circle-cta {
  width: 140px;
  height: 140px;
  background-color: var(--text-white);
  color: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  gap: 5px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.circle-cta i { transform: rotate(45deg); transition: 0.3s; }

.circle-cta:hover {
  transform: scale(1.1); /* Grows on hover */
  background-color: var(--accent);
  color: white;
}
.circle-cta:hover i { transform: rotate(45deg) translate(3px, -3px); }

.operating-hours { margin-top: 30px; font-size: 0.9rem; }
.operating-hours strong { display: block; color: var(--text-white); margin-bottom: 5px; }

/* --- Footer Bottom --- */
.footer-bottom {
  margin-top: 0px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-col { align-items: flex-start; text-align: left; }
}

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; gap: 50px; }
  .footer-col { border-bottom: 1px solid var(--border-light); padding-bottom: 30px; }
  .footer-col:last-child { border: none; padding-bottom: 0; }
  
  .cta-headline { font-size: 1.8rem; }
  .circle-cta { width: 120px; height: 120px; }
}

.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  background: #25d366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 999;
}
/* ================= SERVICES SECTION ================= */
.services-advanced {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* TITLE */
.services-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 70px;
  color: #ff6a00;
  position: relative;
}

.services-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #2563eb, #ff6a00);
  border-radius: 10px;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}

/* CARD */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.45s ease;
  overflow: hidden;
}

/* GRADIENT BORDER EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #2563eb,
    #22c55e,
    #ff6a00
  );
  opacity: 0;
  z-index: 0;
  transition: opacity 0.45s ease;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 35px 80px rgba(37,99,235,0.35);
}

.service-card:hover::before {
  opacity: 0.12;
}

/* CONTENT LAYER */
.service-card * {
  position: relative;
  z-index: 1;
}

/* GIF */
.service-gif {
  width: 100%;           /* full width of card */
  height: 120px;         /* ⬅️ increased height (change if needed) */
  object-fit: cover;     /* fills width nicely */
  display: block;
  margin-bottom: 20px;
  border-radius: 14px;   /* premium rounded look */
  transition: transform 0.4s ease;
}

/* subtle hover effect */
.service-card:hover .service-gif {
  transform: scale(1.03);
}


.service-card:hover .service-gif {
  transform: scale(1.2) rotate(6deg);
}

/* TEXT */
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-advanced {
    padding: 70px 16px;
  }

  .services-title {
    margin-bottom: 50px;
  }

  .service-card {
    padding: 36px 20px;
  }
}


/* ================= FOOTER ACTION BUTTONS ================= */
.footer-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: -140px;
}

/* COMMON BUTTON */
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CALL */
.call-btn {
  background: #2563eb;
  color: #ffffff;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

/* CONTACT */
.contact-btn {
  background: #f97316;
  color: #ffffff;
}

/* HOVER */
.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.18);
}

/* MOBILE FRIENDLY */
@media (max-width: 600px) {
  .footer-actions {
    flex-direction: column;
    align-items: center;
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-left: 20px;
      
    }
    
  }

  .footer-btn {
    width: 90%;
    max-width: 280px;
  }



.footer-left {
  text-align: left;
}
@media (max-width: 600px) {
  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-btn {
    width: 100%;
    max-width: 260px;
  }
}


#headind12{
  color: #f97316;
}

/* Live chat */
/* --- VARIABLES --- */
:root {
  --primary-color: #ff6a00;  /* Your Brand Orange */
  --dark-bg: #0f172a;        /* Professional Navy */
  --chat-bg: #ffffff;
  --bot-msg-bg: #f1f5f9;
  --user-msg-bg: #ff6a00;
}

/* --- WIDGET CONTAINER --- */
#panda-widget {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* --- 1. FLOATING MASCOT TRIGGER --- */
#panda-trigger {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite; /* Floating Effect */
  transition: transform 0.3s;
}

#panda-trigger:hover { transform: scale(1.05); }

.panda-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: #fff;
}

.panda-avatar img { width: 100%; height: 100%; object-fit: cover; }

.notify-badge {
  position: absolute;
  top: -2px;
  right: 0;
  background: #ef4444;
  color: white;
  font-size: 11px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  font-weight: bold;
}

.chat-tooltip {
  position: absolute;
  right: 75px;
  top: 15px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  animation: showTooltip 5s infinite 2s;
  pointer-events: none;
  color: #333;
}

/* --- 2. CHAT WINDOW --- */
#chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  height: 450px;
  background: var(--chat-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Pop effect */
  opacity: 1;
  transform: scale(1);
}

#chat-window.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

/* Header */
.chat-header {
  background: var(--dark-bg);
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info { display: flex; align-items: center; gap: 12px; }
.header-avatar { font-size: 20px; background: rgba(255,255,255,0.1); padding: 8px; border-radius: 50%; }
.header-text h4 { margin: 0; font-size: 15px; font-weight: 600; }
.status { font-size: 11px; opacity: 0.8; display: flex; align-items: center; gap: 5px; }

/* Pulsing Green Dot */
.status-dot {
  width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
  animation: pulse 2s infinite;
}

.close-btn { background: none; border: none; color: #fff; cursor: pointer; font-size: 16px; opacity: 0.7; }
.close-btn:hover { opacity: 1; }

/* Messages Area */
#chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Chat Bubbles */
.message {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 12px;
  position: relative;
  animation: slideUp 0.3s ease;
}

.bot-msg {
  background: var(--bot-msg-bg);
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.user-msg {
  background: var(--primary-color);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

/* Typing Indicator (Dots) */
.typing-indicator {
  background: var(--bot-msg-bg);
  padding: 12px 15px;
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  width: fit-content;
  display: none; /* Hidden by default */
  align-self: flex-start;
}
.typing-indicator span {
  display: inline-block; width: 5px; height: 5px; background: #94a3b8;
  border-radius: 50%; margin: 0 2px;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

/* Input Area */
.chat-input-area {
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
  background: #fff;
}
#user-input {
  flex: 1; border: 1px solid #e2e8f0; border-radius: 25px; padding: 10px 15px; outline: none; font-size: 13px;
}
#send-btn {
  background: var(--primary-color); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: 0.2s;
}
#send-btn:hover { background: var(--dark-bg); }

/* --- KEYFRAMES --- */
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
@keyframes showTooltip { 0%, 100% { opacity: 0; transform: translateX(10px); } 10%, 90% { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 480px) {
  #chat-window { width: 90vw; right: 0; bottom: 90px; }
  .chat-tooltip { display: none; }
}
.header-avatar {
  width: 45px;          /* Adjust size as needed */
  height: 45px;         /* Must match width */
  border-radius: 50%;   /* Makes it a circle */
  
  /* Background properties */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* Optional: Border to make it pop */
  border: 2px solid #fff; 
}
 /* about us */

 /* --- VARIABLES --- */
:root {
  --primary: #ff6a00;
  --dark-bg: #0f172a;
  --card-bg: #1e293b;
  --text-white: #ffffff;
  --text-grey: #94a3b8;
}

:root {
  --dark-bg: #0b0d17;
  --card-bg: #15192b;
  --primary: #3b82f6; /* Blue for tech */
  --gold: #c5a059;    /* Gold for premium feel */
  --text-white: #ffffff;
  --text-grey: #a0aec0;
  --radius: 12px;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* --- SECTION LAYOUT --- */
.about-section {
  background: radial-gradient(circle at top center, #1a2035 0%, var(--dark-bg) 70%);
  color: var(--text-white);
  padding: 120px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- HEADER --- */
.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* Badge Style */
.pill-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* Title Styling */
.about-header h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.highlight-text {
  background: linear-gradient(120deg, #fff, var(--gold), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  font-weight: 800;
}

.about-desc {
  font-size: 1.15rem;
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 50px;
}

.keyword {
  color: var(--text-white);
  border-bottom: 1px solid var(--gold);
}

/* --- GLASS STATS ROW --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
}
.stat-item p {
  color: var(--text-grey);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- TEAM SECTION --- */
.team-wrapper {
  margin-top: 100px;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 600;
  color: var(--text-white);
  position: relative;
  display: inline-block;
  width: 100%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* --- PREMIUM TEAM CARD --- */
.team-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 0px; /* Classic sharp edges or slightly rounded */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* The Image Area */
.img-box {
  width: 100%;
  height: 380px; /* Taller for more impressive look */
  overflow: hidden;
  position: relative;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(100%) contrast(110%); /* Classic Noir Look */
}

/* Hover Effects */
.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.team-card:hover .img-box img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%); /* Color returns on hover */
}

/* Gradient Overlay for Text Readability */
.img-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 50%;
  background: linear-gradient(to top, var(--card-bg), transparent);
  z-index: 1;
}

/* --- TEAM INFO --- */
.team-info {
  padding: 30px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  border-top: 2px solid transparent;
  transition: 0.3s;
}

.team-card:hover .team-info {
  border-top: 2px solid var(--gold);
}

.team-info h4 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.role {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-info p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Social Icons (Optional addition for pro look) */
.team-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.team-card:hover .team-socials {
  opacity: 1;
  transform: translateY(0);
}

.social-icon {
  color: #fff;
  font-size: 1.1rem;
  transition: 0.3s;
  cursor: pointer;
}
.social-icon:hover { color: var(--gold); }

/* --- SCROLL ANIMATION CLASSES (JS Triggers these) --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-header h2 { font-size: 2.2rem; }
  .stats-row { flex-direction: column; gap: 30px; text-align: center; }
  .img-box { height: 300px; }
  .team-card:hover { transform: none; }
  .img-box img { filter: grayscale(0%); } /* Always color on mobile */
  .team-socials { opacity: 1; transform: translateY(0); }
}
/* --- SECTION VARIABLES --- */
:root {
  --primary: #ff6a00;
  --dark-bg: #0f172a;
  --card-bg: #1e293b;
  --text-white: #ffffff;
  --text-grey: #94a3b8;
}

.clients-section {
  background-color: var(--dark-bg);
  color: var(--text-white);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden; /* Hides scrollbar for marquee */
}

/* --- HEADER --- */
.center-text { text-align: center; margin-bottom: 50px; }
.center-text h2 { font-size: 2.5rem; margin-bottom: 15px; }
.center-text p { color: var(--text-grey); max-width: 600px; margin: 0 auto; }

/* --- 1. INFINITE LOGO MARQUEE --- */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  position: relative;
  /* Fade effect on sides */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.marquee-content i {
  font-size: 3rem;
  color: var(--text-grey);
  opacity: 0.5;
  transition: 0.3s;
}

.marquee-content i:hover {
  color: var(--primary);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scrolls half-way then resets seamless */
}

/* --- 2. CASE STUDY CARDS --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.case-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.case-badge {
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.case-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.case-result { font-size: 0.95rem; color: #ccc; margin-bottom: 25px; line-height: 1.5; }
.case-result strong { color: #fff; }

/* Stats inside Card */
.case-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.case-stats div { display: flex; flex-direction: column; }
.case-stats span { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.case-stats small { font-size: 0.8rem; color: var(--text-grey); text-transform: uppercase; }

/* --- CTA --- */
.client-cta { text-align: center; margin-top: 40px; }
.client-cta h3 { margin-bottom: 20px; font-size: 1.5rem; }

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 106, 0, 0.4); }

/* Mobile */
@media (max-width: 768px) {
  .marquee-content { gap: 40px; }
  .marquee-content i { font-size: 2.5rem; }
}