/* Global Styles */
:root {
    --primary-color: #fe6238;
    --secondary-color: #fe6238;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #fe6238;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0c0c0c;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Header/Navbar */
.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    padding: 8px 15px !important;
    color: var(--dark-color) !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Slider */
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
}

.hero-slider .carousel-caption {
    bottom: 30%;
    text-align: left;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

.hero-slider .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-slider .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Highlights */
.highlight-item {
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    background-color: white;
}

/* Mission Vision */
.mission-vision .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Key Initiatives */
.initiative-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.initiative-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Impact Numbers */
.impact-numbers {
    background-color: var(--primary-color);
}

.impact-item h3 {
    font-weight: 700;
}

/* Team Section */
.team-card {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #f8f9fa;
}

/* Programs Section */
.programs-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Courses Section */
.course-card {
    background-color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
    color: white;
}

/* Testimonials */
.testimonials-section .carousel-item {
    padding: 0 15%;
}

.testimonial-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-designation {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    color: white;
}

.cta-section .btn-light {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Page Banner */
.page-banner {
    padding: 100px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Contact Form */
.contact-form {
    background-color: white;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Locations Section */
.location-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.location-img {
    height: 200px;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.location-card:hover .location-img img {
    transform: scale(1.1);
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    margin-bottom: 15px;
}

.location-info p {
    margin-bottom: 5px;
    color: #6c757d;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: white !important;
    transform: translateY(-5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: white;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-slider .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 60vh;
    }
    
    .hero-slider .carousel-caption {
        bottom: 20%;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .testimonials-section .carousel-item {
        padding: 0 5%;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 50vh;
    }
    
    .hero-slider .carousel-caption {
        bottom: 10%;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        margin-bottom: 20px;
    }
}