/* ===================================================
   NORTHBYTE WEB STUDIO — DESKTOP STYLESHEET
   Version: 5.0 (Enhanced Structure + Visual Refinement)
   Target: ≥1025px (Desktop and Large Screens)
   Author: Northbyte Web Studio
=================================================== */


/* ===================================================
   1. HEADER & NAVIGATION
=================================================== */
.header {
  background: var(--nb-navy);
  color: #fff;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 42px;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 1.4rem;
  margin: 0;
}

.logo-text .north {
  font-weight: 700;
  color: #fff;
}

.logo-text .byte {
  color: var(--nb-teal);
  font-family: 'Courier New', monospace;
}

.nav {
  display: flex;
  gap: 0.8rem;
}

.nav a {
  color: #fff;
  padding: 0.6rem 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.nav a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--nb-teal);
}

/* Header primary CTA */
.btn-nav {
  margin-left: 0.5rem;
  background: #00a2ff;
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,162,255,0.15);
  transition: all .25s ease;
}
.btn-nav:hover { background:#008ce0; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(0,162,255,0.2); text-decoration: none; }

.menu-toggle {
  display: none;
}

/* ===================================================
   NAVIGATION DROPDOWN — REFINED
=================================================== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: #fff;
  font-weight: 500;
  padding: 0.6rem 1rem;
  text-decoration: none;
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.2s ease, border-bottom 0.2s ease;
}

.dropbtn:hover {
  opacity: 1;
  border-bottom: 2px solid var(--nb-teal);
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--nb-navy);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: var(--nb-teal);
  color: var(--nb-navy);
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* ===================================================
   2. HERO SECTION — MODERN AGENCY DESIGN
=================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #08172b 0%, #0d2f6f 50%, #003C8F 100%);
  color: #fff;
  padding: 8rem 1rem;
  overflow: hidden;
}

/* --- Grid Layout --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

/* --- Left Column: Text --- */
.hero-content {
  max-width: 620px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 140, 255, 0.15);
}

.hero-heading {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 136, 255, 0.15);
}

.gradient-text {
  background: linear-gradient(90deg, #00b4ff, #00ffe1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  border-bottom: 3px solid #00a2ff;
  padding-bottom: 0.2rem;
}

/* Ensure all hero heading text stays bright */
.hero-heading,
.hero-heading span {
  color: #ffffff;
}

/* Keep gradient accent for first line only */
.hero-heading .gradient-text {
  background: linear-gradient(90deg, #00b4ff, #00ffe1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Highlight span back to plain white with underline accent */
.hero-heading .highlight {
  color: #ffffff;
  border-bottom: 3px solid #00a2ff;
  padding-bottom: 0.2rem;
}


.hero-subtext {
  font-size: 1.15rem;
  color: #e0e8f5;
  opacity: 0.95;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: #0094FF;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 148, 255, 0.15);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #0078e6;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 148, 255, 0.2);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #fff;
  color: var(--nb-navy);
}

/* --- Right Column: Image Mockup --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  width: 520px;
  max-width: 100%;
}

.hero-mockup {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* --- Social Proof Stats --- */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: #00b4ff;
}

.stat span {
  font-size: 0.9rem;
  color: #b8c8e0;
  font-weight: 500;
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* ===================================================
   3. RESULTS SECTION
=================================================== */
.results-section {
  background: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  background: var(--nb-cloud);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(11, 30, 63, 0.12);
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.result-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--nb-navy);
}

.result-card p {
  color: var(--nb-slate);
  margin-bottom: 1rem;
}

.result-label {
  display: inline-block;
  background: var(--nb-teal);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===================================================
   4. WHY SECTION
=================================================== */
.why-section {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.subtitle-left {
  color: var(--nb-slate);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--nb-navy);
}

.why-text p {
  color: var(--nb-slate);
  margin: 0;
}

.why-cta {
  margin-top: 2rem;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--nb-navy);
}

.why-card blockquote {
  margin: 1rem 0;
  font-style: italic;
  color: var(--nb-slate);
  line-height: 1.7;
}

.why-card cite {
  font-style: normal;
  color: var(--nb-teal);
  font-weight: 600;
}

.why-card p {
  margin: 0;
  color: var(--nb-slate);
}

/* ===================================================
   5. SOLUTIONS SECTION (Cards)
=================================================== */
.solutions {
  background: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}

.solutions .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--nb-cloud);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(11, 30, 63, 0.15);
}

.card-featured {
  background: linear-gradient(135deg, #0a1b2e 0%, #003C8F 100%);
  color: #fff;
}

.card-featured h3,
.card-featured p,
.card-featured .features li {
  color: #fff;
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #00d4aa;
  color: var(--nb-navy);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 212, 170, 0.3);
}

.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nb-teal);
  margin-top: auto;
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.card-featured .card-price {
  color: #00d4aa;
}

/* Fix button colors for non-featured cards */
.card .btn-outline {
  border: 2px solid var(--nb-teal);
  color: var(--nb-teal);
  background: transparent;
}

.card .btn-outline:hover {
  background: var(--nb-teal);
  color: #fff;
}

/* Keep featured card button styling */
.card-featured .btn-primary {
  background: #00d4aa;
  color: var(--nb-navy);
}

.card-featured .btn-primary:hover {
  background: #00c49a;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.features li::before {
  content: "✔ ";
  color: var(--nb-teal);
  font-weight: bold;
}

.card-featured .features li::before {
  color: #00d4aa;
}

.solutions-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(11, 30, 63, 0.08);
}

.solutions-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--nb-slate);
}


/* ===================================================
   6. PROCESS SECTION
=================================================== */
.process-section {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b4ff, #0078e6);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 148, 255, 0.2);
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--nb-navy);
}

.process-card p {
  color: var(--nb-slate);
  margin-bottom: 1rem;
}

.process-time {
  display: inline-block;
  background: var(--nb-cloud);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--nb-slate);
  font-weight: 600;
}

.process-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-badge {
  font-size: 3rem;
}

.guarantee-text {
  text-align: left;
}

.guarantee-text h3 {
  margin-bottom: 0.5rem;
  color: var(--nb-navy);
}

.guarantee-text p {
  margin: 0;
  color: var(--nb-slate);
}

/* ===================================================
   7. TESTIMONIALS SECTION
=================================================== */
.testimonials {
  background: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--nb-cloud);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(11, 30, 63, 0.12);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--nb-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--nb-navy);
  font-weight: 700;
}

.testimonial-author span {
  color: var(--nb-teal);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===================================================
   8. URGENCY SECTION
=================================================== */
.urgency-section {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}

.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-col {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
}

.urgency-col.danger {
  border-left: 4px solid #ff4757;
}

.urgency-col.success {
  border-left: 4px solid #00d4aa;
}

.urgency-col h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.urgency-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.urgency-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(11, 30, 63, 0.08);
  color: var(--nb-slate);
}

.urgency-list li:last-child {
  border-bottom: none;
}

.urgency-cta {
  margin-top: 3rem;
}

.urgency-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: #856404;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}


/* ===================================================
   9. LEAD MAGNET SECTION
=================================================== */
.lead-section {
  background: linear-gradient(135deg, #0a1b2e 0%, #003C8F 100%);
  color: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}

.lead-content {
  max-width: 700px;
  margin: 0 auto;
}

.lead-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.lead-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.lead-section p {
  color: #e0e8f5;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.lead-form {
  display: flex;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto 1rem;
}

.lead-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.lead-form button {
  white-space: nowrap;
}

.lead-privacy {
  font-size: 0.9rem;
  color: #b8c8e0;
  margin-top: 1rem;
}


/* ===================================================
   10. CONTACT SECTION
=================================================== */
.contact-section {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--nb-slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-box,
.contact-cta-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
}

.contact-info-box h3,
.contact-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--nb-navy);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--nb-cloud);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--nb-teal);
  transform: translateX(5px);
}

.contact-method:hover .contact-icon,
.contact-method:hover strong,
.contact-method:hover span {
  color: #fff;
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-method strong {
  color: var(--nb-navy);
  font-weight: 700;
}

.contact-method span {
  color: var(--nb-slate);
  font-size: 0.95rem;
}

.response-time {
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  padding: 1rem;
  border-radius: var(--radius);
  color: #2e7d32;
  font-size: 0.95rem;
}

.next-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  counter-reset: step-counter;
}

.next-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--nb-teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.next-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--nb-navy);
}

.next-steps p {
  margin: 0;
  color: var(--nb-slate);
  font-size: 0.95rem;
}

/* ===================================================
   11. FAQ SECTION
=================================================== */
.faq-section {
  background: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}

.faq-grid {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: left;
}

.faq-item {
  background: var(--nb-cloud);
  border: 1px solid rgba(11, 30, 63, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.08);
}

.faq-item summary {
  font-weight: 700;
  color: var(--nb-navy);
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nb-teal);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--nb-slate);
  line-height: 1.7;
}


/* ===================================================
   7. FOOTER
=================================================== */
.footer {
  background: #08172B;
  color: #e4eaf0;
  padding: 5rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #00a2ff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer a {
  color: #eaf3ff;
  opacity: 0.9;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #00a2ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #b4bcc5;
  font-size: 0.85rem;
}

/* ===================================================
   END OF FILE
=================================================== */



/* ===================================================
   WEB DESIGN SERVICE PAGE
=================================================== */

/* HERO */
.hero-web {
  background: linear-gradient(135deg, #08172b 0%, #003C8F 100%);
  color: #fff;
  padding: 7rem 1rem;
  text-align: left;
}
.hero-web .hero-heading { margin-bottom: 1rem; }
.hero-web .hero-subtext { max-width: 700px; color: #e0e8f5; }

/* OVERVIEW */
.overview {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.overview p { max-width: 800px; margin: 0 auto; }

/* FEATURES GRID */
.features-section {
  background: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}
.features-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.features-section .card {
  background: var(--nb-cloud);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease;
}
.features-section .card:hover { transform: translateY(-6px); }

/* PROCESS */
.process {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.process .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* FAQ */
.faq {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.faq details {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  background: var(--nb-cloud);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--nb-navy);
}
.faq p { margin-top: 0.8rem; }

/* CTA */
.cta-section {
  background: var(--nb-navy);
  color: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}
.cta-section .btn-primary {
  background: var(--nb-teal);
  color: var(--nb-navy);
}


/* ===================================================
   AUTOMATION SERVICES PAGE
=================================================== */

/* HERO */
.hero-automation {
  background: linear-gradient(135deg, #061526 0%, #0062b8 100%);
  color: #fff;
  padding: 7rem 1rem;
}
.hero-automation .hero-heading { margin-bottom: 1rem; }
.hero-automation .hero-subtext { max-width: 720px; color: #e0e8f5; }

/* OVERVIEW */
.overview {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.overview p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--nb-slate);
}

/* FEATURES */
.features-section {
  background: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}
.features-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.features-section .card {
  background: var(--nb-cloud);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease;
}
.features-section .card:hover { transform: translateY(-6px); }

/* PROCESS */
.process {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.process .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* FAQ */
.faq {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.faq details {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  background: var(--nb-cloud);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--nb-navy);
}
.faq p { margin-top: 0.8rem; }

/* CTA */
.cta-section {
  background: var(--nb-navy);
  color: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}
.cta-section .btn-primary {
  background: var(--nb-teal);
  color: var(--nb-navy);
}


/* ===================================================
   BRANDING SERVICES PAGE
=================================================== */

/* HERO */
.hero-branding {
  background: linear-gradient(135deg, #0a1b2e 0%, #0047b2 100%);
  color: #fff;
  padding: 7rem 1rem;
}
.hero-branding .hero-heading { margin-bottom: 1rem; }
.hero-branding .hero-subtext { max-width: 720px; color: #e0e8f5; }

/* OVERVIEW */
.overview {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.overview p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--nb-slate);
}

/* FEATURES */
.features-section {
  background: #fff;
  padding: var(--section-space) 1rem;
  text-align: center;
}
.features-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.features-section .card {
  background: var(--nb-cloud);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease;
}
.features-section .card:hover { transform: translateY(-6px); }

/* PROCESS */
.process {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.process .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* FAQ */
.faq {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.faq details {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  background: var(--nb-cloud);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--nb-navy);
}
.faq p { margin-top: 0.8rem; }

/* CTA */
.cta-section {
  background: var(--nb-navy);
  color: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}
.cta-section .btn-primary {
  background: var(--nb-teal);
  color: var(--nb-navy);
}


/* ===================================================
   ABOUT PAGE
=================================================== */

/* HERO */
.hero-about {
  background: linear-gradient(135deg, #08172b 0%, #0047b2 100%);
  color: #fff;
  padding: 7rem 1rem;
}
.hero-about .hero-heading { margin-bottom: 1rem; }
.hero-about .hero-subtext { max-width: 720px; color: #e0e8f5; }

/* STORY SECTION */
.about-story {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.about-story .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* VALUES */
.about-values {
  background: var(--nb-cloud);
  text-align: center;
  padding: var(--section-space) 1rem;
}
.about-values .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-values .card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(11, 30, 63, 0.05);
  transition: transform 0.3s ease;
}
.about-values .card:hover { transform: translateY(-6px); }

/* WHY CHOOSE US */
.about-why {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.about-why .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-why ul.features {
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background: var(--nb-navy);
  color: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}
.cta-section .btn-primary {
  background: var(--nb-teal);
  color: var(--nb-navy);
}

/* ===================================================
   TRUST BAR
=================================================== */
.trust {
  background: var(--nb-cloud);
  padding: 1rem 0;
  border-top: 1px solid rgba(10,27,46,0.06);
  border-bottom: 1px solid rgba(10,27,46,0.06);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.trust-title {
  margin: 0;
  color: #6b7a8c;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.trust-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
  opacity: 0.85;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.trust-logos img:hover {
  opacity: 1;
  filter: none;
}


/* ===================================================
   CONTACT PAGE
=================================================== */

/* HERO */
.hero-contact {
  background: linear-gradient(135deg, #08172b 0%, #0047b2 100%);
  color: #fff;
  padding: 7rem 1rem;
}
.hero-contact .hero-heading { margin-bottom: 1rem; }
.hero-contact .hero-subtext { max-width: 720px; color: #e0e8f5; }

/* CONTACT INFO */
.contact-info {
  background: #fff;
  padding: var(--section-space) 1rem;
}
.contact-info .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}
.contact-list a {
  color: var(--nb-teal);
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }

.map-wrapper iframe {
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CONTACT FORM */
.contact-form-section {
  background: var(--nb-cloud);
  padding: var(--section-space) 1rem;
  text-align: center;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--nb-navy);
}
.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--nb-teal);
  outline: none;
}

/* CTA Section */
.cta-section {
  background: var(--nb-navy);
  color: #fff;
  text-align: center;
  padding: var(--section-space) 1rem;
}
.cta-section .btn-primary {
  background: var(--nb-teal);
  color: var(--nb-navy);
}
