/* =========================
   TalkToUs — Full stylesheet
   Updated with hover & underline effects
   ========================= */

/* ---------- Theme variables ---------- */
:root{
  --primary: #5A7EDC;   /* soft sky-blue */
  --secondary: #7ED9F8; /* light cyan */
  --bg: #F9FAFB;
  --neutral: #E5E7EB;
  --white: #FFFFFF;
  --text: #071233;              /* dark navy for text */
  --radius: 12px;
  --container: 1100px;
  --mobile-nav-width: 260px;
}

/* For Chrome, Edge, Safari */
body::-webkit-scrollbar {
  display: none;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body{
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.4px;
  line-height: 1.5;
  font-size: 16px;
}

/* Utility container */
.container{
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 0;
}

/* ---------- Header ---------- */
.site-header{
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(14,165,233,0.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0.6rem 0;
  position: relative; /* for absolute positioning of mobile nav */
}
.brand{
  letter-spacing: 0.2rem;
  display:flex;
  align-items:center;
  gap:0.6rem;
  color:var(--white);
  text-decoration:none;
  font-size:1.6rem;
  font-family: 'Bebas Neue', sans-serif;
}

/* ---------- Desktop nav ---------- */
@media (min-width: 781px) {
  .brand{
    transform: translateX(-8rem);
  }
  .main-nav ul{
    transform: translateX(8rem);
  }
}

.main-nav ul{
  list-style:none;
  display:flex;
  gap:1.25rem;
  align-items:center;
  margin:0;
  padding:0;
}
.main-nav li { list-style: none; }
.main-nav a{
  color:var(--white);
  text-decoration:none;
  font-size:1rem;
  padding:0.45rem 0.6rem;
  display:inline-block;
  position: relative;
  transition: color 0.2s ease;
}
/* Animated underline effect */
.main-nav a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-3px;
  background: var(--white);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus::after{
  width:100%;
}

/* Desktop CTA / Login style */
.main-nav .cta{
  background: rgba(255,255,255,0.12);
  padding:0.45rem 0.9rem;
  border-radius:8px;
  color:var(--white);
}
.main-nav .login{
  border:1px solid rgba(255,255,255,0.12);
  padding:0.35rem 0.7rem;
  border-radius:6px;
  color:var(--white);
}

/* Hover effects - desktop only */
@media (min-width: 781px){
  .main-nav a:hover,
  .main-nav a:focus{
    background: rgba(255,255,255,0.12);
    border-radius: 6px;
  }
  .main-nav .cta:hover{
    background: rgba(255,255,255,0.2);
    color: var(--white);
  }
  .main-nav .login:hover{
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
  }
}

/* ---------- Focus styles ---------- */
.main-nav a:focus,
.btn:focus,
input:focus {
  outline: 3px solid rgba(14,165,233,0.16);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Mobile nav toggle (hamburger) ---------- */
.nav-toggle{
  display:none; /* shown on mobile below */
  background:transparent;
  border:0;
  cursor:pointer;
  padding:0.45rem;
}
.hamburger{
  width:22px;
  height:2px;
  background:var(--white);
  display:block;
  position:relative;
  transition: transform 0.28s ease, background 0.28s ease;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:var(--white);
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.28s ease;
}
.hamburger::before{ top:-7px; }
.hamburger::after{ top:7px; }

/* transform into "X" when active */
.nav-toggle.active .hamburger{ background: transparent; }
.nav-toggle.active .hamburger::before{
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active .hamburger::after{
  transform: rotate(-45deg);
  top: 0;
}

/* ---------- HERO ---------- */
.hero{
  padding:3.25rem 0 4rem;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  color:var(--white);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap:2rem;
  align-items:center;
}
.hero-text{
  transform: translateX(-2rem);
}
.hero-text a {
  position: relative;
  z-index: 2;
}
.hero h1{
  font-size:4.4rem;
  line-height:1;
  margin-bottom:2rem;
  font-family:'Bebas Neue', sans-serif;
}
.lead{
  font-size:1.5rem;
  max-width:62ch;
  margin-bottom:2rem;
  color:rgba(255,255,255,0.95);
}
.hero-img{
  width:100%;
  border-radius:0;
  box-shadow: none;
  object-fit:cover;
  transform: translate(2rem);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  text-decoration:none;
  font-size:1rem;
  border-radius:10px;
  font-weight:500;
  padding:0.6rem 1rem;
  cursor:pointer;
}
/* Primary button */
.btn{
  display:inline-block;
  text-decoration:none;
  font-size:1.1rem;
  border-radius:10px;
  font-weight:500;
  padding:0.8rem 1.5rem;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white); /* make border same as outline */
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateY(-2px);
}

/* Learn More button (outline) */
.btn-outline {
  background: transparent;
  border: 2px solid var(--white); /* same border width */
  border-radius: 10px;            /* same radius */
  padding: 0.8rem 1.5rem;           /* same padding */
  font-size: 1.1rem;                /* same font size */
  font-weight: 500;               /* same font weight */
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.75rem;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}



/* ---------- Sections ---------- */


body {
    margin: 0;
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #252525;
}

.hero2-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(50, 50, 50, 0.08);
    overflow: hidden;
}

.left,
.right {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left {
    background: #f8fafb;
    padding: 0;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: none;
    display: block;
    max-height: 520px;
}

.right {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
}

.subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    color: #556185;
    margin-bottom: 22px;
    font-weight: 500;
}

.heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #172153;
    margin: 0 0 18px 0;
    line-height: 1.1;
}

.desc {
    color: #32436E;
    font-size: 1.14rem;
    margin-bottom: 18px;
    max-width: 440px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.features li {
    font-size: 1.07rem;
    margin-bottom: 14px;
    color: #1A285D;
    display: flex;
    align-items: flex-start;
}

.tick {
    color: #FFD436;
    font-size: 1.15em;
    margin-right: 12px;
    margin-top: 2px;
}

.book-btn {
    background: #1A285D;
    color: #ffffff;
    font-size: 1.12rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}

.book-btn:hover,
.book-btn:focus {
  transform: translateY(-2px);
}

@media (max-width: 950px) {
    .container {
        flex-direction: column;
        max-width: 97vw;
    }
    .left, .right {
        padding: 26px;
    }
    .heading {
        font-size: 2rem;
    }
    .main-image {
        max-height: 320px;
        width: 100%;
    }
}




.section{ padding:3rem 0; text-align:center; }
.section h2{
  font-size:2rem;
  color:var(--primary);
  margin-bottom:0.8rem;
  font-family:'Bebas Neue', sans-serif;
}
.section-sub{
  color: #555555;
  margin-bottom:2rem;
  font-size:1.25rem;
}

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.cards-grid::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  opacity: 0.3;
}
.cards-grid .card {
  position: relative;
  padding-left: 40px; /* space for dot */
  background-color: #f4f4f4;
}

.cards-grid .card::before {
  content: '';
  position: absolute;
  left: 11px;  /* center of line */
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
}

.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:1.2rem;
  box-shadow: 0 6px 20px rgba(14,165,233,0.06);
}

.cards-grid .card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05rem;
}

.cards-grid .card p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #334155; /* slightly dark grey for readability */
}

.cards-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(14,165,233,0.12);
  transition: all 0.3s ease;
}








/* ---------- Seminars / Events Section ---------- */
/* Seminar section grid */
.page-title {
  font-family:'Bebas Neue', sans-serif;
  text-align: center;
  font-size: 2.9rem;
  margin: 2rem 0;
  font-weight: bold;
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #ff6600; /* your theme color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.seminar-grid {
  display: grid;
  grid-template-columns: 1fr 300px; /* text left, image right */
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fafafa;
}

.seminar-text h2 {
  margin-bottom: 0.8rem;
}

.seminar-text p {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.seminar-image img {
  width: 100%;
  max-width: 300px;
  height: 200px; /* fixed size for consistency */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Popup overlay (background blur + center layout) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active (visible) state */
.popup-overlay.active {
  display: flex;
  pointer-events: all;
  opacity: 1;
}

/* Popup content container */
.popup-content {
  background: #fff;
  width: 90%;
  max-width: 1000px;
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  animation: fadeInUp 0.4s ease;
  overflow-y: auto;
  max-height: 90vh;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #5A7EDC;
}

/* Gallery grid inside popup */
.popup-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Individual photo */
.popup-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Fullscreen image view */
.fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-view.active {
  visibility: visible;
  opacity: 1;
}

.fullscreen-view img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  object-fit: contain;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  z-index: 2100;
}

.fullscreen-close:hover {
  color: #1565c0;
}

@media (max-width: 600px) {
  .fullscreen-view img {
    max-width: 95%;
    max-height: 80%;
  }

  .fullscreen-close {
    font-size: 1.6rem;
    top: 15px;
    right: 20px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .popup-content {
    padding: 1rem;
    border-radius: 8px;
  }

  .popup-gallery img {
    height: 140px;
  }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .seminar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seminar-image img {
    margin: 1rem auto 0;
  }
}









/* ---------- Booking section ---------- */
/* Booking Section */
.booking-section { background: #f9fbff; padding: 56px 20px; }
.booking-container {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(14,165,233,0.06);
  font-family: 'Montserrat', sans-serif;
}
.booking-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.9rem; color: #000000; text-align:center; margin-bottom:6px; }
.booking-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #ff6600; /* your theme color */
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}
.booking-subtitle { font-family: 'Montserrat', sans-serif; text-align:center; color:#374151; }

.booking-form .form-row { margin-bottom:16px; display:flex; flex-direction:column; }
.booking-form label { font-family: 'Montserrat', sans-serif; margin-bottom:6px; font-weight:600; color:#0f172a; }
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form textarea,
.flatpickr-input {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--neutral, #E5E7EB);
  font-size:1rem;
  font-family: 'Montserrat', sans-serif;
  background:white;
  box-sizing:border-box;
}
.booking-form textarea { font-family: 'Montserrat', sans-serif; min-height:110px; resize:vertical; }

.note { font-size:0.88rem; color:#6b7280; margin-top:6px; display:block; }

.booking-btn {
  font-family: 'Montserrat', sans-serif;
  margin-top:8px;
  background:var(--primary, #1E3A8A);
  color:white;
  padding:12px 16px;
  border-radius:10px;
  border:0;
  font-weight:600;
  width:100%;
  cursor:pointer;
}
.booking-btn:hover { filter:brightness(.95); }

/* Flatpickr specific tweaks */
.flatpickr-input[readonly] { cursor:pointer; } /* ensure pointer */
.flatpickr-calendar { z-index: 99999 !important; }

/* Responsive */
@media (max-width:720px) {
  .booking-container { padding:20px; }
  .booking-title { font-size:2.9rem; }
}







/* ---------- Footer ---------- */
.site-footer{
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  color:var(--white);
  padding:1.2rem 0;
  margin-top:2rem;
  text-align:center;
}

/* small text */
.small{ font-size:0.85rem; color:#475569; }
.muted{ opacity:0.85; }

/* ---------- Responsive behaviour ---------- */

/* Tablet-ish breakpoint */
@media (max-width:1100px){
  .hero-grid{ grid-template-columns: 1fr 420px; }
  .cards-grid{ grid-template-columns: repeat(2,1fr); }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
}

/* Mobile breakpoint: transform nav into a narrow side panel/dropdown */
@media (max-width:780px){
  .nav-toggle{ display:block; }

  .brand { transform: translateX(0); text-align: left; }

  .main-nav{
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    width: var(--mobile-nav-width);
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 8px;
    padding: 0.6rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.32s ease;
    z-index: 1200;
  }

  .main-nav ul{
    display:flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .main-nav.open{
    max-height: 420px;
    opacity: 1;
  }

  .main-nav a,
  .main-nav .cta,
  .main-nav .login {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
    color: var(--white);
    background: none;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
  }

  .main-nav.open .cta,
  .main-nav.open .login {
    background: none !important;
    border: none !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    color: var(--white) !important;
  }

  /* Mobile hover/focus */
  .main-nav a:hover,
  .main-nav a:focus {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    transition: background 0.2s ease;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-text{
  transform: none;
}

.hero-text a {
  position: relative;
  z-index: 2;
}


  .hero h1{ font-size: 2.4rem; }
  .hero p{ font-size:1.1rem; }
  .lead{ font-size:1rem; }
  .cards-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .booking-section .booking-grid{ grid-template-columns: 1fr; }

  .hero-img {
    transform: translate(0, 2rem); /* move slightly down on mobile */
  }

  .seminars-grid {
    grid-template-columns: 1fr;
  }

  .seminar-card img.seminar-img {
    height: 180px;
  }

}

/* Very small screens */
@media (max-width:420px){
  .brand{ font-size:1.1rem; }
  .hero h1{ font-size:2rem; }
  .btn{ font-size:0.95rem; padding:0.55rem 0.9rem; }
}







/* About Us Page Styles */
.about-page {
  color: #1a1a2e;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-hero {
  text-align: center;
}

.about-hero h1 {
  font-family:'Bebas Neue', sans-serif;
  font-weight: bold;
  font-size: 2.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}

.about-hero h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #ff6600; /* your theme color */
  margin: 0.5rem auto 0.5rem;
  border-radius: 2px;
}

.about-hero .tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #444;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.about-section {
  margin-bottom: 50px;
  width: 100%;
  /* No need for extra padding here */
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.about-text {
  flex: 2;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 0;
}

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px 0 24px 0;
}

.about-photo img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f4f4f4;
  box-shadow: 0 4px 18px rgba(40,60,140,0.14);
}

.about-caption {
  margin-top: 18px;
  font-size: 1.13rem;
  color: #162447;
  font-weight: 600;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.about-caption span {
  display: block;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  margin-top: 4px;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .about-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 12px;
  }
  .about-photo img {
    width: 120px;
    height: 120px;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .about-photo-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: 20px 0;
  }
  .about-photo img {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }
  .about-caption {
    font-size: 1rem;
  }
  .about-caption span {
    font-size: 0.93rem;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .about-photo img {
    width: 250px;
    height: 250px;;
  }
}

/* Existing styles for headings and text */
.about-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #162447;
  border-left: 4px solid #ff6600;
  padding-left: 10px;
}

.about-section p {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  color: #333;
}

.about-section p span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #000000;
}


.about-section ul {
  font-family: 'Montserrat', sans-serif;
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-section ul li::before {
  content: "•";
  color: #ff6600;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-card {
  font-family: 'Montserrat', sans-serif;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #162447;
  transition: 0.3s ease;
}

.value-card:hover {
  background: #172153;
  color: #fff;
  transform: translateY(-5px);
}




/* team-members-section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f4f4f4;
  box-shadow: 0 4px 18px rgba(40,60,140,0.14);
  margin-bottom: 18px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #162447;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.member-role {
  font-size: 1rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-member img {
    width: 130px;
    height: 130px;
  }
}
























/* Donation Page Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #222;
}

.join-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 8%;
  box-sizing: border-box;
}

/* Left: Join form */
.join-form {
  flex: 1;
  min-width: 300px;
  padding-right: 3rem;
}

.join-form h1 {
  font-family: 'Bebas Neue', sans-serif;
  color: #000000; /* your blue theme */
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.join-form p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

form input, form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

form textarea {
  resize: none;
  height: 120px;
}

form button {
  background-color: #5a7edc;
  color: white;
  border: none;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background-color: #4a6ac5;
}

/* Right: Donate */
.donate-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding-left: 3rem;
  border-left: 2px solid #e5e5e5;
}

.donate-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  color: #000000;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.donate-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}

.donate-section img {
  width: 250px;
  max-width: 80%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .join-container {
    flex-direction: column;
    padding: 2rem 6%;
  }

  .join-form, .donate-section {
    padding: 0;
    border: none;
  }

  .donate-section {
    margin-top: 3rem;
  }

  .join-form h1, .donate-section h1 {
    text-align: center;
  }
}







/* services-section */
.services-section {
  width: 100%;
  /* Remove grid from here! */
}

/* New grid container for cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover,
.service-card:focus {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(-6px);
}

.service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-content p {
  font-size: 1rem;
  color: #222;
  max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-content h2 {
    font-size: 1.5rem;
  }
  .service-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 40px 6%;
  }
  .service-content h2 {
    font-size: 1.3rem;
  }
}








/* home-page-services-section */
/* ---------- Services ---------- */
.services1-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:2rem;
  margin-top:2rem;
}
.service1{
  background:var(--white);
  border-radius:12px;
  padding:1.25rem;
  box-shadow: 0 6px 18px rgba(1, 28, 40, 0.05);
  font-size:1.05rem;
  background-color: #f4f4f4;
}
.service1:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(14,165,233,0.12);
  transition: all 0.3s ease;
}
/* Responsive Design */
@media (max-width: 992px) {
  .services1-grid{
    grid-template-columns: repeat(2,1fr);
  }
}