/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #f9fafb;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #2563eb;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
}

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

/* Features */
.features h2 {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 2rem;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.feature h3 {
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 1.3rem;
}

/* Why Us */
.why-us {
  margin: 60px auto;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 20px;
}

.why-us ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
  list-style: disc;
  color: #444;
}

/* CTA */
.cta {
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 70px 20px;
  border-radius: 0;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    display: block;
    margin: 10px auto;
  }
}
/* Contact page styles — paste in Additional CSS */
:root{
  --primary:#2563eb;
  --muted:#6b7280;
  --bg:#f8fafc;
  --card:#ffffff;
  --radius:12px;
  --shadow: 0 8px 20px rgba(32,33,36,0.06);
}

.ct-page { background: var(--bg); padding: 60px 16px; font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#111827; }
.ct-container { max-width:1100px; margin:0 auto; }

/* Grid layout */
.ct-grid { display:grid; grid-template-columns: 1fr 420px; gap:32px; align-items:start; }
@media (max-width:980px){ .ct-grid { grid-template-columns: 1fr; } }

/* Left column */
.ct-badge { display:inline-block; background:rgba(37,99,235,0.12); color:var(--primary); padding:6px 12px; border-radius:999px; font-weight:600; margin-bottom:12px; font-size:13px; }
.ct-left h2 { font-size:1.6rem; margin-bottom:12px; }
.lead { color:var(--muted); margin-bottom:20px; }

/* Contact cards */
.ct-cards { display:grid; grid-template-columns:1fr; gap:12px; margin-bottom:14px; }
@media (min-width:680px){ .ct-cards { grid-template-columns:1fr 1fr; } }

.ct-card { background:var(--card); padding:14px; border-radius:10px; box-shadow: var(--shadow); display:flex; gap:12px; align-items:flex-start; transition: transform .18s ease, box-shadow .18s ease; }
.ct-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(37,99,235,0.08); }
.ct-card .icon { width:46px; height:46px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg, rgba(37,99,235,0.08), rgba(6,182,212,0.04)); color:var(--primary); flex: 0 0 46px; }

/* Right column (form) */
.ct-right { position:relative; }
.form-wrap { background:var(--card); padding:20px; border-radius:var(--radius); box-shadow: var(--shadow); }
.form-wrap h3 { margin:0 0 12px; font-size:1.15rem; color:#0f172a; }

.form-wrap label { display:block; margin-top:10px; margin-bottom:6px; font-size:13px; color:var(--muted); }
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap select,
.form-wrap textarea {
  width:100%; padding:10px 12px; border-radius:8px; border:1px solid #e6e9ef; font-size:14px; background:#fff; outline:none; transition: box-shadow .12s ease, border-color .12s ease;
}
.form-wrap input:focus,
.form-wrap textarea:focus,
.form-wrap select:focus { box-shadow:0 6px 18px rgba(37,99,235,0.08); border-color:var(--primary); }

.form-wrap textarea { resize:vertical; min-height:110px; }

.form-actions { display:flex; gap:10px; align-items:center; margin-top:12px; flex-wrap:wrap; }
.btn-submit { background:var(--primary); color:white; border:none; padding:10px 16px; border-radius:10px; cursor:pointer; font-weight:600; box-shadow: 0 8px 20px rgba(37,99,235,0.12); }
.btn-submit:hover { transform: translateY(-2px); }
.btn-mailto { display:inline-block; padding:10px 12px; border-radius:10px; border:1px solid #e6e9ef; text-decoration:none; color:var(--muted); font-size:14px; }

.form-privacy { font-size:12px; color:var(--muted); margin-top:10px; }

/* mini-info */
.mini-info { margin-top:16px; padding:14px; background:#fff; border-radius:10px; box-shadow: var(--shadow); color:var(--muted); font-size:14px; }
.mini-info h4 { margin:0 0 8px; color:#0f172a; font-size:14px; }

/* Footer small */
.ct-footer { margin-top:22px; text-align:center; color:var(--muted); font-size:14px; }
.ct-footer .small { color:#475569; margin-top:6px; }

/* Small helpers */
a { color:var(--primary); text-decoration:none; }
a:hover { text-decoration:underline; }

/* subtle entry animation */
.ct-left, .ct-right { opacity:0; transform: translateY(8px); animation: ctFade .6s ease forwards; }
.ct-right { animation-delay: .08s; }
.ct-left { animation-delay: .02s; }
@keyframes ctFade { to { opacity:1; transform:translateY(0); } }
.contact-page {
  background: #f9fafc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 700px;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d2f36;
}

.contact-container .intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

.contact-box {
  margin: 30px 0;
  padding: 25px;
  border-radius: 12px;
  background: #eef3fb;
}

.contact-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.email-link {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
}

.email-link:hover {
  color: #005fa3;
  text-decoration: underline;
}

.thank-you {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #444;
}
.video-section {
  text-align: center;
  margin: 60px auto;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2d2f36;
}

.video-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
}

.video-wrapper h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.video-section {
  text-align: center;
  margin: 60px auto;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2d2f36;
}

.video-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
}

.video-wrapper h3 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* === Video Section === */
.video-section {
  text-align: center;
  margin: 60px auto;
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2d2f36;
}

.video-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid for video cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Each video card */
.video-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.video-card h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #2d2f36;
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* More Tutorials button */
.more-tutorials {
  margin-top: 40px;
}

.btn-tertiary {
  background: #ff4b2b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-tertiary:hover {
  background: #e8431f;
}
.testimonials {
  padding: 4rem 2rem;
  background: #f9fafb;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial h4 {
  font-weight: 600;
  color: #555;
}
/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.testimonial p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-info img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}
.user-info span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0073e6;
}
/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.2s ease;
}

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

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #222;
}

.testimonial-author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #222;
}

.testimonial-author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
/* FAQ Section */
.faq-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #0073e6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #005bb5;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f0f8ff;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough to show answer text */
}

.faq-question::after {
  content: '\25BC';
  float: right;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

/* Lightbox Image */
.lightbox-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* Caption */
.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 1.1em;
  text-align: center;
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}
/* Lightbox overlay */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

#lightbox-caption {
  color: #fff;
  margin-top: 12px;
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}

#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

#lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
}
.solution {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9; /* subtle light background */
}

.solution h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.solution p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.solution .feature-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.solution .feature {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.solution .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.solution .feature p {
  font-size: 0.95rem;
  color: #555;
}
