/* About Page Styles - Extracted from about.php for maintainability */
:root {
    --primary: #A52A2A;
    --secondary: #F28C28;
    --accent: #FFD700;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #FFF5E1;
    --white: #FFFFFF;
}

body {
    font-family: 'Hind', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hind', sans-serif;
    font-weight: 700;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.text-primary-custom { color: var(--primary); }
.text-secondary-custom { color: var(--secondary); }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF5E1 0%, #F5F5DC 50%, #FFF8E1 100%);
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-badge {
    background: rgba(242, 140, 40, 0.1);
    color: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.highlight-text {
    background: linear-gradient(120deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Stats Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

/* Buttons */
.btn-custom {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(165, 42, 42, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 42, 42, 0.4);
    color: white;
}

.btn-outline-custom {
    background: white;
    color: var(--primary);
    border: 2px solid var(--secondary);
}

.btn-outline-custom:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* General List Styles */
.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.check-list i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Vision & Mission */
.vision-card, .mission-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF 100%);
    padding: 5rem 0;
}

.quote-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary);
    font-style: italic;
    position: relative;
}

.quote-box i {
    font-size: 3rem;
    color: rgba(165, 42, 42, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Read More Button */
.read-more-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 42, 42, 0.3);
    color: white;
}

/* Trust Highlights */
.trust-highlights {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Achievement Trophy Circle */
.trophy-circle {
    border: 2px solid white;
    padding: 2.5rem;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-section { padding-top: 60px; text-align: center; }
    .stat-card { margin-bottom: 1rem; padding: 1.5rem; }
    .vision-card, .mission-card { padding: 2rem; }
    .trophy-circle { width: 200px; height: 200px; padding: 2rem; }
}
