/* ===============================
   GLOBAL SPACING RESET
================================ */

/* Kill browser defaults */
html, body {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
}
/* Remove vertical margins from all sections */
section {
  margin: 0;
  padding: 0;
}

/* Headings & text have NO outer spacing by default */
h1, h2, h3, h4, h5, h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Images don't create phantom gaps */
img {
  display: block;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  width: 80%;
  margin: 0 auto;
  padding: 3rem 0; /* internal only */
}


.hero-text {
  flex: 1 1 300px;
  margin-left: 2.5rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.1;
}

.hero-text h1 span {
  color: #0B386B;
}

.hero-text p {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #929292;
}

.hero-text a {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  margin-right: 1rem;
  display: inline-block;
}

.hero-text a:first-child {
  background-color: #0B386B;
  color: #fff;
}

.hero-text a:last-child {
  background-color: transparent;
  color: #0B386B;
  border: 1px solid #0B386B;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* ===============================
   HERO FADE SLIDER
================================ */

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

/* Fade instead of slide */
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;

  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* ===============================
   DOT NAVIGATION
================================ */

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cfd6df;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
  background-color: #0B386B;
  transform: scale(1.2);
}

/* ===============================
   SECTIONS
================================ */

section p {
  font-size: 1.05rem;
  color: #929292;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.mission-section {
  width: 100vw;
  margin: 20px auto;
  padding: 3rem 1.5rem;
  text-align: center;
}


.mission-section h2 {
   text-align: center;
   font-size: 13px;
    font-family: 'Inter', sans-serif;
    color:#0B386B;
    margin-bottom:-13px
}

.mission-section p {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #929292;
  line-height: 1.2;
  position: relative;
}
/* ===============================
   SERVICES
================================ */

.services-section {
  padding: 3rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 70%;
  margin: 0 auto;
}
.services-section h3{
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #0B386B;
  text-align: center;
}
.service-card {
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
}

.service-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #0B386B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  font-size: 1.2rem;
  color: #0B386B;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #303030;
}

.service-card p {
  font-size: 1rem;
  color: #929292;
}

/* ===============================
   EXPERTISE
================================ */
.expertise-section h2,
.expertise-section h3 {
  text-align: center;
}

.expertise-section h3 {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #0B386B;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 50%;
  margin: 0 auto;
}

.expertise-card {
  border: 1px solid #d4d4d4;
  padding: 0.6rem;
  text-align: center;
  border-radius: 25px;
  font-size: 14px;
}

/* ===============================
   CTA FULL WIDTH
================================ */
.cta-hero-full {
  width: 100%;
  background-color: #0B386B;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-hero-full h2 {
  font-size: 2rem;
}

.cta-hero-full p {
  font-size: 1.1rem;
  color: #dadada;
}

.cta-hero-full a {
  text-decoration: none;
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
}

/* ===============================
   PAGE WRAPPER
================================ */
.page {
  max-width: 1200px;
  margin: 0 auto;
}

.page h1 {
  text-align: center;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #0B386B;

}

.page h2 {
  text-align: center;
}

.page-intro {
  text-align: center;
  color: #555;
  
}
/* ===============================
   PAGE WRAPPER
================================ */
.page {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
}

.page-header h1 {
  font-size: 13px;
  padding:10px 0;
}

.page-header h2 {
    text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-intro {
  max-width: 700px;
  color: #666;
  margin: 0 auto;
  line-height: 1.6;
  padding:10px 0;
}

/* ===============================
   CATEGORIES GRID
================================ */
.categories-grid {
  display: grid;
  gap: 3rem;
  width:80%;
  margin:0 auto;
  padding:20px 
}

/* ===============================
   RESOURCES SECTION
================================ */
.resources-section {
  border-radius: 12px;
  border: 1px solid #eee;
  padding:20px 
}

.resources-section h2 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  color: #0B386B;
  text-align: center;
}

/* ===============================
   PDF RESOURCE CARD
================================ */
.pdf-resource-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.5rem;

  border-radius: 12px;
  background-color: #fff;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pdf-left {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #f2f7fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-left i {
  font-size: 1.5rem;
  color: #d63636;
}

.pdf-right h3 {
  font-size: .9rem;
  font-weight: 600;
  color: #222;
}

.pdf-right p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.pdf-action {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  border: 1px solid #0B386B;
  color: #0B386B;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size:10px
}

.pdf-action:hover {
  background-color: #0B386B;
  color: #fff;
}

/* ===============================
   LOAD MORE BUTTON
================================ */
.load-more-btn {
  display: block;
  text-align: center;
  margin: 2rem auto 0 auto;
  padding: 0.5rem .9rem;
  border-radius: 6px;
  background-color: #0B386B;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
  width: 30%;
  margin:0 auto;
  font-size:13px
}

.load-more-btn:hover {
  background-color: #005fa3;
}

/* ===============================
   RESPONSIVE GRID
================================ */
.resource-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 900px) {
  .resource-grid {
    grid-template-columns: repeat(3, 1fr);
  }


}


/* ===============================
   MOBILE FIXES
================================ */

@media (max-width: 768px) {
  .pdf-resource-card {
    flex-direction: column;
  }

  .pdf-left {
    width: 42px;
    height: 42px;
  }

  .pdf-right h3 {
    font-size: 1rem;
  }
}




.view-pdf-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.2rem;
  background-color: #0B386B;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* ===============================
   TIKTOK
================================ */
.resources-tiktok {
  text-align: center;
  
}
.resources-tiktok h2{
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
  width:90%;
  margin:0 auto;
}
.section-intro{
  padding:20px 0
}
/* ===============================
   ABOUT
================================ */
.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.about-hero h1 {
  font-size: 13px;
  color: #0B386B;
}

.about-hero h2 {
  font-size: 2.2rem;
}

.about-hero p {
  font-size: 1rem;
  color: #929292;
}

/* ===============================
   CONTACT
================================ */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
}

.contact-form {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
}

/* ===============================
   ADMIN
================================ */
.admin-page {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background: #fafafa;
}

.admin-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border: 1px solid #e9e6e6;
  border-radius: 12px;
  padding: 2rem;
}

.admin-card input,
.admin-card select,
.admin-card button {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.6rem;
}



/* ---------------------------------- */
/* Navbar Styles */
/* ---------------------------------- */
.navbar-wrapper {
  width: 100%;
  border-bottom: 1px solid #e9e6e6;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 80%;
  margin: 0 auto;
}

.navbar-logo img{
width: 120px;
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
}

.navbar-menu a {
  text-decoration: none;
  color: #8C8482;
  font-weight: 500;
  font-family: sans-serif;
  font-size: 14px;
  transition: color 0.2s;
  margin: 0 15px; /* spacing left & right */
}


.navbar-menu a:hover {
  color: #0B386B;
}

.navbar-cta a {
  padding: 0.5rem 1.3rem;
  background-color: #0B386B;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: background-color 0.2s;
}

.navbar-cta a:hover {
  background-color: #005fa3;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}


.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #0B386B;
  transition: all 0.3s;
}


/* Hide mobile CTA by default (desktop) */
.navbar-cta-mobile {
  display: none;
}




/* ---------------------------------- */
/* Footer Styles */
/* ---------------------------------- */
.footer {
  padding: 2rem;
  width: 80%;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin: 1.3rem 0;
  font-weight: 530;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #929292;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #0B386B;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.fa-brands{
  color:#0B386B
}
.fa-brands:hover{
   color:#02426f
}
.tiktok-ctwa{
  background-color: #0B386B;
  color:#fff;
  border-radius: 8px;
  width: 200px;
  margin:0 auto;
  padding:10px;
 
}
.tiktok-cta-container{
  margin-top:20px;
  margin-bottom:40px;
}
.tiktok-ctwa a{
color:#fff;
text-decoration: none;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0B386B;
  text-align: center;
  text-decoration: none;
}

.footer-socials a:hover {
  background-color: #fff;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}



/* ---------------------------------- */
/* Resource Cards */
.resource-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20px;
}

.resource-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.resource-card a {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  background-color: transparent;
  color: #222;
  border: 1px solid #222;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  width: 50%;
  transition: all 0.2s ease;
}

.resource-card a:hover {
  background-color: #0B386B;
  color: #fff;
}

/* ---------------------------------- */
/* TikTok Grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.tiktok-card {
  opacity: 1;
  transform: none;
}

/* ---------------------------------- */
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #0B386B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1000;
}

.back-to-top:hover {
  background-color: #005fa3;
}

/* Contact form container */
.contact-form {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

/* Rows with two inputs */
.form-row {
  display: flex;
  gap: 1.2rem;
}



/* Input groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  width: 100%;
}

/* Labels */
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #444;
}

/* Inputs & textarea */
.form-group input,
.form-group textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0B386B;
  box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.15);
}

/* Submit button */
.send-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #0B386B;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.send-btn:hover {
  background-color: #005fa3;
}

.send-btn:active {
  transform: translateY(1px);
}

/* Status message */
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
}


.contact-header h1 {
  text-align: center;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #0B386B;
}

.contact-header h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-header p{
  text-align: center;
  color: #555;
  margin-bottom: 3rem;
}
/* Contact info panel */
.contact-info {
  max-width: 500px;
  padding: 2rem;
}

/* Heading */
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #111;
}

/* Intro text */
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.8rem;
}

/* Info rows */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

/* Icons */
.info-icon {
  font-size: 1.1rem;
  background-color: #0B386B;
  margin-top: 0.2rem;
  color:#fff;
  padding:9px;
  border-radius: 4px;
}

/* Labels */
.info-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  margin-bottom: 0.2rem;
}

/* Values */
.info-item p {
  font-size: 0.95rem;
  color: #222;
  margin: 0;
}


 


/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
  body {
    font-size: 15px;
  }

  /* ---------- NAVBAR ---------- */
  .navbar {
    max-width: 100%;
    padding: 1rem;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-top: 1px solid #eee;
    display: none;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu a {
    padding: 0.8rem 0;
    font-size: 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-cta-mobile {
    display: block;
    margin-top: 1rem;
  }

  .navbar-cta-mobile a {
    display: block;
    text-align: center;
    padding: 0.7rem;
    background: #0B386B;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
  }

  /* ---------- HERO ---------- */
  .hero-section {
    width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .hero-text {
    margin-left: 0;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text a {
    margin-bottom: 0.8rem;
  }

  /* ---------- SERVICES ---------- */
  .services-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* ---------- EXPERTISE ---------- */
  .expertise-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* ---------- PAGE ---------- */
  .page {
    padding: 1.5rem 1rem;
  }

  /* ---------- RESOURCES ---------- */
  .categories-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- CONTACT ---------- */
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-info {
    padding: 1.5rem 0;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    width: 100%;
    padding: 2rem 1rem;
  }

  .footer-columns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-column {
    width: 100%;
  }

  /* ---------- BACK TO TOP ---------- */
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}


/* =====================================
   BASE / RESET
===================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================
   HERO SECTION
===================================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 80%;
  margin: 0 auto 4rem;
  padding: 3rem 0;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0;
}

.hero-text h1 span {
  color: #0B386B;
}

.hero-text p {
  font-size: 1.2rem;
  color: #929292;
  margin: 1rem 0 2rem;
}

.hero-actions a {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 0.8rem;
}

.hero-actions a:first-child {
  background: #0B386B;
  color: #fff;
}

.hero-actions a:last-child {
  border: 1px solid #0B386B;
  color: #0B386B;
  background: transparent;
}

.hero-image {
  flex: 1;
  text-align: center;
}

/* =====================================
   MISSION
===================================== */
.mission-section {
width: 100vw;
  text-align: center;
  background-color: rgba(222, 222, 222, 0.2);
}

.mission-section h2 {
  font-size: 13px;
  color: #0B386B;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.mission-section p {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.25;
  color: #929292;
  width: 800px;
  margin:0 auto
}

/* =====================================
   SERVICES
===================================== */
.services-section {
  margin: 5rem 0;
}

.services-section h3 {
  text-align: center;
  font-size: 13px;
  color: #0B386B;
}

.services-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 70%;
  margin: 0 auto;
}

.service-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: #fff;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.service-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #0B386B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  color: #0B386B;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0;
}

.service-card p {
  color: #929292;
}

/* =====================================
   EXPERTISE
===================================== */
.expertise-section {
  margin-bottom: 5rem;
}

.expertise-section h3 {
  text-align: center;
  font-size: 13px;
  color: #0B386B;
}

.expertise-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 55%;
  margin: 0 auto;
}

.expertise-card {
  border: 1px solid #d4d4d4;
  border-radius: 25px;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 14px;
}

/* =====================================
   CTA
===================================== */
.cta-hero-full {
  background: #0B386B;
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-hero-full h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-hero-full p {
  color: #dcdcdc;
  margin-bottom: 2rem;
}

.cta-hero-full a {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width: 768px) {

  .hero-section {
    flex-direction: column;
    width: 100%;
    padding: 2rem 1.2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-actions a {
    margin: 0.4rem 0.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 1.2rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 1.2rem;
  }

  .mission-section p {
    font-size: 1.4rem;
  }

  .cta-hero-full h2 {
    font-size: 1.6rem;
  }
}
/* ===============================
   MOBILE RESPONSIVENESS
================================ */

@media (max-width: 768px) {

  .hero-section {
    width: 100%;
    padding: 2rem 1.2rem;
  }

  .hero-slide {
    flex-direction: column-reverse; /* image below text */
    text-align: center;
  }

  .hero-text {
    margin-left: 0;
    padding-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero-text a {
    margin-right: 0;
    padding: 0.6rem 1.4rem;
  }

  .hero-image img {
    max-width: 90%;
  }

  .hero-dots {
    margin-top: 1.5rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mission-section {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .mission-section {
margin-top: -70px!important;
  }
  
}

/* Small phones */
@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 2rem;
  }

  .mission-section p {
    font-size: 1.25rem!important;
    width: auto;
  }

.load-more-btn {
  width: 100%;
  margin:0 auto;
}
.resource-grid{
padding-top: -30px;
margin-top: -30px;
}
}




/* =====================================
   about

===================================== */
.about-section h1{
  font-size: 17px;
  color: #0B386B;

}
.about-section{
  margin:60px 0
}
.about-section h2{
  font-size: 1.8rem;
  color: #000;

}
.about-list li{
  margin-bottom: 5px;
  color:#929292
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 24px;
  height: 24px;
  border: 2px solid #0B386B; /* circle color */
  border-radius: 50%;
  color: #0B386B;            /* tick color */
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
