/********** Template CSS **********/
:root {
    --primary: #2878EB;
    --secondary: #F14D5D;
    --light: #ECF4FF;
    --dark: #120F2D;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary,
.btn-primary:hover,
.btn-secondary:hover {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #5f3aa5;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: #5f3aa5;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 15, 45, .5);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-indicators {
    align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
    width: 5px;
    height: 25px;
}

.carousel-indicators .active {
    height: 45px;
}

.hero-header {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../images/banner.jpg) top right no-repeat;
    background-size: cover;
}

.service-item div {
    z-index: 1;
}

.service-item div::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transition: .5s;
    z-index: -1;
}

.service-item div:hover::after {
    width: 100%;
    background: #fff;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #000 !important;
}

.bg-offer {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../images/about-2.jpg) top right no-repeat;
    background-size: cover;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 5px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: #5f3aa5;
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.blog-date {
    position: absolute;
    width: 90px;
    height: 65px;
    top: 75px;
    left: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary);
}

.blog-date::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -25px;
    left: 0;
    border: 13px solid;
    border-color: transparent #D34351 #D34351 transparent;
    z-index: -1;
}

.btn-contact {
    color: #fff;
    background-color: #5f3aa5;
    border-color: #5f3aa5
}

.btn-contact:hover {
    color: #fff;
    background-color: #5f3aa5;
    border-color: #5f3aa5
}

.logo {
    height: 115px;
}

.bg-color {
    background-color: #5f3aa5;
}

.border-bg-color {
    border-color: #5f3aa5 !important;
}

.txt-color {
    color: #5f3aa5;
}

.section-color {
    background-color: #bcbcf2;
}

.section-light {
    background-color: #d1d1f6;
}

.section-padding {
    padding: 65px 0 100px 0;
}

.box-shadow-certi {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.icon-size {
    font-size: 64px;
    vertical-align: middle;
    /* Adjusts icon alignment */
    line-height: 1;
}

.back-offer {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../images/offer.jpg) top right no-repeat;
    background-size: cover;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-top: -0.1rem;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.values-section {
    padding: 60px 0;
    background-color: #bcbcf2;
}

.values-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #5f3aa5;
    /* Dark blue color */
}

.values-section h1 span {
    color: #5f3aa5;
    /* Light blue for "QUALITY STANDARD" */
}

.values-section p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 40px;
}

.value-item {
    text-align: left;
    padding: 20px;
}

.value-item i {
    font-size: 2rem;
    color: #5f3aa5;
    margin-bottom: 15px;
    background: #e6f0fa;
    border-radius: 50%;
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #5f3aa5;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: #000;
}

/* 3rd panel in about */
.story-section {
    padding: 60px 0;
}

.story-content {
    /* background-color: #5f3aa5; */
    /* Dark blue background */
    color: black;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.story-image {
    position: relative;
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
} */

/* .play-button i {
    font-size: 1.5rem;
    color: #1a3c5e;
} */

@media (max-width: 767px) {
    .story-image {
        height: 300px;
    }
}

@media (max-width: 768px) {


    .text-size {
        font-size: 31px;
    }

    .invisible {
        display: none;
    }

    .logo {
        height: 75px;
    }
}




.serve-icon {
    height: 64px;
    width: 64px !important;
}

.gem-img img {
    width: 500px;
}

.bg-color-2 {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.flame-icon {
    width: 85% !important;
}

.rounded-top {
    padding: 20px !important;
}

.aws p {
    font-size: 14px;

}

.aws p a {
    color: #8f8989 !important;
}

@media (max-width:1440px) {
    .navbar-light .navbar-nav .nav-link {
        font-family: 'Jost', sans-serif;
        position: relative;
        margin-left: 30px;
        padding: 20px 0;
        font-size: 17px;
        font-weight: 500;
        color: var(--dark);
        outline: none;
        transition: .5s;
    }

    .logo {
        height: 95px;
    }

}

@media (max-width:1024px) {
    .navbar-light .navbar-nav .nav-link {
        font-family: 'Jost', sans-serif;
        position: relative;
        margin-left: 30px;
        padding: 20px 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        outline: none;
        transition: .5s;
    }

    .logo {
        height: 88px;
    }
}

@media (max-width:425px) {
    .gem-img img {
        width: 360px;
    }

    .disable {
        display: none;
    }

    .logo {
        height: 60px;
    }

    .value-item {
        text-align: left;
        padding: 10px 20px;
    }

    .values-section p {


        margin-bottom: 26px;
    }

    .story-content {
        /* background-color: #5f3aa5; */
        color: black;
        padding: 0;
        border-radius: 8px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .story-section {
        padding: 30px 0;
    }

    .values-section {
        padding: 35px 0;
        background-color: #bcbcf2;
    }

    .back-to-top {
        position: fixed;
        display: none;
        right: 17px;
        bottom: 12px;
        z-index: 99;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 15px 0;
    }
    

    .dropdown-menu {
        font-size: 13px;
    }
    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 15px 0;
    }
}

@media (max-width: 375px) {
    .gem-img img {
        width: 250px;
    }

    .carousel-caption h5 {
        font-size: 11px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 23px;
        font-weight: 600 !important;
    }
}

@media (max-width: 325px) {
    .carousel-caption h1 {
        font-size: 18px;
        font-weight: 600 !important;
    }

    .text-size {
        font-size: 24px;
    }
}