@media (max-width: 768px)  {
    .roundedNav {
        border-radius: 5px !important;
    }
}

@media (min-width: 768px)  {
    .roundedNav {
        border-radius: 50px !important;
    }
}

.images-column {
    position: relative;
    margin-bottom: 40px;
}

.images-column .inner-column {
    position: relative;
    padding: 50px 0px;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
}

.images-column .pattern-layer {
    position: absolute;
    left: 80px;
    top: -40px;
    width: 380px;
    height: 550px;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 599px) {
    .pattern-layer {
        display: none;
    }
}

.images-column .pattern-layer {
    animation-name: rotateme;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

.images-column .images-outer {
    position: relative;
}

.images-column .image {
    position: relative;
    display: inline-block !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.images-column .image-two {
    position: absolute;
    left: 0px !important;
    top: auto !important;
    bottom: 60px !important;
    display: inline-block !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

.images-column .image-three {
    position: absolute;
    left: auto !important;
    top: auto !important;
    right: 0px !important;
    bottom: -60px !important;
    display: inline-block !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

.images-column .image-four {
    position: absolute;
    right: 10px !important;
    left: auto !important;
    top: 0px !important;
    bottom: auto !important;
    display: inline-block !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
}

.title {
    color: #f4b34e;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.secondary-title {
    color: #0b2c65;
}

p {
    font-family: sans-serif
}


/* banner section */
.page-title {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 80px 0 200px;
    z-index: 1;
    background-image: url('assets/banner.webp');
    background-size: cover;
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.banner-title,
.banner-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    /* Fallback for simple transitions */
}

/* 2. The Trigger Class: This starts the animation */
.show-animate.banner-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.show-animate.banner-subtitle {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* service section */
.service-item.style-1 {
    text-align: center;
    position: relative;
    z-index: 9;
    padding: 50px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.service-item.style-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -9;
    transform: skewY(10deg);
    border-radius: 30px;
    box-shadow: 0 10px 35px 0 rgba(92.99999999999996, 72.00000000000001, 223, .08);
}

.service-item.style-1:hover:before {
    background: linear-gradient(115deg, #F97794, #6200ff, #3498db) !important;
    transform: skewY(-10deg);

}

.service-item.style-1 .service-images {
    width: 200px;
    margin: 0 auto;
    margin-top: -150px;
}

.elementor img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.service-item.style-1 .service-desc {
    padding-top: 30px;
}

.service-item.style-1:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, #F97794, #6200ff, #3498db);
    z-index: -9;
    transform: scale(0) skewY(10deg);
    border-radius: 30px;
}

.service-item.style-1:hover .service-title h4,
.service-item.style-1:hover .service-desc p,
.service-item.style-1:hover .service-btn i {
    color: #ffffff !important;
    transition: all 0.5s ease-in-out;
}

/* faqs */
/* Custom styling for FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: #f8f9ff;
    color: #f4b34e;
    /* Your 'title' color */
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #f4b34e !important;
    transform: translateY(-2px);
}

.accordion-button i {
    font-size: 1.2rem;
}

/* what we do */
/* Project Card Effects */
.project-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-img-container {
    position: relative;
    overflow: hidden;
}

.project-img-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 44, 101, 0.7);
    /* Dark secondary-title color */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-img-container img {
    transform: scale(1.1);
}

.project-card:hover {
    transform: translateY(-10px);
}

.badge {
    font-size: 0.75rem;
    padding: 6px 12px;
}

/* Contact Form Styling */
.form-control:focus {
    background-color: #fff !important;
    border: 1px solid #f4b34e !important;
    /* Matches your theme color */
    box-shadow: 0 0 15px rgba(253, 46, 53, 0.1);
}

.bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-danger-subtle {
    background-color: rgba(253, 46, 53, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

#contact .card {
    transition: transform 0.3s ease;
}

#contact .card:hover {
    transform: translateY(-5px);
}

.btn-warning,
.btn-outline-warning:hover {
    background: #f4b34e;
    border-radius: 0 !important;
}

.btn-outline-warning:hover a {
    color: #ffffff !important;
}

.btn-outline-warning {
    border-radius: 0%;
    border-color: 1px solid #f4b34e;
    color: #000000 !important;
}

.btn-outline-warning a {
    text-decoration: none !important;
    color: #000000 !important
}

.split-text-container {
    display: flex;
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}