/* =======================
     Codewraps — Single File Styles
     ======================= */
:root {
  --p1: #0061ff;
  --p2: #00c6ff;
  --accent: #ff6b6b;
  --bg: #f6fbff;
  --card: #ffffff;
  --muted: #5b6b85;
  --dark: #062a66;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto
}

.small {
  font-size: .9rem;
  color: var(--muted)
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 20, 50, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 97, 255, 0.09);
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  color: #123;
  transition: 0.3s ease;
}

.nav-link:hover {
  background: rgba(0, 97, 255, 0.06);
  color: var(--p1);
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 97, 255, 0.12);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
}

/* Tablet & below */
@media (max-width: 940px) {
  nav {
    display: none;
    position: absolute;
    left: 8px;
    right: 8px;
    top: 68px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(10, 20, 50, 0.06);
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 8px;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(0, 97, 255, 0.1);
  }

  .logo img {
    height: 38px;
  }
}

/* Mobile only */
@media (max-width: 560px) {
  .header-inner {
    padding: 10px 0;
  }

  .nav-link {
    font-size: 0.88rem;
  }

  .btn-primary {
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .logo img {
    height: 34px;
  }
}

/* Section spacing */
section {
  padding: 60px 0
}

@media (max-width:768px) {
  section {
    padding: 50px 0
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px
}

.section-title h2 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 8px
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6
}

/* Hero */

/* =========================================
   🚀 HERO SECTION (Animated Premium Layout)
   ========================================= */


.hero {
  background: linear-gradient(135deg, #ededed 0%, #eef3ff 100%);
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
  overflow-x: hidden; /* ✅ fix unwanted horizontal scroll */
}

/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Headline */
.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0b1f47;
  line-height: 1.3;
}
.hero-content .highlight {
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
  font-size: 1.05rem;
  color: #5f6f91;
  margin: 20px 0 30px;
  line-height: 1.8;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.badge {
  background: #fff;
  border: 1px solid rgba(0,97,255,0.15);
  color: #0b1f47;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,97,255,0.08);
  transition: 0.3s;
}
.badge:hover { transform: translateY(-3px); }

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.btn-primary,
.btn-secondary,
.btn-submit {
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary {
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,97,255,0.25);
}
.btn-primary:hover { background: linear-gradient(90deg, #00C6FF, #0072FF); }
.btn-secondary {
  border: 2px solid #0072FF;
  color: #0072FF;
}
.btn-secondary:hover { background: #0072FF; color: #fff; }
.btn-submit {
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  color: #fff;
  border: none;
  width: 100%;
}
.btn-submit:hover { background: linear-gradient(90deg, #00C6FF, #0072FF); }

/* Sub Info */
.hero-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  font-size: 0.95rem;
  color: #5f6f91;
}
@media (max-width: 992px) {
  .hero-sub { justify-content: center; }
}

/* Quote Card */
.hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,97,255,0.08);
  padding: 0px 35px;
  text-align: left;
  animation: slideInRight 1s ease forwards;
}
.hero-card h3 {
  font-size: 1.3rem;
  color: #0b1f47;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

/* Form Fields */
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd9ee;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #0072FF;
  box-shadow: 0 0 0 3px rgba(0,114,255,0.15);
}

/* Note */
.lead-note {
  margin-top: 10px;
  text-align: center;
  color: #5f6f91;
}
.lead-note a {
  color: #0072FF;
  text-decoration: none;
  font-weight: 600;
}
.lead-note a:hover { text-decoration: underline; }

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}
.fade-up { animation: fadeUp 1s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.slide-in-right { animation: slideInRight 1.2s ease forwards; opacity: 0; }

/* ===================================================== */
/* 📱 RESPONSIVE (Mobile + Tablet Adjustments) */
/* ===================================================== */

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  html, body {
    overflow-x: hidden !important; /* ✅ remove right-side scrolling */
  }

  .hero {
    overflow-x: hidden;
    padding: 40px 0;
  }

  .container {
    overflow-x: hidden;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1;
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
  }

  .hero-card {
    padding: 25px 20px;
  }

  .hero-card h3 {
    font-size: 1.1rem;
  }

  /*  Bigger & comfortable form fields on mobile */
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    padding: 16px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .lead-form textarea {
    min-height: 120px;
  }

  .btn-submit {
    padding: 14px 0;
    font-size: 1rem;
    border-radius: 50px;
  }
}


/* Features */
/* ==============================
   🌟 FEATURES SECTION
============================== */
/* =========================================
   💙 WHY CODEWRAPS IS TRUSTED SECTION
   ========================================= */
.trusted-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef3ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.trusted-section::before,
.trusted-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(0,97,255,0.12), transparent 70%);
  z-index: 0;
}
.trusted-section::before {
  top: -120px;
  left: -120px;
}
.trusted-section::after {
  bottom: -120px;
  right: -120px;
}

/* Section Title */
.trusted-section .section-title h2 {
  color: #0b1f47;
  font-weight: 800;
}
.trusted-section .section-sub {
  max-width: 720px;
  margin: 15px auto 70px;
  color: #5f6f91;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Grid Layout */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Card Style */
.trusted-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,97,255,0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.trusted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,97,255,0.15);
}

/* Icon */
.trusted-icon {
  font-size: 2rem;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,97,255,0.3);
  transition: all 0.3s ease;
}
.trusted-card:hover .trusted-icon {
  transform: scale(1.1);
  background: linear-gradient(90deg, #00C6FF, #0072FF);
}

/* Headings & Text */
.trusted-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1f47;
  margin-bottom: 10px;
}
.trusted-card p {
  color: #5f6f91;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-card {
    padding: 30px 20px;
  }
  .trusted-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}


/* ==============================
   📖 ABOUT GRID (kept from your CSS)
============================== */


.about-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  background: #f9fafc;
  border-radius: 16px;
}

/* 📸 Image Styling */
.card-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8, 24, 60, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media:hover {
  transform: scale(1.02);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

/* ✍️ Content Styling */
.about-grid h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--p1);
  margin-bottom: 12px !important;
}

.about-grid p.small {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============================= */
/* 🌟 About Grid List Styling */
/* ============================= */
.about-grid ul.small {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.about-grid ul.small li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

/* ✅ Checkmark Icon */
.about-grid ul.small li::before {
  content: "✅";
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

/* ============================= */
/* 📱 Mobile Optimization */
/* ============================= */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 60px 20px;
  }

  .about-grid h3 {
    font-size: 24px;
  }

  .about-grid p.small {
    font-size: 15px;
  }

  .about-grid ul.small {
    display: inline-block;
    text-align: left;
  }

  .about-grid a.btn-primary {
    margin-top: 10px;
  }
}
/* 📱 Small Screens (Mobile) — Final Polished Version */
@media (max-width: 576px) {
  .about-grid {
    padding: 45px 15px;
    gap: 26px;
  }

  .about-grid h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .about-grid p.small {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  /* ✅ Uniform bullet list alignment and spacing */
  .about-grid ul {
    list-style: none;
    padding-left: 4px;
    margin: 0 auto 18px;
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 360px;
  }

  .about-grid ul li {
  display: flex;
  align-items: center;   
  gap: 8px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  word-break: break-word;
}

.about-grid ul li::before {
  content: "●";
  flex-shrink: 0;
  font-size: 0.7rem;     
  
  margin-top: 0;         
  line-height: 1;        
  display: inline-flex;  
  align-items: center;   
}


  /* 📏 Make the whole section read cleanly */
  .about-grid a.btn-primary {
    font-size: 14px;
    padding: 10px 22px;
    margin-top: 12px;
  }

  .about-grid p[style*="italic"] {
    font-size: 13px;
    margin-top: 10px;
  }
}



/* ✨ Button Hover */
.about-grid a.btn-primary {
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.about-grid a.btn-primary:hover {
  transform: translateY(-3px);
}


/* ===== PROVEN RESULTS SECTION ===== */
.results-section {
  background: linear-gradient(135deg, #f6fbff 0%, #e9f1ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(0,97,255,0.15), transparent 70%);
  border-radius: 50%;
}
.results-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(0,97,255,0.15), transparent 70%);
  border-radius: 50%;
}
 
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}
 
.result-item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 15px 40px rgba(0, 97, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.result-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 97, 255, 0.12);
}
.result-item .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.result-item h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: var(--p1);
}
.result-item p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 6px;
}
.result-item small {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  line-height: 1.5;
}
/* Process */
/* ==========================
   🚀 PROCESS SECTION
========================== */

/* ===== PROFESSIONAL COLORFUL PROCESS ===== */
.process-section {
  background: linear-gradient(135deg,#E3F2FD 0%,#F8EFFF 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
  margin-top: 70px;
}
@media (max-width: 980px) {
  .process-timeline { flex-direction: column; align-items: center; }
}
 
/* Connector line (desktop) */
@media (min-width:981px) {
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg,#007BFF,#00C6FF,#8E2DE2,#FF6A00,#FF4B2B);
    border-radius: 10px;
    opacity: 0.3;
    z-index: 0;
    animation: flow 8s linear infinite;
    background-size: 400%;
  }
}
@keyframes flow {
  0%{background-position:0%}
  100%{background-position:400%}
}
 
/* Step cards */
.step {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  text-align: center;
  padding: 50px 24px;
  flex: 1 1 200px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  max-width: 230px;
}
.step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0,97,255,0.15);
}
 
.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
 
.step h4 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
 
/* Add subtle background shapes */
.process-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center,rgba(0,97,255,0.15),transparent 70%);
  border-radius: 50%;
}
.step { opacity:0; transform:translateY(30px); }
.step[data-aos].aos-animate { opacity:1; transform:translateY(0); transition:all .8s ease; }
/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

@media(max-width:980px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .case-grid {
    grid-template-columns: 1fr
  }
}

.case {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8, 20, 50, 0.06);
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .2s
}

.case:hover {
  transform: translateY(-8px)
}

.case img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.case .case-body {
  padding: 14px
}


/* 📱 Mobile full-width fix for steps */
@media (max-width: 576px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px; /* left-right space */
  }

  .step {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }
}

/* ===== PORTFOLIO SECTION ===== */
/* ======================================
   💼 PORTFOLIO — FIXED EQUAL HEIGHT VERSION
   ====================================== */
.portfolio-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef3ff 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* Card container */
.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 480px; /* ✅ uniform card height */
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
}

/* Image */
.portfolio-card img {
  width: 100%;
  height: 260px; /* ✅ fixed image area (slightly smaller to leave space for button) */
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.portfolio-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Info area */
.portfolio-info {
  flex: 1; /* ✅ ensures content area stretches evenly */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures button stays at bottom */
  padding: 20px 22px 25px;
}
.portfolio-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1f47;
  margin-bottom: 8px;
}
.portfolio-info p {
  color: #5f6f91;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 14px;
}

/* Button */
.portfolio-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 97, 255, 0.2);
  align-self: flex-start;
}
.portfolio-btn:hover {
  background: #fff;
  color: #0072FF;
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.3);
}

/* Swiper Controls */
.portfolio-swiper {
  margin-top: 60px;
}
.swiper-button-prev, 
.swiper-button-next {
  color: var(--p1);
  transition: 0.3s;
}
.swiper-button-prev:hover, 
.swiper-button-next:hover {
  color: var(--p2);
}
.swiper-pagination-bullet {
  background: var(--p1);
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  background: var(--p2);
  opacity: 1;
}

/* 🩵 Pagination below image */
.portfolio-pagination {
  position: static !important;
  margin-top: 18px;
  text-align: center;
}

/* =======================
   📱 RESPONSIVE FIXES
   ======================= */

/* Tablets (≤1200px) */
@media (max-width: 1200px) {
  .portfolio-card {
    height: 420px;
  }
  .portfolio-card img {
    height: 230px;
  }
}

/* Tablets & small laptops (≤768px) */
@media (max-width: 768px) {
  .portfolio-card {
    height: 380px;
  }
  .portfolio-card img {
    height: 210px;
  }
  .portfolio-info {
    padding: 18px 20px 22px;
  }
  .portfolio-info h3 {
    font-size: 1.05rem;
  }
  .portfolio-info p {
    font-size: 0.9rem;
  }
}

/* 📱 Mobile (≤576px) */
@media (max-width: 576px) {
  .portfolio-card {
    height: 360px;
  }
  .portfolio-card img {
    height: 200px;
  }
  .portfolio-info {
    padding: 16px 18px 20px;
  }

  /* ✅ Buttons smaller but never cut off */
  .portfolio-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  /* ✅ Swiper navigation buttons smaller */
  .swiper-button-prev,
  .swiper-button-next,
  .portfolio-prev,
  .portfolio-next {
    transform: scale(0.55);
    width: 28px !important;
    height: 28px !important;
  }

  .portfolio-prev {
    left: 8px !important;
  }
  .portfolio-next {
    right: 8px !important;
  }
}







/* ==========================================
   🎥 VIDEO TESTIMONIALS SECTION — CODEWRAPS
   ========================================== */
/* ============================== */
/* ✅ TESTIMONIALS SECTION FIXED */
/* ============================== */

#testimonials {
  background: linear-gradient(135deg, #f7faff 0%, #eef3ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Decorative background shapes */
#testimonials::before,
#testimonials::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.25;
}
#testimonials::before {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle at center, rgba(0, 97, 255, 0.15), transparent 70%);
}
#testimonials::after {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle at center, rgba(255, 107, 107, 0.15), transparent 70%);
}

/* Headings */
#testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
#testimonials .subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Swiper container */
#testimonials .videoSwiper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Each slide / card */
#testimonials .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
}
#testimonials .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 97, 255, 0.15);
}

/* ✅ Adjust testimonial image sizing properly */
#testimonials .video-thumb {
  width: 380px;           /* fixed width */
  height: 354px;          /* fixed height (equal ratio) */
  aspect-ratio: auto;     /* disable old 16:9 */
  margin: 0 auto;         /* centers inside card */
  overflow: hidden;
  border-radius: 12px;    /* optional – keeps design smooth */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#testimonials .video-thumb img {
  width: 100%;
  height: 100%;
  
  transition: transform 0.4s ease;
}
#testimonials .video-thumb:hover img {
  transform: scale(1.05);
}

/* Optional: on smaller devices, scale image proportionally */
@media (max-width: 480px) {
  #testimonials .video-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* maintains square on small screens */
  }
}


/* Play button */
#testimonials .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 97, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials .video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 97, 255, 0.45);
}

/* Content section */
#testimonials .video-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#testimonials .video-content h4 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}
#testimonials .video-content .company {
  color: var(--p1);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
#testimonials .video-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Swiper controls */
#testimonials .swiper-pagination {
  margin-top: 45px !important;
}
#testimonials .swiper-pagination-bullet {
  background: var(--p1);
  opacity: 0.3;
  transition: all 0.3s ease;
}
#testimonials .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--p2);
}
#testimonials .swiper-button-prev,
#testimonials .swiper-button-next {
  color: var(--p1);
  transition: color 0.3s ease;
}
#testimonials .swiper-button-prev:hover,
#testimonials .swiper-button-next:hover {
  color: var(--p2);
}

/* Modal popup */
#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease forwards;
}
#videoModal.show {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#videoModal .video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
}
#videoModal iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}
#videoModal .video-close {
  position: absolute;
  top: -40px;
  right: -5px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}
#videoModal .video-close:hover {
  color: #ff4b2b;
}

/* Responsive */
@media (max-width: 980px) {
  #testimonials .video-content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  #testimonials .swiper-slide {
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  #videoModal iframe {
    height: 300px;
  }
}

/* 📱 Smaller swiper navigation buttons on mobile */
@media (max-width: 576px) {
  .swiper-button-prev,
  .swiper-button-next,
  .portfolio-prev,
  .portfolio-next {
    transform: scale(0.6);
    width: 28px !important;
    height: 28px !important;
  }
  .swiper-button-prev,
  .portfolio-prev {
    left: 8px !important;
  }
  .swiper-button-next,
  .portfolio-next {
    right: 8px !important;
  }
}

/* ==========================================
   ⚙️ TECHNOLOGIES & TOOLS — CODEWRAPS
   ========================================== */
.tools-section {
  background: linear-gradient(135deg, #f6faff 0%, #eef3ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.tools-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,97,255,0.15), transparent 70%);
  opacity: 0.4;
}
.tools-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,107,107,0.15), transparent 70%);
  opacity: 0.4;
}
 
/* Grid layout */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
 
/* Tool cards */
.tool-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 40px 25px 35px;
  box-shadow: 0 12px 40px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}
.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
}
 
.tool-card img {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
  filter: grayscale(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tool-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}
 
.tool-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.tool-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
 
/* Responsive tweaks */
@media (max-width: 768px) {
  .tools-grid { gap: 22px; }
  .tool-card { padding: 32px 20px; }
  .tool-card img { height: 48px; }
}
/* ==========================================
   🔐 OUR GUARANTEES — CODEWRAPS
   ========================================== */
.guarantees-section {
  background: linear-gradient(135deg, #f6fbff 0%, #eef3ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.guarantees-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,97,255,0.15), transparent 70%);
  opacity: 0.3;
}
.guarantees-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,107,107,0.15), transparent 70%);
  opacity: 0.3;
}
 
/* Grid layout */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
 
/* Card design */
.guarantee-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 50px 25px;
  box-shadow: 0 12px 40px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}
.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
}
 
/* Icon */
.guarantee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1);
}
 
.guarantee-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.guarantee-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
 
/* Responsive */
@media (max-width: 768px) {
  .guarantee-card { padding: 40px 20px; }
  .guarantee-icon { width: 70px; height: 70px; font-size: 1.8rem; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
  padding: 24px 0;
  position: relative;
}
 
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
 
.plan-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 850px; /* same height for all cards */
}
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,97,255,0.15);
  border-top: 4px solid var(--p1);
}
 
.plan-header {
  text-align: center;
  padding: 35px 25px 10px;
}
.plan-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.price {
  margin: 10px 0;
}
.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
  margin-right: 6px;
}
.offer-price {
  color: var(--p1);
  font-size: 2rem;
  font-weight: 800;
}
.plan-header p {
  font-size: 0.95rem;
  color: var(--muted);
}
 
.plan-features {
  list-style: none;
  padding: 0 30px 0 45px;
  margin-top: 20px;
  flex-grow: 1;
}
.plan-features li {
  font-size: 0.95rem;
  color: #4a5772;
  margin-bottom: 10px;
  position: relative;
}
/*.plan-features li::before {*/
/*  position: absolute;*/
/*  left: -22px;*/
/*  font-weight: bold;*/
/*}*/
.plan-features li:has(❌) {
  color: #a1a1a1;
}
 
/* Custom icons using content */
/*.plan-features li::before {
  content: "✓";
  color: var(--p1);
}
.plan-features li:has(❌)::before {
  content: "✖";
  color: #bbb;
} */
 
.plan-footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #e0e6f0;
}
 
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary {
  background: linear-gradient(90deg, var(--p1), var(--p2));
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  border: 2px solid var(--p1);
  color: var(--p1);
}
.btn-outline:hover {
  background: var(--p1);
  color: #fff;
}
 
/* Recommended */
.recommended {
  border-top: 4px solid var(--p2);
  transform: scale(1.05);
}
.recommended:hover {
  transform: scale(1.07);
}
.recommended .badge {
  position: absolute;
  top: 18px;
  right: -40px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 50px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* =====================================
   👨‍💼 TEAM SECTION — CODEWRAPS
   ===================================== */
.team-section {
  background: linear-gradient(135deg, #f7faff, #eef3ff);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.teamSwiper {
  margin-top: 60px;
  position: relative;
}
 
.team-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 97, 255, 0.08);
  text-align: center;
  padding: 40px 25px;
  transition: all 0.4s ease;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
}
 
.team-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0, 97, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.12);
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover img {
  transform: scale(1.1);
}
 
.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.team-card .role {
  color: var(--p1);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.team-card .desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}
 
/* Swiper Controls */
.team-section .swiper-button-prev,
.team-section .swiper-button-next {
  color: var(--p1);
  transition: 0.3s;
}
.team-section .swiper-button-prev:hover,
.team-section .swiper-button-next:hover {
  color: var(--p2);
}
.team-section .swiper-pagination-bullet {
  background: var(--p1);
    opacity: 0.4;
}
.team-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--p2);
}
 





/* Responsive */
@media (max-width: 768px) {
  .team-card { padding: 35px 20px; }
  .team-image { width: 120px; height: 120px; }
}

/* ==========================================
   🏆 CERTIFICATES & AWARDS — CODEWRAPS
   ========================================== */
.awards-section {
  background: linear-gradient(135deg, #f7faff 0%, #eef3ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.awards-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,97,255,0.15), transparent 70%);
  opacity: 0.3;
}
.awards-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,107,107,0.15), transparent 70%);
  opacity: 0.3;
}
 
/* Grid layout */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
 
/* Card */
.award-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 12px 40px rgba(0, 97, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}
.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 97, 255, 0.15);
}
 
/* Icon */
.award-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}
.award-card:hover .award-icon {
  transform: scale(1.1) rotate(6deg);
}
 
/* Text */
.award-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.award-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}
 
/* Responsive tweaks */
@media (max-width: 768px) {
  .award-card { padding: 40px 22px; }
  .award-icon { width: 70px; height: 70px; font-size: 1.8rem; }
}
/* Client logos */
.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 20px 60px rgba(8, 20, 50, 0.04)
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px
}

.client img {
  height: 40px;
  opacity: 0.95
}

/* =====================================
   💬 CONTACT / QUOTE FORM — CODEWRAPS
   ===================================== */
.contact-section {
  background: linear-gradient(135deg, #f7faff 0%, #eef3ff 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}
 
.form-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 97, 255, 0.08);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
 
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: 0.3s;
  background: #fafbff;
}
 
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: var(--p1);
  box-shadow: 0 0 0 3px rgba(0, 97, 255, 0.15);
  background: #fff;
}
 
.form-box textarea {
  resize: none;
  min-height: 100px;
}
 
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}
 
/* Primary button */
.btn-primary {
  background: linear-gradient(90deg, var(--p1), var(--p2));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 97, 255, 0.15);
  transition: 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 97, 255, 0.25);
}
 
/* WhatsApp button */
.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  transition: 0.3s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}
 
/* Privacy note */
.privacy-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.privacy-note a {
  color: var(--p1);
  text-decoration: none;
  font-weight: 600;
}
.privacy-note a:hover {
  text-decoration: underline;
}

/* =============================== */
/* 📱 MOBILE FIXES — CONTACT FORM  */
/* =============================== */
@media (max-width: 576px) {

  /* Make form take more width and adjust spacing */
  .form-box {
    padding: 35px 22px; /* less padding for more usable width */
    margin: 0 10px;     /* small side margin */
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  /* Improve action buttons layout */
  .form-actions {
    flex-direction: column; /* stack vertically */
    align-items: stretch;   /* make them full width */
    gap: 12px;
    margin-top: 25px;
  }

  /* ✅ Primary button full width */
  .btn-primary {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 0;
    border-radius: 10px;
  }

  /* ✅ WhatsApp button — fixed look on mobile */
  .btn-whatsapp {
    width: 100%;              /* full width */
    text-align: center;       /* center text */
    font-size: 0.95rem;
    padding: 12px 0;
    border-radius: 10px;
    display: block;
  }

  /* Optional: reduce shadow intensity for smaller screens */
  .btn-primary,
  .btn-whatsapp {
    box-shadow: 0 6px 18px rgba(0, 97, 255, 0.15);
  }

  /* Privacy note smaller spacing */
  .privacy-note {
    font-size: 0.85rem;
    margin-top: 12px;
  }
}




/* =====================================
   ❓ FAQ SECTION — CODEWRAPS
   ===================================== */

.faq-section {
  background: linear-gradient(135deg, #f7faff 0%, #eef3ff 100%);
  padding: 24px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,97,255,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 97, 255, 0.06);
}
.faq-item.open {
  box-shadow: 0 10px 30px rgba(0,97,255,0.15);
  border-color: rgba(0,97,255,0.25);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b1f47;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: var(--p1);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--p2);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9fbff;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 18px 24px 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: #4b5975;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px;
  }
  .faq-answer {
    padding: 0 18px;
  }
}

 
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================
   🚀 CTA SECTION — CODEWRAPS
   ===================================== */
.cta-section {
  background: linear-gradient(90deg, #0072FF 0%, #00C6FF 50%, #00D46A 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
 
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 70%);
}
 
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
}
 
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
 
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
 
.cta-sub {
  font-size: 1rem;
  color: #e9f7ff;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 28px;
}
 
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
/* Primary Button */
.btn-primary {
  background: #fff;
  color: #0072FF;
  border: none;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 97, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #f0faff;
  box-shadow: 0 15px 35px rgba(0, 97, 255, 0.35);
}
 
/* Outline Button */
/* .btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transform: translateY(-2px);
} */
 
/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .cta-sub {
    font-size: 0.95rem;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
/* =====================================
   🦶 FOOTER SECTION — CODEWRAPS
   ===================================== */
/* =====================================
   🦶 FOOTER — CODEWRAPS
   ===================================== */
.footer-section {
  background: linear-gradient(135deg, #0A1C3F 0%, #00132E 100%);
  color: #dbe8ff;
  padding: 50px 0 5px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 50px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 48px;
  border-radius: 8px;
}
.footer-logo span {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.footer-desc {
  margin: 16px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #bcd0f5;
  max-width: 340px;
}
.footer-contact p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #bcd0f5;
}
.footer-contact a {
  color: #bcd0f5;
  text-decoration: none;
  transition: 0.3s;
}
.footer-contact a:hover {
  color: var(--p1);
}

/* Columns */
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  position: relative;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  color: #bcd0f5;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col a:hover {
  color: var(--p1);
}

/* Social Section */
.footer-social .social-links {
  display: flex;
  gap: 14px;
  margin: 10px 0 16px;
}
.footer-social .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.footer-social .social-links a:hover {
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  transform: translateY(-3px);
}

.footer-tagline {
  color: #bcd0f5;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0072FF, #00C6FF);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 97, 255, 0.15);
}
.footer-btn:hover {
  background: #fff;
  color: #0072FF;
  transform: translateY(-2px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  padding-top: 5px;
  text-align: center;
  color: #a6bbdf;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-social .social-links {
    justify-content: center;
  }
  .footer-btn {
    margin: 0 auto;
  }
}



/* ===============================
   💬 Floating WhatsApp Button
   =============================== */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* Icon */
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  filter: brightness(100%) invert(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }
}

