/* --- GLOBAL & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap');
* {
  /* font-family: "Mukta", sans-serif; */
  font-family: Noto Sans, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  /* margin-top: 0; */
}
body {
  overflow-x: hidden;
  /* overflow-y: hidden; */
}
:root {
  --sl-orieng: #f5731f;
  --text-dark: #293484;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
}
a.btn.btn-white:hover {
    background: #293484 !important;
    color: white;
}
a.btn.btn-yellow:hover {
    color: black;
    background-color: white;
}
/* --- CORE HERO SECTION --- */

.hero-section {
/* background: #333 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url("<?php echo get_template_directory_uri(); ?>/assets/images/IMG_20251111_114325.png") no-repeat
      center center/cover; */
  height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero-content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-light);
  z-index: 50;
  width: 100%;
  /* max-width: 800px; */
}

.hero-content h1 {
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
}

.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-white {
  background: white;
  color: #293484;
}

.btn-yellow {
  background: var(--sl-orieng);
  color: white;
}

/* MAIN FOOTER CONTAINER */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e2a58;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 8px;
}

.footer-menu-list li a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.footer-menu-list li a:hover {
  color: #1e2a58;
}

.sl-footer-container {
  background: #f3f4f6;
  color: #1f2937;
  padding: 60px 20px 30px;
  /* margin-top: 100px; */
  border-top: 1px solid #d1d5db;
}

.sl-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* SUBSCRIBE BOX */
.sl-subscribe-area {
  display: flex;
  justify-content: center;
  /* margin-top: -50px; */
  margin-bottom: 40px;
}

.sl-subscribe-box {
  display: flex;
  width: 100%;
  max-width: 600px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

.sl-subscribe-input {
  flex: 1;
  padding: 15px;
  font-size: 16px;
  border: none;
  outline: none;
  color: #1f2937;
}

.sl-orange-btn {
  background: #f97316;
  border: none;
  padding: 16px 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.sl-orange-btn:hover {
  background: #ea580c;
}

/* GRID LAYOUT */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 30px;
}

.sl-col-2 {
  grid-column: span 2;
}

.sl-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  color: #293484;
}

.sl-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.sl-link {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #4b5563;
  text-decoration: none;
}

.sl-link:hover {
  color: #f97316;
}

.sl-readmore {
  color: #f97316;
  text-decoration: none;
  font-weight: bold;
}

.sl-readmore:hover {
  color: #ea580c;
}

/* BOTTOM ROW */
.sl-bottom {
  padding-top: 20px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sl-bottom a {
  margin-left: 10px;
  text-decoration: none;
  color: #4b5563;
}

.sl-bottom a:hover {
  color: #f97316;
}

.main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 90x 40px;
}


.text-content
 {
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0px 125px;
}

h2.section-title {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #253081;
}

.text-content div
{
    padding: 27px;
    margin: auto;
}
p.section-subtitle {
    font-size: 20;
    font-weight: 400;
}