/********** Template CSS **********/
:root {
    --primary: #d49c01;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

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

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




/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.692);
}

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

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

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/abouts-head.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}



.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.header-logo {
    width: 100%;
    height: auto;
    max-width: 100px;
    margin: 5px 0px;
}

.header-logo2 {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: 5px 15px;
}

/* Multi-level dropdown styles */

/* Mega Dropdown Styles */
.mega-dropdown {
    position: static;
}

.mega-dropdown-menu {
    max-width: 900px;
    width: 100%;
    left: 338px;
    padding: 30px 20px;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-dropdown-menu .container {
    max-width: 1200px;
}

/* Dropdown Header Styles */
.dropdown-header {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    padding: 12px 20px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    border-left: 4px solid #01b6b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-header i {
    color: #01b6b8;
}

/* Dropdown Item Styles */
.mega-dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #495057;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 2px 0;
    display: flex;
    align-items: center;
}

.mega-dropdown-menu .dropdown-item i {
    font-size: 10px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.mega-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #01b6b8 0%, #0056b3 100%);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.mega-dropdown-menu .dropdown-item:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

/* Column Divider */
.mega-dropdown-menu .col-lg-6:first-child {
    border-right: 1px solid #e9ecef;
}

/* Hover effect for parent dropdown */
.mega-dropdown:hover>.dropdown-menu {
    display: block;
}

/* Scrollbar for mobile */
.mega-dropdown-menu {
    max-height: 80vh;
    overflow-y: auto;
}

.mega-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-dropdown-menu::-webkit-scrollbar-thumb {
    background: #01b6b8;
    border-radius: 10px;
}

.mega-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .mega-dropdown {
        position: relative;
    }

    .mega-dropdown-menu {
        position: static;
        width: 100%;
        padding: 20px 15px;
        box-shadow: none;
        border: 1px solid #e9ecef;
        margin: 10px 0;
    }

    .mega-dropdown-menu .col-lg-6:first-child {
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .dropdown-header {
        font-size: 15px;
        padding: 10px 15px;
    }

    .mega-dropdown-menu .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .mega-dropdown-menu {
        padding: 15px 10px;
    }

    .dropdown-header {
        font-size: 14px;
        padding: 8px 12px;
    }

    .mega-dropdown-menu .dropdown-item {
        padding: 7px 12px;
        font-size: 12px;
    }
}

/* Fix for Bootstrap collapse on mobile */
@media (max-width: 991.98px) {
    .navbar-collapse .dropdown-menu {
        position: static;
        float: none;
    }
}

.head-images {
    height: 700px;
}

.head-icon {
    width: 80px;
    height: 80px;
}

.why-icon {
    width: 60px;
    height: 60px;
}

.serv-icon {
    width: 80px;
    height: 80px;
}

.footer-logo {
    width: 150px;
    height: auto;
}


/* whatsapp style */


/* WhatsApp Floating Button Container */
.whatsapp-float-container {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999;
}

/* Main WhatsApp Button */
.whatsapp-button {
    position: relative;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
            0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* WhatsApp Icon SVG */
.whatsapp-icon {
    width: 38px;
    height: 38px;
    fill: white;
    animation: shake 2.5s ease infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

.whatsapp-button:hover .whatsapp-icon {
    animation: none;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: 3px solid white;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: white;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    left: 90px;
}

.tooltip-text {
    font-weight: 600;
    color: #25d366;
    margin-bottom: 3px;
}

.tooltip-subtext {
    font-size: 12px;
    color: #666;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Chat Popup (Optional) */
.chat-popup {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chat-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 20px;
    border-radius: 15px 15px 0 0;
    color: white;
}

.chat-header h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.chat-header p {
    font-size: 0.85em;
    opacity: 0.9;
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: #f0f0f0;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #333;
    position: relative;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.chat-button:active {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float-container {
        left: 20px;
        bottom: 20px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .chat-popup {
        width: calc(100vw - 40px);
        max-width: 320px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* mission and vision */


.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mv-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.4s ease;
}

.mv-card.mission::before {
    background: linear-gradient(135deg, #d49b00, #ffb800);
}

.mv-card.vision::before {
    background: linear-gradient(135deg, #00b6b7, #00d4d6);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    transition: all 0.4s ease;
}

.mission .mv-icon {
    background: linear-gradient(135deg, #d49b00, #ffb800);
    box-shadow: 0 10px 30px rgba(212, 155, 0, 0.3);
}

.vision .mv-icon {
    background: linear-gradient(135deg, #00b6b7, #00d4d6);
    box-shadow: 0 10px 30px rgba(0, 182, 183, 0.3);
}

.mv-card:hover .mv-icon {
    transform: rotateY(360deg) scale(1.1);
}

.mv-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.mission h3 {
    color: #d49b00;
}

.vision h3 {
    color: #00b6b7;
}

.mv-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mv-list {
    list-style: none;
    margin-top: 25px;
}

.mv-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.mv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.mission .mv-list li::before {
    background: linear-gradient(135deg, #d49b00, #ffb800);
}

.vision .mv-list li::before {
    background: linear-gradient(135deg, #00b6b7, #00d4d6);
}

/* Decorative elements */
.mv-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    opacity: 0.05;
    transition: all 0.6s ease;
}

.mission::after {
    background: #d49b00;
}

.vision::after {
    background: #00b6b7;
}

.mv-card:hover::after {
    transform: scale(1.5);
    opacity: 0.08;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }



    .mv-card {
        padding: 40px 30px;
    }

    .mv-card h3 {
        font-size: 26px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .mission-vision-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .mv-card {
        padding: 30px 20px;
    }



    .mv-card h3 {
        font-size: 24px;
    }
}

/* gallery page style */

.gallery-section {
    padding: 80px 0;
    background: #fff;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 155, 0, 0.8), rgba(0, 182, 183, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    z-index: 2;
    transition: transform 0.4s ease;
}

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

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 10000;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }



    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 24px;
        top: 15px;
        right: 15px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-section {
        padding: 60px 0;
    }
}

/* career page */

.career-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.career-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Left Side - Image & Content */
.career-left {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 155, 0, 0.95), rgba(0, 182, 183, 0.95)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800');
    background-size: cover;
    background-position: center;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.career-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, .03) 35px,
            rgba(255, 255, 255, .03) 70px);
}

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

.career-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.career-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.career-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.career-features {
    margin-top: 30px;
    list-style: none;
}

.career-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
}

.career-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Right Side - Form */
.career-right {
    padding: 60px 50px;
    background: #fff;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #7f8c8d;
    font-size: 16px;
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b6b7;
    box-shadow: 0 0 0 4px rgba(0, 182, 183, 0.1);
}

.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: #00b6b7;
    background: rgba(0, 182, 183, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-icon {
    font-size: 40px;
    color: #00b6b7;
}

.file-upload-text {
    font-size: 15px;
    color: #555;
}

.file-upload-text strong {
    color: #00b6b7;
}

.file-info {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.file-name {
    margin-top: 10px;
    padding: 10px;
    background: #e8f5f5;
    border-radius: 5px;
    color: #00b6b7;
    font-size: 14px;
    display: none;
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #d49b00, #00b6b7);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 182, 183, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 968px) {
    .career-wrapper {
        grid-template-columns: 1fr;
    }

    .career-left {
        padding: 50px 40px;
        min-height: 400px;
    }

    .career-left h2 {
        font-size: 36px;
    }

    .career-right {
        padding: 50px 40px;
    }
}

@media (max-width: 640px) {
    .career-section {
        padding: 40px 0;
    }

    .career-left,
    .career-right {
        padding: 40px 30px;
    }

    .career-left h2 {
        font-size: 28px;
    }

    .form-header h3 {
        font-size: 26px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 16px;
    }

    .file-upload-wrapper {
        padding: 25px 15px;
    }
}

/* Success Message */
.success-message {
    display: none;
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* presence page */

.presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}


.stats-container {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d49b00, #00b6b7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #d49b00, #00b6b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.locations-title {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.location-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 155, 0, 0.1), rgba(0, 182, 183, 0.1));
    transition: left 0.4s ease;
}

.location-card:hover::before {
    left: 0;
}

.location-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.location-icon {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.2) rotate(5deg);
}

.location-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.location-state {
    font-size: 14px;
    color: #7f8c8d;
    position: relative;
    z-index: 2;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d49b00, #00b6b7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-badge {
    opacity: 1;
}

/* Special styling for featured locations */
.location-card.featured {
    background: linear-gradient(135deg, #fff9e6, #e6f7f7);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.location-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d49b00, #00b6b7);
    border-radius: 15px;
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {

    .stats-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {


    .stats-container {
        padding: 40px 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .locations-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .stats-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .presence-section {
        padding: 60px 0;
    }



    .location-card {
        padding: 30px 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card {
    animation: fadeInUp 0.6s ease backwards;
}

.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.15s;
}

.location-card:nth-child(3) {
    animation-delay: 0.2s;
}

.location-card:nth-child(4) {
    animation-delay: 0.25s;
}

.location-card:nth-child(5) {
    animation-delay: 0.3s;
}

.location-card:nth-child(6) {
    animation-delay: 0.35s;
}

.location-card:nth-child(7) {
    animation-delay: 0.4s;
}

.location-card:nth-child(8) {
    animation-delay: 0.45s;
}

@media(max-width:768px) {
    .header-logo2 {
        display: none;
    }

    /* .navbar-toggler {
        position: relative;
        left: 25px;
    } */
}