/* Custom CSS for Imagine Template */
:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    padding-top: 76px; /* Offset for fixed navbar */
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}
.navbar-brand {
    color: var(--primary-color) !important;
}
.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: #555 !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}
.hero .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}
.hero .btn-outline-light {
    border: 2px solid #fff;
    font-weight: 600;
}
.hero .btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.hero img {
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #f9f9f9;
}
.features .card {
    transition: transform 0.3s;
    border-radius: 10px;
}
.features .card:hover {
    transform: translateY(-10px);
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
}
.features .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.features .btn-link:hover {
    text-decoration: underline;
}

/* Footer */
footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
}
.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}