@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #081948;
    --secondary-color: #5ADEFF;
    --white-color: #FFFFFF;
    --gray-color: #D6D6D6;
    --light-gray-color: #6C6B6F;
}

body {
    background-color: var(--secondary-color);
    font-family: "Manrope", sans-serif;
}

a.navbar-brand {
    margin: 0px;
}
.service-card1{
    background-color: var(--white-color);
    border:2px solid var(--white-color);
    border-radius: 27%;
    padding-bottom: 25px;

}

#slideshow {

    height: 600px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-name: background;
    -webkit-animation-duration: 30s;
    /*-webkit-animation-delay: 5s;*/
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes background {
    0% {
        background-image: url('../images/banner011.jpg');
    }

    20% {
        background-image: url('../images/banner012.png');
    }

    40% {
        background-image: url('../images/banner013.jpg');
    }

    60% {
        background-image: url('../images/banner014.jpg');
    }

    80% {
        background-image: url('../images/banner015.jpg');
    }

    100% {
        background-image: url('../images/banner011.jpg');
    }
}


/* Add this CSS to ensure all cards have the same height */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

.card .card-img-top {
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 0 5px 1px #059dc4;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    margin-top: auto;
    text-align: center;
}

.backtotop {
    padding: 5px 10px;
    font-size: 20px;
    text-align: center;
    display: none;
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 5px;
    position: fixed;
    left: 95%;
    top: 90%;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.backtotop:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.dropdown .dropdown-menu .dropdown-item.active-dropdown {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
}

.logo {
    width: 200px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
}

.navbar {
    padding-top: 0px !important;
    padding: 0px 53px;
    padding-bottom: 10px;
}

.nav-top {
    padding: 5px 0px 0px 0px !important;
}

.navbar-toggler .fa-bars {
    color: var(--white-color);
    font-size: 30px;
}

.navbar-container {
    background-color: var(--primary-color);
    color: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-top {
    padding-top: 10px;

    font-weight: 600;
    font-size: 17px;
}

.navbar-nav .nav-item .nav-link {

    color: var(--white-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 13px;
    letter-spacing: 0px;
    border-radius: 4px;
}

.navbar-nav .nav-item .nav-link:hover {
    /*background-color:var(--white-color);*/
    color: var(--white-color);
    opacity: 0.9;
}

.dropdown-menu {
    display: none;
    /* Hide the dropdown by default */
    background-color: var(--primary-color);
    border-radius: 5px;
}

.dropdown-menu.show {
    /*display: block;*/
    /* Show the dropdown when .show class is added */
}

.dropdown {
    position: relative;
}

.dropdown-menu .dropdown-item {
    font-family: "Manrope", sans-serif;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 25px;
    letter-spacing: 0px;
    border-bottom: 1px solid var(--white-color);
}

.dropdown-menu .dropdown-item.dropdown-item-last {
    border-bottom: none;
}

.dropdown-menu .dropdown-item:hover {
    color: #ebebeb;
    background-color: var(--primary-color);
}

.dropdown-arrow::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-arrow::after {
    transform: rotateZ(-90deg);
}


.dropdown-menu:before {
    content: "";
    position: absolute;
    top: -10px;
    left: calc(15% - 0px);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--white-color) transparent;
}



/* Submenu arrow */
.dropdown-item .submenu:before {
    content: "";
    position: absolute;
    top: 10px;
    /* Adjust based on submenu positioning */
    left: -10px;
    /* Position the arrow on the left */
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent var(--white-color) transparent transparent;
}

/* Style for submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotateZ(-90deg);
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 106%;
    margin-top: -1px;
}

@media all and (min-width: 992px) {
	.dropdown-menu li{ position: relative; 	}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{ display: block; }
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
  }
}



.getBtn {
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.getBtn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.header {
    height: 670px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 2s ease;
    background-position: center;
    z-index: 999;
}



.small-icon {
    filter: brightness(0%) contrast(100%) saturate(0%) blur(0px) hue-rotate(200deg);
    margin-right: 10px;
}

.small-icon-1 {
    filter: brightness(100%) contrast(100%) saturate(200%) blur(0px) hue-rotate(180deg);
    margin-right: 10px;
}

.circle-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.short-title {
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}

.about {
    position: relative;
}

.about .w-100.rounded,
.about .w-75.rounded {
    height: 400px;
}

.para {
    font-size: 16px;
    color: var(--light-gray-color);
}

.para1 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;

}

.title {
    font-size: 35px;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 1.2em;
    font-weight: 800 !important;
    letter-spacing: 0px;
    margin-top: 10px;
}

.title-2 {
    font-size: 30px;
    text-transform: capitalize;
    color: var(--primary-color);
    line-height: 1.2em;
    font-weight: 800 !important;
    letter-spacing: 0px;
    margin: 30px 0px;
}

.title-3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
    line-height: 1.2em;
    font-weight: 800 !important;
    letter-spacing: 0px;
    margin: 20px 0px;
}

.image-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.text {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.position-title {
    position: absolute;
    transform: rotateZ(-90deg);
    left: -250px;
    top: 266px;
    font-size: 100px;
    color: var(--secondary-color);
    text-transform: uppercase;
    z-index: -1;
    font-weight: 700;
    letter-spacing: 10px;
    opacity: 0.7;
}

.service {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.service-card {
    border-radius: 10px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 10px;
}

.service-card img {
    border-radius: 10px;
    padding: 3px;
    height: 230px;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Ensure equal height for all slides */
}

.swiper-wrapper {
    align-items: stretch;
    /* Ensure equal height for all slides */
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 10px 40px 10px;
    color: var(--gray-color);
}

.service-title {
    font-size: 17px;
    font-weight: 600;
}

.service-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    max-height: 3em;
    /* Height to show two lines of text */
    position: relative;
    font-size: 16px;
    padding-bottom: 40px;
}

.service-text.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.read-more {
    color: var(--white-color);
    cursor: pointer;
    margin-top: 5px;
    text-decoration: underline;

}

.read-more.hidden {
    display: none;
}

/*.service-card {*/
/*    border-radius: 10px;*/
/*    background-color: var(--primary-color);*/
/*}*/

/*.service-card img {*/
/*    border-radius: 10px;*/
/*    padding: 3px;*/
/*    height: 230px;*/
/*}*/

/*.service-content {*/
/*    padding: 10px 40px 50px 40px;*/
/*    color: var(--gray-color);*/
/*}*/



/*.service-text {*/
/*    font-size: 18px;*/
/*    padding-bottom: 40px;*/
/*    border-bottom: 1px solid var(--gray-color) !important;*/
/*}*/

.company-text {
    color: var(--primary-color);
    font-weight: 700 !important;
}

.company-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}

.project-img img {
    width: 100%;
    height: 300px;
    opacity: 0.9;
    transition: all 0.3s;
}

.project-img img {
    border-radius: 5px;
}

.project-img img:hover {
    opacity: 1.1;
    border-radius: 2px;
}

.project {
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.project>* {
    color: var(--white-color);

}

.project .small-icon {
    filter: invert(100%) brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);


}

.top-project {
    background: url(../images/background.png);
    background-position: 0px 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: #23406cec;
}

.project-title,
.project-title1 {
    padding: 20px 80px;
}

.project-title h2 {
    color: var(--white-color);
    font-size: 30px;
    line-height: 1.5em;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}

.project-title1 h2 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}


.footer {
    background-color: var(--primary-color);
}

.footer-top {
    height: 146px;
}


.footer-2 img {
    height: 120px;
    width:50%;
}

.footer-1 img {
    height: 145px;
    /* clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%); */
    /* position: absolute;
    left: 0;
    top: -35px; */
}

/*.footer-1 {*/
/*    position: relative;*/
/*}*/

/* .footer-1::before {
  content: "";
    position: absolute;
    top: -102px;
    right: 66px;
    width: 0;
    z-index: -1;
    height: 0;
    border-right: 105px solid transparent;
    border-bottom: 134px solid rgb(0 0 0 / 86%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
} */


.footer-content {
    padding: 0px 50px;
}

.footer-title {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1.2em;
    font-weight: 600 !important;
}

.footer-item {
    margin-top: 30px;
}

.footer-item a {
    display: block;
    color: var(--white-color);
    text-decoration: none;
    margin: 10px 0px;
}

.footer-address {
    margin-top: 30px;
}

.footer-address p,
.footer-address a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 700;
}

.footer-address i {
    margin-right: 10px;
}

.footer-first {
    padding: 0px 15px;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-icons a {
    color: var(--primary-color);
    background-color: var(--white-color);
    text-decoration: none;
    margin: 0px 3px;
    padding: 8px 12px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid var(--white-color);
}

.social-icons a i {
    font-size: 15px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.copyright {
    border-top: 2px solid var(--light-gray-color);
}

.copyright p {
    text-align: center;
    color: var(--white-color);
}

marquee#marquee {
    margin-bottom: -16px;
}

/* Main CSS End  */


.inner-banner {
    background-position: center center;
    /* Center the background image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    background-size: cover;
    /* Scale the image to cover the container */
    width: 100%;
    /* Ensure the container takes up the full width */
    height: 550px;
    /* Set the desired height of the container */
    display: flex;
    /* Use flexbox to center content, if any */
    align-items: center;
    /* Center content vertically */
    justify-content: center;
    /* Center content horizontally */
}


.maintenace *{
    color: var(--white-color) !important;
}

.maintenace {
    padding: 0px 200px;
}

.maintenace-services {
    padding: 15px;
}

.maintenace-services li, .maintenace-services p {
    color: var(--primary-color) !important;
    font-weight: 600;

}

.contact {
    background-color: var(--white-color) !important;
    padding: 50px;
}

.form-label {
    color: #000 !important;
    font-size: 16px !important;
}

.input {
    border: 1px solid #00000088;
    border-radius: 3px;
}

.input:focus {
    box-shadow: none;
    border: 1.1px solid #000;
}

.formBtn {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 12px;
}
.formBtn:hover{
    border:1px solid var(--primary-color);
    
}

.map-name {
    font-weight: 600;
    fill: #fff;
}

.map-name-small {
    font-weight: 600;
    fill: #fff;
    font-size: 10px;
}

.x-small {

    font-weight: 600;
    fill: #fff;
    font-size: 7px;
}

.svg-states {
    /* padding: 50px 0px; */
    /* fill: var(--primary-color); */
}

.svg-states path:hover {
    opacity: 0.75;

}

.installing {
    fill: var(--primary-color);
}

.soon {
    fill: var(--gray-color);
}

.grow {
    fill: var(--light-gray-color);
}



.color-define h3 {
    position: relative;
    padding-left: 25px;
}

.color-define h3::before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}

.installing-color::before {
    background-color: var(--primary-color);
}

.soon-color::before {
    background-color: var(--gray-color);
    ;
}

.grow-color::before {
    background-color: var(--light-gray-color);
}




.testimonial blockquote {
    margin: 10px 10px 0;
    background: #efefef;
    padding: 20px 60px;
    position: relative;
    border: none;
    border-radius: 8px;
    font-style: italic;
    color: #000;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
    content: "\201C";
    position: absolute;
    font-size: 80px;
    line-height: 1;
    color: #757f9a;
    font-style: normal;
}

.testimonial blockquote:before {
    top: 0;
    left: 10px;
}

.testimonial blockquote:after {
    content: "\201D";
    right: 10px;
    bottom: -0.5em;
}

.testimonial div {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #efefef;
    margin: 0 0 0 60px;
}

.testimonial p {
    margin: 8px 0 0 20px;
    text-align: left;
    color: #fff;
}









/* Center Lightbox popups */
.lb-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.lb-outerContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lb-dataContainer {
    position: relative;
}

.lb-image {
    max-width: 100%;
    max-height: 100%;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.lb-prev {
    left: 10px;
}

.lb-next {
    right: 10px;
}

/* Center Lightbox popups */
.quantity span {
    margin-right: 40px;
}

.quantity input {
    width: 50px;
    border: 1px solid #fff;
    background-color: #081948;
    padding: 5px 0;
    color: #fff;
    text-align: center;
}

.quantity button {
    border: 1px solid transparent;
    padding: 5px 10px;
}

.quantity button:hover {
    background-color: #081948;
    border: 1px solid #fff;
    color: #fff;
}

.btns button {
    color: #fff;
    padding: 10px 50px;

    text-align: center;
    margin-right: 10px;
}

.cart {
    border: 1px solid #081948;
    background: #081948;
}

.team-services .row img{
    width: 220px;
    height: 160px;
    border-radius:3px;
}

@media screen and (max-width:1399px) {
    .navbar-nav .nav-item .nav-link {
        padding: 7px 6px;
    }

    .company-icon img {
        width: 100px;
    }

}

@media screen and (max-width:1200px) {
     .backtotop {
        left: 94%;
    }
    .team-services .row img{
        width: 180px;
        height: 180px;
    }
    .maintenace{
        padding: 0px 180px;
    }
    .company-icon img {
        width: 80px;
    }

    .header {
        height: 630px;
    }

      #slideshow,.inner-banner {
        height: 550px;
    }

    .navbar-nav .nav-item {
        margin: 4px 0px;
    }



}

@media screen and (max-width:992px) {
     .backtotop {
        left: 94%;
    }
    .team-services .row img{
        width: 140px;
        height: 140px;
    }
    .header {
        height: 600px;
    }

    #slideshow,.inner-banner {
        height: 500px;
    }
     

    .maintenace {
        padding: 0px 100px;
    }

    .dropdown-submenu {
        opacity: 0.8;
    }
}

@media screen and (max-width:768px) {
     .backtotop {
        left: 92%;
    }
    .nav-container .getBtn{
        display:none;
    }
    .team-services .row img{
        width: 200px;
        height: 200px;
        }
        .team-services .row p{
            text-align: center;
        }
    .header {
        height: 500px;
    }

      #slideshow,.inner-banner {
        height: 450px;
    }

    .nav-container {
        margin: 0;
        padding: 0;
    }

    .footer-1 img {
        height: 148px;
        clip-path: polygon(0 0, 100% 0%, 100% 98%, 0% 100%);
        /*position: absolute;*/
        /*left: 0;*/
        /*top: 0px;*/
    }

    /*.footer-1::before {*/
    /*    content: "";*/
    /*    position: absolute;*/
    /*    top: 0;*/
    /*    right: 0;*/
    /*    width: 0;*/
    /*    z-index: 1;*/
    /*    height: 0;*/
    /*    border-right: 0px solid transparent;*/
    /*    border-bottom: 0px solid rgb(0 0 0 / 86%);*/
    /*    clip-path: polygon(0);*/
    /*}*/

    .maintenace {
        padding: 0px 70px;
    }

    .company-icon img {
        width: 80px;
    }



    .position-title {
        left: -230px;
        top: 266px;
        font-size: 80px;
    }

    .company-image {
        width: 300px;
        height: 300px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-content .border-start {
        border: none !important;
    }

    .title {
        font-size: 25px;
    }

    .title-2 {
        font-size: 20px;
    }

    .title-3 {
        font-size: 18px;
    }

    .image-title {
        font-size: 16px;
    }

    .small-icon {
        width: 20px;
    }

    .short-title {
        font-size: 16px;
    }

    .text {
        font-size: 16px;
    }

    .footer-content {
        padding: 0px 10px;
    }

    .footer-first {
        padding: 0px 10px;
    }

    .nav-top {
        padding-top: 5px;
        font-size: 15px;
    }

    .navbar-toggler .fa-bars {
        font-size: 25px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        padding: 3px 12px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 12px;
        padding: 8px 18px;
    }

}

@media screen and (max-width:576px) {

.footer-top {
    height: 320px;
}
.footer-1 {
    text-align:center;
}
.footer-1 img {
    height: 120px;
    width:80%;
}

.footer-2{
    position:relative;
}
.footer-2 img {
  
    height: 120px;
    width:20%;
}
    .header {
        height: 450px;
    }

      #slideshow,.inner-banner {
        height: 400px;
    }

    .maintenace {
        padding: 0px 70px;
    }

    .circle-icon {
        width: 20px;
        height: 20px;
    }

    .getBtn {
        /*display: none;*/
    }

}

@media screen and (max-width:425px) {
    .footer-2 img {
    height: 120px;
    width:40%;
}
    .header {
        height: 400px;
    }

       #slideshow,.inner-banner {
        height: 350px;
    }

    .about .w-100.rounded,
    .about .w-75.rounded {
        height: 250px;
    }

    .maintenace {
        padding: 0px 20px;
    }

    .backtotop {
        left: 88%;
    }

    .logo {
        width: 140px;
    }

    .title {
        font-size: 18px;
    }

    .title-2 {
        font-size: 16px;
    }

    .title-3 {
        font-size: 15px;
    }

    .image-title {
        font-size: 15px;
    }

    .short-title {
        font-size: 15px;
    }

    .position-title {
        left: -90px;
        top: 150px;
        font-size: 40px;
    }

    .text {
        font-size: 15px;
    }

    .navbar-toggler .fa-bars {
        font-size: 22px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 11px;
        padding: 3px 12px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 9px;
        padding: 8px 18px;
    }

}


@media screen and (max-width:320px) {
    .header {
        height: 300px;
    }

       #slideshow {
        height: 300px;
    }
       .inner-banner {
        height: 150px;
    }
    .footer-1 img {
    height: 120px;
    width:100%;
}

}

.backtotop {
      margin-top: -75px !important;
      margin-left: 5px !important;
}
