@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* General */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* Header */
.site-header {
  background-color: #1f1f1f;
  padding: 1rem 0;
  color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  margin: 0;
  color: white;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #00aaff;
}

/* Main container */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Courses */
.course-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.training-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.training-box {
  flex: 1 1 350px;
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.training-box h3 {
  color: #0078d7;
}

.training-box ul {
  padding-left: 20px;
}

.course {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  width: 300px;
  background-color: #f9f9f9;
}
.center-image {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.small-hero-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.course h3 {
  margin-top: 0;
}

/* WhatsApp button */
.center-btn {
  text-align: center;
  margin-top: 2rem;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: bold;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.info-section {
  margin-top: 2rem;
  background-color: #f4f8ff;
  padding: 1.5rem;
  border-radius: 8px;
}

.info-section h2 {
  margin-top: 0;
  color: #0078d7;
}

.learning-list {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.stats {
  text-align: center;
  font-size: 1.1rem;
}

/* Contact page */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-image img {
  width: 300px;
  border-radius: 8px;
  object-fit: cover;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background-color: #0078d7;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.contact-info a {
  color: #0078d7;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Hero Image */
.hero-img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  margin-top: 2rem;
  display: block;
}

footer {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-nav {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container,
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-image img {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .footer-nav a {
    display: block;
    margin: 10px 0;
  }
}
/* Make the body take full height and use flexbox */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* This wrapper lets us push the footer to the bottom */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make content grow so footer stays at the bottom */
main.container {
  flex: 1;
}

/* Footer styles (already given) */
footer {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  background-color: #f1f1f1;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 5px solid #0078d7;
}

.testimonial h4 {
  margin-top: 0.5rem;
  color: #333;
  font-weight: normal;
}

.resource-section {
  margin-bottom: 3rem;
}

.resource-section h2 {
  font-size: 1.6rem;
  color: #0078d7;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.resource-links {
  list-style: none;
  padding-left: 0;
}

.resource-links li {
  margin: 1rem 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.resource-links a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.resource-links a:hover {
  text-decoration: underline;
  color: #0b59b4;
}

.resources-section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.resource-category {
  margin-bottom: 2rem;
}

.resource-category h3 {
  margin-bottom: 0.5rem;
  color: #0078d7;
  font-size: 1.25rem;
}

.resource-category ul {
  list-style: none;
  padding-left: 0;
}

.resource-category li {
  margin: 0.4rem 0;
}

.resource-category a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.resource-category a:hover {
  color: #0078d7;
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Content grows and pushes footer down */
.content {
  flex: 1;
}

/* Footer styling */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Layout fix */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

/* Contact page styles */
.contact-section {
  padding: 2rem 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.contact-image img {
  max-width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.contact-form-container {
  max-width: 500px;
  flex: 1;
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-container label {
  font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form-container button {
  background-color: #0078d7;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form-container button:hover {
  background-color: #005fa3;
}

.contact-details {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.verify-human {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0;
  font-size: 0.95rem;
}

/* ===== Modern refresh overrides ===== */
:root {
  --bg: #f4f7ff;
  --surface: #ffffff;
  --surface-muted: #f8faff;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: #dbe4f3;
  --shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top right, #e5efff, var(--bg) 35%);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--primary-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
}

.header-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  margin: 0;
  color: #f8fafc;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.site-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.55);
}

.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 0.8rem;
}

p,
li,
label {
  color: var(--text-muted);
}

.info-section,
.course,
.training-box,
.testimonial,
.resource-category,
.blog-post,
.question,
.contact-form-container,
.contact-image,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-section,
.training-box,
.course,
.resource-category,
.blog-post,
.question,
.card {
  padding: 1.4rem;
}

.course-columns,
.training-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.course {
  width: 100%;
}

.center-image {
  margin-top: 1rem;
}

.small-hero-img,
.hero-img,
.contact-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.small-hero-img {
  max-width: 340px;
  height: auto;
}

.center-btn {
  margin-top: 1.2rem;
}

.whatsapp-btn,
.btn,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.28);
}

.whatsapp-btn:hover,
.btn:hover,
button:hover,
input[type='submit']:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-1px);
}

.learning-list,
.resource-category ul,
.course ul {
  padding-left: 1.2rem;
}

.learning-list li,
.resource-category li,
.course li {
  margin-bottom: 0.45rem;
}

.testimonials {
  gap: 1rem;
}

.testimonial {
  padding: 1.2rem;
  border-left: 4px solid var(--primary);
}

.testimonial p,
.blog-post p {
  margin: 0.35rem 0;
}

.question {
  margin-bottom: 1rem;
}

.question p {
  margin-bottom: 0.8rem;
  color: var(--text);
}

.question label {
  display: block;
  padding: 0.35rem 0;
}

.contact-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(260px, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-image,
.contact-form-container {
  padding: 1.2rem;
}

.contact-form-container form {
  display: grid;
  gap: 0.8rem;
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.72rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

footer {
  margin-top: 2rem;
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  padding: 1.4rem 1rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.15rem;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content,
main.container {
  flex: 1;
}

@media (max-width: 860px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    margin: 1.4rem auto;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr);
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #1e293b 45%, #1d4ed8 100%);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28);
  margin-bottom: 1.2rem;
}

.hero-content h2,
.hero-content p,
.hero-content li,
.hero-content .eyebrow,
.hero-content span {
  color: #e2e8f0;
}

.hero-content h2 {
  color: #ffffff;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel .small-hero-img {
  max-width: 100%;
  border-color: rgba(255, 255, 255, 0.22);
}

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.stat-chips span {
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.page-intro {
  margin-bottom: 1.1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.specialized-container {
  margin-top: 1rem;
}

.upcoming-batch {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.8rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #eff6ff, #ffffff);
  box-shadow: var(--shadow);
}

.upcoming-batch h2 {
  margin-bottom: 0.7rem;
}

.batch-date {
  margin: 0 0 1rem;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.15rem;
}

.batch-date span {
  font-size: 1.4rem;
}

@media (max-width: 860px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }
}

/* ===== Theme Sync: www.cloudsolid.in ===== */
:root {
  --cs-primary: #0076be;
  --cs-primary-dark: #005a91;
  --cs-accent: #ff7f00;
  --cs-text: #444444;
  --cs-heading: #333333;
  --cs-muted-bg: #f3f7fd;
  --cs-border: #e5eaef;
  --cs-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--cs-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cs-heading);
  font-weight: 600;
}

p,
li,
label {
  color: var(--cs-text);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--cs-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 0.2rem 0;
}

.logo {
  color: var(--cs-heading);
  font-size: 1.65rem;
  font-weight: 700;
}

.site-nav {
  gap: 0.3rem;
}

.site-nav a {
  color: var(--cs-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.84rem;
  font-weight: 500;
  border-radius: 2px;
  padding: 0.9rem 0.6rem;
  position: relative;
  background: transparent;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 0;
  height: 3px;
  background: var(--cs-accent);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--cs-primary);
  background: transparent;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.container {
  max-width: 1180px;
}

.hero-panel {
  background: linear-gradient(120deg, #eef6fb 0%, #e0f1fb 65%, #d2ecfb 100%);
  border: 1px solid #cbe5f5;
  box-shadow: var(--cs-shadow);
}

.hero-content h2 {
  color: #1f3642;
  font-weight: 700;
}

.hero-content p,
.hero-content .eyebrow,
.hero-content span {
  color: #2f4d5a;
}

.eyebrow {
  color: var(--cs-primary);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-chips span {
  background: #ffffff;
  border: 1px solid #c7e3f4;
  color: #2e5668;
}

.info-section,
.course,
.training-box,
.testimonial,
.resource-category,
.blog-post,
.question,
.contact-form-container,
.contact-image,
.card,
.page-intro,
.upcoming-batch {
  background: #ffffff;
  border: 1px solid var(--cs-border);
  box-shadow: var(--cs-shadow);
}

.info-section h2,
.course h3,
.training-box h3,
.resource-category h3,
.page-intro h2,
.upcoming-batch h2 {
  color: var(--cs-primary);
}

.whatsapp-btn,
.btn,
button,
input[type='submit'] {
  background: var(--cs-primary);
  border: 1px solid var(--cs-primary);
  color: #fff;
  box-shadow: none;
  border-radius: 6px;
  font-weight: 600;
}

.whatsapp-btn:hover,
.btn:hover,
button:hover,
input[type='submit']:hover {
  background: var(--cs-accent);
  border-color: var(--cs-accent);
  color: #fff;
  transform: none;
}

.secondary-btn {
  background: #ffffff;
  color: var(--cs-primary);
  border: 1px solid var(--cs-primary);
}

.secondary-btn:hover {
  background: var(--cs-primary);
  color: #ffffff;
  border-color: var(--cs-primary);
}

.batch-date {
  color: var(--cs-primary);
}

input,
textarea,
select {
  background: #ffffff;
  border: 1px solid #d7dee6;
  border-radius: 5px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cs-primary);
  box-shadow: 0 0 0 3px rgba(0, 118, 190, 0.14);
}

footer {
  background: #1f1f1f;
  color: #ffffff;
}

.footer-nav a {
  color: #ffffff;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--cs-accent);
}

@media (max-width: 860px) {
  .site-nav a {
    padding: 0.65rem 0.35rem;
    font-size: 0.78rem;
  }
}
