/* Styles by cruzbytes */

:root{
  --primary-color:#811a17; --primary-color-hover:#B82020;
  --secondary-color:#0F254B; --secondary-color-hover:#315D9B; --accent-gold:#c9a44e;
  --shadow-sm: 0 6px 18px rgba(10,10,10,0.06);
}

body{
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial; 
  color:var(--neutral-900); margin:0; 
  background:#fff; 
  -webkit-font-smoothing:antialiased;
}

/* Header */
.site-header{position:relative;top:0;background:#fff;z-index:60;border-bottom:1px solid var(--gray-100)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:88px}
.logo img{ width: auto;height:75px}
.nav ul {
	display:flex;
	gap:28px;
	align-items:center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.nav a{color:#222;text-decoration:none;font-weight:600}
.nav a:hover, a:hover {
	color: var(--primary-color-hover);
}
.header-cta{display:flex;gap:12px;align-items:center}
.hamburger{display:none;border:0;background:transparent;font-size:22px}

.viewAllBtn {
  padding-top: 40px;
}

.viewAllBtn a {
  min-width: 150px;
  display: block;
  text-align: center;
  width: max-content;
  margin: auto;
}

.text_link a {
	position: relative;
}

.text_link a:after {
	content: "";
	background: var(--primary-color-hover);
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -7px;
	transition: 0.3s;
}

.text_link a:hover:after {
	width: 100%;
	opacity: 1;
	transition: .3s ease-in-out;
}

.cardTransY:hover {
	transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.page-main {
	padding-top: 80px;
	padding-bottom: 50px;
}

/* Home page styles start */

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* Slider wrapper */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Gold spiritual glow */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 65%, rgba(203,162,75,0.25), transparent 60%);
  z-index: 1;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #0F254B;
  margin: 10px 0px;
  margin-top: 0px;
}

.hero-content p {
  margin-top: 12px;
  font-size: 18px;
  color: #333;
}

/* Buttons */
.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.cj_btn {
  transition: .3s ease-in-out;
}

.cj_btn:hover {
  transform: translateY(-3px);
}

.btn_primary {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.2s;
}

.btn_primary:hover {
  background: var(--primary-color-hover);
  color: white;
}

.btn_secondary {
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 30px;
  color: #0F254B;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}

a.btn_primary, a.btn_secondary {
  text-decoration: none;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 20px;
}

.slider-controls span {
  font-size: 36px;
  cursor: pointer;
  color: white;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: 0.2s;
}

.slider-controls span:hover {
  transform: scale(1.15);
}


/* Hero Content Box (original) */
.hero-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgb(234 234 234 / 55%);
  padding: 30px;
  width: 480px;
  border-radius: 16px;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 2;
}

/* Collapsed state */
.hero-content.collapsed {
  /*width: 360px;*/
  padding: 14px 18px;
  /*height: 56px;*/
  /*margin-top: 10px;*/
}

.hero-content .toggleCont	{
	max-height: 500px; /* enough height */
	overflow: hidden;
	opacity: 1;
	transition: max-height 0.5s ease, opacity 0.4s ease;
}

.toggleCont.hidden {
	max-height: 0;
	opacity: 0;
}

/* Hide content when collapsed */
/*.hero-content.collapsed h1,*/
/*.hero-content.collapsed p,
.hero-content.collapsed .hero-buttons {*/
.hero-content.collapsed .toggleCont	{
  display: none;
}

/* Minimize/Expand Toggle Button */
.minimize-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgb(30 30 30 / 49%);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minimize-toggle:before {
  content: "−";
  color: #fff;
  font-size: 22px;
  text-align: center;
  display: block;
  height: 28px;
}

.hero-content.collapsed .minimize-toggle:before {
  content: "+";
}

.hero-section .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* About section styles start */

.jesuits-section {
    position: relative;
    padding: 120px 0;
    /*background: #f4f4f8;*/
    background: linear-gradient(135deg, #f9f4ef 0%, #fff 40%, #f3ede6 100%);
    overflow: hidden;
}

.jesuits-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: url('../images/jesuits.png') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(1px);
}

/* Section Layout */
.jesuits-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin: auto;
}

/* Image Styling */
.jesuits-image img {
    width: 200px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    padding: 30px;
}

/* Content Area */
.jesuits-content {
    flex: 1;
    min-width: 300px;
}

/* Decorative Title */
.jesuits-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.jesuit-line {
    width: 45px;
    height: 3px;
    background: #c70000;
    border-radius: 2px;
}

.jesuits-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

/* Text */
.jesuits-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* CTA Button */
.jesuits-btn {
    padding: 12px 26px;
    background: #c70000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.jesuits-btn:hover {
    background: #a10000;
}

/* About section styles end */

/* mission section */

/* Main Section */
.mvv-section {
    padding: 100px 0;
    background: #f8f9fb;
}

/* Grid Layout */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

/* Item Card */
.mvv-item {
    padding: 40px 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid #e8e8e8;
}

.mvv-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Hexagon Icon */
.mvv-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    position: relative;
}

.mvv-icon:before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 60px;
}

.mvv-icon img {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Text */
.mvv-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.mvv-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Fade Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 900px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

/* mission section */

/* provincial message section */

/* alt design */

/* Section Wrapper */
.provincial-message-section {
  padding: 80px 0;
  background: #faf7f3;
}

.pm-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 80px;
}

/* Sticky Image Column */
.pm-image-col {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pm-image-box {
  position: relative;
  width: 70%;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.pm-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.pm-watermark {
  position: absolute;
  inset: 0;
  background: url('assets/jesuits.png') center/50% no-repeat;
  opacity: 0.08;
}

.pm-info {
  margin-top: 25px;
  text-align: center;
}

.pm-info h3 {
  font-size: 26px;
  margin-bottom: 5px;
  margin-top: 0px;
  font-weight: 700;
  color: var(--primary-color);
}

.pm-info p {
  font-size: 16px;
  color: #444;
}

.pm-text-col {
  flex: 1.6;
  color: #222;
  position: relative;
}

.pm-quote-icon {
  font-size: 5rem;
  line-height: 1;
  color: #d64545;
  position: absolute;
  top: -10px;
  left: -40px;
  opacity: 0.15;
  font-family: serif;
}

.pm-quote-icon.end {
  bottom: -40px;
  right: 0px;
  top: auto;
  left: auto;
}

.pm-pullquote, blockquote, .ajs-content blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  background: #ffffff;
  border-left: 4px solid var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

/* Text Paragraphs */
.pm-text-col p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 28px;
}

.pm-text-col .desc {
  position: relative;
}

/* provincial message section */

/* ministries section */

.ministries-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--primary-color);
}

.section-subtitle {
  display: block;
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

.ministries-grid {
  margin-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ministry-card {
  background: #faf7f3;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border: 1px solid rgba(138, 27, 20, 0.08);
}

/* CARD WITH IMAGE */
.has-image .mc-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.has-image .mc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.has-image:hover .mc-image img {
  transform: scale(1.06);
}

.has-image .mc-content {
  padding: 30px;
}

/* CARD WITHOUT IMAGE (Text Only Style) */
.no-image {
  padding: 35px;
  background: linear-gradient(145deg, #ffffff, #b33a331c);
  border-left: 4px solid #b33a33;
}

.no-image .mc-content {
  padding: 0;
}

/* Typography */
.mc-content h3 {
  font-size: 22px;
  color: #8c1c13;
  margin-bottom: 12px;
  margin-top: 0px;
  font-weight: 600;
}

.mc-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
  color: #444;
}

.mc-location {
  font-size: 14px;
  font-weight: 600;
  color: #8c1c13;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 30px; }
  .ministries-grid { gap: 25px; }
}

/* ministries section */

/* News and events section */

.news-events-section {
  padding: 80px 0;
  background: #faf7f3;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 38px;
  color: #6a120e;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 16px;
  color: #555;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(138, 27, 20, 0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.news-thumb {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

/* NO-IMAGE STYLE */
.no-image {
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f2efea);
}

/* CONTENT */
.news-content {
  padding: 25px;
}

.news-date {
  background: #8c1c13;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  color: white;
}

.news-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 0px;
  font-weight: 700;
  color: #333;
}

.news-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* READ MORE */
.news-readmore {
  color: #8c1c13;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.news-readmore:hover {
  color: #b52d23;
}

/* News and events section */

/* Locations section */

.where-we-are {
  padding: 80px 0;
}

.location-container {
  display: grid;
  grid-template-columns: 380px auto;
  gap: 30px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-height: 620px;
  overflow-y: auto;
}

.location-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: 0.2s ease;
  border-left: 4px solid transparent;
}

.location-card.active {
  border-left: 4px solid #C12222;
  background: #fff7f7;
}

.location-card:hover {
  transform: translateX(4px);
}

#jesuitMap {
  height: 580px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* --- Marker Styles --- */

.jesuit-marker .marker-pin {
  width: 26px;
  height: 26px;
  background: #C12222;
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  /*transform: rotate(-45deg);*/
  position: relative;
  left: 8px;
  top: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.jesuit-marker.hover .marker-pin {
  transform: scale(1.4);
}

/* Popup */
.leaflet-popup-content {
  margin: 8px !important;
  font-size: 15px;
  line-height: 1.4;
}

.marker-popup strong {
  font-size: 16px;
  color: #222;
}

.marker-popup span {
  color: #555;
  font-size: 14px;
}

/* Locations section */

/* Team section */

.team-section {
  padding: 80px 0px;
  background: #F7F2E9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #eee;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 3px;
  color: #1d1d1d;
}

.team-role {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Team section */

/* CTA section */

/* CTA with background image */
.cta-section-img {
  position: relative;
  background-image: url('../images/calcutta_jesuits_group.avif'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  /*margin-top: 60px;*/
  display: flex;
  justify-content: center;
  text-align: center;
  /*border-radius: 12px;*/
  overflow: hidden;
}

/* Overlay blend */
.cta-section-img .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(15, 26, 51, 0.75),   /* deep Jesuit blue tone */
      rgba(15, 26, 51, 0.75)
  );
  mix-blend-mode: multiply; 
  z-index: 1;
}

/* Content */
.cta-img-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.cta-img-inner h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-img-inner p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn-primary {
  background: #ffcc47;
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn-primary:hover {
  background: #ffd876;
}

.cta-btn-outline {
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
  }

  .cta-img-inner h2 {
    font-size: 28px;
  }
}


/* CTA section */

/* Footer section */

.footer {
  background: #0f1a33;
  color: #fff;
  padding-top: 60px;
  /*margin-top: 80px;*/
}

/* Newsletter Section */
.footer-top {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.footer-top h2 {
  font-size: 32px;
  font-weight: 700;
}

.footer-top p {
  margin: 10px 0 25px;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 16px;
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: #ffcc47;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #ffd876;
}

/* Home page styles end */

/* About page styles start */

/* Outer wrapper */
.inner-header-floating {
    position: relative;
    width: 100%;
    height: 390px;
    margin-bottom: 80px;
}

/* Background image container */
.ihf-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ihf-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

/* Floating content box */
.ihf-content-box {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;  /* 50–60% recommended */
    background: #fff;
    backdrop-filter: blur(8px);
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.16);
    z-index: 5;
    animation: ihfFadeUp .6s ease-out both;
}

/* Title */
.ihf-title {
    margin: 0 0 10px;
    font-size: 38px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

/* Breadcrumb */
.ihf-breadcrumb {
    font-size: 15px;
    color: #000;
    text-align: center;
}

.ihf-breadcrumb a {
    color: rgb(128 26 23);
    text-decoration: none;
    font-weight: 500;
}

.ihf-breadcrumb span {
    margin: 0 6px;
    color: #aaa;
}

/* Simple fade-up animation */
@keyframes ihfFadeUp {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .inner-header-floating {
        height: 280px;
    }

    .ihf-content-box {
        width: 90%;
        padding: 18px 22px;
        bottom: 20px;
    }

    .ihf-title {
        font-size: 26px;
    }
}

/* Page header styles */

/* About the jesuits section styles */

.about-jesuits-section {
    padding: 80px 0;
    background: #ffffff;
}

.ajs-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /*display: grid;*/
    /*grid-template-columns: 6px 1fr 0.9fr;*/
    /*gap: 40px;*/
    /*align-items: center;*/
}

.ajs-left-accent {
    background: var(--theme-color, #1d5b79);
    border-radius: 4px;
}

.ajs-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1d1d1d;
}

.ajs-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.ajs-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}


/* About the jesuits section styles */

/* History section styles */

.history-section {
    padding: 80px 0;
    background: #ffffff;
}

.histortInfo ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.histortInfo ul li {
  position: relative;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 10px;
}

.histortInfo ul li:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a44e;
  margin-top: 6px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 3px;
}

.year, .histortInfo ul li strong {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c9a44e;
  display: block;
}

/* History section styles */

/* About page styles end */

/* Footer Columns */

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 50px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
  color: #fff;
}

.footer-logo img {
  width: 240px;
}

.footer-about {
  margin-top: 15px;
  opacity: 0.8;
}

.contact li {
  color: #ccc;
  margin-bottom: 8px;
}

/* Bottom Strip */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/* Footer section */
