/* /* ROOT VARIABLES */

:root {
  --bg: #ffffff;
  --card: #f7f7f7;
  --muted: #555;
  --accent: #00b4d8;
  --accent-2: #7c3aed;
  --radius: 16px;
  --max-width: 1200px;

  font-family: Inter, Arial, sans-serif;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  display: block;
}

body {
  background: var(--bg);
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

/* CONTAINER */

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 24px;
  width: 100%;
}

/* HEADER */

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin: 10px;
  flex-wrap: wrap;
}

/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAVIGATION */

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--accent);
}

/* CTA BUTTON */

.cta {
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   HERO SECTION (FINAL)
========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px 60px;
  background: url('/images/ChatGPT Image Mar 23, 2026, 08_43_38 PM.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* OVERLAY */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.45));
}

/* CONTAINER */
.hero-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT */

.hero-content {
  width: 100%;
  max-width: 650px;
  text-align: center;
  color: #fff;
  animation: fadeUp 1s ease;
}

/* TAG */

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* HEADING */

.hero-content h1 {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */

.hero-desc {
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* PRIMARY BUTTON */

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  padding: 13px 26px;
  border-radius: 40px;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 13px 26px;
  border-radius: 40px;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* TRUST */

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ccc;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .hero-section {
    padding: 120px 15px 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

}

/* Small phones */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 14px;
  }

}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-desc {
    margin: auto;
  }

  .hero-trust {
    justify-content: center;
  }
}

/* CARD */

.card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

/* FEATURES */

.features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.feature {
  background: #f3f3f3;
  padding: 12px 14px;
  border-radius: 10px;
  min-width: 150px;
  font-size: 14px;
}
/* =========================
   SERVICES SECTION (FINAL PRO)
========================= */

.services-section {
  padding: 100px 20px;
  background: #f9fafb;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.3;
}

.services-header p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   GRID (FIXED RESPONSIVE)
========================= */

/* Desktop → 3 per row */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* =========================
   CARD
========================= */

.service-card {
  width: 100%;
  max-width: 340px;

  background: #ffffff;
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid #eee;

  transition: all 0.35s ease;
  text-align: left;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

  position: relative;
  overflow: hidden;
}

/* subtle border glow */

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent, rgba(0, 0, 0, 0.03));
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   ICON (TOP LEFT)
========================= */

.service-card .icon {
  width: 50px;
  height: 50px;
  background: #ffe4e6;
  color: #e11d48;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 18px;

  margin-bottom: 18px;

  transition: all 0.3s ease;
}

/* icon hover animation */

.service-card:hover .icon {
  transform: scale(1.1) rotate(6deg);
  background: #fda4af;
}

/* =========================
   TEXT
========================= */

.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   ACCESSIBILITY
========================= */

.service-card:focus-within,
.service-card:hover {
  outline: none;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet → 2 per row */
@media (max-width: 992px) {

  .services-section {
    padding: 80px 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile → 1 per row */
@media (max-width: 768px) {

  .services-header h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .services-header h2 {
    font-size: 24px;
  }

  .services-header p {
    font-size: 14px;
  }

  .service-card {
    padding: 24px 18px;
  }
}
/* =========================
   GALLERY (RESPONSIVE FIXED)
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 25px;
}

/* IMAGE */

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */

.gallery img:hover {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 200px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .gallery img {
    height: 180px;
  }
}

/* ABOUT SECTION */

.about-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */

.about-content {
  flex: 1;
}

.tagline {
  color: #2563eb;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #2563eb;
}

.description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

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

.feature-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* BUTTON */

.about-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1e40af;
}

/* IMAGE */

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

/* CONTACT SECTION */

#contact {
  margin-top: 50px;
}

/* GRID LAYOUT */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

/* CARD STYLE */
.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* FORM STYLING */
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* INPUT FOCUS EFFECT */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6a5cff;
  box-shadow: 0 0 0 2px rgba(106, 92, 255, 0.1);
}

/* TWO COLUMN ROW (NAME + EMAIL) */
.row {
  display: flex;
  gap: 15px;
}

.row>div {
  flex: 1;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* PRIMARY BUTTON */
.primary {
  background: linear-gradient(135deg, #00c6ff, #6a5cff);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* SECONDARY BUTTONS */
.pill {
  background: #f1f1f1;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

z .pill:hover {
  background: #e0e0e0;
}

/* CONTACT INFO */
.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  line-height: 1.6;
}

/* TRUST SECTION */

.trust-section {
  margin-top: 30px;
}

.trust-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

/* GRID */

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* CARD */

.trust-card {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.trust-card:hover {
  transform: translateY(-3px);
}

/* ICON */

.trust-card span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

/* TEXT */

.trust-card h5 {
  font-size: 13px;
  margin-bottom: 3px;
}

.trust-card p {
  font-size: 11px;
  color: #666;
}

/* MOBILE */

@media (max-width: 768px) {
  .trust-items {
    grid-template-columns: 1fr;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

}

/* FOOTER */

footer {
  margin-top: 50px;
  text-align: center;
  color: #666;
  padding: 20px 10px;
}

/* ANIMATIONS */

.fade-up {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ================= RESPONSIVE ================= */

/* LARGE TABLETS */

@media(max-width:992px) {

  .hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

}

/* TABLETS */
@media(max-width:768px) {

  .nav {
    padding: 10px 14px;
    position: relative;
    /* ✅ IMPORTANT */
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;

    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* ✅ FIX */
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h2 {
    font-size: 32px;
  }

  .about {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* MOBILE */

@media(max-width:576px) {

  .container {
    padding: 18px;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h2 {
    font-size: 26px;
  }

  .gallery img {
    height: 180px;
  }

}