/* assets/css/style.css */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}

/* Variables */
:root {
  --primary: #4E8EF7;
  --dark: #1A1A1A;
  --light: #F5F7FA;
  --accent: #FF6B6B;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}
nav ul {
  display: flex;
  gap: 25px;
}
nav ul li a {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
}

/* Spacer for fixed header */
.spacer {
  height: 70px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(255,255,255,0.4), rgba(0,0,0,0.4)),
    url('../images/hero.png') center/100% no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero .hero-content {
  max-width: 700px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}
.hero .cta-btn:hover {
  background: #e55a5a;
}

/* Section Wrappers */
section {
  /* padding: 10px 20px; */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--dark);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}
.service-card p {
  font-size: 1rem;
  color: #555;
}

/* About */
.about {
  background: var(--light);
  text-align: center;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}
.step-card p {
  font-size: 1rem;
  color: #555;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form button {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #3a75d1;
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
footer ul li a {
  font-size: 0.9rem;
  color: #fff;
  transition: color 0.3s;
}
footer ul li a:hover {
  color: var(--accent);
}
footer p {
  font-size: 0.9rem;
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}






/* Terms & Conditions Styles */
.terms-conditions {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 2rem 0;
}

.terms-conditions h1,
.terms-conditions h2 {
  color: #222;
  margin-bottom: 1rem;
}

.terms-conditions h1 {
  font-size: 2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.terms-conditions h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* Container to center content and limit width */
.container.terms-conditions {
  max-width: 800px;
  padding: 0 1rem;
  margin: auto;
}

/* Table of Contents */
.toc {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.toc h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: #007bff;
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/* Section paragraphs and lists */
.terms-conditions p,
.terms-conditions ul,
.terms-conditions ol,
.terms-conditions dl {
  margin-bottom: 1rem;
}

.terms-conditions ul,
.terms-conditions ol {
  padding-left: 1.5rem;
}

.terms-conditions dl {
  padding-left: 1rem;
}

.terms-conditions dt {
  font-weight: 600;
  margin-top: 0.5rem;
}

.terms-conditions dd {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

/* Address styling */
.terms-conditions address {
  font-style: normal;
  line-height: 1.4;
  margin-top: 1rem;
  border-left: 3px solid #eee;
  padding-left: 1rem;
  color: #555;
}

/* Last updated text */
.terms-conditions em {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .toc {
    font-size: 0.9rem;
  }

  .terms-conditions h1 {
    font-size: 1.75rem;
  }

  .terms-conditions h2 {
    font-size: 1.25rem;
  }
}


/* Make TOC links inline & scrollable */
.toc {
  overflow-x: auto;
}
.toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc a {
  white-space: nowrap;
  color: #007bff;
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

