@import url('../components/variables.php');
/* Hero Section */
.hero-section {
  background: url('../images/about-banner.png') no-repeat center center/cover;
  height: 90vh;
  position: relative;
  /* margin-top: -9%; */
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.705);
}

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

.hero-content h1,
.hero-content p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
}

/* Body */
body {
  background-color: #F4F4F9;
}

/* Buttons */
.btn-primary {
  background-color: var(--main-blue);
  border: none;
}

.btn-primary:hover {
  background-color: var(--hover-blue);
}

/* Our Story Section */
.our-story {
  background-color: #F4F4F9;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 1rem;
}

.our-story p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.our-story img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.card h5 {
  color: var(--main-blue);
}

.card p {
  font-size: 1rem;
  color: #555; /* Using #555 directly since text-muted isn't in your allowed variables */
}

/* Principal Message */
.principal-message {
  background-color: #f8f9fa;
}

.principal-message .blockquote {
  border-left: 5px solid var(--main-blue);
  padding-left: 1rem;
}

.principal-message .blockquote-footer {
  font-size: 0.95rem;
  color: #555;
}

/* Why Choose Us */
.why-choose-us h5 {
  color: var(--main-blue);
  margin-top: 0.5rem;
}

.why-choose-us .shadow-sm {
  transition: transform 0.3s ease;
}

.why-choose-us .shadow-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Achievements Section */
.achievements-section .card h5 {
  color: var(--main-blue);
}

.achievements-section .card {
  transition: transform 0.3s ease;
}

.achievements-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-img {
  transition: transform 0.4s ease;
  object-fit: cover;
  height: 200px;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.cta-section{
    background-color: var(--light-blue-bg);
}
#personModal .modal-dialog .modal-content .modal-header{
    background: linear-gradient(135deg, var(--main-blue), var(--light-blue-bg));
    color: white !important;
}
.modalImage{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border: 4px solid var(--main-blue) !important;
}
.personDesignation{
    font-size: 1rem !important;
    border-radius: 20px !important;
    background-color: var(--main-blue) !important;
}