/* style.css - Main stylesheet for all pages */

/* Facebook Color Theme */
:root {
    --facebook-blue: #1877f2;
    --facebook-blue-dark: #166fe5;
    --facebook-green: #42b72a;
    --facebook-green-dark: #36a420;
    --facebook-gray: #f0f2f5;
    --facebook-dark: #1c1e21;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--facebook-blue);
}

a:hover {
    color: var(--facebook-blue-dark);
}

.btn-primary {
    background-color: var(--facebook-blue);
    border-color: var(--facebook-blue);
}

.btn-primary:hover {
    background-color: var(--facebook-blue-dark);
    border-color: var(--facebook-blue-dark);
}

.btn-success {
    background-color: var(--facebook-green);
    border-color: var(--facebook-green);
}

.btn-success:hover {
    background-color: var(--facebook-green-dark);
    border-color: var(--facebook-green-dark);
}

.bg-light-custom {
    background-color: var(--facebook-gray);
}

/* Logo Styling */
.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--facebook-blue), var(--facebook-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Banner Styles */
.banner {
    background: linear-gradient(rgba(24, 119, 242, 0.9), rgba(66, 183, 42, 0.8)), url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Features Section */
.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--facebook-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

/* Testimonial Styles */
.testimonial-card {
    border-radius: 10px;
    border: none;
    transition: transform 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #ffc107;
}

/* Course Card Styles */
.course-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.course-c-img-1 { background-color: #004d7f; }
.course-c-img-2 { background-color: #005a9e; }
.course-c-img-3 { background-color: #f8981d; }
.course-c-img-4 { background-color: #3776ab; }
.course-c-img-5 { background-color: #6f42c1; }
.course-c-img-6 { background-color: #20c997; }

/* Contact Page Styles */
.contact-info-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook-bg { background-color: #1877f2; }
.instagram-bg { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.twitter-bg { background-color: #1da1f2; }
.linkedin-bg { background-color: #0077b5; }
.whatsapp-bg { background-color: #25d366; }

/* Form Styles */
.form-control:focus {
    border-color: var(--facebook-blue);
    box-shadow: 0 0 0 0.25rem rgba(24, 119, 242, 0.25);
}

/* Google Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer {
    background-color: var(--facebook-dark);
    color: white;
}

.footer a {
    color: #ddd;
}

.footer a:hover {
    color: white;
}

/* Review Integration Styles */
.review-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-platform {
    font-weight: bold;
    color: var(--facebook-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
}