/* ==================================================== Home Page ======================================================================================== */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}



/* ===== Header Layout ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
   background: linear-gradient(135deg, #082b73, #061a40);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header__inner{
    width: 100%;;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Left */
.site-header__brand{
  display: flex;
  align-items: center;
}

.site-header__logo{
  display: inline-flex;
  align-items: center;
  text-decoration:  none !important;
}

.site-header__logo img{
  height: 44px;
  width: auto;
  display: block;
}

.site-header__sitename{
  font-size: 20px;
  font-weight: 600;
  color: #ffc400;
    letter-spacing: 4px;
    font-family: Georgia, serif;
}
/*Punjabi School site header*/
.punjabi-school-title {
    font-size: 20px !important;
}
.punjabi-school-back-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    color: #061A40;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-left:350px;
    
}

/* Hover */
.punjabi-school-back-btn:hover {
    background: #f59e0b;
    color: #fff;
}
.punjabi-school-gallery-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    color: #061A40;
       width: 90px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-left: 10px;
}

.punjabi-school-gallery-btn:hover {
    background: #f59e0b;
    color: #fff;
}

/* Center Nav */
.site-header__nav{
  flex: 1;
  display: flex;
  justify-content: right;
}

.primary-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-menu > li{
  position: relative;
}

.primary-menu a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.primary-menu a:hover{
  color:  #ffc400;
}

/* Dropdown */
.primary-menu .menu-item-has-children > a:after{
  content: "▾";
  font-size: 12px;
  line-height: 1;
  opacity: .8;
}

.primary-menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 8px;
  margin: 10px 0 0 0;
  list-style: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .18s ease;
  z-index: 9999;
}

.primary-menu .sub-menu li a{
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
}

.primary-menu .sub-menu li a:hover{
  background: rgba(0,0,0,.05);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Right Buttons */
.site-header__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.btn--primary{
  background: #fff;
  color:#212529;
  border: 1px solid #0b7bbc;
}

.btn--primary:hover{
  filter: brightness(.95);
}

.btn--outline{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.25);
}

.btn--outline:hover{
  background: rgba(0,0,0,.04);
}

.live-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e11d2e;
  display: inline-block;
}

/* ===== Mobile ===== */
.site-header__toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color:#FFFFFF;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.hamburger {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    top 0.2s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger becomes X */

.site-header.is-open .hamburger {
  background: transparent;
}

.site-header.is-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-title {
  display: none;
}

/* ===== Mobile Layout ===== */

@media (max-width: 960px) {
  .site-header__inner {
    position: relative;
    min-height: 68px;
    padding: 10px 16px;
    justify-content: space-between;
    gap: 10px;
  }

  .site-header__brand {
    min-width: 0;
  }

  .site-header__logo img {
    height: 40px;
  }

  .site-header__toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  /*
   * Mobile menu is hidden until .is-open
   * is added to .site-header.
   */
  .site-header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    padding: 10px 16px 18px;
    display: none;
    overflow-y: auto;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-menu > li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }

  .primary-menu > li:last-child {
    border-bottom: 0;
  }

  /* Important: dark text on white mobile menu */
  .primary-menu a {
    width: 100%;
    padding: 14px 10px;
    justify-content: space-between;
    color: #061a40;
  }

  .primary-menu a:hover,
  .primary-menu a:focus {
    color: #b45309;
    background: #f8fafc;
  }

  /* Mobile submenu */

  .primary-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-menu .sub-menu li {
    width: 100%;
  }

  .primary-menu .sub-menu a {
    padding: 11px 10px;
    color: #334155;
    font-size: 14px;
  }

   .site-header__actions{
    display:flex;
    justify-content:center;
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #e5e7eb;
}

.donate-btn{
    width:100%;
    max-width:220px;
    justify-content:center;
}

  .donate-btn .live-dot {
    width: 8px;
    height: 8px;
  }


  .punjabi-school-back-btn,
  .punjabi-school-gallery-btn {
    display: none;
    margin-left: 0;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline-block;
    overflow: hidden;
    color: #facc15;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    padding: 9px 12px;
  }

  .site-header__logo img {
    height: 36px;
  }

  .mobile-title {
    max-width: 210px;
    font-size: 16px;
  }
}
/* HERO SECTION */

.hero{
  position: relative;
  min-height: 70vh;           /* use 100vh if you want full screen */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;         /* space top/bottom for nice look */
  box-sizing: border-box;
}

/* Text Section */
.hero-text {
  text-align: center;
  padding: 60px 20px;
  background: #f59e0b;
}

.hero-text h1 {
  font-size: 35px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  max-width: 850px;
  margin: auto;
}

.hero-buttons {
  margin-top: 25px;
}

.hero-buttons a {
  margin: 10px;
}
/* ===== SGSSS-style tiles hover/enlarge ===== */
/* GRID */
.sgsss-tiles .kt-row-layout-inner,
.sgsss-tiles .kt-row-column-wrap{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* TILE CARD */
.sgsss-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* IMAGE SIZE */
.sgsss-tile img{
  width: 100% !important;
  height: 165px !important;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

/* WHITE OVERLAY */
.sgsss-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.55);
  transition: background 220ms ease;
  z-index:1;
  pointer-events:none;
}

/* ✅ Center the caption on top of the image */
.sgsss-tile.wp-block-kadence-image figcaption,
.sgsss-tile .wp-block-kadence-image figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 !important;
  padding: 0 14px !important;

  font-size: 28px;
  font-weight: 700;
  color: #111;
  text-align: center;

  z-index: 2;
}

/* Hover effect (optional, like SGSSS site) */
.sgsss-tile:hover {
  transform: scale(1.03);
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.sgsss-tile:hover::before {
  background: rgba(255,255,255,0.40);
}
.sgsss-tile img {
  transition: transform 260ms ease;
}
.sgsss-tile:hover img {
  transform: scale(1.06);
}

/* HOVER EFFECT */
.sgsss-tile:hover{
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.sgsss-tile:hover::before{
  background: rgba(255,255,255,0.40);
}
.sgsss-tile:hover img{
  transform: scale(1.06);
}
.kadence-column33_7bfcf1-52 > .kt-inside-inner-col {
    flex-direction: column;
}
/* RESPONSIVE */
@media (max-width: 900px){
  .sgsss-tiles .kt-row-layout-inner,
  .sgsss-tiles .kt-row-column-wrap{
    grid-template-columns: repeat(2, 1fr);
  }
  .sgsss-tile img{ height:155px !important; }
  .sgsss-tile .kb-adv-image-caption,
  .sgsss-tile .kadence-blocks-image-caption{
    font-size:24px;
  }
}
@media (max-width: 560px){
  .sgsss-tiles .kt-row-layout-inner,
  .sgsss-tiles .kt-row-column-wrap{
    grid-template-columns: 1fr;
  }
  .sgsss-tile img{ height:140px !important; }
}

/* Responsive */
@media (max-width: 900px) {
  .sgsss-tile img { height: 155px; }
  .sgsss-tile .kb-adv-image-caption,
  .sgsss-tile .kadence-blocks-image-caption,
  .sgsss-tile .kb-adv-image-overlay,
  .sgsss-tile .kb-adv-image-title {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .sgsss-tile img { height: 140px; }
}
/****************Read more*************/
#more {
    display: none;
}

#readBtn {
    margin-top: 10px;
    padding: 8px 18px;
    border: none;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

#readBtn:hover {
    background: #0b5ed7;
}
/********************Footer******************/
.site-footer {
  background: linear-gradient(135deg, #082b73, #061a40);
  color: #fff;
  margin-top: auto;

}

.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-site-name {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #ffc400;
  font-family: Georgia, serif;
 
}
.footer-logo {
    text-decoration: none !important;
}

.footer-logo:hover {
    text-decoration: none !important;
}
.footer-details p {
  margin: 6px 0;
  font-size: 18px;
}

.footer-social a {
  width: 54px;
  height: 54px;
  background: #ffc400;
  color: #082b73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
}

.footer-bottom {
  max-width: 1300px;
  margin: 8px auto 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
    text-align: center;
}

@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-site-name {
    font-size: 42px;
  }

  .footer-details p {
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-social {
    width: 100%;
  }

  .footer-social a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .footer-bottom {
    text-align: left;
    font-size: 14px;
  }
}
.about-wrapper {
    display: flex;
    gap: 50px;

    max-width: 1400px;
    margin: 60px auto;
    padding: 50px;

    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    align-items: stretch;
}

/* Equal width */
.about-section,
.visit-section {
    flex: 1;
}

/* Divider line */
.visit-section {
    padding-left: 50px;
    border-left: 1px solid #e5e5e5;
}

.about-section h2,
.visit-section h3 {
    margin-bottom: 25px;
}

.about-section p,
.visit-section p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.sidebar-map iframe {
    width: 100%;
    border-radius: 16px;
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {

    .about-wrapper {
        flex-direction: column;
        padding: 25px;
    }

    .visit-section {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-left: 0;
        padding-top: 30px;
    }

}
.committee-expanded {
    display: none;

    grid-column: 1 / -1; /* take full row width */

    width: 100%;
    max-width: 100%;

    margin-top: 40px;
    padding: 50px;

    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.committee-member {
    padding: 25px;
    border-radius: 16px;
    background: #f7f7f7;
}

.committee-member h4 {
    margin-bottom: 8px;
}

.committee-member p {
    margin-bottom: 10px;
}
/*============================================Objective Page========================================*/
.objectives-modern {
  background: linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
  padding: 60px 0 80px;
}

.objectives-modern .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  background: #fff3cd;
  color: #b7791f;
  border: 1px solid #f6d88c;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}


.breadcrumb-modern {
  font-size: 15px;
  color: #7a7f89;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-modern a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
}

.objectives-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(20, 25, 40, 0.08);
  padding: 40px;
  border: 1px solid #edf0f5;
}

.intro-text p,
.objective-section p,
.objective-item {
  font-size: 18px;
  line-height: 1.9;
  color: #4e5562;
  margin-bottom: 18px;
}

.objective-section {
  margin-top: 40px;
}

.objective-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1d2430;
  margin-bottom: 22px;
  position: relative;
  padding-left: 18px;
}

.objective-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, #f59e0b, #f97316);
  border-radius: 10px;
}

.objective-items {
  display: grid;
  gap: 18px;
}

.objective-item {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 20px 22px;
  transition: all 0.3s ease;
}

.objective-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.objective-item strong {
  color: #111827;
}

.not-profit-box {
  background: linear-gradient(135deg, #fff8e8 0%, #fff3d6 100%);
  border: 1px solid #f4ddb0;
  padding: 28px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .objectives-hero h1 {
    font-size: 40px;
  }

  .objectives-card {
    padding: 28px;
  }

  .intro-text p,
  .objective-section p,
  .objective-item {
    font-size: 17px;
  }

  .objective-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .objectives-modern {
    padding: 40px 0 60px;
  }

  .objectives-hero h1 {
    font-size: 32px;
  }

  .objectives-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .objective-section h2 {
    font-size: 22px;
    padding-left: 14px;
  }

  .intro-text p,
  .objective-section p,
  .objective-item {
    font-size: 16px;
    line-height: 1.8;
  }

  .objective-item {
    padding: 16px 16px;
    border-radius: 14px;
  }
}
/*=============================================================Project Page======================================*/
.projects-modern {
  background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
  padding: 60px 0 80px;
}

.projects-modern .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.projects-card {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 38px;
}

.page-title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #7b8190;
  margin-bottom: 34px;
}

.breadcrumb-modern a {
  color: #d97706;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
}

.projects-grid {
  display: block;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-box {
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
   margin-bottom: 40px;
}

.project-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border-color: #f3d8a0;
}

.project-box:hover::before {
  opacity: 1;
}

.project-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.project-box:hover .project-icon {
  transform: scale(1.08) rotate(4deg);
}

.project-icon.blue {
  background: #0b3b9e;
  color: #ffc107;
  border: 4px solid #ffc107;
}

.project-icon.orange {
  background: #f59e0b;
  color: #ffffff;
  border: 4px solid #ffd27a;
}

.project-box h2 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #d97706;
  margin: 0 0 18px;
}

.project-box p {
  font-size: 16px;
  line-height: 1.95;
  color: #4b5563;
  margin-bottom: 16px;
}

.project-box p:last-child {
  margin-bottom: 0;
}

/* Scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-box h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .projects-modern {
    padding: 40px 0 60px;
  }

  .projects-modern .container {
    padding: 0 15px;
  }

  .projects-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .page-title {
    font-size: 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .project-box h2 {
    font-size: 22px;
  }

  .project-box p {
    font-size: 15px;
    line-height: 1.85;
  }

  .project-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
    margin-bottom: 18px;
  }
}

/*=============================================================History Page===============================================================*/
.history-modern {
  background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
  padding: 60px 0 80px;
}

.history-modern .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.history-card {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 38px;
}

.page-title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #7b8190;
  margin-bottom: 40px;
}

.breadcrumb-modern a {
  color: #d97706;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
}

.history-timeline {
  position: relative;
  padding: 20px 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #f59e0b, #ea580c);
  transform: translateX(-50%);
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 55px;
}

.timeline-item.left {
  justify-content: flex-start;
  padding-right: 50%;
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: 50%;
}

.timeline-content {
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  padding: 28px 24px;
  width: calc(100% - 70px);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
  border-color: #f3d8a0;
}

.timeline-item.left .timeline-content::after,
.timeline-item.right .timeline-content::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid #edf1f5;
  border-right: 1px solid #edf1f5;
  transform: rotate(45deg);
}

.timeline-item.left .timeline-content::after {
  right: -8px;
}

.timeline-item.right .timeline-content::after {
  left: -8px;
  transform: rotate(225deg);
}

.timeline-content h2 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: #d97706;
  margin: 0 0 16px;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.95;
  color: #4b5563;
  margin: 0;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-marker span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0b3b9e;
  color: #ffc107;
  border: 4px solid #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Scroll animation */
.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .scroll-animate {
  opacity: 0;
  transform: translateY(50px);
}

.js-enabled .scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .history-timeline::before {
    left: 30px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-item.left .timeline-content::after,
  .timeline-item.right .timeline-content::after {
    left: -8px;
    right: auto;
    transform: rotate(225deg);
  }

  .timeline-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .history-modern {
    padding: 40px 0 60px;
  }

  .history-modern .container {
    padding: 0 15px;
  }

  .history-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .page-title {
    font-size: 30px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    padding-left: 65px;
    margin-bottom: 35px;
  }

  .history-timeline::before {
    left: 24px;
  }

  .timeline-marker {
    left: 24px;
  }

  .timeline-marker span {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .timeline-content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .timeline-content h2 {
    font-size: 21px;
  }

  .timeline-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/*=========================================================About.php page=======================================================================*/
.about-modern {
  background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f7 100%);
  padding: 60px 0 80px;
}

.about-modern .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-card {
  background: #ffffff;
  border: 1px solid #eceff3;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  padding: 38px;
}

.page-title {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #7b8190;
  margin-bottom: 34px;
}

.breadcrumb-modern a {
  color: #d97706;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
}

.about-intro p,
.about-note p {
  font-size: 17px;
  line-height: 1.95;
  color: #4b5563;
  margin-bottom: 18px;
}

.about-links-section,
.about-note {
  margin-top: 42px;
}

.about-links-section h2,
.about-note h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 22px;
  position: relative;
  padding-left: 18px;
}

.about-links-section h2::before,
.about-note h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 70%;
  border-radius: 10px;
  background: linear-gradient(180deg, #f59e0b, #ea580c);
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-link-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  padding: 24px 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  border-color: #f1d08a;
}

.about-link-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b3b9e;
  color: #ffc107;
  border: 3px solid #ffc107;
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-link-content h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #d97706;
  margin: 0 0 10px;
  font-weight: 700;
}

.about-link-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 12px;
}

.about-link-content span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0b3b9e;
}

/* Scroll animation safe version */
.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .scroll-animate {
  opacity: 0;
  transform: translateY(50px);
}

.js-enabled .scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .about-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-modern {
    padding: 40px 0 60px;
  }

  .about-modern .container {
    padding: 0 15px;
  }

  .about-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .page-title {
    font-size: 30px;
  }

  .about-intro p,
  .about-note p {
    font-size: 16px;
    line-height: 1.85;
  }

  .about-links-section h2,
  .about-note h2 {
    font-size: 22px;
    padding-left: 14px;
  }

  .about-link-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .about-link-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 20px;
  }

  .about-link-content h3 {
    font-size: 19px;
  }
}

.page-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #061A40;
}


.forminator-ui.forminator-custom-form {
  background: #ffffff !important;
  padding: 50px !important;
  border-radius: 24px !important;
  max-width: 1000px !important;
  width: 100% !important;
  margin: 40px auto !important;
  box-sizing: border-box !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.07) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}
.forminator-button-submit {
    display: block !important;
    margin: 30px auto 0 !important;

    background: #061A40 !important;
    color: #fff !important;

    padding: 14px 32px !important;
    border-radius: 50px !important;

    border: none !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    transition: 0.3s ease !important;
}

.forminator-button-submit:hover {
    background: #ffc400 !important;
}
/* Punjabi School*/
.ps-simple-page {
  background: #fff;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.ps-container {
  width: 1100px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.ps-top-title {
  text-align: center;
  padding: 30px 0 20px;
  background: #ffffff;
}

.ps-top-title h1 {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

.ps-top-title h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 400;
  color: #555;
}

.ps-top-title p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}
.punjabi-school-logo{
    width:120px;      /* increase logo size */
    height:auto;
    margin-right:20px; /* space on right side */
    display:block;
}
.ps-hero-simple img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .ps-hero-simple img {
    height: 250px;
  }
}
.ps-content-wrap {
  padding: 40px 0 60px;
}

.ps-two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.ps-main-content h2,
.ps-main-content h3,
.ps-sidebar h3 {
  margin-top: 0;
  color: #222;
}

.ps-main-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.ps-main-content h3 {
  font-size: 20px;
  margin: 30px 0 12px;
}

.ps-main-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.ps-box {
  border: 1px solid #e5e5e5;
  padding: 22px;
  margin-bottom: 25px;
  background: #fafafa;
}

.ps-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.ps-box p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 15px;
  color: #444;
}

.ps-box ul {
  margin: 0;
  padding-left: 18px;
}

.ps-box li {
  margin-bottom: 10px;
}

.ps-box a {
  color: #1a73b7;
  text-decoration: none;
}

.ps-box a:hover {
  text-decoration: underline;
}
.custom-tabs-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.custom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.tab-btn {
  padding: 14px 28px;
  border: 1px solid #d6c3a5;
  background: #28a2ad;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #056ec1;
  color: #fff;
  border-color: #8b5e3c;
}

.tab-content-wrap {
  background: #ecf3fe;
  border: 1px solid #e5d6c3;
  padding: 30px;
  border-radius: 10px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 26px;
  color: #8b5e3c;
}

.tab-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}
.donate-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 50px;
    overflow: hidden;
    animation: attentionPulse 1.2s infinite;
}
/* Hover effect */
.donate-btn:hover {
    background: #f59e0b; /* hover colour */
    color: #fff;
    transform: translateY(-2px);
}

.donate-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: dotBlink 1s infinite;
}

@keyframes attentionPulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.9);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px 10px rgba(255, 193, 7, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes dotBlink {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}
@media (max-width: 900px) {
  .ps-two-col {
    grid-template-columns: 1fr;
  }

  .ps-top-title h1 {
    font-size: 28px;
  }

  .ps-top-title h2 {
    font-size: 20px;
  }
}


