﻿/* ================= LOGO ================= */
.logo-blue {
    color: #0d6efd;
    font-weight: 700;
}

.logo-green {
    color: #28a745;
    font-weight: 700;
}

.small-text {
    font-size: 11px;
    color: #555;
    line-height: 1;
}

/* RESET */
body {
    margin: 0;
}

/* NAVBAR */
.custom-navbar {
    background: linear-gradient(90deg, #1FA463, #fff, #1FA463);
    position: fixed; /* 🔥 ALWAYS FIXED */
    top: 0;
    left: 0;
    width: 100%;
    /*background: #fff;*/
    padding: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

    /* SCROLLED STATE */
    .custom-navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

/* FIX BOOTSTRAP */
.navbar {
    overflow: visible !important;
}

/* NAV LINKS */
.navbar-nav {
    align-items: center;
}

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-link {
        color: #000;
        font-weight: 500;
        padding: 8px 14px;
        margin-left: 18px;
        text-decoration: none;
    }

        /* UNDERLINE */
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            left: 0;
            bottom: -5px;
            background: #28a745;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

/* DROPDOWN */
.custom-dropdown {
    position: relative;
}

    /* 🔥 HOVER BRIDGE FIX */
    .custom-dropdown::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 15px;
    }

/* MENU */
.custom-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -2px; /* 🔥 NO GAP */

    min-width: 260px;
    background: #1FA463;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.95);
    transform-origin: top;
    transition: all 0.2s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* SHOW */
.custom-dropdown:hover .custom-menu,
.custom-dropdown.active .custom-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

/* ITEMS */
.custom-menu .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
}

    .custom-menu .dropdown-item small {
        color: #dcdcdc;
    }

    .custom-menu .dropdown-item:hover {
        background: #153860;
        border-radius: 6px;
    }

/* ARROW */
.dropdown-arrow {
    position: absolute;
    top: -6px;
    left: 30px;
    width: 14px;
    height: 14px;
    background: #1FA463;
    transform: rotate(45deg);
}
/*navbar end*/



.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .video-banner video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay */
    .video-banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
    }

    /* Content Center */
    .video-banner .content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


/* CARD HOVER */
.card {
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-8px);
    }

/* ACHIEVEMENTS */
.achievement-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

/* FOOTER */
.footer-new {
    background: #1f4368;
    color: #cfd6df;
    padding: 70px 0 20px;
}

/* ================= FOOTER ================= */
.footer-section {
    background: #274b6d; /* keep your current tone */
    color: #d6e2ef;
    padding: 60px 0 20px;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= HEADINGS ================= */
.footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
}

    /* subtle underline */
    .footer-title::after {
        content: "";
        width: 30px;
        height: 2px;
        background: #00c897;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

/* ================= TEXT ================= */
.footer-section p {
    font-size: 13.5px;
    color: #c7d6e6;
    margin-bottom: 8px;
}

/* ================= LINKS ================= */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 13.5px;
    }

    /* LINK STYLE */
    .footer-links a {
        color: #c7d6e6;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #00c897;
            padding-left: 5px;
        }

    /* ================= ICONS ================= */
    .footer-links li i {
        color: #00c897;
        margin-right: 10px;
        font-size: 14px;
    }

/* CONTACT ICON ALIGN */
.footer-section p i {
    color: #00c897;
    margin-right: 8px;
}

/* ================= LOGO TEXT ================= */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.logo-blue {
    color: #00c897;
}

.logo-green {
    color: #7ee0c5;
}

/* ================= LINE ================= */
.footer-line {
    border-color: #00c897;
    margin: 40px 0 20px;
}

/* ================= COPYRIGHT ================= */
.footer-bottom {
    font-size: 13px;
    color: #aabed3;
}

/* CONTACT ITEM LAYOUT */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    /* ICON STYLE (PREMIUM) */
    .footer-contact-item i {
        background: rgba(0, 200, 151, 0.15);
        color: #00c897;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 15px;
        flex-shrink: 0;
        transition: 0.3s;
    }

    /* HOVER EFFECT */
    .footer-contact-item:hover i {
        background: #00c897;
        color: #fff;
    }

    /* LABEL */
    .footer-contact-item .label {
        font-size: 13px;
        color: #9bb3c9;
        display: block;
        margin-bottom: 2px;
    }

    /* TEXT */
    .footer-contact-item p {
        margin: 0;
        font-size: 14px;
        color: #ffffff;
    }

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #00c897;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999;
}

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
    }



/*About us*/
/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */
.about-section {
    position: relative;
}

    /* FORCE EQUAL HEIGHT */
    .about-section .row {
        display: flex;
    }

        .about-section .row > div {
            display: flex;
        }

/* ================= IMAGE ================= */
.about-image {
    height: auto;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ================= CONTENT ================= */
.about-content {
    background: linear-gradient(135deg, #0c7c84, #1fa4a8);
    color: #fff;
    /* SAME padding for all devices */
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

    /* CURVE EFFECT */
    .about-content::before {
        content: "";
        position: absolute;
        left: -120px;
        top: 50%;
        transform: translateY(-50%);
        width: 320px;
        height: 320px;
        background: #0c7c84;
        border-radius: 50%;
        z-index: 0;
    }

    /* SECOND LAYER */
    .about-content::after {
        content: "";
        position: absolute;
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
        width: 240px;
        height: 240px;
        background: rgba(0,0,0,0.08);
        border-radius: 50%;
        z-index: 0;
    }

/* CONTENT INNER */
.about-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* TITLE */
.about-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* LINE */
.about-line {
    width: 60px;
    height: 3px;
    background: #fff;
    margin-bottom: 25px;
}

/* TEXT */
.about-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #eaf6f7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    /* HIDE IMAGE */
    .about-image {
        display: none !important;
    }

    .about-content {
        padding: 40px 20px;
    }

        .about-content::before,
        .about-content::after {
            display: none;
        }

    .about-title {
        font-size: 28px;
    }
}
/*End about us*/

/*value added service*/
.services-pro {
    background: #f4f7f9;
}

/* CARD */
/* CARD */
.service-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center; /* center align */
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* ICON WRAPPER */
    .service-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
        background: rgba(12, 124, 132, 0.1); /* light teal */
        color: #0c7c84;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        margin-bottom: 20px;
        transition: all 0.35s ease;
    }

    /* TITLE */
    .service-box h5 {
        font-weight: 600;
        margin-bottom: 10px;
        text-align:left;
    }

    /* TEXT */
    .service-box p {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    /* HOVER CARD */
    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

        /* ICON HOVER EFFECT 🔥 */
        .service-box:hover i {
            background: #0c7c84;
            color: #fff;
            transform: scale(1.1) rotate(5deg);
        }

    /* LEFT BORDER ANIMATION */
    .service-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: #0c7c84;
        transition: 0.3s;
    }

    .service-box:hover::before {
        height: 100%;
    }

/* RESPONSIVE SPACING */
@media (max-width: 768px) {
    .service-box {
        padding: 25px 20px;
    }
}
.section-title {
    font-weight: 700;
    color: #0c7c84;
    display: inline-block;
    position: relative;
}

    /* UNDERLINE */
    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: #0c7c84;
        margin: 10px auto 0; /* THIS centers the line */
    }

/* CENTER ALIGN FIX */
.text-center .section-title {
    display: inline-block;
}


/*End*/