* {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
}
.mySlides {display: none;}
.img {vertical-align: middle;}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(Images/pexels-pixabay-221047.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}


 /* What we offer */

ol {
    counter-reset: li; 
    list-style: none; 
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
  }
  
  ol a {
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    margin: .5em 0;
    background: #787c86b0;
    color: #f3f3f3;
    text-decoration: none;
    border-radius: .3em;
    transition: .3s ease-out;
    font-size: 20px;
  }
  
  ol a:hover { background: #2d367941; }
  ol a:hover:before { transform: rotate(360deg); }
  ol a:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #6c7b9c;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
   
  }
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: center;
    align-items: center;
    
   
}

.img-container{
    position: relative;
    border: 4px solid #fff;
    box-sizing: border-box;
}

nav img {
    width: 350px;
    display: block;
    margin: 0 auto;
    align-items: center;
    backdrop-filter: blur(2.7 px);
    border-radius: 19px;
    
}


.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #b8b8b8;
    display: block;
    margin: auto;
    transition: 0.4s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 63px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 30px;
    font-size: 20px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #7c7b7b;
    background: #7c7b7b;
    transition: 0.5s;
}

nav .fa {
    display: none;
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #4b5d74;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.7s;
    }

    nav .fa {
        display: block;
        color: #fff; 
        font-size: 26px; 
        margin: 10px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    
    }
}

.service{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}


@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/* Location */

.workDone{
    width:80%;
    margin: auto;
    padding: 50px;
    text-align: center;
}

.Work-col{
    flex-basis: 38%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.Work-col img{
    width: 100%;
}

.layer{
    background: transparent;
    height:100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(114, 102, 180, 0.7);
}

#image-gallery { 
    width: 600px; 
    margin: 0 auto;
  }

#current-image { 
    max-width: 100%;
    max-height: 100%;
  } 

#image-thumbs { 
    display: flex; 
    justify-content: center; 
    margin-top: 20px;
  }

  .thumb { 
    width: 80px; 
    height: 80px; 
    object-fit: cover; 
    margin-right: 10px; 
    cursor: pointer;
  }


  /* call to action  */

  .cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.7)), url(Images/pexels-elif-10395741.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
  }
  
  .cta h1{
    color: #ffffff;
    margin-bottom: 40px;
    padding: 0;
  }

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/* footer  */
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;

}

.footer  h4{
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 900;
    font-size: 20px;
}

/* about us page  */

.sub-header{
    height: 37vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(Images/pexels-elif-10395742.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #ffffff;
   

}


.about-us {
    width: 80%;
    margin: auto;
    padding: 80px 0; /* Combine padding-top and padding-bottom */
}

/* Style the columns in the about us section */
.about-col {
    flex-basis: 48%;
    padding: 30px 0; /* Add more consistent vertical padding */
}

/* Adjust the size of images inside columns */
.about-col iframe {
    max-width: 100%;
    float:inline-end; /* Ensure images fit within their containers */
}

/* Reset top padding for h1 elements inside columns */
.about-col h1 {
    margin-top: 0; /* Reset the default top margin for h1 */
}


.about-col p {
    padding: 15px 0 25px;
}

.blue-btn{
    border: 1px solid #164e68;
    background: transparent;
    color: #164e68
}

.blue-btn:hover{
    color: #fff;
}

.comment-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
    align-items: center;
}

.comment-box h3 {
    text-align: left;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}

.comment-form button {
    margin: 10px 0;
}

.accordion{
    
    margin: 60px auto;
    width: 600px;

}

.accordion li{
    background: #e3edf7;
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), -6px -6px 10px -1px rgba(83, 83, 82, 0.7);
}

.accordion li label{
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight:  500;
    cursor: pointer;
}

label::before{
    content: '+';
    margin-right:10px ;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s ;
}

.grid-gallery{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}

.grid-gallery .grid-item{
    position: relative;
    background-color: #fefeff;
    overflow: hidden;

}

.grid-gallery .grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: trasnform 0.5s cubic-bezier(0.165,0.84,0.44,1);
}

.grid-gallery .grid-item:hover img{
    transform: scale(1.1);
    transition: 0.1s;

}

.grid-gallery .grid-item a{
    cursor: zoom-in;
}
 /* .grid-gallery .grid-item:nth-child(3n -2){
    grid-column: span 2;
    grid-row: 2;
} */


@media (max-width:786px) {
    .grid-gallery{
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 250px;
s
    }
}
.accordion input[type="radio"]:checked + label + .content{
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before{
    content: '-';
}

.team {
    position: relative;
    width: 100%;
    max-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 4rem; /* Add margin-top to push the content down */
    background: #ffffff; /* Set a background color to separate it from the rest of the page */
    padding: 4rem 0; /* Add padding to create space around the content */
}

.team-content {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr) 1fr; /* 1 row at the top, 1 row at the bottom */
    gap: 1.5rem;
    text-align: center;
    align-items: center;
    justify-items: center; /* Center content horizontally within grid cells */
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
}


.team-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.box {
    padding: 10px;
    background: #e0e0e0;
    border-radius: 15px;
    transition: all 0.38s;
    text-align: center; 
}

.box h2 {
    font-size: 20px;
    font-weight: 450;
    color: #000000;
    margin-bottom: 8px;
}

.box h5 {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.box:hover {
    transform: translateY(-10px);
    cursor: pointer;
}
@media(max-width: 1240px){
    .team{
        width: 100%;
        height:auto;
        padding:90px 2%;
    }

    .center h1{
        font-size: 3.2rem;
    }
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 100px;
    background: #eaeaeb;
    border-radius: 15px;
    transition: all .38s;
}

.box1,.box2 {
    width: 600px;
    height: 320px;

}

.hi-slide{
    position: relative;
    width: 754px;
    height: 292px;
    border-radius: 50px;
    margin: 115px auto 0;


}


.hi-slide .hi-next, .hi-slide .hi-prev{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 4-px;
    margin-top: -20px;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.7s;
    font-size: 18px;
    font-weight: bold;

}

.hi-slide .hi-next:hover, .hi-slide .hi-prev:hover{
    opacity: 1;
    background-color: white;
}

.hi-slide .hi-prev{left:59px;}

.hi-slide .hi-prev::before{
    content: '<';
}


.hi-slide .hi-prev{
    right: 59px;
}
.hi-slide .hi-next::before{
    content: '>';
}

