/* ===============================
   CSS Variables
   =============================== */
:root {
  --primary-color: #2a7b9b;
  --secondary-color: #57c785;
  --accent-color: #eddd53;
  --text-color: #1f2937;
  --bg-color: #ffffff;
  --light-bg: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #57c785;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --transition-speed: 0.3s;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

/* ===============================
   Reset & Base Styles
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
}

/* ===============================
   Header & Navigation
   =============================== */
header {
  background: var(--bg-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition-speed);
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-speed);
}

.logo > img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: box-shadow var(--transition-speed);
}

.logo-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1c4c5e;
  text-decoration: none;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-speed);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 80%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-speed);
}

.mobile-menu-btn:hover {
  background-color: var(--light-bg);
}

main {
  min-height: calc(100vh - 200px);
}

.hero {
  background-image: url(../images/hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  color: white;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 123, 155, 0.8) 0%,
    rgba(87, 199, 133, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}




.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   Buttons
   =============================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  background: var(--accent-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-speed);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #49b575 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #49b575 0%, var(--secondary-color) 100%);
}

.btn-light {
  background: white;
  color: var(--primary-color);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  margin-left: 10px;
}

/* ===============================
   Container & Sections
   =============================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* ===============================
   Grid & Cards
   =============================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.card {
  background: var(--bg-color);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===============================
   Contact Information Section
   =============================== */
.contact-section-wrapper {
  overflow-x: auto; /* Prevents horizontal scroll */
  padding-bottom: 10px; /* Adds space for potential scrollbar */
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.contact-card {
  background: var(--bg-color);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}



.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.contact-icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(42, 123, 155, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all var(--transition-speed);
}

.contact-card:hover .contact-icon::after {
  width: 70px;
  height: 70px;
  background: rgba(42, 123, 155, 0.2);
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-details {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ===============================
   Image Placeholders
   =============================== */
.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition-speed);
}

.image-placeholder::before {
  content: "🖼️";
  font-size: 3rem;
  opacity: 0.3;
  transition: transform var(--transition-speed);
}

.image-placeholder:hover::before {
  transform: scale(1.1);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform var(--transition-speed);
}

.image-placeholder:hover img {
  transform: scale(1.05);
}

.team-photo {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.team-photo::before {
  content: "👤";
}

.image-card {
  text-align: center;
}

/* ===============================
   Process Section Enhancements
   =============================== */
.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(42, 123, 155, 0.2);
  transition: all var(--transition-speed);
  position: relative;
}

.process-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  transition: width 0.5s ease;
}

#process .card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

#process .card:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(42, 123, 155, 0.3);
}

#process .card:not(:last-child):hover .process-number::after {
  width: 100px;
}

#process .card h3 {
  margin: 0.5rem 0 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

#process .card p {
  color: var(--text-color);
  line-height: 1.8;
}

#process .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#process .card:hover::before {
  transform: scaleX(1);
}

/* ===============================
   Pricing Section Enhancements
   =============================== */
#pricing .card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all var(--transition-speed);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

#pricing .card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 3rem;
  font-weight: 650;
  color: var(--primary-color);
  margin: 15px 0;
  position: relative;
  display: inline-block;
}

.popular-tag {
  position: absolute;
  top: 12px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--accent-color);
  color: var(--text-color);
  font-weight: bold;
  padding: 8px 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.features-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid #eee;
  position: relative;
  color: #1f2937c7;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.features-list li:last-child {
  border-bottom: none;
}

#pricing .btn {
  width: 100%;
  margin-top: 10px;
  background: var(--primary-color);
  color: white;
  transition: all var(--transition-speed);
}

#pricing .btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Special styling for the middle/popular package */
#pricing .card:nth-child(2) {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--shadow-md);
}

#pricing .card:nth-child(2):hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#pricing .card:nth-child(2) h3 {
  color: var(--secondary-color);
}

/* ===============================
   Forms
   =============================== */

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-speed);
  background-color: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 123, 155, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 7px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.35rem;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

/* ===============================
   FAQ Section Styles
   =============================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all var(--transition-speed);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-question {
  background: #f5f5f5;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: all var(--transition-speed);
}

.faq-answer {
  padding: 15px;
  border-top: 1px solid #eee;
  line-height: 1.7;
}

/* ===============================
   CTA Section
   =============================== */
#cta {
  padding: 60px 0;
}

#cta .btn {
  margin: 0 10px;
}

/* ===============================
   Footer Styles
   =============================== */
footer {
  background: linear-gradient(135deg, var(--text-color) 0%, #111827 100%);
  color: white;
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.footer-section h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-section p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all var(--transition-speed);
  position: relative;
}

.footer-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: width var(--transition-speed);
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-section strong {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-speed);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.footer-links a:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a.active {
  color: var(--accent-color);
  font-weight: 600;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===============================
   Popup
   =============================== */
.popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 420px;
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  animation: slideInRight 0.5s ease-out;
  border-top: 4px solid var(--primary-color);
}

.popup.show {
  display: block;
}

.popup-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===============================
   Success Page
   =============================== */
.success-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.success-content {
  text-align: center;
  max-width: 900px;
  background: var(--bg-color);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.success-content>h1{
    border: solid ;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.success-icon {
    color: #49b575;
    font-size: 40px;
}

.success-content h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.success-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.success-details {
  background: var(--light-bg);
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
  text-align: left;
  border-left: 4px solid var(--secondary-color);
}
.success-details>h2{
    color: #49b575;
    padding-bottom: 7px;
}
.success-details>p{
   margin-bottom: 12px;
   color: #1f2937;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===============================
   Testimonials Section
   =============================== */
#testimonials {
  padding: var(--spacing-lg) 0;
  background: var(--light-bg);
}

#testimonials .card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: #fff;
  transition: all var(--transition-speed);
}

#testimonials .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

#testimonials .team-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(42, 123, 155, 0.2);
  transition: all var(--transition-speed);
}

#testimonials .card:hover .team-photo img {
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

#testimonials h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

#testimonials p {
  margin-bottom: 0.75rem;
}

#testimonials [itemprop="reviewBody"] {
  font-style: italic;
  color: var(--text-color);
  opacity: 0.85;
  line-height: 1.8;
  font-size: 1.05rem;
}

#testimonials .stars {
  color: #f4b400;
  font-size: 1.3rem;
  margin-top: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#testimonials .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ===============================
   Privacy & Legal Pages
   =============================== */
.privacy-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.privacy-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.privacy-toc {
  background: var(--light-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.privacy-toc h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
}

.privacy-toc li {
    list-style: none;
  margin: 0.75rem 0;
  padding-left: 1.8rem;
  position: relative;
}

.privacy-toc li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.privacy-toc a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.privacy-toc a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.privacy-content {
  max-width: 900px;
  margin: 3rem auto;
}

.privacy-section {
  margin-bottom: 3rem;
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.privacy-section ul {
  padding-left: 2rem;
  list-style: disc;
}

.privacy-section li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.contact-box {
  background: var(--light-bg);
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.privacy-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(31, 41, 55, 0.7);
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--border-color);
}
.hero-section1{
   background-image: url(../images/about-backgraund.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  color: white;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section2{
   background-image: url(../images/faqs-backgraund.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  color: white;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 123, 155, 0.8) 0%,
    rgba(87, 199, 133, 0.7) 100%
  );
  z-index: 1;
}
.hero-section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 123, 155, 0.8) 0%,
    rgba(87, 199, 133, 0.7) 100%
  );
  z-index: 1;
}

/* ===============================
   Responsive Design
   =============================== */
/* Add to the Responsive Design section */

@media (max-width: 480px) {
    .privacy-section{
        padding: 1px;
    }
    .hero-section1 h1{
        font-size: 26px;
    }
    .success-container{
        padding: 8px;
    }
    .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px;
}
    .privacy-section>h2{
        font-size: 20px;
    }
    .success-content>h1{
    border: solid ;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
    .privacy-section>p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
  .logo > img {
    width: 40px;
    height: 40px;
  }
  .logo-title {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-color);
    flex-direction: column;
    padding: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links > li {
    padding-bottom: 6px;
  }
  .popup {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .footer-section {
    text-align: center;
  }

  .privacy-hero h1 {
    font-size: 2rem;
  }


  .success-content h1 {
    font-size: 2rem;
  }

 

  #pricing .card:nth-child(2) {
    transform: scale(1);
    margin: 25px 0;
  }

  #pricing .card:nth-child(2):hover {
    transform: translateY(-10px) scale(1);
  }

  #process .process-number::after {
    display: none;
  }

  .contact-info-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
    max-width: 100%;
    overflow-x: visible;
  }
}

@media (max-width: 480px) {
  .grid {
    display: grid;
    gap: 2rem;
  }
  .footer-section h3 {
    font-size: 1.25rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.45rem;
  }
  li{
    font-size: 12px;
  }

  .card > .name,
  .price {
    margin: 0;
  }
  .card{margin: 0;}
  .grid{
    display: flex;
    flex-direction: column;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ===============================
   Utility Classes
   =============================== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

/* ===============================
   Accessibility
   =============================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text-color);
  color: white;
  padding: var(--spacing-sm);
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===============================
   Print Styles
   =============================== */
@media print {
  header,
  footer,
  .btn,
  .mobile-menu-btn,
  .popup {
    display: none;
  }

  body {
    color: black;
    background: white;
  }

  .card {
    break-inside: avoid;
  }
}
