:root {
  --primary: #0f6fff;
  --primary-dark: #0a4fb4;
  --secondary: #071a2f;
  --accent: #ffb703;
  --surface: #f6f9ff;
  --text: #14213d;
  --text-muted: #5f6b82;
  --white: #ffffff;
  --border: rgba(15, 111, 255, 0.14);
  --shadow: 0 15px 35px rgba(7, 26, 47, 0.08);
  --shadow-lg: 0 24px 60px rgba(7, 26, 47, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfeff 0%, var(--surface) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
section { scroll-margin-top: 90px; }
.container { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: var(--shadow); }
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
}
.logo-container { display: flex; align-items: center; gap: 0.8rem; }
.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.logo-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 16px;
  padding: 4px;
  background: var(--white);
  border: 1px solid rgba(15,111,255,0.12);
  box-shadow: var(--shadow);
  display: block;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}
.logo { font-weight: 800; font-size: 1.05rem; color: var(--secondary); letter-spacing: -0.01em; white-space: nowrap; }
.logo-brand:hover .logo { color: var(--primary); }
nav ul { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
nav ul li a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
  transition: all 0.25s ease;
}
nav ul li a:hover, nav ul li a:focus-visible { background: rgba(15,111,255,0.08); color: var(--primary); }
.mobile-menu-btn { display: none; border: 0; background: transparent; font-size: 1.35rem; color: var(--secondary); cursor: pointer; }
.dropdown { position: relative; }
.dropdown-content {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 200px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; animation: fadeIn .25s ease; }
.dropdown-content a { display: block; padding: 0.7rem 0.9rem; border-radius: 10px; color: var(--text); }
.dropdown-content a:hover { background: rgba(15,111,255,0.08); color: var(--primary); }
.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: linear-gradient(120deg, rgba(7,26,47,0.88), rgba(7,26,47,0.62)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.banner-grid { display: grid; grid-template-columns: 1.25fr .8fr; gap: 2rem; align-items: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,183,3,0.2);
  color: #ffd166;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.banner h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.08;
  animation: fadeUp .8s ease both;
}
.banner p {
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 1.6rem;
  animation: fadeUp .8s ease .1s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; animation: fadeUp .8s ease .2s both; }
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 12px 30px rgba(15,111,255,0.25); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 0.8rem; animation: fadeUp .8s ease .3s both; }
.stat-pill {
  padding: 0.8rem 1rem;
  min-width: 110px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  backdrop-filter: blur(8px);
}
.stat-pill strong { font-size: 1rem; }
.stat-pill span { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.hero-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-lg);
  animation: fadeUp .8s ease .2s both;
}
.hero-card h3 { margin-bottom: 1rem; color: var(--secondary); }
.hero-card ul { list-style: none; display: grid; gap: 0.7rem; color: var(--text-muted); }
.hero-card li::before { content: '✓'; color: var(--primary); margin-right: 0.5rem; font-weight: 700; }
.services-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 3rem 0 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-card h4 { color: var(--secondary); font-size: 1.05rem; }
#about, #founder, #services, #quote, #testimonials, #gallery, #contact { padding: 4.5rem 0; }
#about { background: linear-gradient(180deg, rgba(246,249,255,0.9), rgba(255,255,255,1)); }
#about .content { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
#about p { color: var(--text-muted); margin-bottom: 1rem; }
.team img { border-radius: 24px; box-shadow: var(--shadow-lg); }
.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.35rem 1.45rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-detail:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.service-detail h3 { display: flex; align-items: center; gap: 0.7rem; }
.service-detail-icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  font-size: 1.15rem;
  border-radius: 12px;
  background: rgba(15,111,255,0.1);
}
#founder { background: linear-gradient(180deg, rgba(255,255,255,1), rgba(246,249,255,0.9)); }
.founder-content { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: center; }
.founder-photo-wrap { position: relative; }
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: 0;
}
.founder-photo-wrap img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.founder-text .section-title { margin-top: 0.4rem; }
.founder-quote {
  position: relative;
  color: var(--text-muted);
  font-size: 1.08rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent);
  margin-bottom: 1.4rem;
}
.founder-signature { display: flex; flex-direction: column; gap: 0.15rem; }
.founder-signature strong { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: var(--secondary); }
.founder-signature span { color: var(--text-muted); font-size: 0.92rem; }
#quote { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: var(--white); }
#quote .section-title, #quote p { color: var(--white); }
#quote form {
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 1.6rem;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 0.9rem;
}
#quote form label { font-weight: 600; }
#quote form input, #quote form select, #quote form textarea {
  width: 100%;
  border: 1px solid #dce7f7;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font: inherit;
  background: #fbfdff;
}
#quote form input:focus, #quote form select:focus, #quote form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,111,255,0.15); }
#quote form button {
  border: 0;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}
.testimonial-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.testimonial-intro { color: var(--text-muted); max-width: 560px; }
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(15,111,255,0.1), rgba(255,183,3,0.18));
  color: var(--secondary);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.testimonial-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.testimonial {
  background: var(--white);
  border-radius: 22px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.testimonial-quote { font-size: 2rem; line-height: 1; color: var(--primary); font-weight: 700; }
.rating-stars { color: #fbbf24; letter-spacing: 0.12em; font-size: 0.95rem; }
.testimonial p { color: var(--text-muted); margin-bottom: 0.8rem; }
.testimonial .author { color: var(--primary); font-weight: 700; }
.gallery-intro { color: var(--text-muted); max-width: 560px; margin-bottom: 1.6rem; }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.8rem; }
.gallery-tab {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-tab:hover { color: var(--primary); border-color: var(--primary); }
.gallery-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow);
}
.gallery-panel { display: none; }
.gallery-panel.active { display: block; animation: fadeUp .5s ease both; }

/* Reusable slider component (gallery + testimonials) */
.slider { position: relative; }
.slider-viewport { overflow: hidden; border-radius: 22px; }
.slider-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-panel .slide { position: relative; flex: 0 0 100%; box-sizing: border-box; padding: 0 0.5rem; }

/* Full/original image — was object-fit: cover (crops the photo).
   object-fit: contain shows the whole image, scaled to fit, letterboxed on --surface if the aspect ratio doesn't match the box. */
.gallery-panel .slide img {
  height: 420px;
  width: 100%;
  object-fit: contain;
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-panel .gallery-caption {
  position: absolute;
  inset: auto 0.5rem 0.5rem 0.5rem;
  padding: 1rem;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(transparent, rgba(7,26,47,0.9));
  color: var(--white);
  font-weight: 600;
}
.testimonial-slider .slide { flex: 0 0 100%; box-sizing: border-box; padding: 0 0.5rem; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  color: var(--secondary);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
  transition: all 0.25s ease;
}
.slider-arrow:hover { background: var(--primary); color: var(--white); }
.slider-arrow.prev { left: -6px; }
.slider-arrow.next { right: -6px; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.slider-dot.active { width: 24px; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-info { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 1.4rem; box-shadow: var(--shadow); }
.info-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 0; color: var(--text-muted); }
.contact-form-card { margin-top: 1rem; padding: 1rem; border-radius: 18px; background: linear-gradient(135deg, rgba(15,111,255,0.08), rgba(255,183,3,0.1)); border: 1px solid var(--border); }
.contact-form-card h3 { margin-bottom: 0.8rem; color: var(--secondary); font-size: 1.1rem; }
#contact-form { display: grid; gap: 0.7rem; }
#contact-form input, #contact-form textarea, #contact-form button { width: 100%; border-radius: 12px; border: 1px solid #dce7f7; padding: 0.75rem 0.9rem; font: inherit; }
#contact-form input:focus, #contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,111,255,0.15); }
#contact-form button { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); border: 0; cursor: pointer; font-weight: 700; }
.info-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 0.5rem; background: #25d366; color: #fff !important; padding: 0.65rem 0.9rem; border-radius: 999px; margin-top: 0.5rem; }
iframe { width: 100%; min-height: 320px; border: 0; border-radius: 24px; box-shadow: var(--shadow); }
footer { padding: 1.4rem 0 2rem; text-align: center; color: var(--text-muted); }
.site-footer { padding: 1.4rem 0 2rem; }
.developer-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f6fff 0%, #071a2f 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 45px rgba(7, 26, 47, 0.2);
  margin-bottom: 1rem;
}
.developer-card::before {
  content: '';
  position: absolute;
  top: -35px;
  right: -25px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  filter: blur(2px);
}
.developer-card__text { text-align: left; position: relative; z-index: 1; }
.developer-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd166;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.developer-name {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.developer-note { color: rgba(255,255,255,0.86); font-size: 0.95rem; }
.developer-contact-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.7rem; position: relative; z-index: 1; }
.developer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}
.developer-link svg { width: 16px; height: 16px; color: var(--white); }
.copyright { color: var(--text-muted); font-size: 0.95rem; }
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.35);
  animation: floatUp 2.2s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 35px rgba(18, 140, 126, 0.45); }
.floating-whatsapp svg { width: 28px; height: 28px; }
.reveal { opacity: 0; transform: translateY(24px); transition: all .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  .banner-grid, .contact-container, #about .content, .founder-content { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .mobile-menu-btn { display: block; }
  nav ul {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  nav ul.active { display: flex; }
  nav ul li a { display: block; }
  .dropdown-content { position: static; display: none; box-shadow: none; border: 0; padding-left: 1rem; }
  .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; }
  .banner { padding-top: 6.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 1.2rem, 1160px); }
  .service-card, .testimonial, .hero-card, .contact-info, #quote form { padding: 1.15rem; }
  .testimonial-heading { flex-direction: column; align-items: start; }
  .developer-card { flex-direction: column; align-items: flex-start; }
  .developer-contact-links { justify-content: flex-start; }
  .banner h1 { font-size: 2.2rem; }
  .banner p { font-size: 1rem; }
  .floating-whatsapp { width: 54px; height: 54px; right: 14px; bottom: 14px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1.15rem; }
  .slider-arrow.prev { left: 2px; }
  .slider-arrow.next { right: 2px; }
  .gallery-panel .slide img { height: 260px; }
  .gallery-tabs { gap: 0.4rem; }
  .gallery-tab { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
}