/* Section Styling */
.location_area {
    padding: 60px 0;
    background-color: #c6bdbdc5;
}

.location_area .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Card Styling */
.location_card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: capitalize;
}

.location_card i {
    font-size: 2rem;
    color: #FF6600;
    margin-bottom: 15px;
}

.location_card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.location_card p {
    font-size: 1rem;
    color: #666;
}

/* Hover Effect */
.location_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.location_card:hover i {
    color: #ff4500; /* Change icon color on hover */
}

.location_card:hover h4 {
    color: #333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .location_area .title {
        font-size: 2rem;
    }

    .location_card {
        padding: 15px;
    }

    .location_card i {
        font-size: 1.8rem;
    }

    .location_card h4 {
        font-size: 1.3rem;
    }

    .location_card p {
        font-size: 0.95rem;
    }
}




/* About page Styling */
        /* About us css */
        /* Section Design */
.about_history_area {
    background-color: #f8f9fa; /* Light background for better contrast */
    padding: 60px 0;
}

.about_content {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Bold the paragraph text for emphasis */
.about_text {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
}

/* Button Styling */
.button_hover {
    margin-top: 30px;
    background-color: #FF6600; /* Attractive orange color */
    padding: 12px 30px;
    color: white;
    border-radius: 25px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button_hover:hover {
    background-color: #e55a00; /* Slightly darker shade on hover */
}

/* Image Styling */
.img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}




/* header part ko achhe se bnane k liye css */
