/* Main CSS - Compiled from SCSS */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(10px);
}

#hero-slider .carousel-item {
    height: 100vh;
    min-height: 500px;
    position: relative;
}

#hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.6);
}

#hero-slider .carousel-caption {
    bottom: 20%;
    max-width: 600px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    animation: float 20s infinite linear;
}

.floating-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
}

.floating-shapes .shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -30px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.floating-shapes .shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    background: rgba(44, 62, 80, 0.05);
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, 50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 100px) rotate(20deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    background-color: #f39c12;
    color: #ffffff !important;
}

.service-card:hover .service-icon i {
    color: #ffffff !important;
    transform: scale(1.2) rotate(10deg);
}

.service-card:hover p,
.service-card:hover h3 {
    color: #ffffff !important;
}

.service-card .service-icon i {
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    #hero-slider .carousel-item {
        height: 60vh;
    }

    .carousel-caption {
        bottom: 10%;
        text-align: center !important;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }
}