/********** LIGHT MODERN REDESIGN **********/

:root {
    --primary: #4F8CFF;   /* Soft blue */
    --secondary: #F8FAFC; /* Light background */
    --light: #FFFFFF;
    --dark: #1E293B;      /* Soft dark (not harsh) */
}

/********** Base **********/
body {
    background: var(--secondary);
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    margin: 0;
}

/********** Typography **********/
h1, h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3, h4 {
    font-weight: 600;
}

h5, h6 {
    font-weight: 500;
}

/********** Spacing **********/
.pt-6 { padding-top: 100px; }
.pb-6 { padding-bottom: 100px; }
.py-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/********** Buttons **********/
.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all .3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4F8CFF, #6EA8FE);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79,140,255,0.3);
}

/********** Navbar **********/
.navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #EEF2F7;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: var(--primary);
    transition: 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/********** Topbar **********/
.bg-secondary {
    background: #F8FAFC !important;
    color: var(--dark);
}

/********** Hero Section **********/
.carousel-caption {
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(79,140,255,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #0f172a;
}

/********** Service Cards **********/
.service-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    height: 320px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-item h3 {
    margin-bottom: 15px;
}

/********** About Section **********/
.bg-primary {
    background: linear-gradient(135deg, #4F8CFF, #6EA8FE) !important;
    border-radius: 20px;
}

/********** Sections spacing **********/
.container-fluid {
    margin-bottom: 30px;
}

/********** Testimonials **********/
.testimonial-section {
    background: transparent;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: #64748B;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--primary);
}

/********** Footer **********/
.bg-dark {
    background: #1E293B !important;
}

/********** Animations **********/
.service-item,
.testimonial-card {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********** Mobile **********/
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 32px;
    }
}