/* About Page Specific Styles */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/hero.jpg') center/cover;
  opacity: 0.3;
  z-index: 1;
}

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

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content Sections */
.about-content {
  padding: 4rem 0;
  background: #f8fafc;
}

.about-section {
  background: white;
  margin-bottom: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.about-section:last-child {
  margin-bottom: 0;
}

.section-header {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-header h2 {
  color: #1e293b;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
}

.section-content {
  padding: 2rem;
}

/* Mission Section */
.mission-section {
  text-align: center;
}

.mission-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
}

/* CEO Message Section */
.ceo-message {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #3b82f6;
  border-radius: 16px;
  padding: 3rem;
  margin: 2rem 0;
  position: relative;
}

.ceo-message::before {
  content: '“';
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 5rem;
  color: #1e40af;
  font-family: serif;
  background: white;
  padding: 0 16px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
}

.ceo-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #1e40af;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.ceo-priorities {
  max-width: 700px;
  margin: 0 auto;
}

.ceo-priorities h3 {
  text-align: center;
  color: #374151;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.ceo-priorities ol {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
}

.ceo-priorities li {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.ceo-signature {
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Overview Section */
.overview-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.overview-section li {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  font-weight: 500;
  color: #374151;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card h4 {
  color: #1e40af;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Information */
.contact-info {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.contact-info h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
}

.contact-item strong {
  color: #fbbf24;
  min-width: 80px;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hero Section */
  .about-hero {
    padding: 2.5rem 0;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .about-hero p {
    font-size: 1rem;
  }
  
  /* Main Content */
  .about-content {
    padding: 2rem 0;
  }
  
  .about-section {
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  
  .section-header {
    padding: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-content {
    padding: 1.5rem;
  }
  
  /* Mission & Vision */
  .mission-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* CEO Message */
  .ceo-message {
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
  }
  
  .ceo-message::before {
    top: -15px;
    left: 20px;
    font-size: 3rem;
  }
  
  .ceo-quote {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .ceo-priorities h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .ceo-priorities ol {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .ceo-priorities li {
    margin-bottom: 0.75rem;
  }
  
  .ceo-signature {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  
  /* Overview Section */
  .overview-section ul {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  .overview-section li {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  /* Contact Information */
  .contact-info {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .contact-item strong {
    min-width: auto;
    font-size: 0.9rem;
  }
  
  .contact-item span,
  .contact-item a {
    font-size: 0.95rem;
    word-break: break-word;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.5rem;
  }
  
  .about-hero p {
    font-size: 0.9rem;
  }
  
  .section-header {
    padding: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.3rem;
  }
  
  .section-content {
    padding: 1rem;
  }
  
  .ceo-message {
    padding: 1rem;
  }
  
  .ceo-quote {
    font-size: 1rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .contact-item {
    padding: 0.75rem;
  }
}

/* Animation */
.about-section {
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: both;
}

/* Fade-in animation for about sections */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About section icons */
.about-icon {
  font-size: 2.1rem;
  color: #3b82f6;
  margin-right: 0.7rem;
  vertical-align: middle;
  display: inline-block;
}

/* CEO message: larger quote icon, more border */
.ceo-message::before {
  content: '“';
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 5rem;
  color: #1e40af;
  font-family: serif;
  background: white;
  padding: 0 16px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
}
.ceo-message {
  border: 3px solid #1e40af;
  box-shadow: 0 8px 32px rgba(30,58,138,0.10);
}

/* Contact info icons */
.contact-item {
  position: relative;
  padding-left: 2.2rem;
}
.contact-item .contact-icon {
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  font-size: 1.2rem;
  color: #fbbf24;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Print Styles */
@media print {
  .about-hero {
    background: white !important;
    color: black !important;
  }
  
  .ceo-message {
    border: 1px solid #ccc !important;
    background: white !important;
  }
  
  .contact-info {
    background: white !important;
    color: black !important;
  }
} 