* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* loader */

/* Loader Wrapper */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner Animation */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top-color: #15367D;
    /* your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hide loader when done */
#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* ---------- Top Header ---------- */
.top-header {
    background-color: #15367D;
    color: #fff;
    padding: 8px 0;
    font-size: 16px;
}

.top-header .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* allow wrapping */
}

.social-icons a {
    color: #fff;
}

/* Mobile version */
@media (max-width: 765px) {
    .top-header {
        font-size: 12px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .top-header .contact-info {
        flex-direction: column;
        /* stack in 2 lines */
        /* left align */
        gap: 8px;
        /* spacing between lines */
    }

    .social-icons {
        display: none;
        /* optional spacing for clarity */
    }

}


/* ---------- Navbar ---------- */
.navbar_wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 12px 0;
}

.navbar-brand img {
    height: 80px;
    width: 100%;
    margin-left: 30px;
}

@media (max-width:765px) {
    .navbar-brand img {
        height: 60px;
        width: 100%;
        margin-left: 0;
    }
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    background: #fff;
}

.navbar-nav {
    margin: auto;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
    padding: 8px 16px;
    transition: color 0.3s ease;
    font-size: 18px;
    margin: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007b5e !important;
    font-size: 19px;
    /* green accent */
}

.offcanvas-header img {
    max-height: 70px;
}

.Consult_btn {
    background-color: #15367D;
    padding: 10px 35px;
    margin-right: 20px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.Consult_btn:hover {
    background: #00B86A;
}

@media (max-width:765px) {
    .Consult_btn {
        background-color: #15367D;
        padding: 10px;
        width: 50%;
        margin-right: 20px;
        margin-top: 10px;
        transition: 0.3s ease-in-out;
    }
}

.Consult_btn a {
    color: #fff;
}

@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        box-shadow: none;
    }

    .dropdown-item {
        padding-left: 25px;
    }
}


/* navbar-exit */

/* banner */
.banner_wrapper {
    background: url('./images/about/banner.webp') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    text-align: center;
    color: #fff;
    height: 400px;
}

.banner_wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}

@media (max-width:500px) {
    .banner_wrapper {
        height: 300px;
    }
}

.banner_content {
    position: relative;
    z-index: 2;
    margin-top: 10%;
}

.banner_content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.banner_content .breadcrumb {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_content .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.banner_content .breadcrumb a:hover {
    color: #ffb400;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .banner_wrapper {
        padding: 60px 0;
    }

    .banner_content h2 {
        font-size: 30px;
    }

    .banner_content .breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner_wrapper {
        padding: 50px 0;
    }

    .banner_content h2 {
        font-size: 24px;
    }

    .banner_content .breadcrumb {
        font-size: 14px;
    }
}

/* banner exit */


/* carousal */
.carousel-item {
    position: relative;
    margin-top: -25px;
}

.carousel-item img {
    height: 700px;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 6.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-caption h5 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 180px;
    background: rgba(0, 0, 0, 0.45);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width:500px) {
    .carousel-caption h5 {
        font-size: 20px;
        margin-bottom: 88px;
    }

    .carousel-item img {
        height: 400px;

    }
}

@media (max-width:675px) {
    .slide_carousal .carousel-item img {
        height: 350px !important;
    }

    .slide_carousal h3 {
        font-size: 25px !important;
        font-weight: 600;
        color: #000;
        text-align: center;
        padding: 10px !important;
        margin-bottom: 20px;
    }

    .slide_carousal {
        margin: 0 0 10px 0;
    }

}

.slide_carousal .carousel-item img {
    height: 600px;
}

.slide_carousal {
    margin: 50px 0;
}

.slide_carousal h3 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding: 10px 0 34px 0;
}

/* carousal-exit */

/* servicse */
.Services_wrapper {
    background: #F4F4F4;
    padding: 50px 0;
}

.Services_wrapper h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    color: #00407D;
    padding: bottom 20px;
}

.Services_wrapper h3 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.service_cards_wrapper {
    background: #f9f9f9;
}

.section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: #15367D;
    margin-top: 8px;
    border-radius: 2px;
}

/* Service Card */
.service_card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
}

.service_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.service_card .icon {
    width: 60px;
    height: 60px;
    background: #15367D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Headings */
.service_card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service_card h6 {
    font-size: 17px;
    font-weight: 700;
    color: #15367D;
    margin-top: 15px;
    margin-bottom: 8px;
}

/* Paragraph */
.service_card p {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Lists */
.service_card ul {
    padding-left: 18px;
    margin: 0 0 10px 0;
}

.service_card ul li {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.6;
    list-style: disc;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title h3 {
        font-size: 1.8rem;
    }

    .service_card {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .service_card {
        text-align: center;
    }

    .service_card .icon {
        margin: 0 auto 12px auto;
    }

    .service_card ul {
        text-align: left;
    }

    .service_card h4 {
        font-size: 1.1rem;
    }
}

/* package */

/* Package-deatils_wrapper */
.Package-deatils_wrapper {
    padding-bottom: 50px;
    background-color: #F4F4F4;
    margin-bottom: 50px;
}

.Package-deatils_wrapper h3 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding: 40px 0;
    position: relative;
}

.Package-deatils_wrapper h3::after {
    content: "";
    position: absolute;
    bottom: 26%;
    left: 33%;
    transform: translateX(50%);
    width: 242px;
    height: 4px;
    background-color: #0989BD;
    border-radius: 2px;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    padding: 10px;
    height: 450px;
}

.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    /* Adjust shadow as needed */
    transition: box-shadow 0.3s ease;
    /* Smooth shadow transition */
}

.package-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: 0.5s ease;
    transition: box-shadow 0.3s ease;
}

.pckg-text p {
    text-align: center;
    color: #000;
}

@media (max-width:500px) {
    .package-title {
        text-align: left !important;
        font-size: 15px !important;
        font-weight: 700;
        margin-left: 15px;
    }

    .Package-deatils_wrapper h3 {
        font-size: 35px;
    }

    .Package-deatils_wrapper h3::after {
        content: "";
        position: absolute;
        bottom: 26%;
        left: -6%;
        transform: translateX(50%);
        width: 242px;
        height: 4px;
        background-color: #0989BD;
        border-radius: 2px;
    }

    .package-card {
        display: flex;
        height: auto;
    }

    .pckg-text p {
        margin-left: 15px;
        margin-top: -15px;
        text-align: left;
    }

    .pckg-img img {
        height: 100px;
        width: 120px;
        margin: auto;
    }

}

.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
}

.package-card:hover {
    color: #000;
}


.inner_card {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* space between cards */
}

.inner_card a {
    flex: 1 1 calc(50% - 10px);
    /* 2 cards per row */
    box-sizing: border-box;
    text-decoration: none;
    /* remove link underline */
}

.inner_card_box {
    background: #fff;
    /* optional for better look */
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}



/* Desktop view - more cards in a row */
@media (min-width: 768px) {
    .inner_card a {
        flex: 1 1 calc(20% - 10px);
        /* 5 cards per row, adjust as needed */
    }
}


/* Package-deatils_wrapper-end */




/* image_ logo slider */
.image_logo_carousel {
    padding: 40px 0;
    background: #f9f9f9;
}

.carousel-container {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    /* slow scrolling */
}

.carousel-inner {
    margin: 0;
}

.carousel-card {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-bottom: 1px solid #000;
}

.carousel-card:hover {

    border-bottom: 2px solid #15367D !important;
}

.carousel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-card h4 {
    margin-top: 20px;
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30%);
    }

    /* half of total width for infinite loop */
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-card {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        width: 100%;
        margin-bottom: 15px !important;
    }

    .Services_wrapper h3 {
        font-size: 25px;
    }

    .carousel-card {
        width: 100%;
    }

    .carousel-card h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .carousel-card img {
        height: 250px;
    }

    .Services_wrapper {
        background: #F4F4F4;
        padding: 50px 0;
    }
}


.services_page_wrapper {
    background: #F4F4F4;
    position: relative;
}

.section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: #06153f;
    margin-top: 8px;
    border-radius: 2px;
}

/* Service List */
.services_list ul {
    margin: 0;
    padding: 0;
}

.services_list li {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.services_list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

@media (max-width:768px) {
    .services_list li {
        display: flex;
        align-items: flex-start;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 25px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
}

/* Icon */
.services_list .icon {
    background: #070a60;
    color: #fff;
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* carrer */
/* Careers_wrapper */
.Careers_wrapper {
    padding: 50px 0;
}

.Careers_wrapper h4 {
    color: #000;
    font-size: 32px;
}

.Careers_wrapper p {
    font-size: 14px;
    color: #000000;
}

.careers_inner h5 {
    color: #000;
    margin-bottom: 10px;
}

.careers_inner p {
    color: #000000;
}

@media (max-width:500px) {
    .careers_inner h5 {
        text-align: center;
    }

    .careers_inner p {
        color: #000000;
        padding: 0 20px;
    }

    .Careers_wrapper h4 {
        color: #000;
        font-size: 30px;
        text-align: center;
    }

    .Careers_wrapper p {
        font-size: 14px;
        color: #000000;
        padding: 0 20px;
    }
}

.careers_inner {
    padding-bottom: 50px;
}

.careers_btn button {
    width: 100%;
    max-width: 400px;
}

.careers_btn {
    text-align: center;
}

.career_btn {
    background-color: #00B86A;
}

.career_btn:hover {
    border: 2px solid #FF2D55;
}

.career_btn:hover {
    color: #000 !important;
}

/* Form */
.form-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    background: #f6f7fa;
    border-radius: 6px;
    outline: none;
}

textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: none;
}

.submit-btn {
    grid-column: span 2;
    text-align: center;
}

.submit-btn .button-btn {
    background: linear-gradient(90deg, #0047ab, #002b80);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.submit-btn .button-btn:hover {
    background-color: #00B86A !important;
}


button {
    background: linear-gradient(90deg, #0047ab, #002b80);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    form {
        grid-template-columns: 1fr;
    }

    textarea,
    .submit-btn {
        grid-column: span 1;
    }
}

/* Careers_wrapper */

/* gallery_section */

.Gallery_section {
    padding: 60px 0;
    background: #F4F4F4;
}

.Gallery_section .gallery_title {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    position: relative;
}

.Gallery_section .gallery_title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #38322f;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 5px;
}

.Gallery_section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.Gallery_section .col {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.Gallery_section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    border-radius: 10px;
    border: 2px solid #000;
}

/* Hover effect */
.Gallery_section .col:hover img {
    transform: scale(1.08);
    filter: brightness(90%);
}

/* Shadow on hover */
.Gallery_section .col:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .Gallery_section .gallery_title {
        font-size: 28px;
    }

    .Gallery_section .row {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .Gallery_section {
        padding: 40px 0;
    }

    .Gallery_section .row {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }

    .Gallery_section .gallery_title {
        font-size: 24px;
    }
}

.gallery_wrapper {
    padding: 50px 0;
    background: #f8f9fa;
}

.gallery_wrapper h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.faculty img {
    width: 100%;
    padding: 10px;
}

.Warehouse_img {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.Warehouse_img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.Warehouse_img img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* Responsive Tablets */
@media (max-width: 992px) {
    .Warehouse_img {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .Warehouse_img {
        grid-template-columns: repeat(2, 1fr);
    }

    .Warehouse_img img {
        height: 140px;
    }

    .gallery_wrapper h3 {
        font-weight: 700;
        font-size: 25px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .Warehouse_img {
        grid-template-columns: repeat(1, 1fr);
    }

    .Warehouse_img img {
        height: 200px;
    }
}



/* gallery section exit */

/* Content */
.services_list .content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.services_list .content p {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title h3 {
        font-size: 1.8rem;
    }

    .services_list li {
        padding: 18px 20px;
    }
}

@media (max-width: 767px) {
    .services_list li {
        flex-direction: column;
        text-align: center;
    }

    .services_list .icon {
        margin: 0 auto 10px auto;
    }

    .services_list .content h5 {
        font-size: 1rem;
    }

    .services_list .content p {
        font-size: 0.9rem;
    }
}

/* image logo slider exit */
/* services-exit */
/* about_wrapper */
.about_wrapper {
    background: #F4F4F4;
    padding-bottom: 80px;
}

.about_btn a {
    font-size: 18px;
    color: #fff
}

.about_btn {
    background-color: #0047ab;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin: auto;
}

@media (max-width:768px) {
    .about_btn {
        width: 100%;
    }
}

/* ----------- Section Wrapper ----------- */
.experience-image {
    position: relative;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------- Orange Background Accent ----------- */
.experience-image .orange-bg {
    background-color: #00B86A;
    position: absolute;
    top: -50px;
    left: 40px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Hover effect on background */
.experience-image:hover .orange-bg {
    background-color: #15367D;
    /* Deep blue on hover */
    transform: rotate(2deg) scale(1.05);
}

.experience-section {
    margin-right: 50px;
}

/* ----------- Image Wrapper ----------- */
.image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover: pop-up effect */
.experience-image:hover .image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ----------- Image Styling ----------- */
.image-wrapper img {
    width: 100%;
    height: 350px;
    position: relative;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    transition: transform 0.6s ease;
}

/* Slight zoom on hover */
.experience-image:hover img {
    transform: scale(1.1);
}

/* ----------- Animation on Load ----------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.experience-image {
    animation: fadeInUp 1s ease-in-out;
}

/* ----------- Responsive Design ----------- */
@media (max-width: 992px) {
    .experience-image .orange-bg {
        top: -20px;
        left: 20px;
    }

    .experience-image .orange-bg {
        top: -54px;
        left: 58px;
    }
}

@media (max-width: 576px) {
    .experience-image {
        width: 95%;
    }

    .experience-image .orange-bg {
        position: absolute;
        left: 58px;
        margin-top: -39px;
        margin-left: 50px;
    }

    .image-wrapper img {
        height: 300px;
        width: 100%;
    }
}


/* ---------- Right Side Text Section ---------- */
.about_right {
    padding-left: 50px;
}

.about_right h6 {
    font-size: 18px;
    font-weight: 700;
    color: #00B86A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about_right h3 {
    font-size: 20px;
    font-weight: 700;
    color: #15367D;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about_right p {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    text-align: justify;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    .about_wrapper {
        padding: 60px 0;
    }

    .about_right {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .experience-image .orange-bg {
        top: -20px;
        left: 0;
    }

    .about_right h3 {
        font-size: 22px;
    }
}

@media (max-width:765px) {
    .about_right h3 {
        font-size: 16px;
        font-weight: 700;
        color: #15367D;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

/* about-page */

.main_about {
    background: #f9f9f9;
    position: relative;
}

.main_about .section-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main_about .underline {
    width: 80px;
    height: 4px;
    background: #15367D;
    margin-top: 8px;
    border-radius: 2px;
}

/* Image Styling */
.about-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.05);
    filter: brightness(90%);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 127, 39, 0.15);
    border-radius: 15px;
    pointer-events: none;
}

/* Text Styling */
.about-text p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-text strong {
    color: #15367D;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main_about .section-title h3 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .about-img-wrap {
        text-align: center;
    }

    .about-img-wrap img {
        width: 90%;
    }

    .main_about .section-title h3 {
        font-size: 1.5rem;
    }

    .about-text {
        text-align: center;
    }
}


.who_we_are_wrapper {
    background: #fff7f0;
    position: relative;
}

.who_text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.who_text h6 {
    font-size: 1.1rem;
    color: #15367D;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.who_text p {
    color: #000;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.who_text strong {
    color: #15367D;
}

/* Image Styling */
.who_img_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.who_img_wrap img {
    width: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-radius: 15px;
}

.who_img_wrap:hover img {
    transform: scale(1.05);
    filter: brightness(90%);
}

.who_overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 127, 39, 0.1);
    border-radius: 15px;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .who_text h3 {
        font-size: 1.8rem;
    }

    .who_text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .who_we_are_wrapper {
        text-align: center;
        padding: 50px 20px;
    }

    .who_text h3 {
        font-size: 1.6rem;
    }

    .who_text h6 {
        font-size: 1rem;
    }

    .who_img_wrap img {
        width: 90%;
    }
}


/* about_wrapper-exit */

/* count down section */

.stats-section {
    background-color: #fff;
    /* Navy Blue */
    color: #000;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    margin: 100px 0;
}

.stats-section h3 {
    color: #000;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-box {
    flex: 1 1 200px;
    margin: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    padding: 20px;
    border-radius: 10px;
}

.stat-box h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
}

.stats-section h3 {
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
    font-size: 38px !important;
    font-weight: 600;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-box h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

}

/* Conut_down_section_exit */

/* Consultent_wrapper */
.Consultent_wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* Add the blurred background image using ::before */
.Consultent_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./images/logo/consultent_banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.1);
    /* Prevent blur edge clipping */
    z-index: 0;
}

/* Optional: add parallax-like scroll effect */
.Consultent_wrapper::before {
    background-attachment: fixed;
}

/* Content inside wrapper stays clear and visible */
.Consultent_wrapper .content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .Consultent_wrapper {
        height: 300px;
    }

    .Consultent_wrapper::before {
        background-attachment: scroll;
    }
}

/* Consultent_wrapper exit */

/* carousal-text-wrap */
.Carousal_text_wrap {
    background: #f4f4f4;
    overflow: hidden;
    padding: 30px 0;
    /* Hide overflow for scroll animation */
}

/* Carousel container */
.carousel-text-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

/* Track for scrolling items */
.carousel-text {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

/* Individual card */
.text_carousal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    transition: all 0.3s ease;
    min-width: 220px;
}

.text_carousal h4 {
    font-size: 35px;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}

.text_carousal img {
    height: 80px;
    width: 70px;
    margin-right: 20px;
}

/* Smooth infinite scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .Carousal_text_wrap {
        padding: 40px 10px;
    }

    .text_carousal {
        min-width: 180px;
        padding: 12px 18px;
    }

    .text_carousal h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text_carousal {
        min-width: 150px;
        padding: 10px 12px;
    }

    .text_carousal h4 {
        font-size: 0.9rem;
    }
}


/* carousal-text-wrap-exit */

/* mission */
.mission_wrapper {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.mission_wrapper .container {
    max-width: 1200px;
}

/* Image Section */
.mission_img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.4s ease;
}

.mission_img img {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    transition: transform 0.4s ease;
    margin-top: 20%;
    padding: 15px;
}

.mission_img:hover img {
    transform: scale(1.05);
}

/* Text Section */
.mission_wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.mission_wrapper h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #15367D;
    margin-top: 8px;
    border-radius: 5px;
}

.mission_wrapper p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Subheading */
.mission_wrapper h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

/* List Styling */
.mission_wrapper ul {
    list-style: none;
    padding-left: 0;
}

.mission_wrapper ul li {
    position: relative;
    font-size: 16px;
    color: #000;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.mission_wrapper ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #000000;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mission_wrapper ul li:hover i {
    transform: scale(1.2);
}

.mission_wrapper ul li:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission_wrapper {
        padding: 60px 20px;
    }

    .mission_wrapper h3 {
        font-size: 26px;
    }

    .mission_wrapper h5 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .mission_wrapper .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mission_wrapper ul li {
        text-align: left;
    }

    .mission_wrapper h3::after {
        content: '';
        display: block;
        width: 22%;
        height: 3px;
        background: #15367D;
        margin-top: 8px;
        border-radius: 5px;
        margin-left: 134px;
    }

    .mission_img img {
        width: 100%;
        height: 300px;
        transition: transform 0.4s ease;
        margin: 0;
        padding: 0;
        margin-top: 10px;
    }

    .mission_wrapper h3 {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .mission_wrapper {
        padding: 50px 15px;
    }

    .mission_wrapper h3 {
        font-size: 22px;
    }

    .mission_wrapper p,
    .mission_wrapper ul li {
        font-size: 15px;
    }
}

/* mission  exit */

/* footer */

/* conversation-section */

/* Conversation_section */
.conversation-section {
    background-color: #15367D;
    padding: 50px 20px;
}

.conversation-content h2 {
    color: #fff;
    /* Navy blue text */
    font-size: 35px;
    font-weight: 600;
    margin: 10px 0;
}

.conversation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .conversation-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .whatsapp-btn {
        margin: 0 auto;
    }

    .conversation-content h2 {
        font-size: 30px;
        font-weight: 700;
    }
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebd5b;
}

.whatsapp-btn i {
    font-size: 20px;
}

/* conversation end */

/* /* contact */

.Contact_wrapper {
    width: 100%;
    margin: 0;


}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.content_wrap {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.address_area {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.address_area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.address_area h3 {
    font-size: 26px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.address_area h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.address_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address_area ul li {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.address_area ul li i {
    color: #007bff;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .address_area {
        padding: 30px 20px;
    }

    .address_area h3 {
        font-size: 22px;
    }

    .address_area ul li {
        font-size: 16px;
        flex-direction: column;
        gap: 5px;
    }
}

/* contact Exit */

/* footer_start */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 50px 20px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
}

.footer-column {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-column h4 {
    position: relative;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
}

.footer-column ul,
.footer-column a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-column p {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    width: 250px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-column a:hover {
    color: #00B86A;
    font-weight: 600;
}


.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(1) invert(1);
    /* makes icons white */
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }
}


/* footer_End */
/* copyright */
.footer-container .copyright-section {
    padding: 1rem 0 1rem;
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 14px;
}

.footer-container .copyright-section a {
    color: #b2e3ff;
    font-weight: 600;
    text-decoration: none;

}

.copyright-section p {
    font-size: 17px;
    font-weight: 600;
}


/* logo_mobile */

/* Fixed_whatsapp */

.Whatsapp_fixed_icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    padding: 10px;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.Whatsapp_fixed_icon:hover {
    transform: scale(1.1);
}

.Whatsapp_fixed_icon a {
    color: white;
    font-size: 24px;
}

/* Tap_aarrow */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    /* adjust to avoid overlap with WhatsApp */
    background-color: #131764;
    color: white;
    padding: 12px 14px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    /* Hidden initially */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

.scroll-to-top i {
    font-size: 18px;
}

/* Tap_aarrow */


.carousel-caption h5 {
    font-size: 2rem;
}

.carousel-caption p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}