* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Poppins", sans-serif;
} */

.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  /* Adjust height as per your logo */
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* Red underline for Active/Hover */
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #e31e24;
  bottom: 0;
  left: 0;
}

.contact-btn {
  background-color: #e31e24;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
/*   border-radius: 4px; */
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #c4191f;
}

/* Responsive Design */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    /* Hide links on mobile */
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }
}


/* .sifa-about-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: url("../images/about-hero.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
} */

/* .sifa-about-overlay {
position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1E2A6C 0%,
    rgba(30, 42, 108, 0.95) 30%,
    rgba(30, 42, 108, 0.7) 55%,
    rgba(30, 42, 108, 0.3) 75%,
    rgba(30, 42, 108, 0) 100%
  );
} */

.sifa-about-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 🔥 background ko pseudo element me daalo */
.sifa-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../images/about-hero.jpg") no-repeat center center;
  background-size: cover;

  transform: scaleX(-1); /* 🔥 only left-right flip */
  z-index: 0;
}

/* overlay upar rahe */
.sifa-about-overlay {
  position: absolute;
  inset: 0;
/*   z-index: 1; */

  background: linear-gradient(
    to right,
    #1E2A6C 0%,
    rgba(30, 42, 108, 0.95) 30%,
    rgba(30, 42, 108, 0.7) 55%,
    rgba(30, 42, 108, 0.3) 75%,
    rgba(30, 42, 108, 0) 100%
  );
}

.sifa-about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sifa-about-content {
	margin-top:144px;
  max-width: 600px;
  color: #ffffff;
}

.sifa-about-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  opacity: 0.9;
}

.sifa-about-title-about {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff !important ;
}

.sifa-about-text-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 400;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .sifa-about-title {
    font-size: 40px;
  }

  .sifa-about-overlay {
    background: linear-gradient(to right,
        rgba(13, 27, 42, 0.9) 100%,
        transparent);
  }
}

@media (max-width: 768px) {
  .sifa-about-hero {
    min-height: 400px;
  }

  .sifa-about-title {
    font-size: 32px;
  }

  .sifa-about-content {
    text-align: center;
    margin: 0 auto;
  }

  .sifa-about-overlay {
    justify-content: center;
    background: rgba(13, 27, 42, 0.8);
  }
}

.sifa-story-section {
  padding: 80px 20px;
  background: #fff;
}

.sifa-story-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.sifa-story-header {
  margin-bottom: 40px;
}

.sifa-story-subtitle {
  color: #e63946;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sifa-story-main-title {
  font-size: 38px;
  color: #1E2A6C;
  line-height: 1.2;
  margin-top: 10px;
  font-weight: 700;
}

/* Grid Layout */
.sifa-story-visual-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.sifa-story-side-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Components */
.sifa-story-card {
  position: relative;
/*   border-radius: 4px; */
  overflow: hidden;
}

.sifa-story-big {
  height: 500px;
}

.sifa-story-red {
  background: #e63946;
  color: white;
  padding: 40px;
  flex: 1;
}

.sifa-story-eng {
  height: 240px;
}

.sifa-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sifa-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
}

.sifa-story-big h1 {
  font-size: 50px;
  margin-bottom: 5px;
}

.sifa-story-red h2 {
  font-size: 45px;
  margin-bottom: 5px;
}

.sifa-story-red h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.sifa-story-red p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Text Row */
.sifa-story-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.sifa-story-para p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sifa-story-dropcap {
  float: left;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  color: #1E2A6C;
  margin-right: 10px;
}

/* Stats Row */
.about-stats {
  padding: 40px 0 20px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-stat-card {
  background: #f7f7f7;
  padding: 40px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  border-bottom: 3px solid #2e3d84;
}

.about-stat-card h1 {
  font-size: 40px;
  color: #2e3d84;
  margin-bottom: 10px;
}

.about-stat-card h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

.about-stat-card p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 1.6;
  max-width: 260px;
}

@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-section {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.sub {
  text-align: center;
  color: #e74c3c;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 5px;
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sub::before,
.sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #e74c3c;
}

.sub::before {
  right: 100%;
  margin-right: 15px;
}

.sub::after {
  left: 100%;
  margin-left: 15px;
}

.timeline-section h2 {
  text-align: center;
  color: #1E2A6C;
  margin-bottom: 60px;
  font-size: 32px;
}

/* Timeline Base Line */
.timeline {
  position: relative;
  margin-left: 140px;
  /* Space for the Year labels on desktop */
  border-left: 3px solid #eee;
  padding-left: 45px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

/* Year Label - Desktop */
.timeline-item .year {
  position: absolute;
  left: -185px;
  /* Aligned to the left of the line */
  top: 0;
  width: 100px;
  text-align: right;
  font-size: 24px;
  color: #1E2A6C;
  font-weight: 700;
}

/* Dot on the Line */
.dot {
  position: absolute;
  left: -54px;
  /* Centered on the 3px border */
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #eee;
  z-index: 2;
}

.red {
  background: #e74c3c;
  box-shadow: 0 0 0 2px #e74c3c;
}

.blue {
  background: #1f3c88;
  box-shadow: 0 0 0 2px #1f3c88;
}

/* Content Box */
.content {
  background: #fff;
  padding: 25px 30px;
/*   border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f9f9f9;
}

.content h4 {
  margin-bottom: 10px;
  color: #1E2A6C;
  font-size: 18px;
}

.content p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.tags {
  margin-top: 15px;
}

.tags span {
  color: #e74c3c;
  font-size: 12px;
  margin-right: 15px;
  font-weight: 600;
  background: #fff5f5;
  padding: 4px 10px;
/*   border-radius: 4px; */
}

/* --- Responsive Media Queries --- */

/* For Tablets (992px and below) */
@media (max-width: 992px) {
  .timeline {
    margin-left: 100px;
  }

  .timeline-item .year {
    left: -145px;
    font-size: 20px;
	  
  }
}

/* For Mobile Phones (768px and below) */
@media (max-width: 768px) {
  .timeline-section {
    width: 95%;
    padding: 50px 15px;
  }

  .timeline {
    margin-left: 20px;
    /* Line moved to far left */
    padding-left: 30px;
  }

  .timeline-item .year {
    position: relative;
    /* Year moves above the box */
    left: 0;
    text-align: left;
    margin-bottom: 10px;
    font-size: 22px;
    display: block;
    width: 100%;
  }

  .dot {
    left: -39px;
    /* Re-aligned to the new line position */
    top: 45px;
    /* Moved down because year is now on top */
  }

  .sub::before,
  .sub::after {
    display: none;
    /* Mobile par clean look ke liye lines remove ki hain */
  }

  .content {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .sifa-story-visual-grid {
    grid-template-columns: 1fr;
  }

  .sifa-story-text-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sifa-story-stats-row {
    grid-template-columns: 1fr;
  }
}

.sifa-mv-section {
  padding: 100px 20px;
  background: #fff;
  color: #0d1b2a;
}

.sifa-mv-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top Mission Row */
.sifa-mv-top-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.sifa-mv-tag {
  color: #e63946;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sifa-mv-main-title {
  font-size: 52px;
  line-height: 1.1;
  margin-top: 15px;
  font-weight: 700;
	color:#1E2A6C;
}

.sifa-mv-text-box h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.sifa-mv-text-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* Vision Card */
.sifa-mv-vision-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1a237e;
  /* Dark Blue from Image */
  min-height: 450px;
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}

.sifa-mv-vision-img {
  position: relative;
}

.sifa-mv-vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The Red Circle - Pixel Perfect Placement */
.sifa-mv-red-circle {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #e63946;
  border-radius: 50%;
  z-index: 2;
}

.sifa-mv-vision-content {
  padding: 60px;
  color: #fff;
}

.sifa-mv-tag-light {
  color: #e63946;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.sifa-mv-vision-title {
  font-size: 48px;
  margin: 15px 0;
}

.sifa-mv-highlight {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
}

.sifa-mv-subtext {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
}

/* Bottom Quote */
.sifa-mv-commitment {
  text-align: center;
  margin-top: 40px;
}

.sifa-mv-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.sifa-mv-divider::before,
.sifa-mv-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  max-width: 150px;
}

.sifa-mv-divider span {
  margin: 0 20px;
  color: #e63946;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.sifa-mv-quote {
  font-size: 26px;
  font-style: italic;
  color: #1a237e;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 500;
}

/* Responsive Fixes */
@media (max-width: 992px) {

  .sifa-mv-top-row,
  .sifa-mv-vision-card {
    grid-template-columns: 1fr;
  }

  .sifa-mv-red-circle {
    right: 50%;
    transform: translate(50%, -50%);
    top: 100%;
    margin-top: -35px;
  }

  .sifa-mv-vision-content {
    padding: 60px 30px;
    text-align: center;
  }

  .sifa-mv-main-title {
    font-size: 40px;
  }

  .sifa-mv-quote {
    font-size: 20px;
  }
}

.values-section {
  width: 90%;
  /* Thoda zyada space desktop ke liye */
  max-width: 1200px;
  margin: auto;
  padding: 80px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.sub-title {
  color: #e74c3c;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 auto 5px;
  position: relative;
  display: block;
  width: fit-content;
  text-transform: uppercase;
}

/* Lines around sub-title */
.sub-title::before,
.sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #e74c3c;
}

.sub-title::before {
  right: 100%;
  margin-right: 15px;
}

.sub-title::after {
  left: 100%;
  margin-left: 15px;
}

.main-title {
  margin: 20px 0 50px;
  color: #1E2A6C;
  font-size: 36px;
  font-weight: 700;
}

/* Grid Layout */
.values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop: 3 Columns */
  gap: 25px;
}

/* Card Design */
.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border: 1px solid #f0f0f0;
/*   border-radius: 8px; */
  text-align: left;
  /* Alignment fixed to left as per your icons */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #e74c3c;
}

.icon {
  width: 56px;
  height: 56px;
  background-color: #1a237e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
/*   border-radius: 4px; */
  margin-bottom: 18px;
  color: #ffffff;
}

.icon i {
  font-size: 22px;
}

.value-card h3 {
  color: #1E2A6C;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* --- Responsive Media Queries --- */

/* Tablet Mode (1024px to 768px) */
@media (max-width: 1024px) {
  .values-container {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 Columns */
  }

  .main-title {
    font-size: 30px;
  }
}

/* Mobile Mode (768px and below) */
@media (max-width: 768px) {
  .values-section {
    width: 95%;
    padding: 50px 0;
  }

  .sub-title::before,
  .sub-title::after {
    width: 30px;
    /* Chhoti lines mobile ke liye */
  }

  .values-container {
    grid-template-columns: 1fr;
    /* Mobile: 1 Column (Full Width) */
    gap: 20px;
  }

  .main-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .value-card {
    padding: 30px 25px;
  }

  .icon {
    font-size: 35px;
  }
}

.sifa-news-section {
  background-color: #ffffff;
  /* White background as per image */
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
}

.sifa-news-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.sifa-news-content {
  flex: 1;
}

.sifa-news-title {
  color: #1a237e;
  /* Deep Blue from image */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sifa-news-subtitle {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

/* Form Styling */
.sifa-news-form {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sifa-news-input {
  width: 400px;
  padding: 16px 24px;
  background-color: #eaeff5;
  /* Light greyish-blue input as per image */
  border: 1px solid transparent;
/*   border-radius: 8px; */
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.sifa-news-input:focus {
  border-color: #1a237e;
  background-color: #fff;
}

/* Button with Red Text as per Image */
.sifa-news-btn {
  padding: 16px 35px;
  background-color: #f8f9fa;
  /* Off-white button background */
  color: #e63946;
  /* Red text color from image */
  border: none;
/*   border-radius: 8px; */
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sifa-news-btn:hover {
  background-color: #e63946;
  color: #ffffff;
}

.sifa-news-icon {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .sifa-news-container {
    flex-direction: column;
    text-align: center;
  }

  .sifa-news-input {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .sifa-news-title {
    font-size: 24px;
  }

  .sifa-news-form {
    flex-direction: column;
    width: 100%;
  }

  .sifa-news-input-wrapper,
  .sifa-news-input,
  .sifa-news-btn {
    width: 100%;
  }

  .sifa-news-btn {
    justify-content: center;
  }
}

/* Footer is now handled globally in style.css */

/* Newsletter bar (shared style used on contact page) */
.newsletter-bar {
  background: #f4f7fa;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text h3 {
  color: #2b3975;
  font-size: 24px;
  margin-bottom: 5px;
}

.newsletter-text p {
  color: #6b7280;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 280px;
  background: #eaeff5;
}

.newsletter-form button {
  padding: 12px 26px;
  border: none;
  background: #ffffff;
  color: #e31e24;
  font-weight: 600;
  cursor: pointer;
/*   border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .newsletter-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

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

/* Responsive Fixes handled globally */