body,
html {
    font-family: "Albert Sans", sans-serif !important;
    font-style: normal;
    font-optical-sizing: auto;
    /* overflow-x: hidden;
    position: relative; */
}

/* nav top bar section start */
.logo-img {
    height: 125px !important;
}

.search-box input {
    border-radius: 23px;
    padding-left: 20px;
    font-size: 20px;
    border: 1px solid #b7b5b5 !important;
}

.search-box input:focus {
    border-radius: 23px !important;
    padding-left: 20px !important;
    font-size: 20px !important;
}

.form-control:focus {
    padding: .375rem .75rem !important;
    border-color: #00b6f1 !important;
    box-shadow: none !important;
    border: var(--bs-border-width) solid #dee2e6 !important;
}

.search-icon {
    cursor: pointer;
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.top-header {
    background: #fff;
    padding: 15px 0;
}

.top-header-link {
    text-decoration: none;
    color: #002d61;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-header-link img {
    height: 25px;
    width: 25px;
}

/* nav top bar section end */

/* navbar section start */
.navbar {
    background-color: #16377e;
}

.navbar-nav .nav-link {
    font-weight: 400 !important;
    color: #fff !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.nav-link.active {
    color: #00b6f1 !important;
}

.nav-item:hover,
.navbar-nav .nav-link.active:hover {
    background-color: #00b6f1 !important;
    color: #fff !important;
}

#mobileMenu {
    width: 100% !important;
    max-width: 100%;
}

.navbar-toggler-icon {
    background-image: url("../images/navbar-toggler-icon.png") !important;
}

.offcanvas {
    background-color: #002d61 !important;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible,
button:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

.common-logo {
    position: relative;
    height: auto;
    width: 90px;
}

.inner-common-logo {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, -75%);
}


/* navbar dropdown button start */
ul {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

.dropdown {
    position: absolute !important;
    top: 100%;
    left: 0;
    width: max-content;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    z-index: 9;
}

.dropdown ul {
    padding-left: 0 !important;
    transform: translate(0px, 10px);
}

.dropdown-link>a {
    display: flex;
    background-color: #fff;
    color: #16377e;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover>a {
    background-color: #00b6f1 !important;
    color: #fff !important;
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid #fff !important;
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 60px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
    background-color: #00b6f1 !important;
}

.dropdown-link {
    position: relative !important;
}

.dropdown.second {
    top: 0 !important;
    left: 100% !important;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px !important;
    left: -5.5px !important;
}

.nav-item:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@keyframes animation {
    from {
        opacity: 0 !important;
        transform: translateY(15px) !important;
    }

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

/* navbar section end */


/* index page hero section start */
.hero-section {
    height: 80vh;
    min-height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

.overlay {
    background-color: rgb(0 0 0 / 10%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-heading-main {
    font-size: 4rem;
    line-height: 1.2;
}

.hero-button {
    background-color: #00b6f1;
    color: #fff;
    border: none;
    padding: 5px 40px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: transparent;
    border: 1px solid #00b6f1;
}

.hero-card {
    background-color: #00b6f1;
    border-radius: 30px;
    transition: 0.5s !important;
    box-shadow: 0px 0px 5px 0px #0000002e;
    transform: rotate(-3deg) !important;
    color: #16377e;
}

.hero-card .inner {
    transform: rotate(3deg) !important;
}

.hero-card h1 {
    font-family: "Fredoka", sans-serif;
    font-weight: 500 !important;
}

.hero-card p {
    color: #fff;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    margin: 10px 0px;
    font-size: 25px;
}

.hero-card a {
    background-color: #16377e;
    color: #fff;
    padding: 7px 60px;
    border-radius: 0px;
    font-size: 18px;
    border: 1px solid #16377e;
    margin-top: 5px;
}

.hero-card a:hover {
    background-color: transparent;
    border: 1px solid #16377e;
}

/* index page hero section end */
/* GLOBAL */
body,
p,
h2,
h3,
h4 {
    font-family: "Fredoka", sans-serif !important;
    color: #16377e !important;
}

.svg-width {
    max-width: 64px;
    min-width: 55px;
}


/* Product Sidebar */
.product-img img {
    max-height: 160px;
    object-fit: contain;
}

.product-title {
    background: #efefef;
    font-weight: 600;
    font-size: 20px;
}

/* Main Feature Boxes */
.main-product-first-section h2,
.about-playgrounds h2,
.main-product-get-in-touch-section h2 {
    font-weight: 600;
    margin: 20px 0;
    text-align: center;
}

.main-product-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.main-product-box img {
    height: 110px;
    width: 110px;
}

.main-product-box p {
    font-size: 18px;
    color: #16377e;
}

/* Testimonials */
.bg-gray {
    background: #efefef;
}

.main-product-testimonial-box {
    background: #f4f4f4;
    border-radius: 4px;
}

.main-product-testimonial-text {
    font-size: 18px;
    font-weight: 500;
    color: #002f6c;
}

.main-product-testimonial-author {
    font-size: 16px;
    color: #002f6c !important;
}

/* Brochure */
.main-product-brochure img {
    width: 200px;
}

.main-product-brochure h3 {
    font-weight: 600;
    color: #002f6c;
}

/* Brochure Page*/
.brochure-card {
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.brochure-card img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    object-position: center;
}

.brochure-title {
    margin: 10px 0px 0px;
    padding: 0px 20px 0px;
    font-size: 22px;
    font-weight: 400;
}


/* About */
.about-playgrounds p {
    font-weight: 500;
}

/* Get in touch form */
.custom-input,
.form-control:focus {
    background: #f3f3f3;
    border: none;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 0px !important;
}

.custom-input::placeholder {
    color: #002f6c !important;
    opacity: 1;
}

.custom-button {
    background: #002b5c !important;
    color: #fff !important;
    border-radius: 0px !important;
    padding: 5px 60px !important;
    border: 1px solid #002b5c !important;
    font-size: 16px !important;
}

/* footer start */
.main-footer {
    background-color: #002b5c;
    color: #ffffff;
    padding: 50px 0;
    font-family: "Fredoka", sans-serif;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #00b6f1;
}

.footer-address {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social img {
    width: 28px;
    height: auto;
}


/* about us page section start */
.about-us-section {
    height: 40vh;
    min-height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

.bg-blue {
    background-color: #8ad7f8;
}


/* gallery section start */
.gallery-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: "Fredoka", sans-serif;
}

/* case study card start */

.case-studies-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.case-studies-card img {
    width: 100%;
    height: 250px;
    border-bottom: 1px solid #ddd;
}

.case-studies-card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-studies-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.case-studies-btn {
    background-color: #16377e !important;
    color: #fff !important;
    border: 1px solid #16377e !important;
    padding: 7px 60px !important;
    border-radius: 0px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
}

.case-studies-btn:hover {
    background-color: transparent !important;
    border: 1px solid #16377e !important;
    color: #16377e !important;
}

.case-studies-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* product details start */
.product-details-prev {
    background-image: url('../images/previous-icon.png') !important;
    background-size: 50px 50px !important;
}

.product-details-next {
    background-image: url('../images/next-icon.png') !important;
    background-size: 50px 50px !important;
}

.product-details-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
}

.product-box {
    padding: 20px;
    box-shadow: 0px 0px 7px 0px #00000026;
}


/* home page browse our brochures card section */
.image-card-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
}

.image-card-shadow {
    position: absolute;
    inset: 10px -10px -10px 10px;
    border-radius: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .15));
    z-index: 1;
}

.image-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.browse-our-brochures-card {
    background: #00b6f1;
    border-radius: 30px;
    box-shadow: 0 0 5px #0000002e;
    transform: rotate(-3deg);
    color: #16377e;
    width: 210px;
}

.browse-our-brochures-card .inner {
    transform: rotate(3deg);
}

.browse-our-brochures-card p {
    font-family: "Fredoka", sans-serif !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    color: #fff;
    margin: 0;
}

.gap-xl {
    gap: 4.5rem !important;
}

.own-bg-primary {
    background-color: #0075cc !important;
}

.own-bg-dark {
    background-color: #002d61 !important;
}









/* media query start */
@media (max-width: 1399px) {
    .hero-card h1 {
        font-size: 35px !important;
    }

    .hero-card p {
        font-size: 23px !important;
    }

    .image-card-wrapper {
        width: 100px;
        height: 100px
    }
}

@media (max-width: 1199px) {
    .hero-card h1 {
        font-size: 31px !important;
    }

    .product-title {
        font-size: 20px;
    }

    .main-product-first-section h2 {
        font-size: 28px;
    }

    .main-product-box h4 {
        font-size: 20px;
    }

    .main-product-box p {
        font-size: 16px;
    }

    .navbar-nav {
        gap: 0px;
    }

    #mobileMenu {
        max-width: 290px;
    }

    .navbar-nav .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .product-img img {
        max-height: 170px;
    }

    .image-card-wrapper {
        width: 130px;
        height: 130px
    }

    .browse-our-brochures-card {
        width: 370px
    }
}

@media (max-width: 991px) {
    .logo-img {
        height: 100px !important;
    }

    .search-box input {
        border-radius: 18px;
    }

    .top-header-link {
        font-size: 18px;
    }

    .top-header-link img {
        height: 23px;
        width: 23px;
    }

    .hero-card h1 {
        font-size: 30px !important;
    }

    .hero-card p {
        font-size: 20px !important;
    }

    .hero-card a {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .brochure-title {
        text-align: center;
    }
}

@media (max-width: 499px) {
    .call-span {
        display: none;
    }

    .search-box {
        max-width: fit-content;
        min-width: 150px;
    }

    .hero-card h1 {
        font-size: 28px !important;
    }

    .hero-card p {
        font-size: 18px !important;
    }

    .product-title {
        font-size: 18px;
    }

    .main-product-first-section h2 {
        font-size: 24px;
    }

    .main-product-box h4 {
        font-size: 18px;
    }

}

@media (max-width: 399px) {
    .logo-img {
        width: 140px;
    }

    .hero-card h1 {
        font-size: 20px !important;
    }

    .hero-card p {
        font-size: 16px !important;
    }

    .search-icon {
        left: 85% !important;
    }
}

/* media query end */


/* Headings = font-family: "Fredoka", sans-serif; */
/* Paragraphs = font-family: "Albert Sans", sans-serif; */