/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- GENERAL --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
@font-face {
    font-family: amazing;
    src: url('../fonts/amazing.ttf');
    src: url('../fonts/amazing.ttf') format('embedded-opentype'),
    url('../fonts/amazing.ttf') format('ttf'),
    url('../fonts/amazing.ttf') format('truetype'),
    url('../fonts/amazing.ttf#league_spartanregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: wonderful;
    src: url('../fonts/wonderful.otf');
    src: url('../fonts/wonderful.otf') format('embedded-opentype'),
    url('../fonts/wonderful.otf') format('otf'),
    url('../fonts/wonderful.otf') format('truetype'),
    url('../fonts/wonderful.otf#league_spartanregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #208CCC;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #208CCC !important;
    --bs-secondary: #208CCC !important;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #208CCC;
    --bs-light: #F9F8F7;
    --bs-dark: #2B2C2E;
    --bg-primary: #208CCC !important;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --main-font: wonderful !important;
    --second-font: amazing !important;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font), serif !important;
    background-color: #ffffff;
    color: var(--bs-body-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: var(--main-font), serif !important;
}

p {
    text-align: justify !important;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}

.bg-primary {
    background-color: var(--bg-primary) !important;
}

.text-primary {
    color: var(--bg-primary) !important;
}

.btn {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(to right, #36d1dc, #5b86e5);
    color: #1E2F7D !important;
    border:none !important;
}

.btn:hover {
    color: rgba(255, 0, 0, 0.44) !important;
    transition: 0.6s all ease-in-out;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.9s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}


.border-primary {
    border-color: #208CCC !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.rounded {
    border-radius: 10px !important;
}

.all-hover-color:hover,
.all-hover-bg:hover {
    color: #208CCC !important;
}

a {
    color: #535353;
}

a:hover {
    color: #f1c1c1 !important;
}

.all-cards {
    transition: background-color 0.9s ease, transform 0.3s ease !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.all-cards:hover {
    background-color: #f0f0f0 !important;
    cursor: pointer !important;
}

.display-6 {
    font-weight: 500 !important;
}

.nav-color {
    color: #1E2F7D !important;
}

.get-quote-btn {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(to right, #36d1dc, #5b86e5);
    color: #1E2F7D !important;
    border:none !important;
}

.get-quote-btn:hover {
    color: rgba(255, 0, 0, 0.44) !important;
    transition: 0.6s all ease-in-out;
}

.get-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(100%);
    transition: transform 0.9s ease;
    z-index: -1;
}

.get-quote-btn:hover::before {
    transform: translateX(0);
}
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- NAVBAR --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #1E2F7D !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #6bc4f8 !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.rack-nav {
    font-size: 16px;
}

#stickyNavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.7s ease-in-out;
    z-index: 1030;
}

#stickyNavbar.show-navbar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dropdown-menu-links {
    position: relative;
    display: inline-block;
    background: transparent;
    color: inherit;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    z-index: 1;
    overflow: hidden;
}

.dropdown-menu-links::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.59);
    transition: width 0.7s ease;
    z-index: -1;
}

.dropdown-menu-links:hover {
    background-color: var(--bs-primary);
    color: #fff !important;
    transform: translateX(1px);
}

.dropdown-menu-links:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #208CCC !important;
    font-weight: 600;
    position: relative;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- SLIDERS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    padding: 2rem;
    pointer-events: none;
}
.carousel .carousel-caption * {
    pointer-events: auto;
}

.slider-titles {
    text-align: center;
    font-size: 4rem !important;
    font-weight: 800;
    color: #a6a6a6;
    text-shadow: 2px 2px 8px rgba(64, 156, 248, 0.55);
    background: rgba(0, 0, 0, 0.5); /* More contrast than light gray */
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: inline-block;
    max-width: 90%;
    line-height: 1.2;
    z-index: 10;
    position: relative;
}

.slider-img {
    height: 87vh;
}

/* small images sidebar */
.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
    z-index: 3;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #ffffff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.carousel-control-prev {
    left: 15rem; /* adjust closer to center */
}

.carousel-control-next {
    right: 15rem;
}

.carousel-control-prev:hover {
    opacity: 1;
    padding-right: 1rem;
    transition: 0.5s all ease-in-out;
    background-color: rgba(246, 119, 119, 0.5) !important;
}

.carousel-control-next:hover {
    opacity: 1;
    padding-left: 1rem;
    transition: 0.5s all ease-in-out;
    background-color: rgba(246, 119, 119, 0.5) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    filter: invert(0) brightness(0); /* black icons */
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- FEATURES --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.features-section {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.feature-item {
    border-radius: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.feature-item:hover {
    background-color: #f0f0f0;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-10px);
}

.bg-custom {
    background-color: #56a8eb;
}
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- ABOUT --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.about-section {
    margin-top: 10rem;
}

.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    content: "";
    position: absolute;
    border: 4px solid var(--bs-secondary);
    z-index: -1;
    animation: animateUpDown 4s ease-in-out infinite;
}

.about-img::before {
    width: 220px;
    height: 350px;
    top: -20px;
    left: -20px;
    border: 4px solid var(--bs-primary);
}

.about-img::after {
    width: 260px;
    height: 400px;
    top: -40px;
    left: -40px;
    animation-delay: 1s; /* Staggered animation for depth */
}

@keyframes animateUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- COUNTERS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.counters-card {
    min-height: 200px !important;
    cursor: default;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ----- advertise & Display Solutions -----
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- DIVISIONS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.divisions .divisions-item {
    position: relative;
    margin-top: 45px;
}

.divisions .divisions-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background-color: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.divisions .divisions-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.divisions .divisions-inner:hover::before {
    height: 100%;
    top: 0;
}

.divisions .divisions-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.divisions-img {
    height: 250px !important;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.divisions .divisions-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.divisions .divisions-item:hover h5,
.divisions .divisions-item:hover p {
    color: var(--bs-white);
}

.divisions .divisions-item:hover a {
    padding-left: 45px !important;
}

.card:hover .divisions-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.card:hover {
    transition: 0.5s all;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, .05), 5px 2px 0 2px rgba(0, 0, 0, 0.03) !important;
}

.divisions-img-wrapper {
    position: relative;
    overflow: hidden;
}

.divisions-img-wrapper img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
    height: auto;
}

.divisions-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover .divisions-img-wrapper img {
    transform: scale(1.1);
}

.card:hover .divisions-img-wrapper::before {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Slide icon when parent button is hovered */
.btn:hover i {
    transition: transform 0.4s ease;
    display: inline-block;
}

/* For LTR (e.g. English) */
:dir(ltr) .btn:hover i {
    transform: translateX(5px);
}

/* For RTL (e.g. Arabic) */
:dir(rtl) .btn:hover i {
    transform: translateX(-5px);
}
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- CLIENTS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.clients-section {
    background-color: #e7e7e7;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.15) 0px 30px 60px -30px;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.client-img {
    filter: grayscale(80%);
    transition: filter 0.5s ease;
    will-change: transform;
}

.client-img:hover {
    filter: none;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PROJECTS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.project-card {
    min-height: 400px !important;
    border-radius: 20px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.project-card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-img-top {
    border-radius: 20px 20px 0 0 !important;
}

.card-hover-overlay {
    background-color: rgba(80, 167, 255, 0.44); /* darker and more elegant overlay */
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    z-index: 2;
}

.project-card:hover .card-hover-overlay {
    opacity: 1;
}

.view-btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 30px;
    transition: all 0.9s ease-in-out;
}

.view-btn:hover {
    background-color: #878787; /* Bootstrap primary */
    color: #ffffff !important;
}

#projectsCarousel .carousel-control-prev {
    left: -100px;
}

#projectsCarousel .carousel-control-next {
    right: -100px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- CONTACT --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.contact-form {
}

.contact-bg {
    background-color: #208CCC;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- TESTIMONIALS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.testimonial-description {
    font-size: 25px;
}

.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

[dir="ltr"] .bi-arrow-left::before {
    content: "\f138"; /* Bootstrap Icon: arrow-right */
}

[dir="ltr"] .bi-arrow-right::before {
    content: "\f12f"; /* Bootstrap Icon: arrow-left */
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- NEWSLETTER --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.newsletter-section {
    background-color: #ffffff;
}

/* NEWSLETTER FORM */
.form-control:focus,
.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: none !important;
    border-color: #dee2e6 !important;
}

.form-control,
.btn {
    border-radius: 10px !important;
}

.input-group .form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

.input-group .btn {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- TEAMS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.team-item {
    border-radius: 20px !important;
    border: 1px solid #dedede;
}

.team-img {
    border-radius: 20px 20px 0px 0px;
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .9s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0px 0px;
    cursor: pointer;
}

.team .team-item:hover .team-social {
    width: 100%;
}

.team .team-item .team-social .btn-socials {
    opacity: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(to right, #fdd8d8, #d5d5d5);
    color: #000;
    border: none !important;
}

.team .team-item:hover .team-social .btn-socials {
    opacity: 1;
}

#teamCarousel .carousel-control-prev {
    left: -100px;
    top: 200px;
}

#teamCarousel .carousel-control-next {
    right: -100px;
    top: 200px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- FOOTER --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.footer-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(51, 72, 96, 0.56); /* dark overlay */
    z-index: 1;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(to right, #60e0ea, #2676ec);
    color: #000;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animate the icon upward on hover */
.back-to-top i {
    display: inline-block;
    transition: transform 1s ease;
    font-size: 1.4rem;
    color: #f9f9f9;
}

.back-to-top:hover i {
    transform: translateY(-5px);
    color: #212121;
    transition: transform 1s ease;
}

.custom-bounce {
    animation-duration: 4s !important;
}

/* WhatsApp – bottom left with vibration */
.btn-whatsapp-pulse {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: vibrate 2s infinite;
}

.btn-whatsapp-pulse:hover {
    color: white;
    background-color: #1ebe5b;
    animation: none;
    transform: scale(1.1);
}

.py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}
/* Vibration animation */
@keyframes vibrate {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(5deg); }
    40%  { transform: rotate(-5deg); }
    60%  { transform: rotate(3deg); }
    80%  { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- MEDIA QUERY --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
@media (min-width: 320px) and (max-width: 768px) {
    .slider-titles {
        text-align: center;
        font-size: 2rem !important;
    }
    .carousel .carousel-indicators {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: 80px;
        flex-direction: column;
        margin: 0 !important;
    }

    .about-section {
        margin-top: 2rem;
    }

    .about-img::before,
    .about-img::after {
        display: none !important;
    }

    .about-img {
        width: 100%;
        height: 100%;
    }


    .features-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    .carousel-control-prev-icon {
        display: none !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }

    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 4rem;
    }

    .pt-6 {
        padding-top: 1rem;
    }

    #stickyNavbar {
        display: none !important;
    }

    .navbar {
        width: 100%;
        position: fixed !important;
        z-index: 999;
        box-shadow: rgba(0, 0, 0, 0.50) 0px 15px 25px;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (width: 1024px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .nav-link {
        font-size: 14px !important;
        text-wrap: nowrap;
    }

    .quote-request {
        font-size: 10px !important;
    }

    .pt-6 {
        padding-top: 2rem;
    }

    .features-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    .about-section {
        margin-top: 2rem !important;
    }
}

@media (min-width: 1024px) and (max-width: 1550px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .slider-titles {
        font-size: 3rem !important;
    }
}

@media (max-width: 1023px) {
    .breadcrumb-active p {
        font-size: 14px;
        margin-bottom: 2px;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- BREADCRUMB --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.breadcrumb-section.breadcrumb-parallax {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    color: #000;
    overflow: hidden;
}

.breadcrumb-section.breadcrumb-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    z-index: -10;
    inset: 0;
}

.breadcrumb-section.breadcrumb-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bs-primary);
    mix-blend-mode: multiply;
    opacity: 0.9;
    z-index: -1;
}

.breadcrumb {
    /*background-color: var(--bs-primary);*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-active {
    color: rgb(213, 213, 213) !important;
    box-shadow: 15px 9px 7px 5px rgba(164, 164, 164, 0.02), 15px 9px 7px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background-color: rgba(203, 203, 203, 0.15);
    padding-left: 20px;
    padding-right: 20px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- advertise PAGE --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* Main Card Container */
.advertise-card {
    transition: transform 0.9s ease, box-shadow 0.9s ease;
    box-shadow: 6px 10px 5px rgba(0, 0, 0, 0.17), 16px 10px 15px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    border-radius: 16px;
}

.advertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 6px 10px 5px rgba(0, 0, 0, 0.17), 6px 10px 5px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

/* Inner Wrapper */
.advertise-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Background Hover Fill */
.advertise-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(54, 151, 209, 0.7);
    z-index: 0;
    transition: all 0.9s ease;
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 16px;
}

.advertise-card:hover .advertise-overlay {
    transform: scaleY(1);
}

/* Image Section */
.advertise-image img {
    transition: transform 0.5s ease;
    object-fit: cover;
    height: auto;
}

.advertise-card:hover .advertise-image img {
    transform: scale(1.05);
}

/* Text & Button */
.advertise-text {
    position: relative;
    z-index: 1;
    transition: color 0.5s ease;
}

.advertise-card:hover .advertise-text h5,
.advertise-card:hover .advertise-text p {
    color: #fff;
}

.advertise-view-btn {
    transition: padding 0.9s ease, background-color 0.9s ease;
    display: inline-block;
    padding: 10px 12px;
    text-decoration: none;
    background: #fff;
    color: #ea4a4a;
    border-radius: 10px;
    font-size: 18px;
}

.advertise-card:hover .advertise-view-btn {
    padding-left: 2rem !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- contract --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* Main Card Container */
.contract-card {
    transition: transform 0.9s ease, box-shadow 0.9s ease;
    box-shadow: 6px 10px 5px rgba(0, 0, 0, 0.17), 16px 10px 15px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    border-radius: 16px;
}

.contract-card:hover {
    transform: translateY(-10px);
    box-shadow: 6px 10px 5px rgba(0, 0, 0, 0.17), 6px 10px 5px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

/* Inner Wrapper */
.contract-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Background Hover Fill */
.contract-overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(54, 151, 209, 0.7);
    z-index: 0;
    transition: all 0.9s ease;
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 16px;
}

.contract-card:hover .contract-overlay {
    transform: scaleY(1);
}

/* Image Section */
.contract-image img {
    transition: transform 0.5s ease;
    object-fit: cover;
    height: auto;
}

.contract-card:hover .contract-image img {
    transform: scale(1.05);
}

/* Text & Button */
.contract-text {
    position: relative;
    z-index: 1;
    transition: color 0.5s ease;
}

.contract-card:hover .contract-text h5,
.contract-card:hover .contract-text p {
    color: #fff;
}

.contract-view-btn {
    transition: padding 0.9s ease, background-color 0.9s ease;
    display: inline-block;
    padding: 10px 12px;
    text-decoration: none;
    background: #fff;
    color: #ea4a4a;
    border-radius: 10px;
    font-size: 18px !important;
}

.contract-card:hover .contract-view-btn {
    padding-left: 2rem !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- DOWNLOAD CENTER --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.download-table {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
    border-radius: 20px 20px 0 0 !important;
}

.custom-rounded {
    border-radius: 20px 20px 0 0 !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- NEWSLETTER --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#subscribeMessage {
    display: inline-block;
    transition: all 0.7s ease;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}
#subscribeMessage.text-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}
#subscribeMessage.text-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
