@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 0;
}

header {
    background: linear-gradient(135deg, #6ab3f2, #478cd8);
    color: white;
    padding: 60px 0;
}

header h1 {
    font-size: 3.5rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

header h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

header p {
    margin: 20px 0 0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #4A90E2;
}

section p {
    font-size: 1.1rem;
}

section.bg-light {
    background: #f8f9fa;
}

.card {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
}

.card-body i {
    color: #4A90E2;
}

.carousel-item {
    display: none;
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active {
    display: flex;
}

.carousel-item .col-md-4 {
    transition: transform 0.6s ease-in-out;
}

.carousel-item.active .central-card {
    transform: scale(1.2);
    z-index: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev {
    left: -5%;
}
.carousel-control-next {
    right: -5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
}