/* 
 * main.css
 * Primary styles for MICTON Consultancy website
 */

/* Carousel Styles */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 47, 128, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

#header-carousel,
#header-carousel .carousel-item {
    height: 600px;
}

#header-carousel img {
    height: 600px;
    object-fit: cover;
}

/* Animation Effects */
.animated {
    animation-duration: 1.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}
/* Testimonial Styles */
.testimonial-item {
    margin: 0 5px !important;
    padding: 10px;
    width: 500px;
}
.testimonial-content {
    position: relative;
    background: white;
    padding: 5px;
    border-radius: 8px;
    width: 480px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
}
.testimonial-arrow {
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
/* Quote Form Styles */
.quote-form .form-control,
.quote-form .form-select {
    border: 1px solid #e1e1e1;
    height: 58px;
}
.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: #1c2f80;
    box-shadow: 0 0 0 0.25rem rgba(28, 47, 128, 0.25);
}
/* Owl Carousel Custom Navigation */
.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #1c2f80 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #e0e0e0 !important;
}

.testimonial-carousel .owl-dot.active {
    background-color: #1c2f80 !important;
}