:root {
    --font-familly-poppins: "Poppins", sans-serif;
    --font-familly-inter: "Inter", sans-serif;
    --font-familly-libre-baskerville: "Libre Baskerville", serif;
    --font-familly-monserrat: "Montserrat", sans-serif;
    --primary-color: #F4990F;
    --secondary-color: #ffcc00;
    --transition: all .3s ease-in-out;
    --bg-secondary-color: #faf8f8;
    --bg-primary-color: #fff;

}


body {
    font-family: var(--font-familly-inter);
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    text-decoration: none;
    padding: 0;
    margin: 0;
    /* color: #000; */
    font-family: var(--font-familly-monserrat);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color) !important;
}

p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-familly-poppins);
    line-height: 22px;

}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

label,
input,
textarea {
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: var(--font-familly-monserrat);
}

button[type="submit"] {
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: var(--font-familly-monserrat);
}

.common-heading {
    font-size: 32px;
    font-family: var(--font-familly-libre-baskerville);
    color: var(--primary-color);
}

.sub-heading {
    font-weight: 500;
    font-family: var(--font-familly-monserrat);
    font-size: 18px;
}

li {
    font-family: var(--font-familly-poppins);
    font-size: 14px;
    line-height: 27px;
}

.menu-bottom-space {
    padding-top: 57px;
}

/* scroll to top css start here */
.scroll-top i {
    font-size: 24px;
    color: var(--bg-primary-color);
    line-height: 0;
}


.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 50px;
    bottom: 62px;
    z-index: 99999;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .scroll-top {
        right: 30px;
        bottom: 40px;
    }

}


/* scroll to top css end here */





/* page banner css section start here */
section.page-banner {
    background: url('../img/at-glance.jpg') no-repeat center center/cover;
}









/* page banner css section end here */










/* menu css start here */
.vertical-menu {
    position: fixed;
    top: 0;
    /* right: -260px; */
    /* hidden off screen */
    /* width: 260px; */
    right: -25%;
    width: 25%;
    height: 100%;
    background: gray;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1050;
}

@media (max-width:992px) {
    .vertical-menu {
        right: -40%;
        width: 40%;
    }
}
/* @media (max-width:768px) {
    .vertical-menu {
        right: -40%;
        width: 40%;
    }
} */

@media (max-width:576px) {
    .vertical-menu {
        right: -60%;
        width: 60%;
    }
}

.vertical-menu.show {
    right: 0;
    /* slide in */
}

.ham-icon,
.close-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

.vertical-menu {
    background-color: #1b1b1b;
}

.vertical-menu .dropdown-item {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(70, 66, 66);
    padding-bottom: 10px;
    padding-left: 32px;
    padding-top: 0px;
}

.nav .nav-link:hover,
.dropdown-item:hover {
    color: var(--primary-color);
}

.nav .nav-link {
    color: #fff;
    font-size: 16px;
    font-family: var(--font-familly-monserrat);
    border-bottom: 1px solid rgb(70, 66, 66);
}

.submenu {
    /* padding-left: 15px; */
    /* background-color: #313131; */
    border-radius: 10px;
    /* padding: 10px; */
    margin-top: 7px;
    margin-bottom: 0px;
}

.nav .nav-link.active {
    color: var(--primary-color);
}

.vertical-menu::-webkit-scrollbar {
    width: 10px;
}

.vertical-menu::-webkit-scrollbar-track {
    background: transparent;
}

.vertical-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.vertical-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

/* ===== Scrollbar (Firefox) ===== */
.vertical-menu {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}


/* hero section slider css start */

/* section.hero-section-slider {
    padding-top: 57px;
} */

section.hero-section-slider .carousel-control-prev-icon,
section.hero-section-slider .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 50% 50%;
}

section.hero-section-slider .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
}

section.hero-section-slider .carousel-item {
    height: 400px;
}

section.hero-section-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}



@keyframes fadeInUpCentered {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));

    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.carousel-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.carousel-item.active .animate-caption {
    animation: fadeInUpCentered 1s ease-in-out both;
}

.hero-section-slider .carousel-caption {
    width: 80%;
}

.hero-section-slider .common-heading {
    /* color: var(--bg-primary-color); */
    font-family: var(--font-familly-monserrat);
    font-size: 45px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-section-slider .sub-heading {
    color: var(--bg-primary-color);
    font-family: var(--font-familly-monserrat);
    font-size: 24px;
    line-height: 38px;

}

.hero-section-slider .carousel-item {
    position: relative;
    /* make parent positioned */
}

.hero-section-slider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* .hero-section-slider .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}
*/

.hero-section-slider .carousel-caption {
    /* position: relative; */
    z-index: 5;
    opacity: 1;
}

@media (max-width: 576px) {

    .hero-section-slider .carousel-inner,
    .hero-section-slider .carousel-item,
    .hero-section-slider .carousel-item img {
        height: 250px;
        object-fit: cover;
    }


    .carousel-caption {
        left: 50%;
        top: 37%;
        transform: translate(-50%, -50%) !important;
        text-align: center;
    }

    .hero-section-slider .common-heading {
        font-size: 28px;
        margin-bottom: 0rem;

    }

    .hero-section-slider .sub-heading {
        font-size: 16px;
        line-height: 31px;
    }


}

/* hero section slider css end */







/* missing section css start here */
.mission-section {
    background-color: var(--bg-secondary-color);
    position: relative;
}

.mission-section .bg-image {
    /* background-image: url('https://picsum.photos/id/1011/1600/800'); */
    /* Replace with your background */
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mission-section .overlay {
    /* background-color: rgba(0, 0, 0, 0.822); */
    /* Dark overlay */
    position: absolute;
    inset: 0;
    z-index: 2;
}

.mission-section .container {
    z-index: 3;
}

.mission-section i {
    color: #F4990F;
    transition: var(--transition);

}

.mission-section .card h5 {
    transition: var(--transition);
}

.mission-section .card p {
    transition: var(--transition);
}

/* section.mission-section .sub-heading{
    font-size: ;
} */
.mission-section .card {
    height: 250px;
    border-color: var(--primary-color);
    transition: all .3s ease-in-out;
}

.mission-section .card:hover {
    background-color: var(--primary-color) !important;
}

.mission-section .card:hover i {
    color: #fff;

}

.mission-section .card:hover h5 {
    color: #fff;


}

.mission-section .card:hover p {
    color: #fff;


}

@media (max-width:576px) {
    .mission-section .card {
        padding-top: 1rem !important;
        height: 200px;

    }
}

/* mission section end here */










/* welcome section start here */
.welcome-note-section {
    background-color: #2B2B2B;
    /* Dark background */
    color: #fff;
}

.welcome-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.welcome-card h2 {
    color: #fff;
}

.welcome-card p,
.welcome-card small {
    color: #ddd;
}

.welcome-card p.fw-bold {
    color: #fff;
}

/* welcome section css end here */




/* at a glance start here */
.at-a-glance {
    background: url('../img/at-glance.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.at-a-glance .overlay-card {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .at-a-glance {
        padding: 40px 20px;
    }
}

/* at-a-glance end here */

/* who we are section css start here */
section.who-we-are {
    background-color: var(--bg-primary-color);
}

section.who-we-are div.who-we-are-content img {
    width: 50px !important;
    height: 50px;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    padding: 0.5rem;
    border: 1px solid #e7e7e7;
}

section.who-we-are div.who-we-are-content h4 {
    font-size: 14px;
    font-weight: 500;


}


/* why choose us section css start here */
.why-choose-us {
    /* padding: 50px 0; */
    background-color: var(--bg-secondary-color);
}

.why-choose-us h2 {
    color: #f7931e;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-choose-us p {
    text-align: justify;
    line-height: 1.6;
}

.stat-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}

.stat-card.highlight {
    background-color: var(--secondary-color);
    /* color: #fff; */
}

.stat-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card p {
    text-align: left;
}

/* why choose us section css end here */







/* where whe operate section css start here */

section.where-we-operate {}

section.where-we-operate h4.sub-heading {}

section.where-we-operate ul {
    list-style-type: disc;
    display: block;
    padding-left: 3rem;

}

section.where-we-operate ul li {}

section.where-we-operate ul li strong {}

/* section.where-we-operate .img-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

}

section.where-we-operate .img-container .item {
    max-width: 100%;
    width: calc(100%/12.5);
}

section.where-we-operate .img-container .item img {
    width: 100%;
    height: 100%;
} */
section.where-we-operate .img-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

section.where-we-operate .img-container .item {
    flex: 1 1 calc(12.5% - 10px);
    /* 8 per row on large screens */
    box-sizing: border-box;
}

section.where-we-operate .img-container .item img {
    width: 100%;
    height: auto;
    /* keeps aspect ratio */
    object-fit: cover;
    display: block;
    border-radius: 15px;
    /* optional */
}

/* Responsive: adjust number of columns */
@media (max-width: 992px) {
    section.where-we-operate .img-container .item {
        flex: 1 1 calc(16.66% - 10px);
        /* 6 per row */
    }
}

@media (max-width: 768px) {
    section.where-we-operate .img-container .item {
        flex: 1 1 calc(25% - 10px);
        /* 4 per row */
    }
}

@media (max-width: 576px) {
    section.where-we-operate .img-container .item {
        flex: 1 1 calc(50% - 10px);
        /* 2 per row */
    }
}

/* where whe operate section css end here */







/* our process section css start here */
section.our-process {
    background-color: var(--bg-secondary-color);
}


section.our-process img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

/* our process section css start here */




/* Our International Legacy section css start here */
section.our-lagacy {}

section.our-lagacy .item-container {
    margin-bottom: 2rem;
}

section.our-lagacy .item-container h3.sub-heading {
    font-size: 18px;
    font-weight: 600;

}

section.our-lagacy .item-container h3.sub-heading i {
    font-size: 14px;
    color: #fff;
    padding: 7px 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

section.our-lagacy .item-container ul {
    display: block;
    padding-left: 20px;
    list-style-type: disc;
    padding-left: 4rem;
}

/* Our International Legacy section css end here */



/* fareed-nabir section start here */

section.fareed-nabir {}


section.fareed-nabir img {
    width: 100%;

}

section.fareed-nabir .content-container {
    background-color: #1b1b1b;
    border-radius: 15px;
}

section.fareed-nabir .content-container .name {
    font-size: 32px;
    font-family: var(--font-familly-monserrat);
    color: #fff;
}

section.fareed-nabir .content-container .designation {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-familly-monserrat);
    margin-bottom: 0.5rem;
    color: #fff;

}

section.fareed-nabir .content-container .description {
    font-size: 14px;
    line-height: 27px;
    color: #fff;
}


/* fareed-nabir section end here */




/* contact us section start here */
section.contact-us {
    background-color: var(--bg-secondary-color);
}

section.contact-us .card.custom-card {
    height: 222px !important;
}

section.contact-us .card.card-contact .form-label {
    font-size: 14px;
}

section.contact-us .card.custom-card .card-body {
    padding-top: 1rem;
}

section.contact-us h3.card-title {
    color: var(--primary-color);
    text-align: center;
}

section.contact-us .card-header {
    border: none;
    background-color: #fff;
    padding-bottom: 0px;
    padding-top: 15px;
}

section.contact-us .card-body p {
    font-size: 14px;
}

section.contact-us .card-body p i {
    font-size: 16px;
}

section.contact-us .bg-custom {
    background-color: #F4990F !important;
}

section.contact-us .text-custom {
    color: #F4990F !important;
}

section.contact-us .btn-custom {
    background-color: #F4990F;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

section.contact-us .btn-custom:hover {
    background-color: #d8800d;
    color: #fff;
}

section.contact-us .card-body i {
    color: #F4990F;
}

/* Input focus border color */
section.contact-us .form-control:focus {
    border-color: #F4990F;
    box-shadow: 0 0 0 0.2rem rgba(244, 153, 15, 0.25);
}

/* contact us section end here */






/* footer section css start here */

footer .child-heading {
    font-weight: 600;
    font-family: var(--font-familly-monserrat);
    font-size: 15px;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .logo-container {
    width: 40%;
}

footer .useful-link-container,
.privacy-policy-container,
.social-links-container {
    width: 20%;
}

@media (max-width: 992px) {
    footer .footer-container {
        /* justify-content: start; */

    }

    footer .logo-container {
        width: 50%;
    }

    footer .useful-link-container,
    .privacy-policy-container {
        width: 25%;
    }

    .social-links-container {
        width: 50%;
        margin-top: 1.3rem;
    }
}

@media (max-width: 768px) {
    footer .footer-container {
        /* justify-content: start; */

    }

    footer .logo-container {
        width: 100%;
    }

    footer .useful-link-container,
    .privacy-policy-container {
        width: 100%;
        margin-top: 1.5rem;
    }

    /* footer .useful-link-container {
        margin-top: 1.5rem;
    } */

    .social-links-container {
        width: 100%;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {}


/* footer section css end here */