/* ==========================================================================
   TechNova Solutions — Custom Theme (Modern Blue & Dark Navy)
   Built on top of Bootstrap 5.3
   ========================================================================== */

:root {
  --navy: #0a1f44;
  --navy-dark: #061530;
  --navy-light: #12295c;
  --accent: #00b4ff;
  --accent-dark: #0090d1;
  --accent-2: #00e0c6;
  --text-muted-light: #b9c4dd;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 50px rgba(10, 31, 68, 0.12);
}

* { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #2d3748;
  overflow-x: hidden;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
}

a { text-decoration: none; }

img { max-width: 100%; }

.text-accent { color: var(--accent) !important; }
.section-py { padding: 100px 0; }
@media (max-width: 767px) { .section-py { padding: 64px 0; } }

.bg-light-alt { background: #f5f8fc; }
.bg-dark-section { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); }
.text-light-muted { color: var(--text-muted-light); }

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(0, 180, 255, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag-light { background: rgba(0, 224, 198, 0.15); color: var(--accent-2); }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 18px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #06263f;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 180, 255, 0.35);
}
.btn-accent:hover, .btn-accent:focus {
  color: #06263f;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 180, 255, 0.45);
}
.btn-primary-dark {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary-dark:hover { background: var(--navy-light); color: #fff; transform: translateY(-3px); }
.btn-outline-primary-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-primary-dark:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border: 2px solid rgba(255, 255, 255, 0.5); color: #fff; font-weight: 600; }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ==================== PRELOADER ==================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; font-weight: 800; }
.preloader-bar { width: 180px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 10px; margin-top: 16px; overflow: hidden; }
.preloader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); animation: loadbar 1.1s ease forwards; border-radius: 10px; }
@keyframes loadbar { to { width: 100%; } }

/* ==================== NAVBAR ==================== */
#mainNav {
  padding: 20px 0;
  transition: all 0.35s ease;
  background: transparent;
  z-index: 1030;
}
#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(10, 31, 68, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff !important;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  padding: 8px 2px !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover { color: #fff !important; }
.navbar-toggler { border: none; box-shadow: none !important; }
.navbar-toggler-icon { filter: invert(1); }
#mainNav:not(.scrolled) .navbar-collapse.show { background: var(--navy); padding: 20px; border-radius: 16px; margin-top: 12px; }

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-light) 0%, var(--navy) 45%, var(--navy-dark) 100%);
  padding: 170px 0 90px;
  overflow: hidden;
  color: #fff;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.shape-1 { width: 380px; height: 380px; background: var(--accent); top: -100px; right: -80px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 280px; height: 280px; background: var(--accent-2); bottom: -60px; left: -60px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: #6a5cff; top: 40%; left: 45%; animation: float 12s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }

.hero-section .container { position: relative; z-index: 1; }
.hero-title { font-size: clamp(2.2rem, 4.2vw, 3.4rem); color: #fff; line-height: 1.2; margin-bottom: 20px; }
.hero-sub { color: var(--text-muted-light); font-size: 1.1rem; max-width: 540px; }
.hero-stats h3 { color: var(--accent); font-size: 2.2rem; margin-bottom: 4px; }
.hero-stats p { color: var(--text-muted-light); font-size: 0.85rem; margin-bottom: 0; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-img-wrap { position: relative; }
.hero-img { border: 6px solid rgba(255,255,255,0.08); }
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { font-size: 1.6rem; color: var(--accent-dark); }
.floating-card strong { display: block; color: var(--navy); font-size: 1rem; }
.floating-card span { font-size: 0.78rem; color: #718096; }
.card-1 { top: 10%; left: -8%; }
.card-2 { bottom: 8%; right: -8%; animation-delay: 1.5s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (max-width: 991px) { .card-1, .card-2 { display: none; } }

/* ==================== LOGOS STRIP ==================== */
.logos-strip { border-bottom: 1px solid #eef1f6; }
.logo-text { font-family: var(--font-heading); font-weight: 700; color: #a0aec0; font-size: 1.1rem; transition: color 0.3s ease; }
.logo-text i { margin-right: 6px; color: #cbd5e0; }
.logo-row .col:hover .logo-text { color: var(--navy); }
.logo-row .col:hover .logo-text i { color: var(--accent); }

/* ==================== ABOUT ==================== */
.about-img-wrap { position: relative; padding: 20px 40px 40px 0; }
.about-img-main { width: 100%; height: 460px; object-fit: cover; }
.about-img-sub {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 220px; object-fit: cover;
  border: 6px solid #fff;
}
.experience-badge {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06263f;
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,180,255,0.35);
}
.experience-badge h3 { color: #06263f; margin: 0; font-size: 1.8rem; }
.experience-badge p { margin: 0; font-size: 0.72rem; font-weight: 700; }

.check-item { font-weight: 600; color: var(--navy); }
.check-item i { color: var(--accent-dark); margin-right: 8px; }

.ceo-avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }

/* ==================== SERVICES ==================== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(10,31,68,0.06);
  border: 1px solid #eef1f6;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.service-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,180,255,0.12), rgba(0,224,198,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent-dark);
  margin-bottom: 22px;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06263f; transform: rotate(-8deg) scale(1.05); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: #718096; margin-bottom: 18px; }
.service-link { color: var(--navy); font-weight: 700; font-size: 0.92rem; }
.service-link i { transition: transform 0.3s ease; display: inline-block; }
.service-link:hover i { transform: translateX(5px); }
.service-link:hover { color: var(--accent-dark); }

/* ==================== WHY CHOOSE US ==================== */
.why-item { margin-bottom: 26px; gap: 18px; }
.why-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10,31,68,0.08);
  border: 1px solid #eef1f6;
}
.stat-card i { font-size: 1.8rem; color: var(--accent-dark); margin-bottom: 10px; display: block; }
.stat-card h3 { font-size: 2rem; margin-bottom: 4px; }
.stat-card p { color: #718096; margin-bottom: 0; font-size: 0.9rem; }
.stat-card-alt { background: var(--navy); }
.stat-card-alt i, .stat-card-alt h3 { color: var(--accent); }
.stat-card-alt p { color: var(--text-muted-light); }

/* ==================== PORTFOLIO ==================== */
.bg-dark-section { position: relative; overflow: hidden; }
.portfolio-glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}
.glow-1 { width: 420px; height: 420px; background: rgba(0,180,255,0.18); top: -120px; left: -100px; }
.glow-2 { width: 380px; height: 380px; background: rgba(0,224,198,0.14); bottom: -140px; right: -100px; }
#portfolio .container { position: relative; z-index: 1; }

.filter-btn {
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted-light);
  padding: 9px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.filter-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06263f; border-color: transparent; box-shadow: 0 10px 25px rgba(0,180,255,0.3); }

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  isolation: isolate;
}
/* animated gradient border glow on hover */
.portfolio-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), #6a5cff, var(--accent));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
  animation: borderFlow 4s linear infinite;
}
.portfolio-card:hover::after { opacity: 1; }
@keyframes borderFlow { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

.portfolio-index {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 800; letter-spacing: 1px;
  color: #fff;
  background: rgba(6,21,48,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.portfolio-card:hover .portfolio-index { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06263f; border-color: transparent; }

.portfolio-card img {
  width: 100%; height: 300px; object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: saturate(0.92);
}
.portfolio-card:hover img { transform: scale(1.15) rotate(0.5deg); filter: saturate(1.1); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,21,48,0.96) 0%, rgba(6,21,48,0.55) 45%, rgba(6,21,48,0.05) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  opacity: 0; transition: opacity 0.4s ease;
  color: #fff;
  z-index: 1;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat-chip {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: #06263f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  transform: translateY(14px); opacity: 0;
  transition: all 0.4s ease 0.05s;
}
.portfolio-card:hover .portfolio-cat-chip { transform: translateY(0); opacity: 1; }
.portfolio-overlay h5 {
  color: #fff; margin-bottom: 6px; font-size: 1.2rem;
  transform: translateY(14px); opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.portfolio-card:hover .portfolio-overlay h5 { transform: translateY(0); opacity: 1; }
.portfolio-overlay p {
  color: var(--text-muted-light); font-size: 0.86rem; margin-bottom: 14px;
  transform: translateY(14px); opacity: 0;
  transition: all 0.4s ease 0.15s;
}
.portfolio-card:hover .portfolio-overlay p { transform: translateY(0); opacity: 1; }
.portfolio-view-btn {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-size: 0.85rem; font-weight: 700;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 9px 18px;
  border-radius: 50px;
  transform: translateY(14px); opacity: 0;
  transition: all 0.4s ease 0.2s, background 0.3s ease, border-color 0.3s ease;
}
.portfolio-card:hover .portfolio-view-btn { transform: translateY(0); opacity: 1; }
.portfolio-view-btn:hover { background: var(--accent); border-color: var(--accent); color: #06263f; }
.portfolio-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.portfolio-item.hide-item { display: none; }

/* Category accent colors reflected subtly in the index badge on hover */
.cat-web:hover .portfolio-index { background: linear-gradient(135deg, #00b4ff, #0090d1); }
.cat-app:hover .portfolio-index { background: linear-gradient(135deg, #6a5cff, #9b8dff); }
.cat-ecommerce:hover .portfolio-index { background: linear-gradient(135deg, #ff9f43, #ffc078); }
.cat-branding:hover .portfolio-index { background: linear-gradient(135deg, #00e0c6, #37f2d8); }

/* ==================== ADVANCED PORTFOLIO LIGHTBOX ==================== */
.portfolio-modal .modal-dialog { max-width: 1040px; }
.portfolio-modal .modal-content {
  border: none; border-radius: 24px; overflow: hidden; background: #fff;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 18px; right: 18px; z-index: 6;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(6,21,48,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--accent); color: #06263f; transform: rotate(90deg); }

.lightbox-stage { position: relative; background: #061530; }
.modal-img-wrap {
  width: 100%; height: 62vh; max-height: 620px; min-height: 320px;
  overflow: hidden; position: relative;
  background: linear-gradient(160deg, #0a1f44, #061530);
}
.modal-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-img-wrap img.img-transitioning {
  opacity: 0;
  transform: scale(1.06);
}
.modal-img-wrap img.slide-from-right { transform: translateX(40px) scale(1.04); }
.modal-img-wrap img.slide-from-left { transform: translateX(-40px) scale(1.04); }

.lightbox-counter {
  position: absolute; top: 20px; left: 20px; z-index: 4;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  color: #fff;
  background: rgba(6,21,48,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.lightbox-counter #modalCurrent { color: var(--accent); }

/* Advanced nav arrows */
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(6,21,48,0.4);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.lightbox-nav::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,255,0.4);
  opacity: 0;
  transition: all 0.35s ease;
}
.lightbox-nav:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06263f;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav:hover::before { opacity: 1; inset: -10px; }
.lightbox-nav:active { transform: translateY(-50%) scale(0.95); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.portfolio-modal .modal-body { padding: 32px; }
.lightbox-dots {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
  padding-top: 20px; border-top: 1px dashed #e2e8f0;
}
.lightbox-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e0; border: none; padding: 0;
  transition: all 0.3s ease; cursor: pointer;
}
.lightbox-dot.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); width: 26px; border-radius: 6px; }
.lightbox-dot:hover:not(.active) { background: #a0aec0; }

@media (max-width: 767px) {
  .modal-img-wrap { height: 42vh; min-height: 220px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-counter { top: 12px; left: 12px; font-size: 0.75rem; padding: 5px 12px; }
  .lightbox-close { top: 10px; right: 10px; width: 36px; height: 36px; }
  .portfolio-modal .modal-body { padding: 22px; }
}

/* ==================== PROCESS ==================== */
.process-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  height: 100%;
  text-align: center;
  border: 1px solid #eef1f6;
  box-shadow: 0 10px 30px rgba(10,31,68,0.06);
  position: relative;
  transition: transform 0.3s ease;
}
.process-card:hover { transform: translateY(-8px); }
.process-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(0,180,255,0.15);
  margin-bottom: -10px;
}
.process-card i { font-size: 1.8rem; color: var(--accent-dark); margin-bottom: 14px; display: block; }
.process-card h5 { margin-bottom: 10px; }

/* ==================== PRICING ==================== */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  height: 100%;
  border: 1px solid #eef1f6;
  box-shadow: 0 10px 30px rgba(10,31,68,0.06);
  transition: transform 0.3s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-featured { background: var(--navy); border: none; transform: scale(1.04); z-index: 2; }
.pricing-featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-featured h5, .pricing-featured .price span, .pricing-featured .price { color: #fff; }
.pricing-featured p.text-muted { color: var(--text-muted-light) !important; }
.pricing-featured .pricing-list li { color: #e2e8f0; }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06263f; font-weight: 700; font-size: 0.78rem;
  padding: 6px 18px; border-radius: 50px;
}
.price { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin: 18px 0 24px; font-family: var(--font-heading); }
.price span { display: block; font-size: 2.6rem; }
.pricing-list li { padding: 8px 0; color: #4a5568; border-bottom: 1px dashed #e2e8f0; }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list i { color: var(--accent-dark); margin-right: 10px; }

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%); }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(10,31,68,0.08);
  border: 1px solid #eef1f6;
  margin-bottom: 10px;
}
.stars { color: #ffb400; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p { color: #4a5568; font-style: italic; min-height: 100px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: 0.82rem; color: #718096; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e0; border: none; padding: 0; opacity: 1;
  transition: all 0.3s ease;
}
.carousel-dots button.active { background: var(--accent); width: 28px; border-radius: 6px; }

/* ==================== TEAM ==================== */
.team-card { text-align: center; }
.team-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; }
.team-img img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-social {
  position: absolute; bottom: -60px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 10px;
  padding: 16px 0;
  background: linear-gradient(0deg, rgba(6,21,48,0.85), transparent);
  transition: bottom 0.35s ease;
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.team-social a:hover { background: var(--accent); color: #06263f; }
.team-card h5 { margin-bottom: 2px; }
.team-card span { color: var(--accent-dark); font-weight: 600; font-size: 0.9rem; }

/* ==================== BLOG ==================== */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 10px 30px rgba(10,31,68,0.06); border: 1px solid #eef1f6; height: 100%; transition: transform 0.3s ease; }
.blog-card:hover { transform: translateY(-8px); }
.blog-img { position: relative; overflow: hidden; height: 220px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.1); }
.blog-tag { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #06263f; padding: 5px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.blog-content { padding: 26px; }
.blog-meta { font-size: 0.8rem; color: #a0aec0; margin-bottom: 10px; }
.blog-content h5 a { color: var(--navy); line-height: 1.4; }
.blog-content h5 a:hover { color: var(--accent-dark); }
.blog-link { color: var(--accent-dark); font-weight: 700; font-size: 0.88rem; }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-banner p { color: var(--text-muted-light); margin-bottom: 0; }

/* ==================== CONTACT ==================== */
.contact-info-card {
  background: #f5f8fc;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 18px;
}
.contact-info-card i { font-size: 1.5rem; color: var(--accent-dark); margin-bottom: 10px; display: block; }
.contact-info-card h6 { margin-bottom: 6px; }
.contact-info-card p { margin-bottom: 0; color: #718096; }
.contact-info-card a { color: #718096; }
.contact-info-card a:hover { color: var(--accent-dark); }

.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 10px 40px rgba(10,31,68,0.1); border: 1px solid #eef1f6; }
.contact-form .form-control, .contact-form .form-select {
  border-radius: 10px; border: 1px solid #e2e8f0; padding: 12px 16px; font-size: 0.95rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,180,255,0.12);
}
.contact-form .form-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 6px; }

/* ==================== FOOTER ==================== */
.footer-section { background: var(--navy-dark); padding: 80px 0 30px; color: var(--text-muted-light); }
.footer-section .navbar-brand { font-size: 1.5rem; }
.footer-section h6 { color: #fff; margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted-light); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.3s ease;
}
.social-icons a:hover { background: var(--accent); color: #06263f; transform: translateY(-4px); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form .form-control { border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #fff; padding: 12px 16px; }
.newsletter-form .form-control::placeholder { color: var(--text-muted-light); }
.newsletter-form .btn { border-radius: 10px; padding: 0 18px; }
.footer-section hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom p, .footer-bottom a { font-size: 0.88rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06263f; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 10px 25px rgba(0,180,255,0.4);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.35s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: #06263f; transform: translateY(-4px); }

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 991px) {
  .about-img-wrap { padding: 0 0 40px 0; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-8px); }
}
@media (max-width: 576px) {
  .hero-section { padding-top: 140px; }
  .contact-form { padding: 26px; }
  .newsletter-form { flex-direction: column; }
}

body{overflow-x:hidden !important; width:100% !important;}
html{overflow-x:hidden !important; width:100% !important;}
