/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&family=Pacifico&display=swap');

/* CSS Variables for easy theme management */
:root {
  --primary-dark: #0b1c36;
  --primary-accent: #007BFF;
  --secondary-accent: #00bcd4; /* Cyan accent for highlights */
  --highlight-gold: #f5c518;
  --text-light: #f8f9fa;
  --text-dark: #333;
  --bg-light: #ffffff;
  --bg-offwhite: #f7f9fc;
  --border-color: #e9ecef;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-offwhite);
  color: var(--text-dark);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header & Navbar --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo a {
  text-decoration: none;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo a span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--secondary-accent);
  margin-left: 8px;
  padding-top: 5px;
}

.navbar nav a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar nav a.active {
  color: var(--secondary-accent);
  border-bottom-color: var(--secondary-accent);
}

.navbar nav a:not(.active):hover {
  color: var(--text-light);
  border-bottom-color: var(--secondary-accent);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #234c8a 100%);
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px 120px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.btn-primary {
  padding: 14px 35px;
  background-color: var(--primary-accent);
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  cursor: pointer;
}

/* --- General Section Styling --- */
.content-section, .page-section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -30px auto 50px;
  font-size: 1.1rem;
  color: #555;
}

/* --- Card Styles --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary-accent);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.card .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-accent);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.card p {
    color: #555;
}


/* --- Specific Section: Founder --- */
.founder-section {
  background-color: var(--bg-light);
  padding: 80px 20px;
}
.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.founder-image {
  flex: 1 1 300px;
  text-align: center;
}
.founder-image img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 8px solid var(--bg-light);
}
.founder-details {
  flex: 2 1 500px;
}
.founder-details h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.founder-details .founder-name {
    font-family: 'Pacifico', cursive;
    color: var(--primary-accent);
}
.founder-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.founder-quote {
    margin-top: 20px;
    font-style: italic;
    color: #444;
    border-left: 4px solid var(--primary-accent);
    padding-left: 20px;
}


/* --- Specific Section: Pricing --- */
.pricing-section {
  background-color: var(--bg-offwhite);
}
.pricing-block {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}
.pricing-block h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}
.pricing-block h3 small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
    margin-left: 10px;
}
.pricing-block ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}
.pricing-summary {
    background: linear-gradient(135deg, #e9f7ef, #d4f4e2);
    border: 1px solid #a3e9c2;
}
.features-included {
    text-align: center;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.feature-tag {
    background: var(--bg-light);
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    font-weight: 500;
    transition: all 0.3s ease;
}
.feature-tag:hover {
    transform: translateY(-2px);
    background-color: var(--primary-accent);
    color: var(--text-light);
}
.pricing-cta {
    text-align: center;
    margin-top: 60px;
}
.pricing-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* --- Specific Section: Testimonials --- */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    max-width: 380px;
}
.testimonial-card img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid var(--border-color);
}
.testimonial-card h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 5px;
}
.testimonial-card p {
    font-size: 1rem;
    color: #555;
    margin: 15px 0;
    font-style: italic;
}
.star-rating {
    color: var(--highlight-gold);
}
.trust-banner {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.trust-banner h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}
.trust-banner p {
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
}


/* --- Specific Section: Policy Pages (Privacy & Terms) --- */
.policy-page {
  max-width: 960px;
  margin: 80px auto;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.policy-page h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  border-left: 6px solid var(--highlight-gold);
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
}
.policy-page h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid var(--highlight-gold);
  padding-left: 15px;
  font-family: 'Poppins', sans-serif;
}
.policy-page p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.policy-page strong {
  color: var(--primary-dark);
}
.policy-page a {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
}
.policy-page a:hover {
  text-decoration: underline;
}

/* --- Specific Section: Contact Page --- */
.contact-section {
    background-color: var(--bg-offwhite);
    padding: 80px 20px;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.contact-form-wrapper {
    flex: 2 1 500px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.contact-form-wrapper p {
    margin-bottom: 30px;
}
.contact-form-wrapper input, .contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}
#formResponse {
    margin-bottom: 15px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    display: none; /* Initially hidden */
}

.contact-info-box {
    flex: 1 1 320px;
    background: var(--primary-dark);
    color: white;
    padding: 40px;
    border-radius: 12px;
}
.contact-info-box h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
}
.contact-info-box p {
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.contact-info-box i {
    margin-right: 15px;
    color: var(--secondary-accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}
.map-box {
    margin-top: 60px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-box iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* --- Footer --- */
.footer-wrapper {
  background-color: #0b1c36;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.footer-container h4 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
}

.footer-container p,
.footer-container li,
.footer-container a {
  font-size: 0.9rem;
  color: #ccc;
  text-decoration: none;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.2;
}

.footer-container a:hover {
  color: var(--highlight-gold);
  text-decoration: underline;
}

.footer-container .footer-about p {
    line-height: 1.7;
}

.footer-container .footer-contact i {
    color: var(--highlight-gold);
    margin-right: 10px;
}
.footer-container .footer-contact p {
    margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
    transform: scale(1.2);
}

.footer-social .fa-whatsapp:hover { color: #25D366; }
.footer-social .fa-instagram:hover { color: #E1306C; }
.footer-social .fa-linkedin-in:hover { color: #0077B5; }

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2a3a54;
  font-size: 0.9rem;
  color: #ccc;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
  }
  
  .navbar .logo {
    margin-bottom: 20px;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .navbar nav a {
    margin: 0 10px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}
/* styles.css - Final Master Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&family=Pacifico&display=swap');

/* --- CSS Variables --- */
:root {
  --primary-dark: #0b1c36;
  --primary-accent: #007BFF;
  --secondary-accent: #00bcd4;
  --highlight-gold: #f5c518;
  --text-light: #f8f9fa;
  --text-dark: #333;
  --bg-light: #ffffff;
  --bg-offwhite: #f7f9fc;
  --border-color: #e9ecef;
}

/* --- Global Styles --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.page-section { padding: 80px 20px; }
.section-dark { background-color: var(--primary-dark); color: #fff; }
.section-light { background-color: var(--bg-light); }
.section-offwhite { background-color: var(--bg-offwhite); }

/* --- Typography --- */
.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.section-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
}
.section-dark .section-title, .section-dark .section-subtitle { color: #fff; }
.section-dark .section-subtitle { opacity: 0.8; }

/* --- Header & Navbar --- */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px; background-color: var(--primary-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.logo a {
  text-decoration: none; color: var(--text-light);
  font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 700;
  display: flex; align-items: center;
}
.logo a span {
  font-size: 1.1rem; font-weight: 400; color: var(--secondary-accent);
  margin-left: 8px; padding-top: 5px;
}
.navbar nav a {
  color: var(--text-light); text-decoration: none; margin-left: 30px;
  font-weight: 500; font-family: 'Poppins', sans-serif;
  padding-bottom: 5px; border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.navbar nav a.active { color: var(--secondary-accent); border-bottom-color: var(--secondary-accent); }
.navbar nav a:not(.active):hover { border-bottom-color: var(--secondary-accent); }

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #234c8a 100%);
  color: var(--text-light); text-align: center; padding: 100px 20px 120px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-size: 3.2rem;
  margin-bottom: 15px; font-weight: 700;
}
.hero p {
  font-size: 1.25rem; margin-bottom: 30px;
  max-width: 750px; margin-left: auto; margin-right: auto; opacity: 0.9;
}

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 12px 35px; border-radius: 50px;
  text-decoration: none; font-weight: bold; font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer;
}
.btn-primary {
  background-color: var(--primary-accent); color: #fff;
  border-color: var(--primary-accent);
}
.btn-primary:hover {
  background-color: #0056b3; border-color: #0056b3;
  transform: translateY(-3px);
}

/* --- General Card Styles --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.info-card {
  background: var(--bg-light); padding: 30px; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.info-card .card-icon {
  font-size: 3rem; margin-bottom: 20px;
  color: var(--primary-accent);
}
.info-card h3 {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem;
  margin-bottom: 15px; color: var(--primary-dark);
}
.info-card p { color: #555; }

/* --- Founder Section (index.html) --- */
.founder-section {
  display: flex; flex-wrap: wrap; align-items: center; gap: 50px;
}
.founder-image { flex: 1 1 300px; text-align: center; }
.founder-image img {
  border-radius: 50%; width: 300px; height: 300px; object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 8px solid var(--bg-light);
}
.founder-details { flex: 2 1 500px; }
.founder-details h2 { font-size: 2.2rem; margin-bottom: 15px; }
.founder-details .founder-name { font-family: 'Pacifico', cursive; color: var(--primary-accent); }
.founder-details p { font-size: 1.1rem; line-height: 1.8; }
.founder-quote {
  margin-top: 20px; font-style: italic; color: #444;
  border-left: 4px solid var(--primary-accent); padding-left: 20px;
}

/* --- Stats Banner (about.html) --- */
.stats-banner {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; margin-top: 40px; text-align: center;
}
.stat-item strong {
    display: block; font-size: 2.8rem; font-family: 'Poppins', sans-serif;
    color: var(--secondary-accent); margin-bottom: 5px;
}
.stat-item span { opacity: 0.9; }

/* --- Testimonial Cards (testimonials.html) --- */
.testimonial-card {
    background-color: var(--bg-light); border-radius: 12px;
    padding: 40px; text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.testimonial-card .quote-icon {
    font-size: 2.5rem; color: var(--secondary-accent); opacity: 0.5;
    margin-bottom: 20px;
}
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 25px; }
.client-info { display: flex; align-items: center; justify-content: center; gap: 15px; }
.client-info img { width: 60px; height: 60px; border-radius: 50%; }
.client-details h4 { margin: 0; font-family: 'Poppins', sans-serif; }
.star-rating { color: var(--highlight-gold); }

/* --- Contact Page --- */
.contact-container {
    display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start;
}
.contact-form-wrapper {
    flex: 2 1 500px; background: var(--bg-light); padding: 40px;
    border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-form-wrapper h2, .contact-info-box h3 {
    font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: 15px;
}
.contact-form-wrapper input, .contact-form-wrapper textarea {
    width: 100%; padding: 15px; margin-bottom: 20px; border-radius: 8px;
    border: 1px solid var(--border-color); font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
    outline: none; border-color: var(--primary-accent);
}
.contact-info-box {
    flex: 1 1 320px; background: var(--primary-dark); color: white;
    padding: 40px; border-radius: 12px;
}
.contact-info-box p { margin-bottom: 20px; display: flex; align-items: center; }
.contact-info-box i {
    margin-right: 15px; color: var(--secondary-accent); font-size: 1.2rem;
    width: 20px; text-align: center;
}
.map-box {
    margin-top: 60px; width: 100%; border-radius: 12px;
    overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-box iframe { width: 100%; height: 400px; border: none; }

/* --- Policy Pages --- */
.policy-page {
  max-width: 960px; margin: 0 auto; padding: 40px;
  background: var(--bg-light); border-radius: 12px;
}
.policy-page h1 {
  font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 30px;
  border-left: 6px solid var(--highlight-gold); padding-left: 20px;
  font-family: 'Poppins', sans-serif;
}
.policy-page h2 {
  font-size: 1.8rem; color: var(--primary-dark); margin-top: 40px;
  margin-bottom: 20px; border-left: 4px solid var(--highlight-gold);
  padding-left: 15px; font-family: 'Poppins', sans-serif;
}
.policy-page p { color: #444; margin-bottom: 20px; }
.policy-page strong { color: var(--primary-dark); }
.policy-page a { color: var(--primary-accent); font-weight: 600; text-decoration: none; }
.policy-page a:hover { text-decoration: underline; }

/* --- Footer --- */
.footer-wrapper {
  background-color: var(--primary-dark); color: #fff;
  padding: 60px 20px 30px;
}
.footer-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; align-items: start;
}
.footer-container h4 {
  margin-bottom: 15px; font-weight: 600; font-size: 1rem;
  font-family: 'Poppins', sans-serif; color: var(--text-light);
}
.footer-container p, .footer-container li, .footer-container a {
  font-size: 0.9rem; color: #ccc; text-decoration: none;
}
.footer-container ul { list-style: none; padding: 0; line-height: 2.2; }
.footer-container a:hover { color: var(--highlight-gold); text-decoration: underline; }
.footer-social { display: flex; gap: 20px; align-items: center; margin-top: 15px; }
.footer-social a { font-size: 24px; transition: transform 0.3s ease; }
.footer-social a:hover { transform: scale(1.2); }
.footer-bottom {
  text-align: center; margin-top: 50px; padding-top: 20px;
  border-top: 1px solid #2a3a54; font-size: 0.9rem; color: #ccc;
}