/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS (2026)
   PART 1: Global Reset, Light Theme Variables & Typography
   Fully Light | Premium | Smooth | No Lag
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;           /* Very light clean background */
  color: #1f2937;
  line-height: 1.75;
  font-size: 1.06rem;
  overflow-x: hidden;
}

/* ==================== LIGHT THEME COLORS ==================== */
:root {
  --primary-blue: #1e40af;        /* Professional deep blue */
  --accent-orange: #f59e0b;       /* Premium orange accent */
  --text-dark: #1f2937;
  --text-gray: #374151;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-light: #e2e8f0;
  --radius: 18px;
  --shadow: 0 8px 25px rgba(30, 64, 175, 0.09);
  --shadow-hover: 0 20px 40px rgba(30, 64, 175, 0.14);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-blue);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 3.9rem);
}

h2 {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  margin-bottom: 1.8rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p, li, span {
  color: var(--text-gray);
  font-weight: 420;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e3a8a;
}

/* ==================== REUSABLE CLASSES ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 3.8rem;
  position: relative;
}

.section-title:after {
  content: '';
  width: 85px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-orange));
  display: block;
  margin: 14px auto 0;
  border-radius: 4px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================== BUTTONS (Premium Look) ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.btn-primary.big {
  padding: 19px 44px;
  font-size: 1.18rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-4px);
}

/* ==================== IMAGE & CARD BASE ==================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Light background for sections */
.services-section,
.why-us-section,
.testimonial-section,
.faq-section {
  background: #f8fafc;
}
/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS
   PART 2: Header, Navbar, Logo & Mobile Menu
===================================================== */

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== LOGO (Bigger + Hover Effect) ==================== */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.logo img {
  height: 65px;           /* Bigger size */
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.15));
}

.logo:hover img {
  filter: drop-shadow(0 8px 16px rgba(30, 64, 175, 0.25));
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.6px;
  font-size: 1.55rem;        /* Text bhi bada kiya */
  line-height: 1.1;
}

.logo-build {
  color: var(--primary-blue);
  font-weight: 800;
}

.logo-deploy {
  color: var(--accent-orange);
  font-weight: 800;
}

.logo-tech {
  color: var(--primary-blue);
  font-size: 1.15rem;
  align-self: flex-end;
  margin-left: 3px;
  font-weight: 600;
  opacity: 0.95;
}

/* Mobile adjustments for bigger logo */
@media (max-width: 768px) {
  .logo img {
    height: 58px;           /* Mobile pe thoda chhota rakha */
  }
  
  .logo-text {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 52px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
}
/* ==================== NAV MENU ==================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-orange));
  transition: width 0.4s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ==================== IMPROVED DROPDOWN MENU ==================== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);           /* thoda gap diya smooth feel ke liye */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 12px 0;
  display: none;
  flex-direction: column;
  z-index: 10000;
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect - Desktop */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Links Styling */
.dropdown-menu a {
  padding: 14px 24px;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: var(--primary-blue);
  padding-left: 30px;
}

/* ==================== MOBILE DROPDOWN FIX ==================== */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 20px;
    width: 100%;
    display: none;                    /* Mobile pe hover mat chalne do */
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;                    /* Hover mobile pe disable */
  }

  /* Mobile mein click se khulega (agar JS add karoge toh) */
  .dropdown-menu.mobile-open {
    display: flex;
  }
}

/* ==================== HEADER ACTIONS ==================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
  color: white !important;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ==================== MOBILE MENU TOGGLE ==================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* ==================== MOBILE MENU ==================== */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu a {
    font-size: 1.15rem;
    padding: 16px 0;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    z-index: 100000;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    background: transparent;
  }

  .dropdown-menu a {
    padding: 12px 0;
  }
}

/* ==================== HEADER SCROLL EFFECT ==================== */
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  padding: 10px 0;
}
/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS
   PART 3: Hero, Stats, Services Cards & Why Us
===================================================== */

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 252, 0.75),
    rgba(248, 250, 252, 0.92)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 0 20px;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inner Page Hero (for service pages) */
.inner-hero {
  min-height: 65vh;
}

.inner-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 252, 0.85),
    rgba(248, 250, 252, 0.95)
  );
}

/* ==================== STATS / TRUST BAR ==================== */
.stats-section {
  padding: 4.5rem 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--card-bg);
  padding: 2.8rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-gray);
  font-size: 1.05rem;
}

/* ==================== SERVICES GRID ==================== */
.services-section {
  padding: 7rem 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.8rem;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.service-card img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card h3 {
  margin: 1.8rem 1.8rem 1rem;
  color: var(--primary-blue);
}

.service-card p {
  margin: 0 1.8rem 1.5rem;
  flex-grow: 1;
}

.service-card a.learn-more {
  margin: 0 1.8rem 2rem;
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a.learn-more:hover {
  gap: 10px;
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
  padding: 7rem 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  padding: 2.8rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.why-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

/* ==================== GENERAL SECTION PADDING ==================== */
section {
  padding: 6rem 20px;
}
/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS
   PART 4: CTA, Testimonials, FAQ & Final Sections
===================================================== */

/* ==================== FINAL CTA SECTION ==================== */
.cta-section {
  padding: 7rem 20px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #ffffff;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.cta-section p {
  color: #dbeafe;
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

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

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonial-section {
  padding: 7rem 20px;
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #374151;
  line-height: 1.65;
}

.testimonial-card h4 {
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 7rem 20px;
  background: #f8fafc;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-item summary {
  padding: 1.8rem 2rem;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--primary-blue);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] summary:after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  padding: 1.2rem 20px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb span {
  color: var(--primary-blue);
}

/* ==================== APPROACH / PROCESS SECTION ==================== */
.process-list {
  max-width: 800px;
  margin: 2rem auto 0;
  list-style: none;
}

.process-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.process-list li:before {
  content: "✓";
  color: var(--accent-orange);
  font-weight: bold;
  flex-shrink: 0;
}

/* ==================== INTEGRATION SECTION ==================== */
.integration-section {
  padding: 5rem 20px;
  text-align: center;
  background: #ffffff;
}

.integration-section p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 1.5rem auto;
}

/* ==================== SERVICE INTRO ==================== */
.service-intro {
  padding: 4rem 20px 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.service-intro h2 {
  margin-bottom: 1.5rem;
}

.service-intro p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

/* ==================== SERVICES OFFERED GRID ==================== */
.services-offered .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
}

.service-item:hover {
  transform: translateY(-6px);
}

.service-item h3 {
  margin: 1.2rem 0 0.8rem;
  color: var(--primary-blue);
}
/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS
   PART 5: Footer, Floating WhatsApp, Animations & Blog Fixes
===================================================== */

/* ==================== FOOTER ==================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 5.5rem 20px 2.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 0.9rem;
}

.footer-col a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent-orange);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 64px;
  height: 64px;
  background: #22c55e;
  color: #ffffff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2.2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  background: #16a34a;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==================== ANIMATIONS (Smooth & Light) ==================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==================== BLOG PAGE FIXES ==================== */
.page-hero {
  padding: 140px 20px 90px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #ffffff;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.blog-card-content {
  padding: 1.8rem;
}

.blog-card h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-blue);
}

.blog-card p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
}

.blog-row {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.blog-row:hover {
  transform: translateY(-6px);
}

.blog-row img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-row-content {
  padding: 2rem;
  flex: 1;
}

/* Mobile fixes for blog */
@media (max-width: 768px) {
  .blog-row {
    flex-direction: column;
  }
  
  .blog-row img {
    width: 100%;
    height: 200px;
  }
}

/* ==================== CONTACT DETAILS BOX ==================== */
.contact-details-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 620px;
  margin: 3rem auto 0;
}

.contact-detail-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: flex-start;
}

/* ==================== SOCIAL ICONS ==================== */
.social-icons a {
  font-size: 1.6rem;
  margin: 0 12px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.25);
}
/* =====================================================
   BUILDDEPLOY TECH - PREMIUM LIGHT CSS
   PART 6: FINAL - Media Queries & Responsiveness
===================================================== */

/* ==================== TABLET & MOBILE RESPONSIVENESS ==================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .services-grid,
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary.big,
  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 5rem 16px;
  }
  
  .hero-section {
    min-height: 85vh;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
  }
  
  .stat-card {
    padding: 2rem 1.2rem;
  }
  
  .stat-card h3 {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-section {
    padding: 5rem 16px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .page-hero {
    padding: 100px 16px 70px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 12px;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
    font-size: 26px;
  }
  
  .nav-cta {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

/* ==================== EXTRA SMOOTHNESS & FIXES ==================== */

/* Prevent any unwanted dark mode */
body.dark {
  display: none !important;   /* Safety - We are using only light theme */
}

/* Improve image loading */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Better focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid rgba(30, 64, 175, 0.5);
  outline-offset: 4px;
}

/* Fix for header on scroll */
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 6px 25px rgba(30, 64, 175, 0.1);
}

/* Smooth scroll for all internal links */
html {
  scroll-behavior: smooth;
}

/* Final touch for service pages */
.service-intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Make sure all cards have consistent height in grid */
.services-grid > div,
.why-grid > div {
  display: flex;
  flex-direction: column;
}

/* Final CTA spacing fix */
.cta-section {
  margin-top: 2rem;
}

/* =====================================================
   END OF CSS
   Thank you for using BuildDeploy Tech Premium Light CSS
===================================================== */
