
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',sans-serif;
}
body{
    background: #edf0f1;
    min-height: 100vh;
    overflow-x: hidden;
}
header{
    position: sticky;
    top:0;
    left: 0;
    width: 100%;
    height: 110px;
    background: #ffffff;
    padding:20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 15px rgba(0,0,0,0.09);
    z-index: 999;
}
header img{
    width: 140px;
    height:100px;
}
.group{
    display: flex;
    align-items: center;
}
header ul{
    position: relative;
    display: flex;
    gap: 30px;
}
header ul li{
    list-style: none;
}
header ul li a{
    position: relative;
    text-decoration: none;
    font-size: 0.8em;
    color: #333;
    font-weight: 500;
}
header ul li a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #333;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    transform: right;
}
header ul li a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}
.menuToggle{
    position: relative;
    display: none;
}
/* Responsive Navbar */
@media (max-width:2560px){
header ul li a{
    font-size: 1em;
}
}
@media (max-width:800px){
    .menuToggle{
        position: absolute;
        display: block;
        font-size: 2em;
        cursor: pointer;
        transform: translateX(30px);
        z-index: 10;
        right: 50px;
    }
    header .navigation{
            position: absolute;
            opacity: 0;
            visibility: hidden;
            left: 100%;
            width: 100%;
    }
    header.open .navigation{
        top: 80px;
        padding: 40px;
        border-top: 1px solid rgba(0,0,0,0.05);
        opacity: 1;
        visibility: visible;
        left: 0;
        display: flex;
        top: 0px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: calc(100vh - 80px);
    }
}
.slideshow-container {
    width: 48%; /* Set the width to 35% */
    position: absolute;
    top: 150px;
    left: 0; /* Align the container to the left */
    height: 60vh;
    overflow: hidden;
}

/* Style the images */
.mySlides img {
    width: 100%;
    height: 100%;
}

/* Style the caption text */
.text {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.99);
    color: white;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3.5px;
}

/* Style the dots that indicate the slide number */
.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s ease;
}

/* Style the active dot */
.dot.active {
    background-color: #f44336; /* Change the active dot color to your preferred color */
}

/* Style the about us section */
.about-us {
    width: 48%; /* Adjust the width as needed */
    position: absolute;
    right: 0; /* Align to the right side */
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    max-height: 60%;
}

.about-us h2 {
    font-size: 30px; /* Heading font size */
    font-weight: 700;
    padding: 5px 0 5px 15px;
    background-color: #4c4e69;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-us p {
    font-size: 19px; /* Paragraph font size */
    text-align: justify;
}
.about-us span{
    font-size: 20px;
    font-weight: 600;
    color: rgb(44, 117, 87);
    cursor: pointer;
}
/* Responsive design for different screen sizes */
@media (max-width:2560px){
.about-us h2 {
    font-size: 45px; /* Heading font size */
}

.about-us p {
    font-size: 28px; /* Paragraph font size */
    margin-bottom: 15px;
}
.about-us img{
    width: 300px;
}
}
@media (max-width:1928px){
    .slideshow-container {
        height: 50vh;
    }.about-us h2 {
        font-size: 30px; /* Heading font size */
    }
    .about-us p {
        font-size: 20px; /* Paragraph font size */
        margin-bottom: 15px;
    }
    .about-us img{
        width: 200px;
    }
}


@media screen and (max-width: 991px) {
    .slideshow-container {
        width: 100%;
        max-height: 80vh;
        position: relative;
        top: 0;
    }

    .about-us {
        width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
        float: left;
        height: 50vh;
    }
    
    .text {
        font-size: 18px;
    }

    .about-us h2 {
        font-size: 35px;
        padding-bottom: 20px;
        text-align: center;
    }

    .about-us p {
        font-size: 14px;
    }
}


.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #dfe3ec;
    position: relative;
    width: 100%;
    top: 760px;
    padding-bottom: 60px;
}
.wrapper h1{
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    font-weight: 600;
    color: rgb(17, 63, 133);
}
.wrapper p{
    font-size: 1em;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgb(87, 150, 233);
    font-weight: 600;
    padding: 5px;
}
.content-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}
.card{
    min-height: 220px;
    width: 320px;
    padding: 10px 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(45deg, rgba(78, 44, 231, 0.7)0%, rgba(122, 124, 241, 0.8)100%);
    margin: 10px 4px;
    outline: none;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}
.card h2{
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px #131927;
}
.card .card-p {
    color: #efefef;
    font-weight:600;
    font-size: 16px;
    margin-top: 10px;
    background:none;
    text-align:center;
    text-shadow: 0 0 5px #131927;
}
.card:nth-child(1){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.5)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b1.jpg');
    background-size: cover;
    transition: 0.3s;
}
.card:nth-child(2){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.5)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b2.jpg');
    background-size: cover;
    transition: 0.3s;
}
.card:nth-child(3){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.6)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b3.jpg');
    background-size: cover;
    transition: 0.3s;
}
.card:nth-child(4){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.6)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b4.webp');
    background-size: cover;
    transition: 0.3s;
}
.card:nth-child(5){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.6)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b5.jpg');
    background-size: cover;
    transition: 0.3s;
}
.card:nth-child(6){
    background: linear-gradient(45deg, rgba(47, 26, 124, 0.6)0%, rgba(35, 49, 114, 0.5)100%), url('Images/b6.png');
    background-size: cover;
    transition: 0.3s;
}


/* Our Business Responsive */

@media screen and (max-width:991px){
    .wrapper{
        position: relative;
        top: 150px;
        width: 100%;
    }
    .wrapper h1{
        font-size: 2.5em;
        font-weight: 600;
    }
    .content-box{
        flex-direction: column;
        width: 100%;
    }
    .card{
        min-width: 300px;
        margin: 10px auto;
    }
}
@media screen and (max-width:700px){
    .wrapper{
        top: 200px;
    }
    .card{
        width: 200px;
        margin: 10px auto;
    }
}
@media screen and (max-width:560px){
    .wrapper{
        top: 300px;
    }
    .card{
        width: 100px;
    }
}
@media screen and (max-width:433px){
    .wrapper{
        top: 400px;
    }
}
@media screen and (max-width:357px){
    .wrapper{
        top: 500px;
    }
    .card{
        width: 50px;
    }
}
@media screen and (max-width:274px){
    .wrapper{
        top: 650px;
    }
    .card{
        width: 20%;
    }
}

/* Products sections */
.prod-wid{
    position: relative;
    display: block;
    z-index: 4;
    top: 800px;
    width: 100%;
    height: 90vh;
    background-color: rgba(236, 231, 255, 0.507);
}
.product{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
    width: 100%;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
}
.prod-wid h2{
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    background-color: rgb(35, 47, 83);
    width: 100%;
    font-weight: 600;
    color: rgb(209, 197, 197);
}
.product .prod-card{
    position: relative;
    width: 320px;
    height: 320px;
    margin: 15px;
    overflow: hidden;
}
.product .prod-card .img-box, .product .prod-card .content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product .prod-card .img-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    object-fit: cover;
}
.product .prod-card .content-box::before{
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(204, 206, 236, 0.647);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: right;
    transition-delay: 0s;
}
.product .prod-card:hover .content-box::before{
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out;
    transform-origin: left;
    transition-delay: 0s;
}
.product .prod-card .content-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product .prod-card .content-box .content{
    position: relative;
    padding: 30px;
    transition: 0.3s;
    transform: translateX(-300px);
    transition-delay: 0s;
}
.product .prod-card:hover .content-box .content{
    transform: translateX(0px);
    transition-delay: 0s;

}
.product .prod-card .content-box .content h3{
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
    font-weight: 700;
}
.product .prod-card:hover .content-box .content h3{
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Responsive product section */
@media screen and (max-width:991px){
    .prod-wid{
        top: 100px;
    }
}
@media screen and (max-width:700px){
    .prod-wid{
        top: 200px;
    }
}
@media screen and (max-width:560px){
    .prod-wid{
        top: 300px;
    }
}
@media screen and (max-width:433px){
    .prod-wid{
        top: 370px;
    }
}
@media screen and (max-width:357px){
    .prod-wid{
        top: 500px;
    }
}
/* Client Section */

.container{
    position: relative;
    top: 1000px;
    background-color: #ffffff;
    margin-bottom: 20px;
    width: 100%;
}
.container h2{
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    width: 100%;
    font-weight: 600;
    color: rgb(245, 231, 231);
    background-color: rgb(76, 137, 172);
}
.container .clients {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 250px;
  }
  
  .container .clients .imgs {
    padding: 5px 20px;
    width: 13%;
    box-sizing: border-box;
    text-align: center;
  }
  .container .clients .imgs img {
    text-align: center;
  }

/* Clients responsive */
@media screen and (max-width:2600px){
    .container{
        top: 1500px;
    }

}
@media screen and (max-width:1399px){
    .container .clients .imgs img{
      width: 100px;
    }
}
@media screen and (max-width:1049px){
    .container{
        top: 1900px;
    }
}
  @media screen and (max-width:999px){
    .container{
        top: 2000px;
        height: 1500px;
    }
    .container h2 {
       margin-bottom: 600px;
    }
.container .clients {
    flex-direction: column;
}
.container .clients{
    padding: 0;
    margin-left: -70px;
}
    .container .clients .imgs img{
      width: 200px;
      padding: 0 0;
    }
}
@media screen and (max-width:949px){
    .container{
        top: 1200px;
        height: 1500px;
    }
}
@media screen and (max-width:699px){
    .container{
        top: 2800px;
    }
}
@media screen and (max-width:333px){
    .container{
        top: 3000px;
    }
    .container h2{
        font-size: 30px;
    }
}



/* Contact section */

.contact{
    padding: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    top: 1000px;
    z-index: 900;
    background-color: #f0eff6;
}
.contact .getin{
    width: 350px;
}
.contact .getin h2{
    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}
.contact .getin p{
    color: #686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ed;
}
.contact .getin h3{
    color: #2c234d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}
.contact .getin .getin-details div{
    display: flex;
}
.contact .getin .getin-details div .get{
    font-size: 20px;
    line-height: 22px;
    color: #0c0a15;
    margin-right: 20px;
}
.contact .getin .getin-details div p{
    font-size: 17px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
}
.contact .getin .getin-details .pro-links i{
    margin-right: 8px;
}
.contact .form{
    width: 60%;
    background-color: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}
.contact .form h4{
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
}

.contact .form p{
    color: #686875;
    line-height: 24px; 
    padding-bottom: 25px;
}
.contact .form .form-row{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.contact .form .form-row input{
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius:3px;
    border: none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}
.contact .form .form-col input,
.contact .form .form-col textarea{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius:3px;
    border: none;
    background: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}
.contact .form button{
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}

/* Contact section responsive */
@media (max-width:2600px) {
    .contact{
        top: 1600px;
    }
}
@media (max-width:1049px){
    .contact{
        top: 2000px;
    }
}
@media (max-width:999px){
    .contact{
        top: 2000px;
    }
}
@media (max-width:949px){
    .contact{
        top: 1200px;
    }
}

@media (max-width:699px){
    .contact{
        top: 2900px;
        padding: 8vw 4vw;
        flex-direction: column;
        align-content: flex-start;
        justify-content: flex-start;
    }
    .contact .getin{
        width: 100%;
        margin-bottom: 30px;
    }
    .contact .form{
        width: 100%;
        padding: 40px 30px;
    }
    .contact .form .form-row{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }
    .contact .form .form-row input{
        width: 100%;
    }
}
@media (max-width:349px){
    .contact{
        top: 3000px;
    }
}


/* Map */
#map{
    width: 100%;
    height: 70vh;
    margin-bottom: 8vw;
    position: relative;
    top: 1020px;
}
#map iframe{
    width: 100%;
    height: 100%;
}

/* map responsive */
@media (max-width:2600px){
    #map{
        top: 1500px;
    }
}
@media (max-width:2099px){
    #map{
        top: 1600px;
    }
}
@media (max-width:1049px){
    #map{
        top: 2000px;
    }
}
@media (max-width:949px){
    #map{
        top: 1200px;
    }
}
@media (max-width:699px){
#map{
    top:3000px;
}
}


/* Footer */

footer{
    padding: 8vw;
    background-color: #101C32;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    top: 800px;
}
footer .footer-col{
    padding-bottom: 40px;
}
footer h3{
    color: #f1f0f5;
    font-weight: 600;
}
footer li{
    list-style: none;
    color: #7b838a;
    padding: 2px 0;
    font-size: 15px;
    cursor: pointer;
}
footer li a{
    list-style: none;
    text-decoration: none;
    color: #7b838a;
    padding: 20px 0;
    font-size: 15px;
    cursor: pointer;
}

footer li a:hover{
    color: #f1f0f5;
    padding-left: 5px;
    transition: 0.3s ease;
}

footer .copyright{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
footer .copyright p{
    color: #fff;
}

footer .copyright .pro-links{
    margin-top: 10px;
}
footer .copyright .pro-links i{
    background: #5f7185;
    color: #fff;
}
footer .copyright .pro-links i:hover{
    background: #FDC93B;
    color: #2c2c2c;
}

/* Footer Responsive */
@media (max-width:2600px){
    footer{
        top:1500px
    }
}
@media (max-width:1060px){
    footer{
        top:1520px
    }
}

@media (max-width:1049px){
    footer{
        top:1950px
    }
}@media (max-width:991px){
    footer{
        top:1150px
    }
}

@media(max-width:699px){
    footer{
        top:2950px;
    }
}