/* Base Styles */
:root {
    --primary-color: #e67e22;
    --secondary-color: #2c3e50;
    --accent-color: #16a085;
    --background-color: #f7f7f7;
    --button-color: #e74c3c;
    --text-color: #333;
    --text-light: #fff;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
  }
  
  /* Loading Animation */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--button-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--secondary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  /* Hero Section */
  .about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* About Container */
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  /* Section Styles */
  .about-section {
    margin-bottom: 5rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
  }
  
  .section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto;
  }
  
  /* Journey Section */
  .journey-content {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .journey-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
  }
  
  .journey-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
  }
  
  .journey-image:hover img {
    transform: scale(1.05);
  }
  
  .journey-text {
    flex: 1;
  }
  
  .journey-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Philosophy Section */
  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .philosophy-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
  }
  
  .philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .philosophy-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
  }
  
  .philosophy-card:hover .philosophy-icon {
    background-color: var(--primary-color);
    color: white;
  }
  
  .philosophy-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  /* Team Section */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.1);
  }
  
  .social-links {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.8);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    transition: var(--transition);
  }
  
  .team-card:hover .social-links {
    bottom: 0;
  }
  
  .social-links a {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
  }
  
  .team-info {
    padding: 1.5rem;
    text-align: center;
  }
  
  .team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }
  
  .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .bio {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Achievements Section */
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .achievement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
  }
  
  .achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .achievement-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }
  
  .achievement-card p {
    color: #666;
    font-size: 0.9rem;
  }
  
  /* Testimonials Section */
  .testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
  }
  
  .testimonial-content {
    position: relative;
  }
  
  .quote-icon {
    font-size: 3rem;
    color: rgba(230, 126, 34, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  .author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
  }
  
  .author-title {
    color: #777;
    font-size: 0.9rem;
  }
  
  /* Call to Action Section */
  .cta-section {
    background: linear-gradient(135deg, var(--primary-color), #d35400);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin-top: 4rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .cta-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .secondary-btn:hover {
    background-color: white;
    color: var(--primary-color);
  }
  
  /* Footer */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 5%;
    background-color: var(--secondary-color);
    color: var(--text-light);
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .footer-section p, 
  .footer-section a {
    margin-bottom: 10px;
    display: block;
    color: var(--text-light);
    transition: var(--transition);
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: var(--primary-color);
  }
  
  .social-icon {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #1a252f;
    color: var(--text-light);
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
  }
  
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .journey-content {
      flex-direction: column;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      padding: 1rem;
    }
  
    .logo {
      margin-bottom: 1rem;
    }
  
    .nav-links {
      gap: 1.5rem;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1.2rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .cta-btn, .secondary-btn {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .about-container {
      padding: 2rem 1rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .team-grid, .philosophy-grid, .achievements-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial-card {
      padding: 1.5rem;
    }
  }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d35400;
} 