* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui;
}

h5 {
    font-size: 48px;
}

.poppins-thin {
    font-family: "Poppins", system-ui;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", system-ui;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", system-ui;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", system-ui;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", system-ui;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", system-ui;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", system-ui;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", system-ui;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", system-ui;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", system-ui;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", system-ui;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", system-ui;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", system-ui;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", system-ui;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", system-ui;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", system-ui;
    font-weight: 900;
    font-style: italic;
}


/*Navbar css start here*/

.nav-item .nav-link {
    color: #000;
    font-size: 18px;
}

.nav-item .nav-link.active {
    font-weight: 600;
    color: #002059;
}

.navbar-nav {
    gap: 32px;
}

.navbar-brand img {
    width: 80%;
}


/*Carousel css start here*/

.carousel-indicators {
    display: none !important;
}

.carousel-image {
    position: relative;
    z-index: -1;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with 50% opacity */
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    /* Ensure the overlay is above the image */
}

.carousel-caption {
    position: absolute;
    top: 40%;
    z-index: 2;
    right: 15%;
    left: 15%;
    color: #fff;
    text-align: left;
    transform: translateY(-50px);
}

.carousel-small-text {
    font-size: 18px;
    width: 760px;
}


/*Main section css start here*/

section {
    padding: 48px 0px;
}

.section-header {
    text-align: center;
    color: #002059;
    font-weight: 600;
    margin-bottom: 0px;
}

.Shreeji-group-img {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.Shreeji-group-img img {
    width: 20%;
}

.shreeji-group-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/*Our service css start here*/

.card {
    padding: 24px 0px;
    position: relative;
    border-radius: 12px;
    border: none;
    transition: 0.5s;
    cursor: pointer;
    height: 426px;
    width: 18rem;
}

.card:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.card-img-top {
    width: 150px;
    margin: 0 auto;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #002059;
    text-align: center;
    margin-bottom: 0px;
}

.card-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 0px;
}

.read-btn {
    text-decoration: none;
    font-size: 18px;
    color: #002059;
    font-weight: 500;
    width: fit-content;
    position: absolute;
    bottom: 16px;
    left: 48%;
    transform: translateX(-50px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.our-services-div {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-main-div {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.our-service-sec {
    background: #EEEEEE;
}


/*about us section css start here*/

.about-us-image img {
    position: relative;
    width: 80%;
}

.align-row {
    align-items: center;
}

.section-header.left-section-header {
    text-align: left;
}

.about-text {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0px;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.read-more-btn {
    color: #002059;
    text-decoration: none;
    border: 1px solid #002059;
    padding: 16px 32px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    border-radius: 8px;
    width: fit-content;
}

.read-more-btn:hover {
    color: white;
}

.read-more-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: #002059;
    z-index: -1;
    transition: all 1s;
}

.read-more-btn:hover::before {
    width: 160%;
}


/*inquiry section css start here*/

input.form-control {
    height: 48px;
}

.fill-btn {
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 400;
    background: #002059;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    border-radius: 8px;
    width: fit-content;
    margin-top: 8px;
}

a:hover {
    --bs-link-color-rgb: unset !important
}

.fill-btn:hover {
    color: white;
    background-color: #163886;
}


/* .fill-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: red;
    z-index: -1;
    transition: all 1s;
} */


/* .fill-btn:hover::before {
    width: 160%;
} */

.inqiry-section {
    background-image: url(../Image/inquiry-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.inquiry-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.Message-col {
    display: flex;
    flex-direction: column;
}


/*Footer css start here*/

footer {
    background: #002059;
    padding: 48px 0px 0px 0px;
}

.logo-text {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-us-text {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
}

.address {
    display: flex;
    flex-direction: row;
    gap: 12px;
    color: #fff;
    align-items: flex-start;
}

.address p {
    font-size: 16px;
    font-weight: 300;
}

.service-li {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}

.service-li a {
    font-size: 16px;
    font-weight: 300;
}

.footer-logo {
    width: 50%;
    margin-bottom: 16px;
}

.bottom-footer {
    padding: 32px 0px;
    text-align: center;
    border-top: 1px solid #fff;
    margin-top: 32px;
}

.bottom-footer p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0px;
}


/*Freight Forwarding page css start here*/

.hero-div {
    height: 400px;
    width: 100%;
    background-image: url(../Image/Freight-forward-bg-image.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-text {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-text {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}


/*customer clearance Css start here*/

.content-header {
    font-size: 24px;
    color: #002059;
    font-weight: 600;
    margin-bottom: 12px;
}

ul {
    list-style-position: inside;
    padding-left: 0px !important;
    font-size: 18px;
    color: #000;
}


/*about us page css start here*/

.about-left-img img {
    position: relative;
    width: 100%;
}

.about-left-img {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/*Contact Us css start here*/

.address-content-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address p.dark-address-text {
    font-size: 16px;
    color: #222;
    font-weight: 400
}

.address-content-head {
    font-size: 18px;
    font-weight: 600;
    color: #002059;
    margin-bottom: 0px;
}

.contact-us-div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gap-div {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 24px;
}


/*Media query start here*/

@media only screen and (max-width:1399px) {
    .card-img-top {
        width: 130px;
    }
}

@media only screen and (max-width:1280px) {
    h5 {
        font-size: 40px;
    }
}

@media only screen and (max-width:1199px) {
    .carousel-small-text {
        width: 600px;
    }
    .read-more-btn {
        padding: 12px 24px;
    }
    .fill-btn {
        padding: 12px 24px;
    }
    .about-us-image img {
        width: 90%;
    }
    .gap-div {
        gap: 24px;
    }
}

@media only screen and (max-width:991px) {
    .Shreeji-group-img img {
        width: 30%;
    }
    .contact-us-text {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width:767px) {
    .row-gap {
        gap: 32px;
    }
    .Shreeji-group-img img {
        width: 40%;
    }
    .carousel-small-text {
        width: 550px;
    }
    .card {
        width: 100%;
        height: auto;
    }
    .read-btn {
        position: relative;
        bottom: unset;
    }
    .about-us-image img {
        width: 100%;
    }
    .navbar-nav {
        gap: 0px;
    }
    .hero-text {
        font-size: 32px;
    }
    .content-text {
        font-size: 16px;
    }
    .btn-div {
        padding-top: 0px;
    }
}

@media only screen and (max-width:540px) {
    .carousel-image {
        height: 400px;
        object-fit: cover;
    }
    h5 {
        font-size: 28px;
    }
    .carousel-small-text {
        width: 100%;
        font-size: 16px;
    }
    section {
        padding: 32px 0px;
    }
    .service-main-div {
        gap: 24px;
    }
    .our-services-div {
        gap: 16px;
    }
}