/* Variables */
:root {
  --theme-primary: #03455D;
  --theme-secondary: #91F3FC;
  --text-dark: #1A1A1A;
  --white: #ffffff;
}

/* Global Reset */
body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Section Spacing */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Typography */
h1 {
  font-weight: 700;
  font-size: 46px;
}
h2 {
  font-weight: 400;
  font-size: 48px;
}
h3 {
  font-weight: 700;
  font-size: 32px;
}
h4 {
  font-weight: 700;
  font-size: 40px;
}
p {
  font-weight: 400;
  font-size: 18px;
}
span {
  font-weight: 700;
}

/* Buttons */
.btn-custom-1 {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 20px;
  background-color: var(--theme-primary);
  color:var(--white);
  border: none;
}
.btn-custom-1:hover {
  background-color: var(--white);
  color: var(--theme-primary);
}

.btn-custom-2 {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 20px;
  background-color: var(--white);
  color: var(--theme-primary);
  border: 2px solid var(--theme-primary);
}
.btn-custom-2:hover {
  background-color: var(--white);
}

/* Form Labels */
label {
  font-weight: 500;
  font-size: 20px;
}




/* Hero Section */
.hero-section {
  background: url("/images/4.jpg") no-repeat center center/cover;
  position: relative;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.191); */
  display: flex;
  align-items: center;
}

.hero-heading {
  color: var(--white);
}

.hero-subtext {
  color: var(--white);
}






.why-data-program {
  background-color: var(--white);
  color: var(--text-dark);
}

.section-title {
  color: var(--text-dark);
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.info-card {
  background-color: #91F3FC;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  height: 100%;
}

.card-number {
  margin-bottom: 10px;
  color: #000;
}

.info-card p {
  margin: 0;
  color: var(--text-dark);
}




/* What You'll Get Section */







/* program details */
.program-details {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.bg-map {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.chart-top-end {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.chart-bottom-start {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
}

.program-details h2 {
  position: relative;
  z-index: 2;
}




/* Fee Box */
.fee-box {
  background-color: var(--theme-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  max-width: fit-content;
}



/* Who This Is For Section */
.who-this-for {
  background-color: var(--white);
}

.who-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

.who-list li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}



/* How to Apply Section */
.how-to-apply {
  background: linear-gradient(to bottom, #ffffff, #f0fdff); /* soft gradient */
  padding: 80px 0;
}

.how-to-apply h2 {
  color: var(--text-dark);
}

.how-to-apply p {
  font-size: 18px;
  margin-bottom: 10px;
}



/* Final CTA Section */
.final-cta {
  background-color: var(--theme-primary); /* deep blue */
  color: var(--white);
  padding: 100px 0;
}

.final-cta h2 {
  color: var(--white);
  font-weight: 700;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--white);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
  padding: 100px 0;
}

.contact-section h2 {
  color: var(--text-dark);
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
}




/* Footer Section */
.site-footer {
  background-color: var(--theme-primary);
  color: var(--white);
  padding: 30px 0;
}

.footer-logo {
  font-weight: 700;
  margin: 0;
}

.footer-tagline {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.footer-right .social-link {
  color: var(--theme-secondary);
  font-size: 22px;
  text-decoration: none;
}

.footer-social-text {
  color: var(--theme-secondary);
  font-weight: 500;
}
