@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap');

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0d0d0d, #1a0033);
  color: #e6f7ff;
  animation: fadeIn 1s ease-in;
  min-height: 100vh;
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 5px #00c3ff; }
  50% { text-shadow: 0 0 15px #00c3ff, 0 0 30px rgba(0, 195, 255, 0.4); }
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(0, 195, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeIn 1.2s ease;
  border-bottom: 1px solid rgba(0, 195, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Logo / Brand ===== */
.logo .brand {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  animation: glow 3s infinite ease-in-out;
}

/* ===== Navigation Links ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #e6f7ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0%;
  background: #00c3ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #00c3ff;
}

/* ===== Button Style (Optional Utility Class) ===== */
.btn-outline {
  border: 2px solid #00c3ff;
  padding: 8px 18px;
  border-radius: 25px;
  color: #00c3ff;
  background-color: transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background-color: #00c3ff;
  color: #0d0d0d;
  box-shadow: 0 0 15px rgba(0, 195, 255, 0.7);
}

/* ===== Hero Section ===== */
/* ===== HERO SECTION THEME: Transparent Dark + Cyber Blue Glow ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

/* 🎥 Full-screen video background */
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4) contrast(1.1);
}

/* 🔷 Overlay on video */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.85), rgba(0, 24, 39, 0.85));
  z-index: 1;
  backdrop-filter: blur(2px);
}

/* 🟦 Marquee */
.marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0, 195, 255, 0.05);
  border-bottom: 1px solid rgba(0, 195, 255, 0.15);
  padding: 10px 0;
  margin-bottom: 20px;
}
.marquee span {
  display: inline-block;
  animation: marqueeScroll 12s linear infinite;
  font-weight: bold;
  color: #00c3ff;
  font-size: 16px;
  letter-spacing: 1px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* 📦 Grid content */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #e6f9ff;
  text-shadow: 0 0 8px rgba(0, 204, 255, 0.4);
}

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #b3e6ff;
  text-shadow: 0 0 6px rgba(0, 204, 255, 0.2);
}

/* CTA Button */
.btn-outline.cta-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: pulse 2s infinite ease-in-out;
  background: transparent;
  border: 2px solid #00c3ff;
  padding: 10px 20px;
  color: #00c3ff;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 195, 255, 0.3);
  transition: all 0.3s ease;
}
.btn-outline.cta-float:hover {
  background-color: #00c3ff;
  color: #001427;
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.6);
  transform: scale(1.05);
}

/* Animated Glow and Rotation */
.logo-glow {
  display: inline-block;
  color: #00c3ff;
  margin-right: 8px;
  animation: glow 2s ease-in-out infinite, spin 6s linear infinite;
}
@keyframes glow {
  0%, 100% { text-shadow: 0 0 5px #00c3ff; }
  50% { text-shadow: 0 0 20px #00c3ff, 0 0 30px rgba(0, 195, 255, 0.4); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Slide-in Effect */
@keyframes slideUpFadeIn {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Pulse Effect */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 15px 10px rgba(0, 195, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 195, 255, 0); }
}


/* About Section */
/* ===== ABOUT SECTION (Dark Black + Cyber Blue) ===== */
.about-section {
  background: linear-gradient(to bottom right, #050505, #001827);
  color: #b3e6ff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Animated glowing background */
.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.1), transparent 70%);
  animation: rotateBackground 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg) scale(1.5); }
  100% { transform: rotate(360deg) scale(1.5); }
}

/* ===== Grid Layout ===== */
.about-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* ===== Text Section ===== */
.about-text {
  max-width: 900px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  color: #e6f7ff;
}

.about-text.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Feature Box Glass Effect ===== */
.feature-block {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 195, 255, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.feature-block:hover {
  background: rgba(0, 195, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.2);
  transform: translateY(-5px);
}

/* ===== Headings in Features ===== */
.feature-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #00c3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-shadow: 0 0 6px rgba(0, 195, 255, 0.4);
}

/* ===== Description Text ===== */
.feature-block p {
  font-size: 16px;
  color: #c7eaff;
  line-height: 1.7;
  margin: 0 auto;
  text-shadow: 0 0 4px rgba(0, 195, 255, 0.1);
}

/* ===== Icons ===== */
.feature-icon {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.6);
}

/* ===== Pulse Glow Animation ===== */
.glow-icon {
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px #00c3ff);
  }
  50% {
    filter: drop-shadow(0 0 15px #00faff);
  }
}

/* ===== Shimmer Entrance ===== */
.shimmer {
  animation: shimmerFade 1.2s ease-in-out both;
}

@keyframes shimmerFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/* ========== APPROACH SECTION ========== */
/* === Tamin Insights Section === */
.approach-shadow-wrapper { 
  position: relative;
  background-color: #0a0a0a;
  padding: 80px 0;
  overflow: hidden;
  z-index: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  background-repeat: repeat;
  background-size: contain;
}

.approach-shadow-wrapper::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.08), transparent 60%);
  animation: rotateGlowBg 40s linear infinite;
  z-index: 0;
}

@keyframes rotateGlowBg {
  0% { transform: rotate(0deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1.2); }
}

.approach-section {
  background: linear-gradient(to bottom right, #0d0d0d, #001933); /* Deep black to navy */
  color: #e6f7ff;
  padding: 80px 40px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 195, 255, 0.1);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.approach-section .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #00c3ff;
  text-shadow: 0 0 12px rgba(0, 195, 255, 0.6);
  margin-bottom: 50px;
}

.approach-section .brand {
  display: block;
  font-size: 42px;
  color: #5ee6f0;
  text-shadow: 0 0 14px rgba(94, 230, 240, 0.4);
}

.approach-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  z-index: 1;
  position: relative;
}

.approach-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}

.approach-box {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(5px);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0, 195, 255, 0.1);
  width: 100%;
  max-width: 340px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.approach-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.4);
}

.approach-box img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  filter: brightness(1.6) drop-shadow(0 0 8px #00c3ff);
}

.approach-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #00c3ff;
  text-shadow: 0 0 8px rgba(0, 195, 255, 0.4);
}

.approach-box p {
  font-size: 15px;
  margin-bottom: 14px;
  color: #c8eaff;
}

.approach-box ul {
  list-style: disc inside;
  color: #e6f7ff;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
}

.approach-box ul li {
  margin-bottom: 6px;
}

/* Fade Up Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}



/* ========= METHODOLOGY SECTION (Black + Pink) ========= */
.methodology-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom right, #0a0a0a, #001933); /* Black to deep navy */
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Optional tech texture */
  background-repeat: repeat;
  background-size: contain;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.methodology-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.06), transparent 70%);
  animation: rotateGlowBg 60s linear infinite;
  z-index: 0;
}

@keyframes rotateGlowBg {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

.methodology-title {
  color: #00ccff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.7);
  position: relative;
  z-index: 1;
}

.methodology-subtitle {
  color: #ccefff;
  font-size: 16px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 204, 255, 0.3);
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px 30px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.step-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 22px rgba(0, 204, 255, 0.05);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(50px);
}

.step-box.animate {
  animation: fadeSlideUp 0.6s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 204, 255, 0.4);
  animation: pulseGlow 2.5s infinite ease-in-out;
  transition: box-shadow 0.4s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 204, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
  }
}

.step-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(1.3) contrast(1.2);
}

.step-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(0, 204, 255, 0.4);
}

.step-box h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ccefff;
}

.step-num {
  font-size: 22px;
  font-weight: 600;
  color: #00ccff;
  margin-bottom: 8px;
}

.services-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom right, #0a0a0a, #001933); /* deep black to navy */
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* subtle tech pattern */
  background-repeat: repeat;
  background-size: contain;
  color: #ccefff;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 204, 255, 0.06), transparent 60%);
  animation: rotateGlowServices 40s linear infinite;
  z-index: 0;
}

@keyframes rotateGlowServices {
  0% {
    transform: rotate(0deg) scale(1.4);
  }
  100% {
    transform: rotate(360deg) scale(1.4);
  }
}

.services-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #00ccff;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.6);
  position: relative;
  z-index: 1;
}

.services-title .highlight {
  color: #66e0ff;
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.service-box {
  max-width: 300px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.05);
  opacity: 0;
  transform: translateY(40px);
}

.service-box.animate {
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 204, 255, 0.3);
}

.service-box img,
.service-box svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 6px rgba(0, 204, 255, 0.5));
  transition: transform 0.3s ease;
}

.service-box img:hover,
.service-box svg:hover {
  transform: scale(1.1) rotate(6deg);
}

.service-box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #00ccff;
  margin-bottom: 10px;
  text-shadow: 0 0 6px rgba(0, 204, 255, 0.4);
}

.service-box p {
  font-size: 14px;
  color: #e6f9ff;
  line-height: 1.6;
}


/* ====== CONTACT SECTION (Dark Pink Theme) ====== */
.contact-section {
  padding: 80px 40px;
  background: linear-gradient(to bottom right, #050505, #000c1a); /* deep black to navy */
  color: #cceeff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* optional tech-style pattern */
  background-repeat: repeat;
  background-size: contain;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 204, 255, 0.08), transparent 70%);
  animation: rotateContactGlow 40s linear infinite;
  z-index: 0;
}

@keyframes rotateContactGlow {
  0% {
    transform: rotate(0deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1.5);
  }
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  text-align: left;
  color: #00ccff;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-title .highlight-bar {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.contact-title .highlight-bar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(0, 195, 255, 0.4);
  z-index: -1;
  border-radius: 6px;
}

/* FORM STYLES */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

label {
  font-weight: bold;
  margin-bottom: 10px;
  color: #b3ecff;
}

label span {
  color: #00ccff;
}

input,
textarea {
  border: none;
  border-bottom: 2px solid #00ccff;
  padding: 10px;
  font-size: 16px;
  background: transparent;
  color: #e6f9ff;
  transition: border-color 0.3s, transform 0.3s;
}

input::placeholder,
textarea::placeholder {
  color: #88bdda;
}

input:focus,
textarea:focus {
  border-bottom-color: #66e0ff;
  transform: scale(1.02);
  outline: none;
}

/* BUTTON */
.contact-btn {
  align-self: flex-start;
  padding: 12px 30px;
  background-color: #00ccff;
  color: #001;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  background-color: #00b8e6;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.6);
}

/* ====== FOOTER STYLING (Dark Transparent Blue Theme) ====== */
.site-footer {
  background: linear-gradient(to top left, #050505, #000c1a); /* Deep black to navy */
  color: #cceeff;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.08), transparent 70%);
  animation: rotateFooterGlow 60s linear infinite;
  z-index: 0;
}

@keyframes rotateFooterGlow {
  0% {
    transform: rotate(0deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1.5);
  }
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  transition: transform 0.4s ease;
}

.footer-column:hover {
  transform: translateY(-5px);
}

.logo-col img.footer-logo {
  width: 160px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(0, 204, 255, 0.3));
}

.logo-col h3 {
  font-size: 22px;
  font-weight: bold;
  color: #00ccff;
}

.links-col h4,
.contact-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #88e0ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #b3ecff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s;
}

.footer-column a:hover {
  color: #00ccff;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #a0d8f1;
}

/* Bottom copyright line */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #cceeff;
  z-index: 2;
  position: relative;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    margin-bottom: 30px;
  }
}


/* ===================== */
/* ✅ FULL RESPONSIVE FIXES */
/* ===================== */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .approach-section,
  .methodology-section,
  .services-section,
  .contact-section {
    padding: 60px 20px;
  }

  .approach-content {
    flex-direction: column;
    align-items: center;
  }

  .approach-columns {
    max-width: 100%;
    justify-content: center;
  }

  .approach-image {
    text-align: center;
  }

  .approach-image img {
    max-width: 80%;
  }

  .methodology-steps {
    gap: 30px 20px;
  }
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .about-grid {
    flex-direction: column;
  }

  .about-text {
    padding: 0;
  }

  .form-row {
    flex-direction: column;
  }

  .approach-box {
    max-width: 100%;
  }

  .service-box {
    max-width: 100%;
  }

  .contact-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .methodology-title,
  .contact-title {
    font-size: 28px;
  }

  .step-box h4 {
    font-size: 13px;
  }

  .services-title {
    font-size: 24px;
  }

  .service-box h3 {
    font-size: 16px;
  }

  .feature h3 {
    font-size: 18px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
