@import url('components/_buttons.css');
@import url('components/_navbar.css');
@import url('components/_footer.css');
@import url('components/_carousel.css');
@import url('components/_forms.css');
@import url('components/_responsive.css');
@import url('components//_sections.css');
/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #212529;
}

a {
    color: #2b3c97;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f1f1f;
}

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
/*.navbar {
    background-color: #2b3c97;
}

.navbar a {
    color: #ffffff !important;
}

.navbar a:hover {
    color: #e0e0e0 !important;
}*/

/* ==========================================================================
    Services Section
 =========================================================================== */
 .service-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-box i {
    transition: color 0.3s ease;
}

.service-box:hover i {
    color: #084298;
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(to right, #2b3c97, #6b73ff);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 12px 30px;
    border-radius: 30px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-custom {
    background-color: #2b3c97;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #1e2a75;
    transform: translateY(-2px);
}

/* ==========================================================================
   Cards / Services
   ========================================================================== */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ==========================================================================
   Forms
   ========================================================================== */
form label {
    font-weight: 600;
}

form input, form textarea {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

form input:focus, form textarea:focus {
    border-color: #2b3c97;
    box-shadow: 0 0 5px rgba(43,60,151,0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #1e2a75;
    color: #fff;
    padding: 20px 0;
}

footer a {
    color: #ffffff;
    margin: 0 10px;
}

footer a:hover {
    color: #cccccc;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-in-out;
}
