﻿/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, "Liberation Sans", sans-serif, -apple-system, "Helvetica Neue", Arial, "Noto Sans", "Segoe UI", Roboto, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
    --color-default: #364d59; /* grey */
    --color-primary: #feb900; /* gold */
    --color-secondary: #52565e; /* dark grey */
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}



body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}

.carousel-text {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    position: relative;
    text-align: center;
}

.carousel-item .carousel-img {
    margin-bottom: 400px;
    align-items: center;
}


h2 {
    font-size: 24px;
    text-transform: uppercase;
    /* color: #303030; red color */
    color: #feb900;
    font-weight: 600;
    margin-bottom: 30px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

    a:hover {
        color: #ffc732;
        text-decoration: none;
    }

.ViewMore {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    width: 200px;
    color: #364d59;
    border: 2px solid var(--color-primary);
}
/*
Header
*/
/*
Header
*/
.header {
    z-index: 1000;
    position: absolute;
    padding: 25px 0;
    top: 0;
    left: 0;
    right: 0;
}

    .header .logo img {
        max-height: 80px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0;
        font-family: var(--font-primary);
    }

        .header .logo h1 span {
            color: var(--color-primary);
        }


.section-footer {
    background-color: #000;
    font-size: 16px;
    color: #fff;
}

    .section-footer .container a {
        font-size: 18px;
        color: #fff;
        text-decoration:none;                
    }


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #fff;
        border-color: var(--color-primary) transparent var(--color-primary) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1.5s linear infinite;
        animation: animate-preloader 1.5s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}







/* Sections */

section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #edf0f2;
}

.section-header {
    text-align: center;
    padding-bottom: 20px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        color: #2e3135;
    }

        .section-header h2:before,
        .section-header h2:after {
            content: "";
            width: 50px;
            height: 2px;
            background: var(--color-primary);
            display: inline-block;
        }

        .section-header h2:before {
            margin: 0 15px 10px 0;
        }

        .section-header h2:after {
            margin: 0 0 10px 15px;
        }

    .section-header p {
        margin: 0 auto 0 auto;
    }

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}


/*comp Services Section*/

.comp-services .img-bg {
    background-size: cover;
    background-position: center center;
    min-height: 400px;
}

.comp-services h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .comp-services h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--color-primary);
        left: 0;
        bottom: 0;
    }

.comp-services .icon-box {
    margin-top: 50px;
}
.JustifyText {
    text-align:justify;
}


.comp-services .icon-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: 0.3s;
}

    .comp-services .icon-box:hover i {
        background-color: var(--color-primary);
        color: #fff;
    }

    .comp-services .icon-box h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 18px;
    }

        .comp-services .icon-box h4 a {
            color: #000;
            transition: 0.3s;
        }

            .comp-services .icon-box h4 a:hover {
                color: var(--color-primary);
            }

    .comp-services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }



/*
aboutus 
*/
.aboutus .scrolling-img-wrap {
    padding-left: 50px;
}

.aboutus .aboutus-carousel,
.aboutus .aboutus-slider {
    overflow: hidden;
}

.aboutus .scrolling-img-item {
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 0 15px 30px 0;
    min-height: 200px;
    box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
    position: relative;
    background: #fff;
}

    .aboutus .scrolling-img-item .scrolling-img {
        width: 90px;
        border-radius: 10px;
        border: 6px solid #fff;
        position: absolute;
        left: -45px;
    }

    .aboutus .scrolling-img-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #000;
    }

    .aboutus .scrolling-img-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
    }

    .aboutus .scrolling-img-item .stars {
        margin: 10px 0;
    }

        .aboutus .scrolling-img-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .aboutus .scrolling-img-item .quote-icon-left,
    .aboutus .scrolling-img-item .quote-icon-right {
        color: #ffd565;
        font-size: 26px;
        line-height: 0;
    }

    .aboutus .scrolling-img-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .aboutus .scrolling-img-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .aboutus .scrolling-img-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }

.aboutus .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .aboutus .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #d5d7da;
        opacity: 1;
    }

    .aboutus .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
    }

@media (max-width: 767px) {
    

    .aboutus .scrolling-img-wrap {
        padding-left: 0;
    }

    .aboutus .aboutus-carousel,
    .aboutus .aboutus-slider {
        overflow: hidden;
    }

    .aboutus .scrolling-img-item {
        padding: 30px;
        margin: 15px;
    }

        .aboutus .scrolling-img-item .scrolling-img {
            position: static;
            left: auto;
        }
}


/*end color-profile  testimonial */

/* HomePage home page  carousel Section */

/* HomePage home page  carousel Section */

.HomePage {
    overflow-x: hidden;
    padding: 0;
}

    .HomePage .carousel {
        width: 100%;
        min-height: 100vh;
        padding: 80px 0;
        margin: 0;
        position: relative;
    }

    .HomePage .carousel-item {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        z-index: 1;
        transition-duration: 0.4s;
    }

.carousel-text {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    position: relative;
    text-align: center;
}

.carousel-item .carousel-img {
    margin-bottom: 400px;
    align-items: center;
}


.HomePage .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
}

.HomePage .info {
    position: absolute;
    inset: 0;
    z-index: 2;
    top: 500px;
}



@media (max-width: 768px) {
    .HomePage .info {
        padding: 0 50px;
    }

    .img-bg {
        background-size: cover;
        background-position: center center;
        height: 100%;        
        max-width:400px;
    }
}



.HomePage .info h2 {
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

    .HomePage .info h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 80px;
        height: 4px;
        background: var(--color-primary);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }


  

@media (max-width: 768px) {
    .HomePage .info h2 {
        font-size: 36px;
    }
}

.HomePage .info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.HomePage .info .btn-continue {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
}

.HomePage .info .btn-get-started:hover {
    background: var(--color-primary);
}

.HomePage .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {

    .HomePage .carousel-control-prev {
        padding-left: 15px;
    }
}

.HomePage .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .HomePage .carousel-control-next {
        padding-right: 15px;
    }
}

.HomePage .carousel-control-next-icon,
.HomePage .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.HomePage .carousel-control-prev,
.HomePage .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

    .HomePage .carousel-control-prev:focus,
    .HomePage .carousel-control-next:focus {
        opacity: 0.5;
    }

    .HomePage .carousel-control-prev:hover,
    .HomePage .carousel-control-next:hover {
        opacity: 0.9;
    }


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
            padding: 10px 0 10px 28px;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-family: var(--font-primary);
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

        .navbar > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--color-primary);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            width: 100%;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #fff;
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 28px;
            top: calc(100% + 30px);
            margin: 0;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: #fff;
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--color-default);
                font-weight: 400;
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: var(--color-primary);
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.8);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            text-transform: uppercase;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            border: 1px solid #222428;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 9996;
            }

    

}



/*other page carousesl*/


/*#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0.5;
    transition: top 0.3s;
}*/

/* Style the navbar links */


/*#navbar a {
        float: left;
        display: block;        
        text-align: center;
        padding: 15px;
        text-decoration: none;
    }

        #navbar a:hover {
            background-color: #ddd;
            color: black;
        }*/
