/* WebInstant — style.css */

:root {
  --primary: #2e86de;
  --accent: #00c9a7;
  --text: #000000;
  --bg: #ffffff;
  --muted: #f5f7fa;
  --hover: #0e5fd8;
  --radius: 12px;
  --max-width: 1100px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: var(--text);
  margin: 0;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* layout helpers */
.container {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  position: sticky;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

nav {
  position: sticky;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo {
  width: 200px;
  /* height:100px; */
  object-fit: contain;
  border-radius: 12px;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: block;
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: rgba(31, 31, 31, 0.7);
  margin-top: 2px;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 0;
  background: var(--muted);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a60feaa,
    #c139ffaa,
    #812ceaaa,
    #6539ffaa
  );
  opacity: 0.9;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 12px;
  color: #fff;
}

.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-cta .btn {
  margin-right: 12px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  color: white;
  font-weight: 500;
}

.hero-features li {
  margin-bottom: 8px;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  color: white;
  border: 0;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-image {
  overflow: hidden;
  border-radius: 12px;
  max-width: 500px;
}

.hero-image .slides {
  display: flex;
  animation: slideHero 9s infinite;
}

.hero-image img {
  object-fit: cover;
}

/* Slide Animation */
@keyframes slideHero {
  0% {
    transform: translateX(0%);
  }

  33% {
    transform: translateX(0%);
  }

  38% {
    transform: translateX(-100%);
  }

  66% {
    transform: translateX(-100%);
  }

  71% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(-200%);
  }
}

/* mockup box */
.mockup {
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-radius: 12px;
  padding: 8px;
}

.mock-top {
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 8px;
  margin-bottom: 12px;
}

.mock-body {
  display: flex;
  gap: 10px;
}

.mock-left {
  flex: 1;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #eef7ff);
}

.mock-right {
  width: 110px;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f3fff9);
}

/* cards */
.section {
  padding: 28px 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
}

.section-sub {
  color: rgba(31, 31, 31, 0.7);
  margin-bottom: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.04);
}

.services-section {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color: #1a60fe;
  margin-bottom: 10px;
}

.section-sub {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: center;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 5px solid transparent;
  text-align: center;
}

.service-card .icon {
  font-size: 2rem;
  color: #1a60fe;
  margin-bottom: 15px;
  text-align: center;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b0f32;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  text-align: center;
}

/* Hover effect with gradient */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #c139ff;
}

.service-card:hover .icon {
  color: #812cea;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }
}

/* why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  margin-bottom: 10px;
}

/* projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.project {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(31, 31, 31, 0.04);
}

.thumb {
  height: 140px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 12px;
}

/* large project cards */
.projects-grid.large {
  grid-template-columns: 1fr;
}

.large-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.large-thumb {
  width: 280px;
  height: 150px;
  border-radius: 12px;
}

/* CTA section */
.cta-section {
  background: linear-gradient(
    90deg,
    rgba(46, 134, 222, 0.08),
    rgba(0, 201, 167, 0.05)
  );
  padding: 28px 0;
  margin-top: 12px;
  border-radius: 12px;
}

.cta-inner {
  text-align: center;
}

/* contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
}

.contact-form input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  font-size: 14px;
}

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  margin-bottom: 8px;
}

/* footer */
.site-footer {
  margin-top: 40px;
  padding: 28px 0;
  background: #0b1220;
  color: #fff;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  gap: 20px;
}

.site-footer h4,
h5 {
  color: white;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* utilities */
.center {
  text-align: center;
}

.testimonial {
  background: white;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.testimonial cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(31, 31, 31, 0.6);
}

/* responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 8px 0;
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .projects-grid.large {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Section */
.why {
  padding: 60px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.why-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0b0f32;
  margin-bottom: 20px;
}

.highlight {
  color: #1a60fe;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.why-list li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.why-list i {
  font-size: 1.2rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border-radius: 50%;
  padding: 8px;
}

/* Testimonials */
.testimonials-preview {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.testimonials-preview h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a60fe;
}

.testimonial {
  background: #f9f9f9;
  border-left: 5px solid #812cea;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: bold;
  color: #0b0f32;
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 60px 20px;
}

.section-sub {
  text-align: center;
  color: #666;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #0b0f32;
}

.section-title .highlight {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Project Card */
.project {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.thumb {
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.project:hover .thumb img {
  transform: scale(1.05);
}

/* Project Info */
.project-info {
  padding: 15px;
}

.project-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin-bottom: 6px;
}

.project-info p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.center {
  text-align: center;
  margin-top: 2rem;
}

.btn.outline {
  border: 2px solid #1a60fe;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  color: #1a60fe;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.outline:hover {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: #fff;
  border-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  background-color: #f5f7fa;
  /* light gray-blue background */
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.contact-info h3,
.contact-info h4 {
  font-family: "Poppins", sans-serif;
  color: #1f1f1f;
}

.contact-info p,
.contact-info a {
  font-family: "Inter", sans-serif;
  color: #555;
  font-size: 0.95rem;
}

.social-links {
  margin-top: 0.8rem;
}

.social-links a {
  display: inline-block;
  margin: 0 0.4rem;
  font-size: 1.5rem;
  color: #2e86de;
  /* vibrant blue */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00c9a7;
  /* aqua green */
}

/* CTA Section */
.cta-section {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.cta-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-inner p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn.large {
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: #0b0f32;
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
}

.footer-section h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-section a {
  color: #c139ff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Footer Styling ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

/* Grid layout for footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-column h4,
.footer-column h5 {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 30px 15px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping on small screens */
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  /* Flexible width */
  min-width: 200px;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

/* Services Page */
.services-page {
  text-align: center;
}

.page-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: #fff;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.service-card ul {
  padding-left: 18px;
  font-size: 0.9rem;
}

.service-card ul li {
  margin-bottom: 6px;
}

/* About Page */
.about-page {
  text-align: center;
}

.page-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
}

.mission,
.team,
.values {
  margin-top: 50px;
  text-align: center;
}

.mission h2,
.team h2,
.values h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
}

.value-list {
  list-style: none;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.value-list li {
  margin-bottom: 8px;
}

/* Footer styling from earlier improvements applies here */
/* Portfolio Page */
.portfolio-page {
  text-align: center;
}

.page-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 30px;
}

.project {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.thumb {
  position: relative;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.project:hover .thumb img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 50, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project:hover .overlay {
  opacity: 1;
}

.overlay .btn.primary {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.overlay .btn.primary:hover {
  background: linear-gradient(45deg, #6539ff, #812cea);
}

.project h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 1rem;
  font-size: 1.2rem;
}

.project p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #555;
  margin: 0 1rem 1.2rem;
}

/* Contact Page Styling */
.contact-page {
  text-align: left;
  animation: fadeIn 0.8s ease-in-out;
}

/* Gradient Page Title */
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

/* Glassmorphism Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-in-out;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
  font-family: "Poppins", sans-serif;
}

/* Floating Label Effect */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: transparent;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(26, 96, 254, 0.3);
}

/* Gradient Button */
.contact-form button {
  margin-top: 1rem;
  padding: 0.9rem;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #1a60fe, #c139ff, #812cea);
  background-size: 300% 300%;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.contact-form button:hover {
  background-position: 100% 0;
  transform: translateY(-3px) scale(1.02);
}

/* Contact Info Box */
.contact-info {
  background: linear-gradient(145deg, #0b0f32, #13193f);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  animation: slideUp 1s ease-in-out;
}

.contact-info h3,
.contact-info h4 {
  font-family: "Poppins", sans-serif;
}

.contact-info a {
  color: #c139ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #1a60fe;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #c139ff;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
    text-align: center;
  }
}

/* Mobile Styling */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}

/* Grid container */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Auto responsive */
  gap: 20px;
  margin-top: 30px;
}

/* Card styling */
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Card hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Titles */
.service-card h3 {
  margin-bottom: 10px;
  color: #222;
}

/* Text */
.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* List inside card */
.service-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.service-card ul li {
  color: #444;
  margin-bottom: 5px;
}

/* Contact Info Box */
.contact-info {
  background: rgba(11, 15, 50, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  color: white;
  animation: fadeInUp 0.8s ease-in-out;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.contact-logo {
  display: block;
  max-width: 120px;
  margin-bottom: 1rem;
  animation: popIn 0.8s ease-in-out;
}

/* Headings */
.contact-info h3,
.contact-info h4 {
  font-family: "Poppins", sans-serif;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Contact Items */
.text {
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-item i {
  color: #c139ff;
  font-size: 1.2rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.contact-item a:hover {
  color: #c139ff;
  text-shadow: 0 0 8px rgba(193, 57, 255, 0.7);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.social-links a {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

.social-links a:hover {
  color: #fff;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(193, 57, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile padding */
@media (max-width: 768px) {
  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 15px;
  }
}

/* Import Poppins font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Container */
.container.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

/* Headings */
.container.section h1,
.container.section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

/* Lead paragraph */
.lead {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

/* Mission */
.mission {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Avatar Circle */
.avatar {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Values Section */
.values ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin: auto;
}

.values ul li {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Info Box */
.contact-info {
  background: rgba(11, 15, 50, 0.9);
  /* Dark Glass */
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.7s ease-in-out;
  /* max-width: 350px; */
}

/* Logo Styling */
.contact-logo {
  display: block;
  max-width: 130px;
  margin-bottom: 1rem;
  animation: popIn 0.8s ease-in-out;
}

/* Titles */
.contact-info .text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-text-fill-color: transparent;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0;
  font-size: 1rem;
}

.contact-item i {
  color: #c139ff;
  font-size: 1.2rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #c139ff;
  text-shadow: 0 0 8px rgba(193, 57, 255, 0.6);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.social-links a {
  font-size: 1.4rem;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 15px rgba(193, 57, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-info {
  background: #1d2040;
  /* Dark navy background */
  padding: 5rem;
  /* Massive padding for bold look */
  border-radius: 28px;
  color: white;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  max-width: 750px;
  /* Way wider */
  min-height: 550px;
  /* Taller */
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 0.7s ease-in-out;
  margin: auto;
  /* Center it */
}

/* Huge Logo */
.contact-logo {
  max-width: 250px;
  margin-bottom: 3rem;
}

/* Larger Titles */
.contact-info .text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Huge Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.5rem 0;
  font-size: 1.4rem;
}

.contact-item i {
  font-size: 1.8rem;
}

/* Giant Social Links */
.social-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.social-links a {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transform: translateY(-4px) scale(1.2);
}

/* Base nav style */
.main-nav {
  display: flex;
  gap: 1rem;
}

/* Mobile hidden menu */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .main-nav.show {
    display: flex;
    /* Toggle this with JS */
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
  }
}

/* Desktop hides hamburger */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #1f1f1f;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav .nav-link {
    padding: 0.5rem 0;
    color: #1f1f1f;
  }
}

/* Desktop hides hamburger */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.contact-info {
  background: #0b0f32;
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 350px;
  /* prevents it from growing too large */
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
}

.contact-info img {
  max-width: 120px;
  /* smaller logo */
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.contact-info h3,
.contact-info h4 {
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
}

.contact-item {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.social-links {
  /* display: flex; */
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.social-links a {
  font-size: 1.3rem;
  color: white;
}

@media (max-width: 768px) {
  .contact-info {
    max-width: 100%;
    /* full width on mobile */
    text-align: center;
  }

  .contact-info img {
    margin: 0 auto 1rem;
  }
}

.lead {
  font-family: "Poppins", sans-serif;
  color: #000000;
}

/* Hero CTA buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  /* space between buttons */
  margin-top: 24px;
}

.hero-cta .btn {
  font-size: 1rem;
  /* adjust text size */
  padding: 12px 20px;
  /* height & width space */
  min-width: 180px;
  /* ensures uniform width */
  text-align: center;
  border-radius: 8px;
  /* rounded corners */
}

/* primary style stays as is from earlier */
.hero-cta .btn.primary {
  /* background: linear-gradient(90deg, var(--primary), var(--accent)); */
  color: #fff;
  font-weight: 600;
}

/* outline button style */
.hero-cta .btn.outline {
  /* border: 2px solid var(--primary); */
  /* color: var(--primary); */
  background: transparent;
  font-weight: 600;
}

.hero-cta .btn.outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Smaller on mobile */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    min-width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* Hero Features List */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  /* bold text */
  color: #222;
  /* dark, high-contrast text */
}

.hero-features li {
  display: flex;
  align-items: center;
  background: rgba(26, 96, 254, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  transition:
    transform 0.2s ease,
    background 0.3s ease;
}

.hero-features li:hover {
  background: rgba(26, 96, 254, 0.15);
  transform: translateY(-2px);
}

.hero-features li::before {
  content: "✔";
  color: #1a60fe;
  font-weight: bold;
  margin-right: 10px;
}

/* Emoji styling (if you keep the emoji icons) */
.hero-features li span {
  margin-right: 8px;
  font-size: 1.2em;
}

/* Mobile-friendly layout */
@media (max-width: 480px) {
  .hero-features {
    font-size: 1.05rem;
    gap: 10px;
  }

  .hero-features li {
    padding: 8px 12px;
  }
}

.contact-form {
  margin: 0 auto;
  /* Centers horizontally */
  max-width: 500px;
  /* Prevents it from being too wide */
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.contact-item i {
  margin-right: 6px;
  color: #007bff;
  font-size: 0.9rem;
  /* Smaller icon size */
}

.social-links a {
  font-size: 1.1rem;
  /* Smaller social icons */
  color: #007bff;
  transition: color 0.2s ease-in-out;
}

.contact-info {
  text-align: left;
}

.contact-item i {
  margin-right: 3px !important;
  /* Adjust this value as needed */
}

/* Testimonials Section */
.testimonials-preview {
  padding: 3rem 0;
  background-color: #f8f9fa;
  /* Light gray background */
}

.testimonials-preview h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #212529;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  display: block;
  font-weight: 600;
  color: #3a86ff;
  /* Matching your brand color */
  font-style: normal;
  text-align: right;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .testimonials-preview {
    padding: 3.5rem 0;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial p {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  .testimonials-preview {
    padding: 4rem 0;
  }

  .testimonials-preview h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .testimonial {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .testimonials-preview {
    padding: 5rem 0;
  }

  .testimonial p {
    font-size: 1.15rem;
  }

  .testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Animation for subtle effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  animation: fadeIn 0.6s ease forwards;
  color: black;
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}

/* Why Choose Us Section */
.why {
  padding: 3rem 1rem;
  max-width: 100%;
  overflow: hidden;
}

.hero-features {
  max-width: 1200px;
  margin: 0 auto;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.why-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #333;
}

.highlight {
  color: #3a86ff;
}

.why-list {
  /* display: flex; */
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
  list-style: none;
  width: 100%;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.checkmark {
  color: #3a86ff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  .why {
    padding: 4rem 2rem;
  }

  .why-list li {
    font-size: 1.15rem;
  }
}

@media (min-width: 768px) {
  .why-content {
    /* max-width: 800px; */
    margin: 0 auto;
  }

  .why-content h2 {
    text-align: center;
  }

  .btn.primary {
    align-self: center;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .why {
    padding: 5rem 2rem;
  }

  .why-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

/* Divider Style */
.why-content::after {
  /* content: ""; */
  /* display: block; */
  height: 1px;
  background-color: #eee;
  margin: 1.5rem 0;
  /* width: 100%; */
}

@media (min-width: 768px) {
  .why-content::after {
    margin: 2rem 0;
  }
}

/* Services Page */
.services-header {
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-card h3 {
  margin: 10px 0;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.service-card ul li {
  margin: 5px 0;
}

.icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4facfe, #8e44ad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  /* center emoji vertically */
  justify-content: center;
  /* center emoji horizontally */
  font-size: 28px;
  line-height: 1;
  margin: 0 auto 15px;
  /* center the box itself and add bottom space */
}

.service-card p {
  color: #000000;
  /* pure black */
  font-size: 16.5px;
}

.service-card p {
  color: #000 !important;
}

.btn.primary,
.btn.outline {
  font-size: larger;
}

.plans-page {
  padding: 40px 0;
}

.plan-category {
  margin-bottom: 60px;
}

.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a60fe;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-subtitle {
  color: #555;
  margin-bottom: 30px;
  font-size: 18px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
  border: 2px solid #1a60fe;
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.plan-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 15px;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a60fe;
  margin-bottom: 5px;
}

.currency {
  font-size: 16px;
  color: #777;
}

.price-note {
  color: #777;
  font-size: 14px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #444;
}

.plan-features i {
  color: #00c9a7;
}

.plan-cta {
  text-align: center;
}

.faq-section {
  margin: 80px 0 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.faq-item {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
}

.faq-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0b0f32;
  margin-bottom: 15px;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
/* About Page Specific Styles */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mission Section */
.mission {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  padding: 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
  text-align: center;
  border-left: 4px solid #1a60fe;
}

.mission h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #0b0f32;
}

.mission p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team {
  margin: 4rem 0;
}

.team h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-top: 4px solid #1a60fe;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
}

.team-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #0b0f32;
}

.team-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Values Section */
.values {
  margin: 4rem 0;
}

.values h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.value-list li {
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.value-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-page h1.page {
    font-size: 2.2rem;
  }

  .about-page .lead {
    font-size: 1.1rem;
  }

  .mission {
    padding: 1.5rem;
  }

  .mission h2 {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .value-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding: 1rem;
  }

  .mission {
    padding: 1.2rem;
  }

  .team-card {
    padding: 1.5rem 1rem;
  }
}
/* Plans Page Specific Styles */
.plans-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.plans-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Plan Categories */
.plan-category {
  margin: 4rem 0;
}

.plan-category:first-child {
  margin-top: 2rem;
}

.category-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.category-title i {
  color: #1a60fe;
  font-size: 1.5rem;
}

.category-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Plan Cards */
.plan-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #f0f0f0;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.plan-card.featured {
  border: 2px solid #1a60fe;
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  border-color: #1a60fe;
  box-shadow: 0 20px 40px rgba(26, 96, 254, 0.15);
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Plan Header */
.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f5f5f5;
}

.plan-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a60fe;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1rem;
  color: #777;
  font-weight: 500;
}

.price-note {
  color: #888;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features i {
  color: #00c9a7;
  font-size: 1.1rem;
  min-width: 20px;
}

/* Plan CTA */
.plan-cta {
  text-align: center;
}

.plan-cta .btn.primary {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transition: all 0.3s ease;
}

.plan-cta .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

/* FAQ Section */
.faq-section {
  margin: 5rem 0 3rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 20px;
}

.faq-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0b0f32;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b0f32;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0 2rem;
  text-align: center;
}

.cta-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn.primary.large {
  background: white;
  color: #1a60fe;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-inner .btn.primary.large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .plans-page h1.page {
    font-size: 2.2rem;
  }

  .plans-page .lead {
    font-size: 1.1rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-card {
    padding: 1.5rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-5px);
  }

  .price {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-inner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .plans-page {
    padding: 1rem;
  }

  .plan-card {
    padding: 1.2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .faq-item {
    padding: 1.2rem;
  }
}

/* Animation for plan cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card {
  animation: fadeInUp 0.6s ease forwards;
}

.plan-card:nth-child(1) {
  animation-delay: 0.1s;
}
.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}
.plan-card:nth-child(3) {
  animation-delay: 0.3s;
}
.plan-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Hover effects for FAQ items */
.faq-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Staggered animation for FAQ items */
.faq-item {
  animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Services Page Specific Styles */
.services-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header .lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #f0f0f0;
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.service-card .icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
}

/* Service Card Content */
.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #0b0f32;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li:hover {
  color: #1a60fe;
  transform: translateX(5px);
}

.service-card ul li::before {
  content: "•";
  color: #1a60fe;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Hover effects for list items */
.service-card:hover ul li {
  border-bottom-color: #e8f0fe;
}

/* Animation for service cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Staggered animation for service cards */
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card:nth-child(9) {
  animation-delay: 0.9s;
}
.service-card:nth-child(10) {
  animation-delay: 1s;
}
.service-card:nth-child(11) {
  animation-delay: 1.1s;
}
.service-card:nth-child(12) {
  animation-delay: 1.2s;
}
.service-card:nth-child(13) {
  animation-delay: 1.3s;
}
.service-card:nth-child(14) {
  animation-delay: 1.4s;
}
.service-card:nth-child(15) {
  animation-delay: 1.5s;
}
.service-card:nth-child(16) {
  animation-delay: 1.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-page h1.page {
    font-size: 2.2rem;
  }

  .services-header .lead {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card .icon {
    font-size: 2.5rem;
    height: 70px;
    width: 70px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .services-page {
    padding: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card .icon {
    font-size: 2rem;
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Enhanced hover effects */
.service-card {
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.service-card:hover::after {
  opacity: 0.02;
}

/* Focus states for accessibility */
.service-card:focus-within {
  outline: 2px solid #1a60fe;
  outline-offset: 2px;
}

/* Smooth scrolling for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card .icon,
  .service-card ul li {
    transition: none;
    animation: none;
  }
}

/* Print styles */
@media print {
  .service-card {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .service-card:hover {
    transform: none;
  }
}
/* Projects Page Specific Styles */
.portfolio-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.portfolio-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

/* Project Cards */
.project {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Container - FIXED */
/* .thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9ff; 
} */

/* .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
    transition: all 0.4s ease;
} */

/* Add a placeholder in case images don't load */
.thumb::before {
  content: "Thumbnail";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ccc;
  font-size: 1rem;
  z-index: 0; /* Behind the image */
  display: none; /* Only show if image fails to load */
}

.thumb img:not([src])::before,
.thumb img[src=""]::before {
  display: block;
}

.project:hover .thumb img {
  transform: scale(1.05);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.9) 0%,
    rgba(193, 57, 255, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2; /* Ensure it's above the image */
}

.project:hover .overlay {
  opacity: 1;
}

.overlay .btn.primary {
  background: white;
  color: #1a60fe;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project:hover .overlay .btn.primary {
  transform: translateY(0);
}

.overlay .btn.primary:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Project Info - FIXED STRUCTURE */
.project > h4,
.project > p {
  padding: 1rem 1.5rem;
  margin: 0;
}

.project h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.project p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  padding-top: 0;
  margin-top: -0.5rem;
  padding-bottom: 1.5rem;
}

/* Rest of your CSS remains the same... */
/* ------------------------------
   GLOBAL STYLES
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.cta {
  color: #007bff;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  background: linear-gradient(to right, #f7f8fc, #ffffff);
  padding: 4rem 2rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.hero-cta .btn {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background: #0056b3;
}

.btn.outline {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn.outline:hover {
  background: #007bff;
  color: #fff;
}

.hero-features li {
  margin: 0.5rem 0;
  color: #444;
  font-size: 0.95rem;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   SECTIONS
------------------------------ */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: #666;
  font-size: 1rem;
}

/* ------------------------------
   SERVICES GRID
------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 1rem 0 0.5rem;
  color: #222;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

.service-card ul li {
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

/* ------------------------------
   STATS SECTION
------------------------------ */
.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 2rem 0;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

.stat-label {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-content .stars {
  color: #ffb400;
  font-size: 1.2rem;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
  background: #111;
  color: #eee;
  padding: 2rem 0;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-links li {
  margin: 0.3rem 0;
}

.footer-links a {
  color: #ddd;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .stats-grid {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-slider .slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slider .slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Dots */
.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.slider-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: #007bff;
}
/* =========================
   NAVBAR BASE STYLES
========================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand .logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand .logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.cta {
  background: #007bff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-link.cta:hover {
  background: #0056b3;
}

/* =========================
   HAMBURGER MENU (MOBILE)
========================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .main-nav.open {
    transform: translateX(0%);
  }

  .nav-link {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
  }

  .hamburger {
    display: block;
  }
}
/* ---------------------------
   Base Styles
---------------------------- */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0;
  color: #1f1f1f;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------------------------
   Navigation Bar
---------------------------- */
.site-header {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

/* Default nav style */
.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
}

/* Hamburger icon hidden on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1f1f1f;
  background: none;
  border: none;
}

/* ---------------------------
   Responsive Nav
---------------------------- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 200px;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav .nav-link {
    padding: 0.5rem 0;
    color: #1f1f1f;
  }
}

/* ---------------------------
   Responsive Grid & Typography
---------------------------- */
h1 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
}

.grid {
  display: grid;
  grid-gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.nav-link.cta {
  padding: 8px 16px;
  background: #007bff;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.nav-link.cta:hover {
  background: #0056b3;
  transform: translateY(-2px);
}
/* ================================
   AUTH PAGE STYLES - auth.css
   Matches WebInstant's style.css
   ================================ */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--muted, #f5f7fa);
  color: var(--text, #1f1f1f);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius, 12px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: #1f1f1f;
    padding: 0.5rem 0;
  }
}

/* AUTH SECTION */
.auth-section {
  max-width: 400px;
  margin: 60px auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius, 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

.auth-section h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #444;
}

.auth-form input {
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.auth-form input:focus {
  border-color: var(--primary, #2e86de);
  box-shadow: 0 0 0 2px rgba(46, 134, 222, 0.15);
}

.auth-form button {
  background: linear-gradient(90deg, var(--primary, #2e86de));
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.auth-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 134, 222, 0.3);
}

.auth-section p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.auth-section p a {
  color: var(--primary, #2e86de);
  text-decoration: none;
  font-weight: 500;
}

.auth-section p a:hover {
  text-decoration: underline;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 20px;
  background: #f8f9fc;
  text-align: center;
}

.why-choose-us h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0b0f32;
  margin-bottom: 30px;
}

.why-grid {
  display: flex;
  justify-content: center;
}

.why-content {
  max-width: 800px;
  text-align: left;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.why-feature {
  display: flex;
  gap: 15px;
  align-items: start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-feature i {
  font-size: 1.8rem;
  color: #2e86de;
  background: rgba(46, 134, 222, 0.1);
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0b0f32;
  font-weight: 600;
}

.why-feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.btn.primary {
  display: inline-block;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .why-features {
    grid-template-columns: 1fr;
  }

  .why-feature {
    padding: 15px;
  }

  .why-choose-us h2 {
    font-size: 1.6rem;
  }
}
/* Profile Icon Styles */
.profile-section {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.profile-section:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: 600;
  font-size: 1.2rem;
}

.profile-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #0b0f32;
}

.profile-email {
  font-size: 0.9rem;
  color: #666;
}

.profile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.profile-menu li:last-child {
  border-bottom: none;
}

.profile-menu a {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.profile-menu a:hover {
  color: #1a60fe;
}

.profile-menu i {
  font-size: 1.1rem;
  width: 20px;
}

.logout-btn {
  color: #e74c3c !important;
  font-weight: 500;
}

.logout-btn:hover {
  color: #c0392b !important;
}

/* Adjust header for profile icon */
.header-inner {
  display: flex;
  align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {
  .profile-dropdown {
    right: -80px;
    width: 220px;
  }

  .profile-section {
    margin-left: 10px;
  }
}
/* ================================
   CONTACT PAGE ENHANCEMENTS
   ================================ */

/* Contact Page Specific Styles */
.contact-page {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

/* Contact Form Styling */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-in-out;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  font-family: "Poppins", sans-serif;
  color: #0b0f32;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #f8f9ff;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1a60fe;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 96, 254, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Form Status Messages */
#formStatus {
  margin: 1.2rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
}

#formStatus .success {
  color: #0a8;
  font-weight: 500;
  background: rgba(0, 170, 136, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 4px solid #0a8;
}

#formStatus .error {
  color: #f33;
  font-weight: 500;
  background: rgba(255, 51, 51, 0.1);
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 4px solid #f33;
}

/* Submit Button */
.contact-form button {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a60fe, #c139ff, #812cea);
  background-size: 300% 300%;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Poppins", sans-serif;
}

.contact-form button:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 96, 254, 0.3);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Contact Info Box */
.contact-info {
  background: linear-gradient(145deg, #0b0f32, #13193f);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: slideUp 1s ease-in-out;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.8rem;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  border-radius: 3px;
}

.contact-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin: 2rem 0 1rem;
  color: #fff;
}

.contact-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  color: #c139ff;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #c139ff;
  text-shadow: 0 0 8px rgba(193, 57, 255, 0.5);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193, 57, 255, 0.4);
}

/* Footer Styling */
.site-footer {
  margin-top: 80px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-section h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #c139ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-page h1.page {
    font-size: 2.2rem;
  }

  .contact-page .lead {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .contact-form,
  .contact-info {
    padding: 1.8rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-form label {
    margin: 1.2rem 0 0.5rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.9rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.nav-link.cta {
  background: linear-gradient(90deg, #1a60fe, #c139ff);
  color: white;
  border: 0;
}
/* ========================================
   IMPROVED PORTFOLIO SECTION - FULL IMAGE THUMBNAILS
   Each project shows the whole image beautifully
   ======================================== */

/* Portfolio Page Container */
.portfolio-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: #ffffff;
}

.portfolio-page .page {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #1a60fe 0%, #c139ff 50%, #812cea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-page .lead {
  font-size: 1.2rem;
  text-align: center;
  color: #5a6874;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Projects Grid - Responsive Masonry */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

/* Project Card - Clean & Modern */
.project-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
  border-color: rgba(26, 96, 254, 0.15);
}

/* Media Wrapper - FULL IMAGE DISPLAY */
.project-media {
  position: relative;
  overflow: hidden;
  background: #f5f7fc;
}

.image-wrapper {
  position: relative;
  width: 100%;
  background: #f0f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* KEY FIX: Show full image without cropping */
.image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #f8fafd;
}

/* For consistent card height, maintain aspect ratio */
.project-card:hover .image-wrapper img {
  transform: scale(1.02);
}

/* Overlay - Modern gradient */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 96, 254, 0.85) 0%,
    rgba(193, 57, 255, 0.85) 100%
  );
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  background: #ffffff;
  color: #1a60fe;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  transform: translateY(15px);
  transition:
    transform 0.3s ease,
    background 0.2s;
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-link i {
  font-size: 0.9rem;
}

.project-link:hover {
  background: linear-gradient(105deg, #1a60fe, #c139ff);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(26, 96, 254, 0.4);
}

/* Tech Badge - floating chips */
.tech-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.tech-badge span {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  letter-spacing: 0.3px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.tech-badge span:first-child {
  background: linear-gradient(95deg, #1a60fe, #4b7df5);
  box-shadow: 0 2px 6px rgba(26, 96, 254, 0.3);
}

/* Project Details */
.project-details {
  padding: 1.5rem 1.5rem 1.8rem;
}

.project-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.65rem 0;
  color: #0b0f32;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.project-card:hover .project-details h4 {
  background: linear-gradient(135deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-details p {
  color: #5a6874;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eff3f8;
}

.project-meta span {
  font-size: 0.75rem;
  color: #6c7a8a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  background: #f8fafd;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

.project-meta i {
  color: #1a60fe;
  font-size: 0.7rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 820px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .portfolio-page {
    padding: 2rem 1.2rem;
  }

  .portfolio-page .page {
    font-size: 2.3rem;
  }

  .portfolio-page .lead {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .image-wrapper img {
    min-height: 200px;
  }

  .project-details {
    padding: 1.2rem;
  }

  .project-details h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 580px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .portfolio-page {
    padding: 1.5rem 1rem;
  }

  .project-link {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
  }

  .tech-badge span {
    font-size: 0.65rem;
    padding: 0.2rem 0.7rem;
  }

  .project-meta span {
    font-size: 0.7rem;
  }

  .image-wrapper img {
    min-height: 180px;
    object-fit: contain;
  }
}

/* Large screens - maintain full image quality */
@media (min-width: 1400px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .image-wrapper img {
    object-fit: contain;
    width: 100%;
  }
}

/* Animation on scroll - smooth entrance */
@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: cardFadeUp 0.5s ease forwards;
  opacity: 0;
}

.project-card:nth-child(1) {
  animation-delay: 0.05s;
}
.project-card:nth-child(2) {
  animation-delay: 0.1s;
}
.project-card:nth-child(3) {
  animation-delay: 0.15s;
}
.project-card:nth-child(4) {
  animation-delay: 0.2s;
}
.project-card:nth-child(5) {
  animation-delay: 0.25s;
}
.project-card:nth-child(6) {
  animation-delay: 0.3s;
}

/* Ensure no global conflicts */
.portfolio-page .container.section {
  padding: 0;
  max-width: 100%;
}

/* Additional polish for hover states */
@media (hover: hover) {
  .project-link {
    transition:
      transform 0.25s ease,
      background 0.25s;
  }
}

/* Make sure thumbnails don't overflow */
.project-media {
  max-height: none;
  overflow: visible;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 0;
}
.reminder-note {
  background-color: red;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
}

.delivery-note {
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 4px 0;
  color: #2c7da0;
  background: #eaf8ff;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
  width: auto;
}

.warning-note {
  font-size: 12px;
  color: #e67e22;
  background: #fef5e8;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 6px 0;
  display: inline-block;
  width: auto;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-cta .btn {
  margin-top: 8px;
}
/* Terms Page Specific Styles */
.terms-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.terms-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terms-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.terms-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a60fe;
  margin: 1.5rem 0 0.8rem;
}

.terms-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.terms-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.highlight-box {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-left: 4px solid #1a60fe;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
  color: #0b0f32;
}

.last-updated {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-page {
    padding: 2rem 1rem;
  }

  .terms-page h1.page {
    font-size: 2.2rem;
  }

  .terms-container {
    padding: 1.5rem;
  }

  .terms-section h2 {
    font-size: 1.4rem;
  }

  .terms-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .terms-page {
    padding: 1.5rem 0.5rem;
  }

  .terms-container {
    padding: 1.2rem;
  }

  .terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}
/* Refund Policy Specific Styles */
.refund-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.refund-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.refund-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.refund-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.refund-intro {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  border-left: 4px solid #1a60fe;
}

.refund-intro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.refund-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.refund-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.refund-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.refund-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin: 1.5rem 0 0.8rem;
}

.refund-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.refund-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.refund-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.5rem;
}

/* Eligibility Boxes */
.eligibility-box {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  margin: 1.5rem 0;
  border: 2px solid #e8f0fe;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.eligibility-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-box.refundable {
  border-left: 4px solid #00c9a7;
}

.eligibility-box.non-refundable {
  border-left: 4px solid #f33;
}

.eligibility-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eligibility-box.refundable h4 {
  color: #00c9a7;
}

.eligibility-box.non-refundable h4 {
  color: #f33;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-step {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border-top: 3px solid #1a60fe;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0b0f32;
}

/* Timeline Box */
.timeline-box {
  background: linear-gradient(135deg, #1a60fe15 0%, #c139ff15 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(26, 96, 254, 0.1);
}

.timeline-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-item i {
  color: #1a60fe;
  font-size: 1.2rem;
  min-width: 24px;
}

.highlight-box {
  background: rgba(26, 96, 254, 0.08);
  border-left: 4px solid #1a60fe;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Email Template */
.email-template {
  background: #0b0f32;
  color: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.email-template .email-line {
  margin-bottom: 0.5rem;
}

.email-template .highlight {
  color: #c139ff;
}

/* Contact Box */
.contact-refund {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0 1rem;
}

.contact-refund h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-refund a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-refund a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.last-updated {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
  .refund-page {
    padding: 2rem 1rem;
  }

  .refund-page h1.page {
    font-size: 2.2rem;
  }

  .refund-container {
    padding: 1.5rem;
  }

  .refund-intro {
    padding: 1.5rem;
  }

  .refund-section h2 {
    font-size: 1.3rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .eligibility-box {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .refund-page {
    padding: 1.5rem 0.5rem;
  }

  .refund-container {
    padding: 1.2rem;
  }

  .refund-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .email-template {
    padding: 1rem;
    font-size: 0.8rem;
  }

  .contact-refund {
    padding: 1.5rem;
  }
}
/* ONLY change: show 1 project per line */
.projects-grid {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* Privacy Policy Specific Styles */
.privacy-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.privacy-page h1.page {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated-header {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.last-updated-header strong {
  color: #1a60fe;
}

.privacy-page .lead {
  font-size: 1.1rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b0f32;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a60fe;
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-section li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.5rem;
}

/* Information Collection Boxes */
.info-box {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  margin: 1.5rem 0;
  border: 2px solid #e8f0fe;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-box.personal {
  border-left: 4px solid #1a60fe;
}

.info-box.automated {
  border-left: 4px solid #00c9a7;
}

.info-box.payment {
  border-left: 4px solid #c139ff;
}

.info-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box.personal h4 {
  color: #1a60fe;
}

.info-box.automated h4 {
  color: #00c9a7;
}

.info-box.payment h4 {
  color: #c139ff;
}

/* Data Usage Cards */
.usage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.usage-card {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border-top: 3px solid #1a60fe;
}

.usage-card i {
  font-size: 2rem;
  color: #1a60fe;
  margin-bottom: 1rem;
}

.usage-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0b0f32;
}

/* Cookie Information */
.cookie-info {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.cookie-info h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0b0f32;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cookie-type {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #1a60fe;
}

.cookie-type h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a60fe;
}

/* Security Badges */
.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 201, 167, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
}

.security-badge i {
  color: #00c9a7;
}

/* Your Rights Section */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e8f0fe;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.right-item i {
  color: #1a60fe;
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 24px;
}

.right-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0b0f32;
}

/* Contact Information Box */
.contact-privacy {
  background: linear-gradient(45deg, #1a60fe, #c139ff);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0 1rem;
}

.contact-privacy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.contact-item i {
  font-size: 1.5rem;
  color: white;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

/* Notice Box */
.notice-box {
  background: linear-gradient(135deg, #1a60fe15 0%, #c139ff15 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(26, 96, 254, 0.1);
  text-align: center;
}

.notice-box p {
  margin: 0;
  font-weight: 500;
  color: #0b0f32;
}

.highlight-box {
  background: rgba(26, 96, 254, 0.08);
  border-left: 4px solid #1a60fe;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-page {
    padding: 2rem 1rem;
  }

  .privacy-page h1.page {
    font-size: 2.2rem;
  }

  .privacy-container {
    padding: 1.5rem;
  }

  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .usage-cards,
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookie-types {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
  }

  .contact-info-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .privacy-page {
    padding: 1.5rem 0.5rem;
  }

  .privacy-container {
    padding: 1.2rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .info-box {
    padding: 1.2rem;
  }

  .contact-privacy {
    padding: 1.5rem;
  }

  .right-item {
    padding: 1rem;
  }
}
/* ========================================
   HEADER & STICKY NAVBAR (FIXED)
   ======================================== */
.site-header {
  position: sticky;      /* ← This is the key property */
  top: 0;                /* ← Sticks to the very top */
  left: 0;
  width: 100%;
  z-index: 1000;         /* ← Stays above other content */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
        /* FAQ Accordion */
        .faq-accordion {
            max-width: 800px;
            margin: 40px auto 0;
        }
        .faq-item-acc {
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid #eef2f8;
            overflow: hidden;
            transition: all 0.2s;
        }
        .faq-question {
            width: 100%;
            background: white;
            border: none;
            padding: 20px 24px;
            text-align: left;
            font-family: "Poppins", sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: #0b0f32;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .faq-question:hover {
            background: #f8faff;
        }
        .faq-question .faq-icon {
            font-size: 1rem;
            color: #1a60fe;
            transition: transform 0.3s;
        }
        .faq-item-acc.active .faq-question .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fefefe;
            color: #5a6874;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .faq-item-acc.active .faq-answer {
            padding: 0 24px 20px 24px;
            max-height: 300px;
        }
        /* ========================================
   ENHANCED TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 96, 254, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 57, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-slider-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Testimonial Card */
.testimonial-card {
    perspective: 1000px;
}

.testimonial-card-inner {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    border: 1px solid rgba(26, 96, 254, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 96, 254, 0.12);
    border-color: rgba(26, 96, 254, 0.15);
}

/* Featured Card */
.testimonial-card.featured .testimonial-card-inner {
    background: linear-gradient(135deg, #0b0f32 0%, #13193f 100%);
    border: none;
}

.testimonial-card.featured .stars i,
.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info h4,
.testimonial-card.featured .author-info p {
    color: white;
}

.testimonial-card.featured .quote-icon i {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.7);
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2.5rem;
    color: rgba(26, 96, 254, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
    color: rgba(26, 96, 254, 0.25);
    transform: scale(1.05);
}

/* Stars */
.stars {
    margin-bottom: 1.25rem;
}

.stars i {
    color: #ffb400;
    font-size: 0.9rem;
    margin-right: 2px;
    letter-spacing: 2px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: normal;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar i {
    font-size: 2.5rem;
    color: #1a60fe;
    opacity: 0.8;
}

.testimonial-card.featured .author-avatar i {
    color: white;
    opacity: 0.9;
}

.author-info h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    color: #0b0f32;
}

.author-info p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

/* Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: #1a60fe;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #1a60fe, #c139ff);
    border-color: transparent;
    color: white;
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #1a60fe, #c139ff);
}

.testimonial-dots .dot:hover {
    background: #1a60fe;
}

/* Animation for cards */
@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: testimonialFadeIn 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-controls {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .quote-icon i {
        font-size: 2rem;
    }
    
    .testimonial-controls {
        display: none;
    }
}


/* ============================================================
   ABOUT.HTML — Inline Styles
   ============================================================ */

/* Reading Progress */
#reading-progress {
    position: fixed; top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    z-index: 9999; width: 0%;
    transition: width 0.1s linear;
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
    padding: 72px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute; inset: 0;
}
.about-hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.025);
    bottom: -180px; left: -120px;
    animation: float 10s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }
.about-hero-content { position: relative; z-index: 1; }
.about-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255);
    border-radius: 50px; padding: 6px 18px;
    color: rgba(255,255,255); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem; font-weight: 800;
    color: #fff; margin: 0 0 16px;
    line-height: 1.2;
}
.about-hero h1 span {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero .hero-sub {
    color: rgba(255,255,255,0.82); font-size: 1.1rem;
    max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}

/* About Page Wrapper */
.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem 5rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Section Headers */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,96,254,0.07);
    border: 1px solid rgba(26,96,254,0.15);
    border-radius: 50px; padding: 5px 16px;
    color: #1a60fe; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: #0b0f32; margin: 0 0 10px;
}
.section-head p { color: #666; font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* Mission */
.mission-section { margin: 64px 0 0; }
.mission-box {
    background: linear-gradient(135deg, #f0f5ff, #f9f0ff);
    border-radius: 22px;
    padding: 48px 52px;
    border-left: 6px solid #1a60fe;
    position: relative;
    overflow: hidden;
}
.mission-box::after {
    content: '\f135';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 40px; top: 50%;
    transform: translateY(-50%);
    font-size: 7rem; color: rgba(26,96,254,0.05);
    pointer-events: none;
}
.mission-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem; font-weight: 800;
    color: #0b0f32; margin: 0 0 18px;
    display: flex; align-items: center; gap: 10px;
}
.mission-box h2 i {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.mission-box p { color: #444; font-size: 1.05rem; line-height: 1.8; margin: 0; max-width: 720px; }

/* Team */
.team-section { margin: 64px 0 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    transform: scaleX(0); transition: transform 0.3s ease;
    transform-origin: left;
}
.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(26,96,254,0.12);
    border-color: #d0d8ff;
}
.team-card:hover::before { transform: scaleX(1); }
.avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a60fe, #c139ff, #812cea);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(26,96,254,0.3);
}
.team-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: #0b0f32; margin: 0 0 8px;
}
.team-card .role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26,96,254,0.08), rgba(193,57,255,0.08));
    color: #1a60fe; font-size: 0.78rem; font-weight: 700;
    padding: 4px 14px; border-radius: 50px;
    margin-bottom: 14px; letter-spacing: 0.3px;
}
.team-card p { color: #666; font-size: 0.9rem; line-height: 1.6; margin: 0; }
.team-card .social-links {
    display: flex; justify-content: center; gap: 10px; margin-top: 18px;
}
.team-card .social-links a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f4f6ff;
    color: #1a60fe;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}
.team-card .social-links a:hover {
    background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; transform: translateY(-2px);
}

/* Values */
.values-section { margin: 64px 0 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    display: flex; align-items: flex-start; gap: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1.5px solid #f0f0f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26,96,254,0.1);
    border-color: #d0d8ff;
}
.value-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    transition: background 0.25s ease;
}
.value-card:hover .value-icon {
    background: linear-gradient(135deg, #1a60fe, #c139ff);
}
.value-icon i { color: #1a60fe; transition: color 0.25s ease; }
.value-card:hover .value-icon i { color: #fff; }
.value-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    color: #0b0f32; margin: 0 0 5px;
}
.value-body p { color: #666; font-size: 0.85rem; margin: 0; line-height: 1.55; }

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 50%, #c139ff 100%);
    border-radius: 22px;
    padding: 60px 32px;
    text-align: center;
    margin-top: 64px;
    position: relative; overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute; inset: 0;
}
.about-cta-inner { position: relative; z-index: 1; }
.about-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.about-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 500px; margin: 0 auto 28px; line-height: 1.65; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: #1a60fe;
    padding: 13px 30px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.cta-btn-ghost {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: #fff;
    padding: 13px 30px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.1rem; }
    .stats-band { gap: 28px; }
    .stat-item .stat-number { font-size: 1.7rem; }
    .mission-box { padding: 28px 24px; }
    .mission-box::after { display: none; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .about-cta { padding: 40px 20px; }
    .about-cta h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .about-hero h1 { font-size: 1.8rem; }
    .values-grid { grid-template-columns: 1fr; }
    .about-cta-btns { flex-direction: column; align-items: center; }
}


/* ============================================================
   CONTACT.HTML — Inline Styles
   ============================================================ */

.contact-hero {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
    padding: 70px 20px 58px;
    text-align: center;
    position: relative; overflow: hidden;
}
.contact-hero::before { content: ''; position: absolute; inset: 0; }
.contact-hero::after {
    content: '';
    position: absolute;
    width: 450px; height: 450px; border-radius: 50%;
    background: rgba(255,255,255,0.025);
    bottom: -160px; right: -80px;
    animation: floatC 9s ease-in-out infinite;
}
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-22px)} }
.contact-hero-content { position: relative; z-index: 1; }
.contact-hero .eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 6px 18px;
    color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600;
    margin-bottom: 20px;
}
.contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem; font-weight: 800; color: #fff; margin: 0 0 14px;
}
.contact-hero h1 span {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-hero .hero-sub {
    color: rgba(255,255,255,0.82); font-size: 1.1rem;
    max-width: 540px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-contact-chips { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px; padding: 8px 20px;
    color: #fff; font-size: 0.9rem; font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.hero-chip:hover { background: rgba(255,255,255,0.22); }
.hero-chip i { font-size: 0.95rem; }

.contact-page { max-width: 1100px; margin: 0 auto; padding: 56px 1.2rem 5rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1.5px solid #f0f0f0;
}
.form-card .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; font-weight: 800; color: #0b0f32; margin: 0 0 6px;
}
.form-card .form-sub { color: #888; font-size: 0.92rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { margin-bottom: 18px; }
.field-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem; font-weight: 600; color: #0b0f32; margin-bottom: 7px;
}
.field-group label .req { color: #ef4444; margin-left: 2px; }
.field-group input,
.field-group select,
.field-group textarea {
    width: 100%; padding: 12px 16px;
    border-radius: 12px; border: 1.5px solid #e2e8f0;
    font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: #0b0f32;
    background: #f8faff; outline: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    box-sizing: border-box;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: #1a60fe;
    box-shadow: 0 0 0 3px rgba(26,96,254,0.1);
    background: #fff;
}
.field-group input.error,
.field-group textarea.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.field-group .field-error { color: #ef4444; font-size: 0.78rem; margin-top: 5px; display: none; }
.field-group.has-error .field-error { display: block; }
.field-group textarea { resize: vertical; min-height: 120px; }
.input-wrap { position: relative; }
.input-wrap i {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #aaa; font-size: 0.9rem; pointer-events: none;
}
.input-wrap input, .input-wrap select { padding-left: 40px; }
.submit-btn {
    width: 100%; padding: 14px 20px;
    background: linear-gradient(45deg, #1a60fe, #c139ff);
    color: #fff; border: none; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    margin-top: 8px;
}
.submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,96,254,0.35); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
#formStatus { margin: 14px 0 0; }
.status-success {
    display: flex; align-items: center; gap: 10px;
    background: #f0fdf6; border: 1px solid rgba(0,188,107,0.25);
    border-left: 4px solid #00bc6b; border-radius: 10px; padding: 14px 16px;
    color: #065f46; font-size: 0.92rem; font-weight: 500;
}
.status-error {
    display: flex; align-items: center; gap: 10px;
    background: #fff5f5; border: 1px solid rgba(239,68,68,0.25);
    border-left: 4px solid #ef4444; border-radius: 10px; padding: 14px 16px;
    color: #991b1b; font-size: 0.92rem; font-weight: 500;
}
.status-success i { color: #00bc6b; font-size: 1.1rem; }
.status-error i { color: #ef4444; font-size: 1.1rem; }
.wa-alt {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 18px; padding: 14px;
    background: linear-gradient(135deg, rgba(37,211,102,0.07), rgba(7,94,84,0.05));
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 12px; text-decoration: none;
    color: #065f46; font-size: 0.92rem; font-weight: 600;
    transition: background 0.2s;
}
.wa-alt:hover { background: linear-gradient(135deg, rgba(37,211,102,0.14), rgba(7,94,84,0.1)); }
.wa-alt i { color: #25D366; font-size: 1.2rem; }

/* Info Column */
.info-column { display: flex; flex-direction: column; gap: 20px; }
.info-card {
    background: #fff; border-radius: 20px; padding: 28px 26px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.06); border: 1.5px solid #f0f0f0;
}
.info-card .logo-wrap { margin-bottom: 18px; }
.info-card img { max-width: 130px; }
.info-card .tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem; color: #888; margin: 6px 0 20px; font-style: italic;
}
.info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; font-weight: 700; color: #0b0f32; margin: 0 0 14px;
}
.contact-item-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: #f8faff; border-radius: 10px;
    margin-bottom: 10px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.contact-item-row:hover { background: #eef2ff; transform: translateX(3px); }
.contact-item-row .ci-icon {
    width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
    background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.contact-item-row .ci-body { min-width: 0; }
.contact-item-row .ci-label {
    font-size: 0.72rem; color: #888; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 2px;
}
.contact-item-row .ci-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem; font-weight: 600; color: #0b0f32;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.social-row { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: #f4f6ff; color: #1a60fe;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}
.social-btn:hover { background: linear-gradient(135deg, #1a60fe, #c139ff); color: #fff; transform: translateY(-3px); }
.response-badge {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #f0fdf6, #ecfdf5);
    border: 1px solid rgba(0,188,107,0.2); border-radius: 12px; padding: 14px 16px;
}
.response-badge i { color: #00bc6b; font-size: 1.2rem; flex-shrink: 0; }
.response-badge .rb-title {
    font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: #065f46; display: block;
}
.response-badge .rb-sub { font-size: 0.78rem; color: #059669; }

/* FAQ Accordion (contact page) */
.faq-section { margin-top: 64px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1.5px solid #f0f0f0; border-radius: 14px;
    margin-bottom: 12px; overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open { border-color: rgba(26,96,254,0.2); box-shadow: 0 6px 20px rgba(26,96,254,0.08); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: #0b0f32;
    user-select: none; gap: 12px;
}
.faq-q .faq-icon {
    width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px;
    background: #f4f6ff; color: #1a60fe;
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
    transition: background 0.25s, transform 0.25s, color 0.25s;
}
.faq-item.open .faq-q .faq-icon {
    background: linear-gradient(135deg, #1a60fe, #c139ff); color: #fff; transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-a-inner { padding: 0 22px 18px; color: #555; font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .info-column { flex-direction: column; } }
@media (max-width: 768px) {
    .contact-hero h1 { font-size: 2.1rem; }
    .form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-contact-chips { flex-direction: column; align-items: center; gap: 10px; }
}
@media (max-width: 480px) { .contact-hero h1 { font-size: 1.8rem; } }


/* ============================================================
   PLANS.HTML — Inline Styles
   ============================================================ */

.plans-hero {
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    padding: 64px 20px 56px; text-align: center; position: relative; overflow: hidden;
}
.plans-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.plans-hero-content { position: relative; z-index: 1; }
.plans-hero h1 { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.plans-hero .hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 580px; margin: 0 auto 28px; line-height: 1.6; }
.plans-hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hero-stat { color: #fff; text-align: center; }
.hero-stat strong {
    display: block; font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.75)); -webkit-text-fill-color: transparent;
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.plans-page { max-width: 1200px; margin: 0 auto; padding: 2rem 1.2rem 4rem; }

.plan-category {
    margin: 4rem 0; scroll-margin-top: 90px;
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.plan-category.visible { opacity: 1; transform: translateY(0); }
.category-title {
    font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 800; color: #0b0f32;
    margin-bottom: 6px; display: flex; align-items: center; gap: 12px;
}
.category-title .cat-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #1a60fe, #c139ff); color: #fff;
    border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.category-subtitle { color: #666; font-size: 1rem; margin-bottom: 2rem; padding-left: 56px; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.plan-card {
    background: #fff; border-radius: 20px; padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07); border: 2px solid #f0f0f0;
    position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(26,96,254,0.12); border-color: #d0d8ff; }
.plan-card.featured { border: 2px solid #1a60fe; box-shadow: 0 12px 40px rgba(26,96,254,0.15); }
.plan-card.featured:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(26,96,254,0.22); }

.plan-badge {
    position: absolute; top: -13px; right: 22px;
    background: linear-gradient(45deg, #1a60fe, #c139ff); color: #fff;
    padding: 5px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(26,96,254,0.35);
}
.plan-header { text-align: center; margin-bottom: 1.8rem; padding-bottom: 1.5rem; border-bottom: 2px solid #f5f5f5; }
.plan-header h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: #0b0f32; margin-bottom: 1rem; }
.price { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; color: #1a60fe; margin-bottom: 4px; line-height: 1.2; }
.currency { font-size: 1rem; color: #888; font-weight: 500; }
.price-note { color: #999; font-size: 0.85rem; margin-top: 4px; }

.plan-features { list-style: none; padding: 0; margin-bottom: 1.5rem; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: #444; font-size: 0.92rem; line-height: 1.55; }
.plan-features i { color: #00c9a7; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.plan-cta { display: flex; flex-direction: column; align-items: center; gap: 0; margin-top: auto; }

.delivery-note {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.88rem; font-weight: 600; color: #0369a1;
    background: #e0f2fe; border-radius: 8px; padding: 7px 12px;
    margin-bottom: 8px; width: 100%; box-sizing: border-box;
}
.delivery-note i { color: #0284c7; flex-shrink: 0; }

.warning-note {
    display: flex; align-items: flex-start; gap: 7px;
    font-size: 0.82rem; color: #92400e; background: #fef3c7;
    border-left: 3px solid #f59e0b; border-radius: 0 8px 8px 0;
    padding: 6px 10px; margin-bottom: 12px; width: 100%; box-sizing: border-box; line-height: 1.45;
}
.warning-note i { color: #d97706; flex-shrink: 0; margin-top: 1px; }

.plan-cta .btn.primary {
    width: 100%; padding: 13px 20px; font-size: 1rem; font-weight: 700; border-radius: 12px;
    background: linear-gradient(45deg, #1a60fe, #c139ff); color: #fff;
    text-decoration: none; text-align: center; display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.plan-cta .btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,96,254,0.35); }

.reminder-note {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.78rem; color: #075E54;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0); border-radius: 8px;
    padding: 6px 12px; margin-top: 8px; width: 100%; box-sizing: border-box; font-weight: 500;
}
.reminder-note::before {
    content: "\f232"; font-family: "Font Awesome 6 Brands"; font-weight: 400;
    color: #25D366; font-size: 0.95rem;
}

.whatsapp-global-note {
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(7,94,84,0.08));
    border: 1.5px solid rgba(37,211,102,0.3); border-radius: 16px; padding: 18px 28px;
    margin: 48px 0 36px; display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap; font-size: 1.05rem; font-weight: 600; color: #065f46;
    text-align: center; box-shadow: 0 4px 16px rgba(37,211,102,0.08);
}
.whatsapp-global-note i { font-size: 2rem; color: #25D366; flex-shrink: 0; }

.requirements-section { margin: 20px 0 48px; }
.section-title-plans { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 800; text-align: center; color: #0b0f32; margin-bottom: 10px; }
.section-sub-plans { text-align: center; color: #666; font-size: 1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.requirements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.req-card {
    background: #fff; border-radius: 18px; padding: 28px 20px; text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05); border: 1.5px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.req-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(26,96,254,0.1); border-color: #c7d7ff; }
.req-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(26,96,254,0.08), rgba(193,57,255,0.08));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; transition: background 0.3s ease;
}
.req-card:hover .req-icon { background: linear-gradient(135deg, rgba(26,96,254,0.15), rgba(193,57,255,0.15)); }
.req-icon i { font-size: 1.8rem; color: #1a60fe; }
.req-card h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #0b0f32; }
.req-card p { color: #5a6874; font-size: 0.88rem; line-height: 1.55; margin: 0; }

.cta-section {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 50%, #c139ff 100%);
    color: #fff; padding: 56px 32px; border-radius: 22px; margin: 48px 0 24px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-inner .btn {
    display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #1a60fe;
    padding: 14px 32px; border-radius: 50px; font-family: 'Poppins', sans-serif;
    font-size: 1.05rem; font-weight: 700; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-inner .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }

.req-card, .plan-card {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.req-card.visible, .plan-card.visible { opacity: 1; transform: translateY(0); }
.plan-card.featured.visible { transform: translateY(0); }
.plan-card.featured.visible:hover { transform: translateY(-6px); }

@media (max-width: 768px) {
    .plans-hero h1 { font-size: 2.1rem; }
    .plans-hero-stats { gap: 24px; }
    .hero-stat strong { font-size: 1.5rem; }
    .plans-grid { grid-template-columns: 1fr; gap: 18px; }
    .plan-card.featured { transform: none; }
    .category-subtitle { padding-left: 0; }
    .requirements-grid { gap: 16px; }
    .cta-section { padding: 36px 20px; }
    .cta-inner h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) { .plans-hero h1 { font-size: 1.8rem; } }


/* ============================================================
   PRIVACY.HTML — Inline Styles
   ============================================================ */

.legal-hero {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
    padding: 60px 20px 50px; text-align: center; position: relative; overflow: hidden;
}
.legal-hero::before { content: ''; position: absolute; inset: 0; }
.legal-hero .hero-icon { font-size: 3rem; color: rgba(255,255,255,0.9); margin-bottom: 16px; display: block; }
.legal-hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 800; color: #fff; margin: 0 0 12px; }
.legal-hero .hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 20px; }
.legal-hero .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px; padding: 6px 16px; color: #fff; font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.notice-box {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid rgba(5,150,105,0.2); border-left: 4px solid #c139ff;
    border-radius: 10px; padding: 14px 18px; margin: 20px 0;
}
.notice-box p { margin: 0; color: #1a60fe; font-size: 0.95rem; }

.toc-card {
    background: #f0fdf9; border: 1px solid rgba(5,150,105,0.15);
    border-radius: 16px; padding: 28px 32px; margin: 40px 0 32px;
}
.toc-card h3 {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #0b0f32;
    margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
}
.toc-card h3 i { color: #1a60fe; }
.toc-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px; list-style: none; padding: 0; margin: 0;
}
.toc-list li a {
    display: flex; align-items: center; gap: 8px; color: #1a60fe;
    text-decoration: none; font-size: 0.9rem; font-weight: 500;
    padding: 6px 10px; border-radius: 8px; transition: background 0.2s, transform 0.2s;
}
.toc-list li a:hover { background: rgba(5,150,105,0.08); transform: translateX(3px); }
.toc-list li a i { font-size: 0.8rem; }

.privacy-page { padding: 0 0 60px; }
.privacy-container { max-width: 820px; margin: 0 auto; }

.privacy-section {
    margin-bottom: 40px; scroll-margin-top: 90px;
    opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.privacy-section.visible { opacity: 1; transform: translateY(0); }
.privacy-section h2 {
    font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: #0b0f32;
    margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid #ecfdf5;
    display: flex; align-items: center; gap: 10px;
}
.privacy-section h2 i {
    width: 36px; height: 36px; background: linear-gradient(135deg, #059669, #1a60fe);
    color: #fff; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.privacy-section h3 {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #0b0f32;
    margin: 20px 0 10px; display: flex; align-items: center; gap: 8px;
}
.privacy-section h3 i { color: #1a60fe; }
.privacy-section p { color: #444; line-height: 1.75; }
.privacy-section ul { color: #444; line-height: 1.85; padding-left: 20px; }
.privacy-section ul li { margin-bottom: 6px; }

.info-box {
    border-radius: 14px; padding: 20px 24px; margin-bottom: 16px;
    position: relative; overflow: hidden;
}
.info-box::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; }
.info-box h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.info-box p, .info-box ul { margin: 0; }
.info-box ul { padding-left: 18px; }
.info-box.personal { background: #f0f5ff; border: 1px solid rgba(26,96,254,0.15); }
.info-box.personal::before { background: #1a60fe; }
.info-box.personal h4 { color: #1e3a8a; }
.info-box.automated { background: #f5f3ff; border: 1px solid rgba(129,44,234,0.15); }
.info-box.automated::before { background: #812cea; }
.info-box.automated h4 { color: #4c1d95; }
.info-box.payment { background: #ecfdf5; border: 1px solid rgba(5,150,105,0.15); }
.info-box.payment::before { background: #1a60fe; }
.info-box.payment h4 { color: #c139ff; }

.usage-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 16px 0; }
.usage-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px 14px;
    text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.usage-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(5,150,105,0.1); border-color: rgba(5,150,105,0.2); }
.usage-card i { font-size: 1.6rem; color: #1a60fe; margin-bottom: 10px; display: block; }
.usage-card h4 { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: #0b0f32; margin: 0 0 4px; }
.usage-card p { color: #666; font-size: 0.82rem; margin: 0; }

.cookie-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 16px; }
.cookie-type { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 16px; border-top: 4px solid; }
.cookie-type:nth-child(1) { border-color: #1a60fe; }
.cookie-type:nth-child(2) { border-color: #059669; }
.cookie-type:nth-child(3) { border-color: #f59e0b; }
.cookie-type h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; margin: 0 0 6px; color: #0b0f32; }
.cookie-type p { color: #666; font-size: 0.85rem; margin: 0; line-height: 1.5; }

.security-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; }
.security-badge {
    display: flex; align-items: center; gap: 10px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 50px; padding: 10px 20px;
    font-size: 0.9rem; font-weight: 600; color: #0b0f32; transition: transform 0.2s, box-shadow 0.2s;
}
.security-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(5,150,105,0.1); }
.security-badge i { color:#1a60fe; font-size: 1.1rem; }

.rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 16px 0; }
.right-item {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 18px 16px;
    display: flex; gap: 14px; align-items: flex-start; transition: transform 0.25s, box-shadow 0.25s;
}
.right-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(5,150,105,0.08); }
.right-item i { font-size: 1.3rem; color: #1a60fe; flex-shrink: 0; margin-top: 2px; }
.right-item h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: #0b0f32; margin: 0 0 4px; }
.right-item p { color: #666; font-size: 0.85rem; margin: 0; }

.highlight-box {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
    border: 1px solid rgba(251,191,36,0.3); border-left: 4px solid #f59e0b;
    border-radius: 10px; padding: 14px 18px; margin-top: 14px;
}

.contact-privacy {
    background: linear-gradient(135deg, #c139ff, #1a60fe);
    border-radius: 18px; padding: 36px 32px; margin-top: 20px; color: #fff;
}
.contact-privacy h3 {
    font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700;
    margin: 0 0 20px; color: #fff; display: flex; align-items: center; gap: 10px;
}
.contact-info-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.contact-item {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px; padding: 14px 18px; text-decoration: none; transition: background 0.2s;
}
.contact-item:hover { background: rgba(255,255,255,0.2); }
.contact-item i { color: #fff; font-size: 1.2rem; }
.contact-item a { color: #fff; text-decoration: none; font-weight: 500; font-size: 0.95rem; }

.last-updated { text-align: center; margin-top: 36px; padding-top: 20px; border-top: 1px solid #ecfdf5; }
.last-updated p { color: #888; font-size: 0.9rem; }
.last-updated i { color: #1a60fe; margin-right: 6px; }

@media (max-width: 768px) {
    .legal-hero h1 { font-size: 2rem; }
    .toc-list { grid-template-columns: 1fr; }
    .usage-cards { grid-template-columns: 1fr 1fr; }
    .rights-grid { grid-template-columns: 1fr; }
    .contact-privacy { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .legal-hero h1 { font-size: 1.7rem; }
    .usage-cards { grid-template-columns: 1fr; }
    .cookie-types { grid-template-columns: 1fr; }
    .security-badges { flex-direction: column; }
}


/* ============================================================
   PROJECTS.HTML — Inline Styles
   ============================================================ */

.portfolio-hero {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
    padding: 70px 20px 60px; text-align: center; position: relative; overflow: hidden;
}
.portfolio-hero::before { content: ''; position: absolute; inset: 0; }
@keyframes floatHero {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}
.portfolio-hero-content { position: relative; z-index: 1; }
.portfolio-hero h1 { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 800; color: #fff; margin: 0 0 16px; }
.portfolio-hero h1 .gradient-text {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.portfolio-hero .hero-subtitle { color: rgba(255,255,255,1); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.hero-stat { text-align: center; color: #fff; }
.hero-stat strong {
    display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7)); -webkit-text-fill-color: transparent;
}
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; text-transform: uppercase; }


/* ============================================================
   REFUND.HTML — Inline Styles
   ============================================================ */

.refund-page { padding: 0 0 60px; }
.refund-container { max-width: 820px; margin: 0 auto; }
.refund-intro {
    background: linear-gradient(135deg, #f0f5ff, #f9f0ff); border-radius: 16px;
    padding: 28px 32px; margin-bottom: 32px; border-left: 5px solid #1a60fe;
}
.refund-intro h2 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: #0b0f32; margin: 0 0 8px; }
.refund-intro h2 i { color: #1a60fe; margin-right: 8px; }
.refund-intro p { color: #555; margin: 0; line-height: 1.7; }

.refund-section {
    margin-bottom: 40px; scroll-margin-top: 90px;
    opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.refund-section.visible { opacity: 1; transform: translateY(0); }
.refund-section h2 {
    font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: #0b0f32;
    margin: 0 0 20px; padding-bottom: 12px; border-bottom: 2px solid #eef2fb;
    display: flex; align-items: center; gap: 10px;
}
.refund-section h2 i {
    width: 36px; height: 36px; background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.refund-section p { color: #444; line-height: 1.75; }
.refund-section ul { color: #444; line-height: 1.8; padding-left: 20px; }
.refund-section ul li { margin-bottom: 6px; }

.eligibility-box {
    border-radius: 14px; padding: 22px 26px; margin-bottom: 16px;
    position: relative; overflow: hidden;
}
.eligibility-box::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; }
.eligibility-box.refundable { background: #f0fdf6; border: 1px solid rgba(0,188,107,0.2); }
.eligibility-box.refundable::before { background: #00bc6b; }
.eligibility-box.non-refundable { background: #fff5f5; border: 1px solid rgba(239,68,68,0.2); }
.eligibility-box.non-refundable::before { background: #ef4444; }
.eligibility-box h4 {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
    margin: 0 0 10px; display: flex; align-items: center; gap: 8px;
}
.eligibility-box.refundable h4 { color: #065f46; }
.eligibility-box.non-refundable h4 { color: #991b1b; }
.eligibility-box p, .eligibility-box ul { margin: 0; }
.eligibility-box ul { padding-left: 18px; }

.highlight { color: #1a60fe; font-weight: 600; }

.timeline-box {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 24px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.timeline-box h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: #0b0f32; margin: 16px 0 10px; }
.timeline-box h4:first-child { margin-top: 0; }
.timeline-box h4 i { margin-right: 8px; color: #1a60fe; }
.timeline-item {
    display: flex; align-items: center; gap: 12px; background: #f8faff;
    border-radius: 10px; padding: 12px 16px; margin-bottom: 10px; color: #444;
}
.timeline-item i { color: #1a60fe; font-size: 1.1rem; }

.email-template { background: #0b0f32; border-radius: 14px; padding: 24px 28px; margin: 16px 0; font-family: 'Courier New', monospace; }
.email-line { color: #a0aec0; font-size: 0.9rem; line-height: 2; }
.email-line .highlight { color: #63b3ed; font-weight: 600; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 16px; }
.process-step {
    background: #fff; border: 1px solid #e8edf5; border-radius: 14px; padding: 20px 16px;
    text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,96,254,0.1); }
.step-number {
    width: 40px; height: 40px; background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; margin: 0 auto 12px;
}
.process-step h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: #0b0f32; margin: 0 0 6px; }
.process-step p { color: #666; font-size: 0.88rem; margin: 0; }

.contact-refund {
    background: linear-gradient(135deg, #1a60fe, #812cea);
    border-radius: 18px; padding: 36px 32px; text-align: center; margin-top: 40px; color: #fff;
}
.contact-refund h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 0 0 10px; color: #fff; }
.contact-refund h3 i { margin-right: 10px; }
.contact-refund p { color: rgba(255,255,255,0.85); margin: 0 0 22px; }
.contact-refund a {
    display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #1a60fe;
    padding: 12px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif;
    font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.contact-refund a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .legal-hero h1 { font-size: 2rem; }
    .toc-list { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .email-template { padding: 18px; }
    .refund-intro, .contact-refund { padding: 20px; }
}
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }


/* ============================================================
   SERVICES.HTML — Inline Styles
   ============================================================ */

.services-hero {
    background: linear-gradient(135deg, #1a60fe 0%, #812cea 60%, #c139ff 100%);
    padding: 72px 20px 60px; text-align: center; position: relative; overflow: hidden;
}
.services-hero::before { content: ''; position: absolute; inset: 0; }
.services-hero::after {
    content: ''; position: absolute;
    width: 460px; height: 460px; border-radius: 50%;
    background: rgba(255,255,255,0.025);
    top: -140px; right: -100px;
    animation: floatCircle 9s ease-in-out infinite;
}
@keyframes floatCircle { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-22px)} }
.services-hero-content { position: relative; z-index: 1; }
.services-hero .eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 6px 18px; color: rgba(255,255,255,0.9);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.4px; margin-bottom: 20px;
}
.services-hero h1 { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; margin: 0 0 16px; }
.services-hero h1 span {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.services-hero .hero-sub { color: rgb(255,255,255); font-size: 1.1rem; max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.hero-stat-row { display: flex; justify-content: center; gap: 52px; flex-wrap: wrap; }
.hero-stat { text-align: center; color: #fff; }
.hero-stat strong {
    display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800;
    background: linear-gradient(90deg,#fff,rgba(255,255,255,0.7));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.4px; }

@media (max-width: 768px) {
    .services-hero h1 { font-size: 2.1rem; }
    .hero-stat-row { gap: 28px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .services-cta { padding: 40px 20px; }
    .services-cta h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .services-hero h1 { font-size: 1.8rem; }
    .process-steps { grid-template-columns: 1fr; }
    .cta-btn-row { flex-direction: column; align-items: center; }
}


/* ============================================================
   T_C.HTML (Terms & Conditions) — Inline Styles
   ============================================================ */

.legal-hero-tc {
    background: linear-gradient(#1a60fe, #c139ff);
    padding: 60px 20px 50px; text-align: center; position: relative; overflow: hidden;
}
.legal-hero-tc::before { content: ''; position: absolute; inset: 0; }

.terms-page { padding: 0 0 60px; }
.terms-container { max-width: 820px; margin: 0 auto; }

.terms-section {
    margin-bottom: 40px; scroll-margin-top: 90px;
    opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.terms-section.visible { opacity: 1; transform: translateY(0); }
.terms-section h2 {
    font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: #0b0f32;
    margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid #eef2fb;
    display: flex; align-items: center; gap: 10px;
}
.terms-section h2 i {
    width: 36px; height: 36px; background: linear-gradient(135deg, #1a60fe, #c139ff);
    color: #fff; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.terms-section p { color: #444; line-height: 1.75; }
.terms-section ul { color: #444; line-height: 1.85; padding-left: 20px; }
.terms-section ul li { margin-bottom: 6px; }

.term-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px 24px;
    margin-bottom: 14px; display: flex; gap: 16px; align-items: flex-start;
    transition: box-shadow 0.25s, transform 0.25s;
}
.term-card:hover { box-shadow: 0 8px 24px rgba(26,96,254,0.08); transform: translateX(4px); }
.term-card .card-icon {
    width: 42px; height: 42px; background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #1a60fe; font-size: 1.1rem;
}
.term-card .card-body h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: #0b0f32; margin: 0 0 6px; }
.term-card .card-body p, .term-card .card-body ul { margin: 0; font-size: 0.93rem; color: #555; line-height: 1.7; }
.term-card .card-body ul { padding-left: 16px; }

.badge {
    display: inline-block; padding: 3px 10px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600; font-family: 'Poppins', sans-serif;
    margin-left: 8px; vertical-align: middle;
}
.badge.required { background: #fee2e2; color: #b91c1c; }
.badge.included { background: #d1fae5; color: #065f46; }
.badge.optional { background: #e0f2fe; color: #0369a1; }

@media (max-width: 768px) {
    .legal-hero h1 { font-size: 2rem; }
    .toc-list { grid-template-columns: 1fr; }
    .term-card { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) { .legal-hero h1 { font-size: 1.7rem; } }

/* ============================================================
   WebInstant - FULLY RESPONSIVE STYLESHEET
   Version: 2.0
   Ensures perfect display on all devices: mobile, tablet, desktop
   ============================================================ */

/* ============================================================
   BREAKPOINTS
   - Small phones: up to 480px
   - Phones: 481px - 768px
   - Tablets: 769px - 1024px
   - Desktops: 1025px - 1280px
   - Large screens: 1281px+
   ============================================================ */

/* ============================================================
   1. GLOBAL RESPONSIVE BASE
   ============================================================ */
html {
  font-size: 16px;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Container responsive adjustments */
.container {
  width: calc(100% - 32px);
  max-width: var(--max-width, 1100px);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }
}

/* ============================================================
   2. HEADER & NAVIGATION RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    padding: 0.8rem 1rem;
  }

  .brand .logo {
    height: 40px;
    width: auto;
  }

  .hamburger {
    display: block !important;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    transition: color 0.3s ease;
  }

  .hamburger:hover {
    color: #1a60fe;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 24px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    gap: 0;
    overflow-y: auto;
  }

  .main-nav.show,
  .main-nav.open {
    right: 0;
    display: flex !important;
  }

  .main-nav .nav-link {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: left;
  }

  .main-nav .nav-link.cta {
    background: linear-gradient(90deg, #1a60fe, #c139ff);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 16px;
    border: none;
  }

  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* ============================================================
   3. HERO SECTION RESPONSIVE
   ============================================================ */
.hero {
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-features {
    display: inline-block;
    text-align: left;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 0;
  }

  .hero-features li {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 0.95rem;
  }
}

/* Hero Slider Responsive */
.hero-slider {
  max-width: 100%;
}

@media (max-width: 768px) {
  .slider-btn {
    padding: 6px;
    font-size: 14px;
  }

  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/* ============================================================
   4. STATS SECTION RESPONSIVE
   ============================================================ */
.stats-section {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   5. SERVICES SECTION RESPONSIVE
   ============================================================ */
.services-section {
  padding: 40px 0;
}

.section-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-sub {
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-card ul li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 18px 14px;
  }
}

/* ============================================================
   6. WHY CHOOSE US SECTION RESPONSIVE
   ============================================================ */
.why-choose-us {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-feature {
    padding: 16px;
  }

  .why-feature i {
    font-size: 1.5rem;
    padding: 10px;
  }

  .why-feature h4 {
    font-size: 1rem;
  }

  .why-feature p {
    font-size: 0.85rem;
  }

  .btn.primary {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}

/* ============================================================
   8. TESTIMONIALS SECTION RESPONSIVE
   ============================================================ */
.testimonials-section {
  padding: 3rem 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 2rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonial-card-inner {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .quote-icon i {
    font-size: 2rem;
  }

  .stars i {
    font-size: 0.8rem;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .testimonial-controls {
    display: none;
  }
}

/* ============================================================
   9. PLANS SECTION RESPONSIVE
   ============================================================ */
.plans-hero {
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .plans-hero h1 {
    font-size: 2rem;
  }

  .plans-hero .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .plans-hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-card {
    padding: 1.5rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .price {
    font-size: 2rem;
  }

  .plan-header h3 {
    font-size: 1.2rem;
  }

  .plan-features li {
    font-size: 0.85rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .category-subtitle {
    font-size: 0.9rem;
    padding-left: 0;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .req-card {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .plans-hero h1 {
    font-size: 1.6rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .currency {
    font-size: 0.9rem;
  }

  .delivery-note,
  .warning-note {
    font-size: 0.7rem;
  }

  .reminder-note {
    font-size: 0.7rem;
  }
}

/* ============================================================
   10. ABOUT PAGE RESPONSIVE
   ============================================================ */
.about-hero {
  padding: 50px 20px 40px;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .hero-sub {
    font-size: 1rem;
    padding: 0 16px;
  }

  .mission-box {
    padding: 24px 20px;
  }

  .mission-box h2 {
    font-size: 1.4rem;
  }

  .mission-box p {
    font-size: 0.95rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 24px 20px;
  }

  .avatar {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card {
    padding: 18px 16px;
  }

  .about-cta {
    padding: 36px 20px;
  }

  .about-cta h2 {
    font-size: 1.6rem;
  }

  .about-cta p {
    font-size: 0.95rem;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn-white,
  .cta-btn-ghost {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   11. CONTACT PAGE RESPONSIVE
   ============================================================ */
.contact-hero {
  padding: 50px 20px 40px;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .hero-sub {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .hero-contact-chips {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-chip {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-card .form-title {
    font-size: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-card {
    padding: 20px;
  }

  .contact-item-row {
    padding: 10px 12px;
  }

  .contact-item-row .ci-value {
    font-size: 0.85rem;
    white-space: normal;
    word-break: break-word;
  }

  .social-row {
    justify-content: center;
  }

  .response-badge {
    padding: 12px;
  }

  .faq-section {
    margin-top: 40px;
  }

  .faq-q {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .faq-a-inner {
    padding: 0 18px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .form-card {
    padding: 20px 16px;
  }

  .submit-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   12. SERVICES PAGE RESPONSIVE
   ============================================================ */
.services-hero {
  padding: 50px 20px 40px;
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero .hero-sub {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .hero-stat-row {
    gap: 24px;
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }
}

/* ============================================================
   13. FAQ SECTION RESPONSIVE
   ============================================================ */
.faq-section {
  padding: 40px 0;
}

.faq-accordion {
  max-width: 100%;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .faq-accordion {
    padding: 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }

  .faq-item-acc.active .faq-answer {
    padding: 0 20px 16px 20px;
  }
}

/* ============================================================
   15. CTA SECTION RESPONSIVE
   ============================================================ */
.cta-section {
  padding: 40px 20px;
  margin: 40px 0 24px;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 36px 20px;
    margin: 30px 0 20px;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .cta-inner p {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .cta-inner .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cta-inner h2 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   16. FOOTER RESPONSIVE
   ============================================================ */
.site-footer {
  padding: 40px 20px 20px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
    padding: 30px 16px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* ============================================================
   17. BUTTONS & FORMS RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .btn.primary,
  .btn.outline {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
  }
}

/* ============================================================
   18. TABLES & LISTS RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  ul, ol {
    padding-left: 1.2rem;
  }

  li {
    word-break: break-word;
  }
}

/* ============================================================
   19. IMAGES & MEDIA RESPONSIVE
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
}

iframe,
video,
embed {
  max-width: 100%;
}

/* ============================================================
   20. UTILITY CLASSES RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }

  .flex-column-mobile {
    flex-direction: column !important;
  }

  .full-width-mobile {
    width: 100% !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hide-on-tablet {
    display: none !important;
  }

  .text-center-tablet {
    text-align: center !important;
  }
}

@media (min-width: 1025px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* ============================================================
   21. PRINT STYLES (for legal pages)
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .hamburger,
  .testimonial-controls,
  .cta-section,
  .hero-slider,
  .slider-btn,
  .slider-dots {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  .privacy-section,
  .terms-section,
  .refund-section {
    page-break-inside: avoid;
  }
}

/* ============================================================
   22. SAFE AREAS FOR NOTCH DEVICES
   ============================================================ */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .hero,
  .about-hero,
  .contact-hero,
  .plans-hero,
  .services-hero,
  .legal-hero {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .site-footer {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* ============================================================
   23. REDUCED MOTION PREFERENCE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slider .slide,
  .project-card,
  .service-card,
  .plan-card,
  .team-card {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   24. TABLET SPECIFIC IMPROVEMENTS
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-grid {
    gap: 30px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   25. SMALL PHONE SPECIFIC (max-width: 380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .plan-header h3 {
    font-size: 1rem;
  }

  .avatar {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }

  .contact-item-row .ci-value {
    font-size: 0.75rem;
  }

  .footer-logo {
    max-width: 120px;
  }
}

/* ============================================================
   26. LANDSCAPE MODE FOR MOBILE
   ============================================================ */
@media (max-width: 768px) and (orientation: landscape) {
  .site-header {
    position: sticky;
  }

  .hero {
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .main-nav {
    padding: 60px 20px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

