:root {
    --primary-color: #0052cc;
    --primary-dark: #003a99;
    --primary-light: #e6f0ff;
    --accent-color: #00d9ff;
    --neutral-dark: #0f172a;
    --neutral-light: #f8fafc;
    --neutral-gray: #94a3b8;
    --neutral-text: #1e293b;
    --success-color: #10b981;
    --error-color: #ef4444;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  
  html {
    scroll-behavior: smooth;
  }
  
/* ===== GLOBAL PAGE BACKGROUND ===== */
html, body {
  min-height: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-text);

  /* Layered premium background */
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.12), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(34, 211, 238, 0.12), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.08), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);

  background-attachment: fixed;
  overflow-x: hidden;
}
/* ===== AMBIENT BACKGROUND GLOWS ===== */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

/* Left glow */
body::before {
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 10%;
  left: -200px;
}

/* Right glow */
body::after {
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: 5%;
  right: -200px;
}
/* ===== AMBIENT BACKGROUND GLOWS ===== */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

/* Left glow */
body::before {
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 10%;
  left: -200px;
}

/* Right glow */
body::after {
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: 5%;
  right: -200px;
}

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .logo-icon {
    font-size: 28px;
  }
  
  .logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  
  .nav-link {
    text-decoration: none;
    color: var(--neutral-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-text);
    border-radius: 2px;
    transition: var(--transition);
  }
  
  /* Hero Section */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, #f1f5ff 100%);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--neutral-dark);
  }
  
  .hero-subtitle {
    font-size: 18px;
    color: var(--neutral-gray);
    margin-bottom: 40px;
    line-height: 1.8;
  }
  
  .hero-image {
    position: relative;
    height: 400px;
  }
  
  .floating-box {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
    animation: float 3s ease-in-out infinite;
  }
  
  .box-1 {
    top: 20px;
    left: 0;
    animation-delay: 0s;
  }
  
  .box-2 {
    top: 150px;
    right: 0;
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--accent-color), #00a8cc);
  }
  
  .box-3 {
    bottom: 20px;
    left: 80px;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--success-color), #059669);
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Buttons */
  .btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
  }
  
  .btn-large {
    padding: 16px 48px;
    font-size: 18px;
  }
  
  /* Services Section */
  .services {
    padding: 100px 20px;
    background-color: white;
  }
  
  .section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--neutral-dark);
  }
  
  .section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--neutral-gray);
    margin-bottom: 60px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .service-card {
    background-color: var(--neutral-light);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--neutral-dark);
  }
  
  .service-card p {
    color: var(--neutral-gray);
    margin-bottom: 25px;
    line-height: 1.8;
  }
  
  .service-list {
    list-style: none;
  }
  
  .service-list li {
    padding: 8px 0;
    color: var(--neutral-text);
    font-size: 14px;
  }
  
  /* About Section */
  .about {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--neutral-light) 0%, #f1f5ff 100%);
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-text);
    margin-bottom: 20px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .stat {
    text-align: center;
    padding: 20px;
  }
  
  .stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .stat p {
    color: var(--neutral-gray);
    margin: 0;
  }
  
  /* Contact Form Section */
  .contact {
    padding: 100px 20px;
    background-color: white;
  }
  
  .enquiry-form {
    max-width: 700px;
    margin: 50px auto;
    background-color: var(--neutral-light);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--neutral-dark);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  .form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
  }
  
  .form-group.checkbox input {
    width: auto;
    margin: 0;
  }
  
  .form-group.checkbox label {
    margin: 0;
    font-weight: 500;
  }
  
  .form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    display: none;
  }
  
  .form-message.success {
    background-color: #dcfce7;
    color: #166534;
    display: block;
    border: 1px solid #86efac;
  }
  
  .form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
    border: 1px solid #fca5a5;
  }
  
  /* Footer */
  .footer {
    background-color: var(--neutral-dark);
    color: white;
    padding: 60px 20px 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-section a:hover {
    color: var(--accent-color);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
  }
  
  .footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: var(--accent-color);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      gap: 20px;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      flex-direction: column;
      gap: 0;
      background-color: white;
      display: none;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-link {
      padding: 15px 20px;
      border-bottom: 1px solid #e2e8f0;
    }
  
    .hero {
      grid-template-columns: 1fr;
      padding: 60px 20px;
      gap: 40px;
    }
  
    .hero-title {
      font-size: 36px;
    }
  
    .hero-image {
      height: 300px;
    }
  
    .floating-box {
      font-size: 14px;
      padding: 15px 20px;
    }
  
    .section-title {
      font-size: 32px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .stats {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .enquiry-form {
      padding: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 28px;
    }
  
    .section-title {
      font-size: 24px;
    }
  
    .service-card {
      padding: 25px;
    }
  
    .nav-container {
      height: 60px;
    }
  
    .logo {
      font-size: 20px;
    }
  
    .logo-icon {
      font-size: 24px;
    }
  }
  /* ===== LOGO ===== */
.logo img {
  height: 42px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tagline {
  font-size: 11px;
  color: var(--neutral-gray);
}

/* ===== PITCH DECK ===== */
.pitch {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTACT SIMPLE ===== */
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}
/* ===== LOGO ANIMATION ===== */
.logo img {
  height: 42px;
  animation: logoFadeIn 1.2s ease-out forwards,
             logoFloat 4s ease-in-out infinite;
}

@keyframes logoFadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
/* ===== FLOATING BOX INTERACTION ===== */
.floating-box {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-box:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 20px;
  background: #ffffff;
}

.review-form {
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-form input,
.review-form select,
.review-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-name {
  font-weight: 600;
  color: #1e293b;
}

.review-rating {
  color: #facc15;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  color: #475569;
}

.review-date {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 8px;
}
/* ===== HERO MEDIA ===== */
.hero-media {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Pitch Video */
.hero-video {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  display: none;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
}

.btn-outline:hover {
  background: #6366f1;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-video {
      max-width: 100%;
  }
}
/* ===== ABOUT VISUAL ===== */
.about-visual {
  margin-top: 60px;
  text-align: center;
}

.about-visual img {
  max-width: 900px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-visual img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* ===== EXPERTISE SECTION ===== */
.expertise {
  padding: 100px 20px;
  background: linear-gradient(135deg, #020617, #020617);
  color: #ffffff;
}

.expertise .section-title {
  color: #020617;
}

.expertise .section-subtitle {
  color: #020617;
}

/* Expertise Image */
.expertise-visual {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.expertise-visual img {
  max-width: 720px;
  width: 100%;
  border-radius: 22px;
  background: #c8cad3;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.35);
  transition: transform 0.5s ease;
}

.expertise-visual img:hover {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
  .expertise {
    padding: 70px 20px;
  }

  .about-visual img,
  .expertise-visual img {
    max-width: 100%;
  }
}
.hero-video {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  display: block; /* ALWAYS visible */
}
/* =========================================================
   GLOBAL PREMIUM BACKGROUND
========================================================= */
html, body {
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(99,102,241,0.18), transparent 40%),
    radial-gradient(circle at 80% 25%, rgba(34,211,238,0.16), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(16,185,129,0.12), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  background-attachment: fixed;
}

/* =========================================================
   FLOATING AMBIENT GLOWS
========================================================= */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: floatGlow 18s ease-in-out infinite;
}

body::before {
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 10%;
  left: -220px;
}

body::after {
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: 5%;
  right: -220px;
  animation-delay: 6s;
}

@keyframes floatGlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

/* =========================================================
   SECTION DEPTH
========================================================= */
section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 120px rgba(0,0,0,0.04);
  pointer-events: none;
}

/* =========================================================
   GLASSMORPHISM CARDS
========================================================= */
.service-card,
.review-card,
.enquiry-form {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 25px 60px rgba(15,23,42,0.12);
}

.service-card:hover,
.review-card:hover {
  box-shadow: 0 40px 90px rgba(15,23,42,0.18);
}

/* =========================================================
   VIDEO & IMAGE GLOW
========================================================= */
.hero-video,
.about-visual img,
.expertise-visual img {
  position: relative;
  box-shadow:
    0 30px 80px rgba(15,23,42,0.2),
    0 0 70px rgba(99,102,241,0.18);
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

/* =========================================================
   DARK SECTION BEAUTY
========================================================= */
.expertise,
.footer {
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.2), transparent 60%),
    #020617;
}
.expertise
 {
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.2), transparent 60%),
    #f8f9fa;
}
/* =========================================================
   TEXT SELECTION
========================================================= */
::selection {
  background: rgba(99,102,241,0.25);
}
body.dark {
  background:
    radial-gradient(circle at 20% 15%, rgba(99,102,241,0.2), transparent 40%),
    radial-gradient(circle at 80% 25%, rgba(34,211,238,0.18), transparent 45%),
    linear-gradient(180deg, #020617 0%, #020617 100%);
  color: #e5e7eb;
}
:root {
  --primary-text: #0f172a;   /* dark slate */
  --secondary-text: #334155;
  --muted-text: #64748b;
}

body {
  color: var(--primary-text) !important;
}

p, li, span {
  color: var(--secondary-text);
}

a {
  color: #4f46e5;
  font-weight: 500;
}

a:hover {
  color: #3730a3;
}
body {
  background:
    radial-gradient(circle at 20% 20%, rgba(79,70,229,0.08), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(14,165,233,0.08), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 60px 40px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
img {
  border: 2px solid rgba(99,102,241,0.25);
  border-radius: 14px;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
h1, h2, h3, h4, h5 {
  color: #020617;
  font-weight: 700;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.6rem;
}
button,
.btn {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(79,70,229,0.35);
  cursor: pointer;
}

button:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
}
.card, .service-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}
/* =========================================================
   VISIBILITY FIXES (SAFE OVERRIDES ONLY)
   DOES NOT REMOVE ANY EXISTING CODE
========================================================= */

/* ---------- TEXT VISIBILITY ---------- */
body {
  color: #0f172a !important;
}

p,
li,
span,
.section-subtitle,
.hero-subtitle {
  color: #334155 !important;
}

/* Headings stronger */
h1, h2, h3, h4, h5 {
  color: #020617 !important;
}

/* Navbar links */
.nav-link {
  color: #1e293b !important;
}

.nav-link:hover,
.nav-link.active {
  color: #4f46e5 !important;
}

/* ---------- BACKGROUND IMPROVEMENT ---------- */
body {
  background:
    radial-gradient(circle at 20% 20%, rgba(79,70,229,0.10), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(14,165,233,0.10), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%) !important;
}

/* Make sections readable on light background */
section {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
}

/* ---------- IMAGE BORDER + DEPTH ---------- */
img {
  border: 2px solid rgba(99,102,241,0.35) !important;
  border-radius: 16px;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
}

/* ---------- SERVICE / CARD CLARITY ---------- */
.service-card,
.review-card,
.enquiry-form {
  background: rgba(255,255,255,0.95) !important;
}

/* ---------- BUTTON VISIBILITY ---------- */
.btn,
button {
  color: #ffffff !important;
}

/* ---------- FOOTER TEXT ---------- */
.footer p,
.footer a {
  color: #cbd5e1 !important;
}
/* =====================================================
   FORCE SAME SIZE FOR ACHIEVEMENTS & EXPERTISE IMAGES
   (SAFE OVERRIDE – DOES NOT TOUCH OLD CSS)
===================================================== */

.about-visual img,
.expertise-visual img {
  width: 100%;
  max-width: 420px;     /* same visual width */
  height: 260px;        /* same height */
  object-fit: contain;  /* keep aspect ratio, no stretch */
  display: block;
  margin: 0 auto;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .about-visual img,
  .expertise-visual img {
    max-width: 100%;
    height: 220px;
  }
}
/* =====================================================
   FOOTER HEADING VISIBILITY FIX
   (SAFE OVERRIDE – NO OLD CODE REMOVED)
===================================================== */

.footer h4 {
  color: #ffffff !important;        /* pure white */
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  position: relative;
}

/* Optional underline for better category separation */
.footer h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #6366f1;              /* matches theme */
  margin-top: 6px;
  border-radius: 2px;
}
.footer p,
.footer li,
.footer a {
  color: #cbd5e1 !important;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #22d3ee !important;
}
.footer p,
.footer li,
.footer a {
  color: #cbd5e1 !important;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #22d3ee !important;
}
.form-message {
  margin-top: 14px;
  font-size: 0.95rem;
}
