






/* Our Story Section */
.our-story {
  padding: 60px 20px;
  background: #fff;
}

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

.story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.story-text {
  flex: 1 1 40%;
}

.story-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.story-text p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0a4fa3; /* Blue highlight */
}

.stat p {
  font-size: 17px;
  color: #333;
}

.story-image {
  flex: 1 1 40%;
}

.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .story-content {
    flex-direction: column;
    text-align: center;
  }
  .story-stats {
    justify-content: center;
  }
}




/* Mission Vision Values Section */
.mvv-section {
  background: #f9fbfd;
  padding: 70px 20px;
  text-align: center;
}

.mvv-title {
  font-size: 32px;
  font-weight: 700;
  color: #0c1524;
  margin-bottom: 50px;
}

.mvv-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #f9fbfd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mvv-icon img {
  width: 35px;
  height: 35px;
  
}

.mvv-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0c1524;
}

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

/* Responsive */
@media (max-width: 991px) {
  .mvv-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mvv-row {
    grid-template-columns: 1fr;
  }
}



/* Leadership Section */

/* CSS */

.section-title {
  text-align: center;       /* ✅ Title center align */
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color:black;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  max-width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card .designation {
  font-size: 16px;
  color: #555;
  margin-bottom: 6px;
}

.team-card .exp {
  font-size: 14px;
  color: #777;
}

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

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



/* Regulatory Compliance Section */
.compliance-section {
  padding: 80px 15px;
  background: #fff;
}

.compliance-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.compliance-content {
  flex: 1;
}

.compliance-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 10px;
  
}

.compliance-section h2,
.compliance-section .subtitle {
  text-align: center;
}

.compliance-section .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.compliance-item .icon {
  background: #1e56e4;
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.compliance-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.compliance-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.compliance-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.compliance-image img {
  max-width: 100%;
  width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}




/* CTA Section */
.cta-section {
  background: #1e56e4;  /* Blue background */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  margin-top: -300;

}

.cta-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color:#e0e0e0;
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #e0e0e0;
}

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

.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #1e56e4;
  border: 2px solid #fff;
}

.btn-primary:hover {
  background: #f2f2f2;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #1e56e4;
}


/* ========================
   📱 Global Responsive Fixes
   ======================== */

/* Tablet and below (≤991px) */
@media (max-width: 991px) {

  /* Story Section */
  .story-text h2 { font-size: 32px; }
  .story-text p { font-size: 16px; }
  .story-stats { gap: 25px; }

  /* Mission/Vision/Values */
  .mvv-title { font-size: 26px; margin-bottom: 35px; }
  .mvv-card { padding: 30px 20px; }

  /* Leadership */
  .section-title { font-size: 28px; }
  .team-card img { height: 280px; }

  /* Compliance */
  .compliance-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .compliance-item {
    justify-content: center;
    text-align: left;
  }
  .compliance-image img { width: 100%; max-width: 400px; }
}

/* Mobile responsive only */
@media (max-width: 768px) {
  
  .compliance-container {
    flex-direction: column;
    align-items: center;
  }

  
  .compliance-content {
    display: grid;
    grid-template-columns: 2fr ;
    gap: 20px;
    width: 100%;
  }

  
  .compliance-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .compliance-item .icon {
    margin: 0 0 10px 0; 
  }

  
  .compliance-image {
    margin-top: 25px;
    text-align: center;
  }

  .compliance-image img {
    max-width: 280px;
    width: 100%;
  }
}


/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .story-text h2 { font-size: 22px; }
  .story-text p { font-size: 14px; }

  .mvv-title, .section-title, .compliance-section h2 {
    font-size: 22px;
  }

  .cta-container h2 { font-size: 20px; }
  .cta-container p { font-size: 14px; }
}
