/* ========== RESET & BASE ========== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --primary: #1a6bff;
  --primary-dark: #0047cc;
  --accent: #00d4ff;
  --dark: #0a0f1e;
  --dark2: #111827;
  --text-light: #94a3b8;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a6bff 0%, #00d4ff 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0f1e; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ========== NAVBAR ========== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(26,107,255,0.15);
  backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #ffffff;   /* ✅ White border */
}

.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}

.nav-logo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-item { margin: 0 5px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

.navbar-nav .nav-link:hover {
  color: white !important;
  background: rgba(26,107,255,0.1);
}

.nav-quote-btn {
  background: var(--gradient);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26,107,255,0.4);
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,255,0.6);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
#hero {
  min-height: 100vh;
  background: linear-gradient(rgba(5,10,25,0.75), rgba(5,10,25,0.75)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--primary);
  border-radius: 50%;
  animation: floatParticle 6s infinite ease-in-out;
  opacity: 0.6;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,255,0.15);
  border: 1px solid rgba(26,107,255,0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-title .static-text {
  display: block;
  opacity: 0;
  animation: slideUpFade 0.8s ease 0.3s forwards;
}

.hero-typed-line {
  display: block;
  min-height: 1.2em;
}

.hero-typed-wrapper {
  color: var(--accent);
  position: relative;
}

.hero-typed-wrapper .typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.75s infinite;
  border-radius: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 35px;
  opacity: 0;
  animation: slideUpFade 0.8s ease 0.8s forwards;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUpFade 0.8s ease 1.1s forwards;
}

.btn-primary-custom {
  background: var(--gradient);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(26,107,255,0.4);
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(26,107,255,0.6);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  opacity: 0;
  animation: slideUpFade 0.8s ease 1.4s forwards;
  flex-wrap: wrap;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-stat p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: slideUpFade 1s ease 0.5s forwards;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 20px;
  color: white;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-floating-card.card1 {
  top: -20px; left: -30px;
  animation-delay: 0s;
}

.hero-floating-card.card2 {
  bottom: 30px; right: -20px;
  animation-delay: 2s;
}

.hero-floating-card .fc-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.hero-floating-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.hero-floating-card p {
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========== ABOUT SECTION ========== */
#about {
  padding: 110px 0;
  background: white;
  overflow: hidden;
}

.about-eyebrow {
  display: inline-block;
  background: rgba(26,107,255,0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark2);
  margin-bottom: 20px;
}

.about-heading span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}

.about-feature-item:hover { color: var(--primary); transform: translateX(5px); }

.about-check {
  width: 28px; height: 28px;
  background: rgba(26,107,255,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient);
  color: white;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26,107,255,0.4);
}

.about-experience-badge h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.9;
}

/* ========== SERVICES SECTION ========== */
#services {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,107,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.section-eyebrow {
  display: inline-block;
  background: rgba(26,107,255,0.15);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(0,212,255,0.3);
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: white;
  margin-bottom: 15px;
}

.section-heading span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.service-card:hover::before { opacity: 0.06; }

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(26,107,255,0.5);
  box-shadow: 0 20px 50px rgba(26,107,255,0.2);
}

.service-icon-wrap {
  width: 65px; height: 65px;
  background: rgba(26,107,255,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  font-size: 1.8rem;
  color: var(--accent);
  border: 1px solid rgba(26,107,255,0.25);
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  color: white;
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
}

.service-card h4 {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.03);
}

.service-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.service-link:hover { gap: 10px; color: var(--accent); }

/* ========== PROJECTS SECTION ========== */
#projects {
  padding: 110px 0;
  background: #f8fafc;
}

.dark-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark2);
}

.dark-heading span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-eyebrow {
  display: inline-block;
  background: rgba(26,107,255,0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: all 0.4s;
}

.project-tag {
  display: inline-block;
  background: var(--gradient);
  color: white;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 8px;
  width: fit-content;
}

.project-overlay h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.project-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  margin: 5px 0 0;
}

.project-hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--gradient);
  color: white;
  width: 55px; height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(26,107,255,0.5);
}

.project-card:hover .project-hover-btn {
  transform: translate(-50%, -50%) scale(1);
}

/* ========== WHY CHOOSE US ========== */
#why-us {
  padding: 110px 0;
  background: white;
}

.why-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26,107,255,0.15);
  border-color: rgba(26,107,255,0.2);
}

.why-icon {
  width: 70px; height: 70px;
  background: rgba(26,107,255,0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.4s;
}

.why-card:hover .why-icon {
  background: var(--gradient);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark2);
  margin-bottom: 12px;
}

.why-card p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
#contact {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #111827 100%);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,107,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(26,107,255,0.4);
  background: rgba(26,107,255,0.05);
  transform: translateX(8px);
}

.contact-info-icon {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.contact-info-card h6 {
  color: var(--text-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
}

.contact-info-card p {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.form-control-custom {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  outline: none;
  margin-bottom: 16px;
}

.form-control-custom::placeholder { color: rgba(255,255,255,0.35); }

.form-control-custom:focus {
  border-color: var(--primary);
  background: rgba(26,107,255,0.08);
  box-shadow: 0 0 0 3px rgba(26,107,255,0.15);
}

.form-label-custom {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}

/* ========== FOOTER ========== */
footer {
  background: #050a14;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #ffffff;   /* ✅ White border */
  object-fit: cover;
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.footer-brand-name span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 290px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 30px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(26,107,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--accent); }

.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  #hero { text-align: center; }
  .hero-desc { margin: 0 auto 35px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { margin-top: 50px; }
  .about-experience-badge { left: 10px; }
  .contact-form-wrap { margin-top: 40px; }
}

@media (max-width: 767px) {
  #navbar { padding: 10px 0; }
  .nav-logo img { width: 40px; height: 40px; }
  .contact-form-wrap { padding: 25px; }
  .footer-brand-name { font-size: 1.1rem; }
}

/* ========== UTILITY ========== */
.z-rel { position: relative; z-index: 1; }

/* =====================================================
   ✅✅ ENTERPRISE RESPONSIVE SYSTEM (ADD AT BOTTOM)
   ===================================================== */

/* Prevent horizontal overflow globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Make all images fully responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Make containers fluid */
.container,
.container-fluid {
  width: 90%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* Fix navbar collapse spacing */
@media (max-width: 991px) {

  .navbar-nav {
    background: rgba(10,15,30,0.98);
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 8px 0;
  }

  .nav-quote-btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }

}

/* HERO MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  #hero {
    padding: 120px 20px 80px;
    text-align: center;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .hero-stat h3 {
    font-size: 1.4rem;
  }

  .hero-floating-card {
    display: none; /* hide floating cards on small screens */
  }

}

/* ABOUT SECTION MOBILE */
@media (max-width: 768px) {

  #about {
    padding: 80px 20px;
    text-align: center;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-feature-item {
    justify-content: center;
    text-align: left;
  }

  .about-experience-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin: 20px auto 0;
  }

}

/* SERVICES MOBILE */
@media (max-width: 768px) {

  #services {
    padding: 80px 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card-img {
    height: 140px;
  }

}

/* PROJECTS MOBILE */
@media (max-width: 768px) {

  #projects {
    padding: 80px 20px;
  }

  .project-card img {
    height: 220px;
  }

}

/* WHY US MOBILE */
@media (max-width: 768px) {

  #why-us {
    padding: 80px 20px;
  }

  .why-card {
    padding: 30px 20px;
  }

}

/* CONTACT MOBILE */
@media (max-width: 768px) {

  #contact {
    padding: 80px 20px;
  }

  .contact-info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-wrap {
    padding: 25px;
  }

}

/* FOOTER MOBILE */
@media (max-width: 768px) {

  .footer-top {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

}

/* SMALL MOBILE (IPHONE SE etc) */
@media (max-width: 480px) {

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-stat h3 {
    font-size: 1.2rem;
  }

  .section-heading,
  .dark-heading {
    font-size: 1.5rem;
  }

  .about-heading {
    font-size: 1.5rem;
  }

}

/* LARGE SCREENS OPTIMIZATION */
@media (min-width: 1400px) {

  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

}

/* ULTRA WIDE 4K SCREENS */
@media (min-width: 1800px) {

  .container {
    max-width: 1500px;
  }

}
/* ================= MOBILE SIDEBAR ================= */

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-100%;
    width:85%;
    max-width:320px;
    height:100vh;
    background:#02133b;
    z-index:99999;
    transition:.4s ease;
    padding:25px;
    overflow-y:auto;
}

.mobile-sidebar.active{
    left:0;
}

.sidebar-close{
    color:#fff;
    font-size:28px;
    cursor:pointer;
    margin-bottom:30px;
}

.mobile-sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:500;
    margin:18px 0;
}

.mobile-sidebar a:hover{
    color:#00d4ff;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:99998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Dropdown */

.sidebar-dropdown-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:20px;
    margin:18px 0;
    cursor:pointer;
}

.sidebar-dropdown{
    display:none;
    padding-left:15px;
}

.sidebar-dropdown.active{
    display:block;
}

.sidebar-dropdown a{
    font-size:17px;
    color:#d1d5db;
    margin:12px 0;
}

/* Desktop Hide */

@media(min-width:992px){
    .mobile-sidebar,
    .mobile-overlay{
        display:none;
    }
}

/* Mobile */

@media(max-width:991px){

    #navmenu{
        display:none !important;
    }

    .navbar-toggler{
        display:block;
        border:none;
        background:none;
        color:#fff;
        font-size:28px;
    }

    .nav-logo img{
        height:45px;
    }

    .nav-logo-text{
        font-size:24px;
    }
}
/* ================= FOOTER RESPONSIVE FIX ================= */

footer{
    background:#020b24;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.footer-wave{
    width:100%;
    display:block;
}

.footer-top{
    padding:80px 0 50px;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    margin-bottom:20px;
}

.footer-brand img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.footer-brand-name{
    font-size:32px;
    font-weight:700;
    color:#fff;
}

.footer-brand-name span{
    color:#00bfff;
}

.footer-desc{
    color:#cbd5e1;
    line-height:1.8;
    margin-top:20px;
    margin-bottom:25px;
    max-width:400px;
}

.footer-social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.social-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-btn:hover{
    background:#00bfff;
    transform:translateY(-4px);
    color:#fff;
}

.footer-heading{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-heading::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:4px;
    background:#00bfff;
    border-radius:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-links a:hover{
    color:#00bfff;
    padding-left:5px;
}

.footer-links i{
    color:#00bfff;
    font-size:12px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:22px;
}

.footer-contact-icon{
    min-width:42px;
    width:42px;
    height:42px;
    background:rgba(0,191,255,0.15);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00bfff;
}

.footer-contact-item p{
    margin:0;
    color:#cbd5e1;
    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
}

.footer-bottom-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#00bfff;
}

/* ================= TABLET ================= */

@media (max-width:991px){

    .footer-top{
        padding:70px 0 40px;
    }

    .footer-brand{
        justify-content:flex-start;
    }

    .footer-brand-name{
        font-size:28px;
    }

    .footer-desc{
        max-width:100%;
    }

    .footer-heading{
        margin-top:20px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }
}

/* ================= MOBILE ================= */

@media (max-width:767px){

    .footer-top{
        padding:60px 0 35px;
    }

    .footer-brand{
        margin-bottom:15px;
    }

    .footer-brand img{
        width:48px;
        height:48px;
    }

    .footer-brand-name{
        font-size:24px;
    }

    .footer-desc{
        font-size:15px;
        line-height:1.8;
    }

    .footer-heading{
        font-size:28px;
        margin-top:35px;
        margin-bottom:25px;
    }

    .footer-links li{
        margin-bottom:16px;
    }

    .footer-links a{
        font-size:18px;
    }

    .footer-contact-item{
        align-items:flex-start;
    }

    .footer-contact-item p{
        font-size:15px;
        word-break:break-word;
    }

    .footer-social{
        margin-bottom:15px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
    }
}
.form-control-custom option {
  background-color: #111;   /* dark background */
  color: #fff;              /* white text visible */
}
