/* Custom Styles for SecurePres Security Guard Company */
/* Root Variables - SuperCop Logo Colors */
:root {
    --mainCol: #031530;
    --blackcol: #000000;
    /* Black background */
    --secondarycol: #1E40AF;
    /* Police uniform blue */
    --accentcol: #DC2626;
    /* Cape red */
    --goldcol: #d1b89f;
    /* Badge gold */
    --whitecol: #FFFFFF;
    /* White outlines and text */
    --darkgrey: #374151;
    /* Dark grey for text */
    --lightgrey: #F9FAFB;
    /* Light grey background */
    --silvercol: #9CA3AF;
    /* Belt buckle silver */
    --peachcol: #FED7AA;
    /* Skin tone */
    --primary-color: #1a2035;
    --secondary-color: #ffc107;
    --accent-color: #f8f9fa;
    --text-dark: #343a40;
    --text-light: #6c757d;
    --redColor: #D2121A;
    --supercol: #1E1D85;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.text-super {
    color: var(--redColor);
}

.text-supercol {
    color: var(--supercol);
}

.text-gold {
    color: var(--goldcol);
}

/* Logo Icon Styling */
.logo-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), #ff8f00);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Navigation Styles */
nav {
    z-index: 10;
}

.top-head {
    background: var(--mainCol);
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: underline 0.3s ease;
}

@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Hero Section */
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}

#videobcg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(12, 11, 10, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h4,
.page-back h4 {
    letter-spacing: 3px;
    /*font-family: 'Great Vibes';*/
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero h4 span,
.page-back h4 span {
    color: var(--colorlux1);
}

#hero p,
.page-back p {
    font-family: 'centaur';
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgb(255 255 255 / 79%);
    border-radius: 50px;
    transition: 0.3s;
    color: rgb(0 0 0 / 85%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book,
.page-back .btn-book {
    text-decoration: none;
    font-family: 'centaur';
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 0 10px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    color: #fff;
    border: 2px solid #ffb03b;
}

#hero .btn-menu:hover,
#hero .btn-book:hover,
.page-back .btn-book:hover {
    background: #ffb03b;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h4 {
        font-size: 28px;
    }

    #heroCarousel .carousel-control-next,
    #heroCarousel .carousel-control-prev {
        display: none;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 50%;
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/* Carousel Customization */
.carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--goldcol);
    border-color: var(--whitecol);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--supercol);
    border: 3px solid var(--whitecol);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accentcol);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Simple fade transition for hero and client carousels */
#heroCarousel.carousel-fade .carousel-item,
#clientCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end,
#clientCarousel.carousel-fade .carousel-item.active,
#clientCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#clientCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end,
#clientCarousel.carousel-fade .active.carousel-item-start,
#clientCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

#heroCarousel.carousel-fade .carousel-item-next,
#heroCarousel.carousel-fade .carousel-item-prev,
#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-start.active,
#heroCarousel.carousel-fade .carousel-item-end.active,
#clientCarousel.carousel-fade .carousel-item-next,
#clientCarousel.carousel-fade .carousel-item-prev,
#clientCarousel.carousel-fade .carousel-item.active,
#clientCarousel.carousel-fade .carousel-item-start.active,
#clientCarousel.carousel-fade .carousel-item-end.active {
    transform: none;
}

/* Keep slide transition for other carousels */
.carousel:not(.carousel-fade) .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel:not(.carousel-fade) .carousel-item.active {
    transform: translateX(0);
}

.carousel:not(.carousel-fade) .carousel-item-next:not(.carousel-item-start),
.carousel:not(.carousel-fade) .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(0);
}

.carousel:not(.carousel-fade) .carousel-item-start.active,
.carousel:not(.carousel-fade) .carousel-item-prev {
    transform: translateX(-100%);
}

.carousel:not(.carousel-fade) .carousel-item-end.active,
.carousel:not(.carousel-fade) .carousel-item-next {
    transform: translateX(100%);
}

/* Button Styles - SuperCop Theme */
.btn-warning {
    background: linear-gradient(135deg, var(--supercol), var(--redColor));
    border: 2px solid var(--whitecol);
    color: var(--whitecol);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #D97706, var(--redColor));
    color: var(--goldcol);
}

.btn-outline-warning {
    border: 1px solid var(--whitecol);
    background: var(--supercol);
    color: var(--whitecol);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
}

.btn-outline-warning:hover {
    border: 1px solid var(--whitecol);
    background: linear-gradient(135deg, var(--supercol), var(--redColor));
    color: var(--whitecol);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 29, 133, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Card Styles */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Cards Hover Animation */
.service-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--supercol), var(--supercol), var(--redColor));
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.service-card:hover .card-body {
    color: var(--whitecol) !important;
}

.service-card:hover .card-body h5 {
    color: var(--whitecol) !important;
}

.service-card:hover .card-body p {
    color: var(--whitecol) !important;
}

.service-card:hover .card-body a {
    color: var(--whitecol) !important;
}

.service-card:hover i {
    color: var(--whitecol) !important;
    transform: scale(1.2) rotate(5deg);
}

/* Employee Cards Hover Animation */
.employee-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.employee-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--supercol), var(--supercol), var(--redColor));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.employee-card:hover::after {
    opacity: 0.9;
}

.employee-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.employee-card:hover .card-body {
    position: relative;
    z-index: 2;
    color: var(--whitecol) !important;
}

.employee-card:hover .card-body h5 {
    color: var(--whitecol) !important;
}

.employee-card:hover .card-body p {
    color: var(--whitecol) !important;
}

/* News Cards Hover Animation */
.news-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--accentcol));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 0.1;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card:hover .card-img-top {
    transform: scale(1.1);
}

.news-card .card-img-top {
    transition: transform 0.4s ease;
}

/* Feature Cards Hover Animation */
.feature-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

.feature-card:hover i {
    color: var(--redColor) !important;
    transform: scale(1.3) rotate(10deg);
}

.feature-card i {
    transition: all 0.4s ease;
}

/* Section Spacing */
section {
    position: relative;
}

/* Statistics Counter */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

/* Gallery Hover Effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Employee Card Special Styling */
.employee-card-special {
    background: linear-gradient(135deg, var(--secondary-color), #ff8f00);
    position: relative;
    overflow: hidden;
}

.employee-card-special::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.employee-card-special:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Form Styles */
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--goldcol), #D97706);
    border: 3px solid var(--whitecol);
    border-radius: 50%;
    color: var(--supercol);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    font-weight: 700;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #D97706, var(--goldcol));
}

/**************************************************/
/* Footer Styles */
footer {
    background: var(--mainCol);
    /* background: linear-gradient(135deg, #1a1a1a, #2d2d2d); */
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--redColor) !important;
    transform: translateX(5px);
}

footer i {
    color: var(--redColor) !important;
}

.copyright p {
    font-size: 12px;
}

/* SuperCop Mobile Header Styles */
.mobile-header {
    display: none;
    background: var(--supercol);
    color: var(--whitecol);
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: 110px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.supercop-icon {
    width: 60px;
    height: 60px;
    background: var(--redColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    border: 3px solid var(--whitecol);
}

.supercop-icon::before {
    content: '👮';
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    z-index: 2;
}

.supercop-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--accentcol);
    border-radius: 50%;
    border: 3px solid var(--whitecol);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    z-index: 3;
}

/* Add cape effect */
.supercop-icon::before {
    position: relative;
}

.supercop-icon::before::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -15px;
    width: 30px;
    height: 40px;
    background: var(--accentcol);
    border-radius: 50% 0 0 50%;
    transform: rotate(-15deg);
    z-index: 1;
    border: 2px solid var(--whitecol);
}

.supercop-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.supercop-text .super {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accentcol);
    line-height: 0.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.supercop-text .cop {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondarycol);
    line-height: 0.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.supercop-text .tagline {
    font-size: 0.75rem;
    color: var(--goldcol);
    font-style: italic;
    margin-top: -3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.mobile-nav-toggle {
    background: var(--whitecol);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--supercol);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
}

.mobile-sidebar {
    position: fixed;
    top: 80px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 80px);
    background: var(--supercol);
    transition: left 0.3s ease;
    z-index: 1040;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-nav {
    padding: 2rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--goldcol);
    opacity: 0.8;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--whitecol);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-nav-link:hover {
    color: var(--whitecol);
    background: rgba(245, 158, 11, 0.15);
    padding-left: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accentcol);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-nav-dropdown {
    padding-left: 2rem;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-dropdown.show {
    display: block;
    max-height: 500px;
}

.mobile-nav-dropdown .mobile-nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    color: var(--whitecol);
    opacity: 0.8;
}

.mobile-nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-nav-item.active .mobile-nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--whitecol);
    font-size: 1.5rem;
}

/* Responsive Design */
@media(max-width: 768px) {
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar {
        display: none;
    }

    .hero-section {
        min-height: 60vh;
        margin-top: 80px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .logo-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand small {
        font-size: 0.7rem;
    }
}

@media(max-width: 576px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .card-body {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact Page Styles */
.banner-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/all-banner.png') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display-3 {
    font-size: 3rem;
}

.lead {
    font-size: 1rem;
}

.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(30, 64, 175, 0.3));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.display-5 {
    font-size: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--whitecol);
    font-weight: bold;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--whitecol);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-container {
    background: var(--whitecol);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.title-underline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-btn {
    background: linear-gradient(135deg, var(--supercol), var(--secondarycol), var(--redColor));
    border: 1px solid var(--whitecol);
    color: var(--whitecol);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 14, 139, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sub-btn:hover {
    color: var(--whitecol);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 14, 139, 0.6);
}

.yellow-line {
    width: 50px;
    height: 4px;
    background: var(--redColor);
    border-radius: 2px;
}

.gray-line {
    width: 100px;
    height: 4px;
    background: var(--darkgrey);
    border-radius: 2px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--whitecol);
}

.form-control:focus {
    border-color: var(--goldcol);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    outline: none;
}

.form-label {
    color: var(--whitecol);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Contact Details */
.contact-details {
    padding: 1rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--supercol), var(--redColor));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.contact-icon.emergency {
    background: var(--accentcol);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contact-icon i {
    color: var(--whitecol);
    font-size: 1.2rem;
}

.contact-text h6 {
    color: var(--darkgrey);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--supercol), var(--redColor));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.contact-card-icon i {
    color: var(--whitecol);
    font-size: 2rem;
}

.card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Accordion Styles */
.accordion-button {
    background: var(--whitecol);
    border: none;
    color: var(--darkgrey);
    font-size: 1rem;
    padding: 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    border: 1px solid var(--whitecol);
    background: var(--supercol);
    color: var(--whitecol);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(231, 228, 223, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--whitecol);
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media(max-width: 768px) {

    .contact-form-container,
    .contact-info-container {
        padding: 2rem 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .title-underline {
        justify-content: center;
    }
}

@media(max-width: 576px) {

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 1.5rem;
    }
}

/* About Us Page Styles */
.about-company {
    background: var(--whitecol);
}

.yellow-line-vertical {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--supercol);
    border-radius: 2px;
}

.statistic-item {
    transition: all 0.3s ease;
}

.statistic-item:hover {
    transform: translateY(-5px);
}

.statistic-item h3 {
    font-size: 3.5rem;
    line-height: 1;
}

/* Expert Employees Section */
.expert-employees {
    background: var(--lightgrey);
}

.employee-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--whitecol);
    border-radius: 15px;
}

.employee-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.employee-image-container img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    transition: all 0.4s ease;
}

.social-icons-overlay {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--whitecol);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--redColor);
    /* color: var(--supercol); */
    transform: scale(1.1);
}

.employee-card:hover {
    background: var(--goldcol);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.4);
}

.employee-card:hover .employee-image-container img {
    filter: brightness(0.7) sepia(1) hue-rotate(45deg) saturate(1.5);
}

.employee-card:hover .social-icons-overlay {
    opacity: 1;
}

.employee-card:hover .card-body h5,
.employee-card:hover .card-body p {
    color: var(--whitecol) !important;
}

/* Client Review Section */
.client-review {
    position: relative;
}

.review-bg {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.3);
}

.review-background {
    position: relative;
    overflow: hidden;
}

.review-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(30, 64, 175, 0.3));
    z-index: 1;
}

.review-overlay {
    z-index: 2;
}

.review-nav {
    width: 50px;
    height: 50px;
    background: var(--goldcol);
    border: 3px solid var(--whitecol);
    border-radius: 50%;
    color: var(--supercol);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.review-nav:hover {
    background: var(--accentcol);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.review-nav-left {
    left: 30px;
}

.review-nav-right {
    right: 30px;
}

/* Statistics Animation */
.statistic-item h3 {
    transition: all 0.3s ease;
}

.statistic-item:hover h3 {
    color: var(--blackcol);
    transform: scale(1.1);
}

/* About Image Container */
.about-image-container {
    position: relative;
}

.about-image-container img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .statistic-item h3 {
        font-size: 2.5rem;
    }

    .employee-image-container {
        height: 400px;
    }

    .social-icons-overlay {
        left: 10px;
        gap: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review-nav-left {
        left: 15px;
    }

    .review-nav-right {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .review-bg {
        height: 600px;
    }

    .statistic-item h3 {
        font-size: 2rem;
    }

    .employee-image-container {
        height: 430px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }
}

/* Statistics Section Styles */
.statistics-section {
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.statistics-background {
    z-index: 1;
}

.statistics-overlay {
    z-index: 2;
}

.statistics-content {
    z-index: 3;
    position: relative;
}

.stat-item {
    transition: all 0.4s ease;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-item:hover .stat-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--supercol) !important;
    text-shadow: 0 0 20px var(--redColor);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px var(--redColor);
}

.stat-item:hover .stat-label {
    color: #e6e4e9 !important;
    text-shadow: 0 0 10px var(--redColor);
}

.stat-item:hover .stat-underline {
    background: var(--supercol) !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    transform: scaleX(1.2);
}

.stat-icon {
    transition: all 0.4s ease;
}

.stat-icon i {
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stat-number {
    transition: all 0.4s ease;
    font-family: 'Arial Black', Arial, sans-serif;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.stat-label {
    transition: all 0.4s ease;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.stat-underline {
    transition: all 0.4s ease;
    border-radius: 1px;
}

/* Counter Animation */
.stat-number.animating {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Statistics Section Responsive */
@media (max-width: 768px) {
    .statistics-section {
        min-height: 400px;
    }

    .stat-item {
        padding: 1.5rem 0.5rem;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-icon i {
        font-size: 2.5rem !important;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        min-height: 350px;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-icon i {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Client Section Styles */
.client-showcase {
    background: var(--whitecol);
    position: relative;
}

.client-card {
    background: var(--whitecol);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 29, 133, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 29, 133, 0.15);
    border-color: var(--supercol);
}

.client-logo {
    aspect-ratio: 21 / 20;
    width: 180px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.client-logo img {
    object-fit: cover;
    transition: all 0.4s ease;
}

.client-card:hover .client-logo {
    /* background: linear-gradient(135deg, var(--supercol), var(--redColor)); */
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 29, 133, 0.3);
}

.client-card:hover .client-logo img {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

.client-info {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.client-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--darkgrey);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    transition: all 0.4s ease;
}

.client-card:hover .client-info h5 {
    color: var(--whitecol);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client-card:hover .client-info p {
    color: var(--whitecol);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Owl Carousel Client Slider Styles */
.client-carousel {
    position: relative;
}

.client-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.client-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--goldcol) !important;
    border: 3px solid var(--whitecol) !important;
    border-radius: 50% !important;
    color: var(--supercol) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-carousel .owl-nav button:hover {
    background: var(--accentcol) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.client-carousel .owl-nav button.owl-prev,
.client-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.client-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.client-carousel .owl-nav button.owl-next {
    right: -60px;
}

.client-carousel .item {
    padding: 0 10px;
}

@media (max-width: 1200px) {
    .client-carousel .owl-nav button.owl-prev {
        left: -40px;
    }

    .client-carousel .owl-nav button.owl-next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .client-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .client-carousel .owl-nav button.owl-prev {
        left: -30px;
    }

    .client-carousel .owl-nav button.owl-next {
        right: -30px;
    }
}

@media (max-width: 576px) {
    .client-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .client-carousel .owl-nav button.owl-prev {
        left: -20px;
    }

    .client-carousel .owl-nav button.owl-next {
        right: -20px;
    }
}

/* Brochure Section Styles */
.brochure-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.brochure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(30, 29, 133, 0.05) 50%, transparent 51%);
    z-index: 1;
}

.brochure-section .container {
    position: relative;
    z-index: 2;
}

.brochure-icon {
    transition: all 0.4s ease;
}

.brochure-icon:hover {
    transform: scale(1.1) rotate(5deg);
    color: var(--redColor) !important;
}

/* Testimonial Section Styles */
.client-testimonials {
    background: var(--whitecol);
    position: relative;
}

.testimonial-card {
    background: var(--whitecol);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--supercol), var(--redColor));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 29, 133, 0.15);
    border-color: var(--supercol);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--supercol);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author h6 {
    color: var(--darkgrey);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive Design for Client Section */
@media (max-width: 768px) {
    .client-card {
        padding: 1.5rem 1rem;
    }

    .client-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }


    .client-info h5 {
        font-size: 1.1rem;
    }

    .client-info p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .brochure-section .display-5 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .client-card {
        padding: 1rem;
    }

    .client-info h5 {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8f00;
}

/* Job Application Form Styles */
.job-application-form {
    background: var(--whitecol);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--darkgrey);
    margin-bottom: 2rem;
}

.job-form-input {
    background-color: #F3F4F6 !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.job-form-input::placeholder {
    color: #9CA3AF;
}

.job-form-input:focus {
    background-color: var(--whitecol) !important;
    border-color: #1E40AF !important;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

.job-form-input:not(:placeholder-shown) {
    background-color: var(--whitecol) !important;
}

.form-select.job-form-input {
    background-color: #F3F4F6 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-select.job-form-input:focus {
    background-color: var(--whitecol) !important;
    border-color: #1E40AF !important;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

textarea.job-form-input {
    resize: vertical;
    min-height: 80px;
}

.form-label.required::after {
    content: "*";
    color: #DC2626;
    margin-left: 4px;
}

.form-label {
    font-weight: 500;
    color: var(--whitecol);
    margin-bottom: 8px;
    font-size: 1rem;
}

#jobApplicationForm .form-label {
    color: var(--blackcol);
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper .date-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
}

.date-input-wrapper input[type="date"] {
    padding-right: 45px;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.date-input-wrapper input[type="date"]:invalid::-webkit-datetime-edit {
    color: #9CA3AF;
}

.date-input-wrapper input[type="date"]:valid::-webkit-datetime-edit {
    color: var(--text-dark);
}

.file-upload-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-input {
    display: none;
}

.file-label {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block;
}

.file-label:hover {
    background-color: #E5E7EB;
}

.file-name {
    color: #6B7280;
    font-size: 1rem;
    display: inline-block;
}

.job-submit-btn {
    background-color: #1E40AF;
    border: none;
    border-radius: 8px;
    padding: 14px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--whitecol);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.job-submit-btn:hover {
    background-color: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    color: var(--whitecol);
}

.job-submit-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-application-form {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
    }

    .file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-label {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 2200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2100px;
    }

    .employee-image-container {
        height: 500px;
    }

    .gallery-item img {
        height: 450px !important;
    }
}