@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap');
*{
    margin :0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
   
}
.header{
    min-height: 100vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7) ),
    url(https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav {
    display: flex;
    padding : 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 200px;

}

.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:1.1rem;
}
.nav-links ul li::after{
    content :'';
    width:0%;
    height: 2px;
    background: skyblue;
    display: block;
    margin: auto;
    transition : 0.5s;
}
.nav-links ul .dropdown::after{
     content :'';
    width:0%;
    height: 2px;
    background: skyblue;
    display: block;
    margin: auto;
    transition : 0.5s;
}
.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 h2{
    font-size: 40px;
    font-weight: 600;
  
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border : 1px solid #fff;
    padding : 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid skyblue;
    background: skyblue;
    transition: 1s;
}
.hero-btn1{
    display: inline-block;
    text-decoration: none;
    color: #222;
    border : 1px solid #222;
    padding : 12px 34px;
    font-size: 13px;
    background: rgb(93, 133, 208);
    position: relative;
    cursor: pointer;
    color: #fff;
}
.hero-btn1:hover{
    border: 1px solid #222;
    background:rgb(143, 174, 232);
    transition: 1s;
    color: #222;
}
nav .fa{
    display: none;
}
@media (max-width:1340px) {

    .text-box h1{
        font-size: 20px;

    }
    .nav-links ul li {
        display: block;
    }
    .nav-links{
        position: fixed;
        background: skyblue;
        height:100vh;
        top : 0;
        width: 100%;
        right: -100%;
        text-align: left;
        z-index: 2; 
        transition: 1s;
      }

    nav i{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
   
  
}
@media (min-width: 1340px) and (max-width: 1360px){

  .text-box h1{
      font-size: 20px;

  }
  .nav-links ul li {
      display: block;
  }
  .nav-links{
      position: fixed;
      background: skyblue;
      height:100vh;
      top : 0;
      width: 100%;
      right: -100%;
      text-align: left;
      z-index: 2; 
      transition: 1s;
    }

  nav i{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
  }
  .nav-links ul{
      padding: 30px;
  }
 

}
/*features*/
.features{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;

}
h1{
    font-size: 36px;
    font-weight: 600;
    
}

p{
    color:#222;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
 
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.row3{
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.row4{
    display: flex;
    text-align: left;
    justify-content: space-between;
}
.row4 h3{
    text-align: left;
    color: #017BF0;
}
.course-col{
    flex-basis:31%;
    background: #e0f3fa ;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    cursor: pointer;
}
.course-col2{
    flex-basis:31%;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
}
.course-col2 h3{
    color: #222;
}
h3{
    text-align: center;
    font-weight: 600;
    margin:10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.btn{
    display: inline-block;
    text-decoration: none;
    color: #222;
    border : 1px solid #222;
    padding : 12px 34px;
    font-size: 13px;
    background: skyblue;
    position: relative;
    cursor: pointer;
}

    @media (max-width:700px) {
        .row{
            flex-direction: column;
        }
        .row4{
        flex-direction: column;
        align-items: center;        
        }
        
       
        
    }
  
/*Our Services*/
.services{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 30px;

}
.services h1{
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    font-weight: 600;

}
.services-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    font-size: 1.1rem;
}
.services-col4{
    flex-basis: 51%;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}
.services-col4 img{
    width: 100%;
    border-radius: 10px;
    height:300px;
}
.services-col4 p{
    padding: 0;
}

.services-col img{
    width: 100%;
    border-radius: 10px;
}
.services-col p{
    padding: 0;
}
.services-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.testimonials{
    width:80%;
    margin: auto;
    padding-top: 30px;
    text-align: center;
}
.testimonials h1{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #e0f3fa;
    padding:25px;
    display: flex;
    cursor: pointer;
}

.testimonial-col img{
        height: 50px;
        margin-left: 5px;
        margin-right: 30px;
        border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
margin-top: 15px;
text-align: left;
}


.testimonial-col5{
    flex-basis: 48%;
    border-radius: 10px;
    text-align: left;
    background: #e0f3fa;
    padding:25px;
    display: flex;
    cursor: pointer;
}

.testimonial-col5 img{
        height: 40px;
        margin-top: 10px;
        margin-left: 5px;
        margin-right: 30px;
    }
.testimonial-col5 p{
    padding: 0;
}
.testimonial-col5 h2{
margin-top: 15px;
text-align: left;
}

@media(max-width:700px){
.testimonial-col img{
    margin-left: 0px;
    margin-right: 30px;
}
.testimonial-col5 img{
    margin-left: 0px;
    margin-right: 30px;
}
.testimonial-col5{
    margin-left: 0px;
    margin-right: 30px;
    margin-top: 20px;
}
}

.contact{
    margin: 100px auto;
    width:80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(client.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.contact1{
    margin: 50px auto;
    width:80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(https://img.freepik.com/free-photo/group-people-working-out-business-plan-office_1303-15779.jpg?w=1060&t=st=1692010920~exp=1692011520~hmac=76c5c019bb9c6758ae63757189253bd2a1e5ab62d810b724938b05816428a594);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.contact h1{
    color:#fff;
    margin-bottom: 40px;
    padding: 0;
   
}
@media(max-width:700px){
    .contact h1{
        font-size: 24px;
    }
}

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h3{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;

}
.icons i{
    color:#222;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

@media(max-width:700px){
    .footer i{
        font-size: 20px;
        text-align: center;
        align-items: center;
        display: block;
    }
    
}
@media(max-width:1340px){
nav .fas{
  display: none;
}
}
/* about us page*/

.sub-header{
    height:50vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7) ),url(https://images.unsplash.com/photo-1462206092226-f46025ffe607?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1174&q=80);
    background-position:center;
    background-size: cover;
    text-align: center;

}

.sub-header h1{
    margin-top: 10px;
    color:#fff;
}
.about-us{
    width:80%;
    margin: auto;
    padding-top: 0px;
    padding-bottom: 50px;
    margin-top: 0;

}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
    border-radius: 10px;
    height: 350px;
    box-shadow:  0 0px 0px rgba(0,0,0,0.2);
}
.about-col5{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col5 img{
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow:  0 0px 0px rgba(0,0,0,0.2);
}
.about-col1 img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    margin-left: 290px;
   
}

.about-col2 img{
   display: block;
      margin-top:0;
      margin-left: 180px;
      margin-right: auto;
      width: 70%;
   
}
@media(max-width:700px){
    .about-col1 img{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .about-col2 img{
        width: 100%;
        margin-right: 10px;
        margin-left: 0;
    }}

.about-col h1{
    padding-top: 0;
    color: #222;
    font-weight: 700;
}
.about-col p{
    padding: 15px 0 25px;
    font-size: 1rem;
}
.testimonial-col1{
    flex-basis: 100%;
    border-radius: 10px;
    text-align: left;
    background:#fff;
    padding:25px;
    display: flex;
}
.testimonial-col1 p{
    padding: 0;
    font-size: 1.1rem;
}
.testimonial-col1 img{
    height: 70px;
    margin-left: 5px;
    margin-right: 30px;
    margin-top: 90px;
    border-radius: 30%;
}
.testimonial-col1 ul li:hover{
    color:rgb(8, 153, 210);
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width:80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
     display: flex;
     align-items: center;
     margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #222;
    margin: 10px;
    margin: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color:#555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea ,.contact-col select{
     width:100%;
     padding: 15px;
     margin-bottom: 17px;
     outline: none;
     border: 1px solid #ccc;
     box-sizing: border-box;
}
.contact-col h6{
    text-align: center;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color:transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-btn{
    border: none;
    text-align: left;
    background-color: #fff;
  }
  .dropdown-btn:hover{
   
    background-color: skyblue;
  }
  .dropdown-btn a:hover {background-color: skyblue}
 
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    text-align: left;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: skyblue}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color:transparent;
  }
  .fas {
    float: right;
    margin-left: 10px;
    padding-top: 3px;
  }
  .dropdown-menu {
    display: none;
  }
  .nav-links ul li:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: skyblue;
  }
  .nav-links ul li:hover .dropdown-menu ul {
    display: block;
    margin: 10px;
  }
  .nav-links ul li:hover .dropdown-menu ul li {
    width: 150px;
    padding: 10px;
  }
  .dropdown-menu-1 {
    display: none;
  }
  .dropdown-menu ul li:hover .dropdown-menu-1 {
    display: block;
    position: absolute;
    left: 150px;
    top: 0;
    background-color:skyblue;
  }
  .dropdown-menu li:hover{
    background: #017BF0;
  }
  
 /*Services of design.html*/
 .container1{
    width:100%;
    height:100vh;
    padding:0 8%;
    box-sizing: border-box;
 }
 .container1 h1{
    text-align: center;
    padding-top: 10%;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
 }
 .container1 h1::after{
    content: '';
    width:100px;
    height:5px;
    position: absolute;
    bottom: -5px;
    left:50%;
    transform: translateX(-50%);
 }
 .row2{
    display: grid;
    grid-template-columns:50% 50%;
    grid-gap:10px;
 }
 .service2{
    text-align: center;
    padding: 20px 1px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    background: transparent;
    transition: 0.5s;
 }
 .service2 i{
    font-size: 30px;
    margin-bottom: 10px;
    color:#222;
 }
 .service2 h2{
    font-weight: 600;
    margin-bottom: 8px;
 }
 .service2:hover{
    border: 1px solid #222;
    color: #222;
    transform:scale(1.05);
 }
 .service2:hover p{
    color: #222;
 }
 .service2:hover i{
    color: #222;
 }

 @media (max-width:700px) {
     .row2{
        flex-direction: column;
        display: flex;
        }
        .service2{
            width: 100%;
        
        }
        .container1{
            margin-bottom: 600px;
        }
     }

     .wrapper1{
        margin:100px auto;
        width:70%;
        margin-bottom: 100px;
        margin-left: 350px;
     }
     .wrapper1 h1{
        text-align: center;
        font-weight: 700;
        margin-bottom: 60px;
     }
    .wrapper1 img{
          max-width: 300px;
          float: left;
          border:3px solid #222;
          border-radius: 10px;
          margin-right: 15px;
     }
     
     .text-box1{
        color: #222;
        width: 850px;
     }
     .text-box1 h2{
        font-size:25px;
     }
     .text-box1 p{
        font-size: 16px;
     }
     
     .wrapper2{
        margin:10px auto;
        width:70%;
        margin-left: 350px;
        
     }
     .wrapper2 h1{
        text-align: center;
       margin-bottom: 100px;
     }
    .wrapper2 img{
          max-width: 300px;
          float: right;
          border:3px solid #222;
          border-radius: 10px;
          margin-left: 15px;
         
     }
     .text-box2{
        color: #222;
        width: 850px;
     }

     .text-box2 h2{
        font-size:25px;
        margin-left: 10px;
     }
     .text-box2 p{
        font-size: 16px;
        margin-left: 1px;
     }

     @media (max-width:800px) {
        .text-box1{
            flex-direction: column;
            display: flex;
            align-items: center;
            padding: 0;
            margin: 0;
            width: 300px;

        }
        .text-box2{
            flex-direction: column;
            display: flex;
            align-items: center;
            width: 300px;
        }
        .text-box2 p{
            font-size: 16px;
            margin-left: 1px;
            text-align: center;
            align-items: center;
         }
        h1{
            text-align: center;

        }
        .wrapper1{
            flex-direction: column;
            display: flex;
            align-items: center;
            margin: 20px auto;
            text-align: center;
            
        }
        .wrapper2{
            flex-direction: column;
            display: flex;
            align-items: center;
            margin: 20px auto;
            text-align: center;
        }
        .wrapper1 img{
            width: 100%;
            display: flex;
          
        
        }
        .wrapper2 img{
            width: 100%;
            display: flex;
            
        }
    }
    
.tech-wrap{
    width: 90%;
    height:auto;
    text-align: center;
}
.tech-wrap h1{
    color:#222;
}

.tech-in{
    width:100%;
    height:100%;    
}
.tech-in ul{
    padding:0;
    margin: 0;
}
.tech-in ul li{
    list-style: none;
    display: inline-block;
    width: 150px;
    height:100px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 0px -7px blue;
    transition: 0.5s;
}
.tech-in ul li img{
    width: 100%;
    height:100%;
}
.tech-in ul li img:nth-child(1){
    transform:translateY(0);
    transition:0.5s;
}

.tech-in ul li img:nth-child(2){
    transform:translateY(0);
    transition:0.5s;
}

.tech-in ul li:hover img:nth-child(1){
    transform:translateY(-100%);
    transition:0.5s;
}

.tech-in ul li:hover img:nth-child(2){
    transform:translateY(-100%);
    transition:0.5s;
}
/*Animated tabs for frontend and backend*/
.tabs {
    font-family: 'Poppins', sans-serif;
    position:relative;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60%;
    height:310px;
    background:#fff;
    padding:20px 30px;
    overflow:hidden;
    border-radius:10px;
    margin-top: 60px;
   /* box-shadow:5px 10px 5px #ccc;*/
  }
  .tabs .tab-header {
    height:60px;
    display:flex;
    align-items:center;
  }
  .tabs .tab-header > div {
    width:calc(100% / 4);
    text-align:center;
    color:#888;
    font-weight:600;
    cursor:pointer;
    font-size:14px;
    text-transform:uppercase;
    outline:none;
  }
  .tabs .tab-header > div > i {
    display: block;
    margin-bottom:5px;
  }
  .tabs .tab-body > div.active > div >p {
    display: inline-block;
    margin-bottom:5px;
  }
  .tabs .tab-header > div.active {
    color:#222;
   
  }
  .tabs .tab-indicator {
    position:relative;
    width:calc(100% / 4);
    height:5px;
    background:#222;
    left:0px;
    border-radius:5px;
    transition:all 500ms ease-in-out;
  }
  .tabs .tab-body {
    position:relative;
    height:calc(100% - 60px);
    padding:10px 5px;
  }
 
  .tabs .tab-body > div {
    position:absolute;
    top:-200%;
    opacity:0;
    transform:scale(0.9);
    transition:opacity 500ms ease-in-out 0ms,
      transform 500ms ease-in-out 0ms;
  }
  
  .tabs .tab-body > div.active {
    top:0px;
    opacity:1;
    transform:scale(1);
  }
  .tabs .tab-body > div {
   justify-content: center;
   margin: 0;
   display: inline-block;
  }
  .tabs h1{
    text-align: center;
  }
  @media (max-width:700px) {
    .tabs .tab-body{
        flex-direction: column;
    }
    .tabs .tab-header > div > i {
        display:block;
        margin-bottom:5px;
      }
      .tabs{
        display: none;
      }
      .contact{
        flex-direction: column;
      }
}
.icon-row {
    margin-top: 100px;
    display: flex;
    justify-content: center; /* To center the icons horizontally */
    flex-wrap: wrap; /* Allows the icons to wrap to the next line when the container width is too small */
  }
  
  .icon {
    flex: 0 0 25%;
    text-align: center; 
    width: 20px;
  }
  .icon img {
    max-width: 100%; 
  }
  
  .icon p {
    margin-top: 5px; 
    font-size: 20px;
  }
  
.marketbtn{
    height: 40px;
    width: 130px;
    background-color: #115a9e;
    color: #fff;
    font-weight: 600;
    outline: none;
    border: 2px;
    border-radius: 3px;
    cursor: pointer;
} 
.marketbtn:hover{
    background-color: #fff;
    border: 3px solid;
    color: #222;
}
.marketbtn1{
    height: 40px;
    width: 110px;
    background-color: rgb(86, 201, 246);
    color: rgb(1, 1, 95);
    font-weight: 700;
    border: 2px;
    border-radius: 3px;
    cursor: pointer;
}


.container{
    background: #fff;
    min-height: 100vh;
    text-align: center;
  }
  
  .container .box-container{
    max-width: 1200px;
    margin:0 auto;
    padding:20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:20px;
  }
  
  .container .box-container .box{
    background: #fff;
    box-shadow: 0 10px 15px rgba(0,0,0,.3);
    border-radius: 6px;
  }
  
  .container .box-container .box:nth-child(2){
    border:2px solid #000;
  }
  
  .container .box-container .box:nth-child(2) .btn{
    background: #fff;
    color: #000;
    font-weight: 500;
  }
  
  .container .box-container .box:nth-child(2) .btn:hover{
    background:#115a9e;
    color: #fff;
    font-weight: 500;
  }
  
  .container .box-container .box h3{
    font-size: 25px;
    padding:17px 0;
    color:#444;
  }
  
  .container .box-container .box .price{
    color:#222;
    background:#fff;
    font-weight: bolder;
    font-size: 50px;
  }
  
  .container .box-container .box .price.year{
    display: none;
  }
  
  .container .box-container .box .list{
    margin:20px 0;
  }
  
  .container .box-container .box .list p{
    padding:15px 0;
    font-size: 17px;
    color:#222;
  }
  
  .container .box-container .box .list p i{
    padding-right: 25px;
    color:#222;
  }
  
  .container .box-container .box .btn{
    margin:20px;
    display: block;
    font-size: 17px;
    background: #115a9e;
    color:#fff;
    padding:10px;
  }
  
  .container .box-container .box .btn:hover{
    background: #000;
  }
  
  .container .price-toggler{
    margin-top: 20px;
    display: inline-block;
    padding:5px;
    border:2px solid #000;
    background: #fff;
  }
  
  .container .price-toggler span{
    padding:7px 30px;
    cursor: pointer;
    color:#444;
    font-size: 20px;
    display: inline-block;
  }
  
  .container .price-toggler span.active{
    background: #115a9e;
    color:#fff;
  }
  
  @media (max-width:450px){
    .container .box-container{
      grid-template-columns: 1fr;
    }
  }
  .section {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-left: 150px;
  }
  .section p{
    font-size: 15px;
    font-weight: 600;
  }

  .icon {
    width: 100%; 
    height: 100%;/* Adjust the icon width as needed */
    /* Adjust the icon height as needed */
    /* margin-right: 10px; */
    /* margin-left: 300px; */
  }
  @media (max-width:500px){
    .section { 
      align-items: left;
      }
    .icon {
        width: 100% ;/* Adjust the icon width as needed */
        height:100%; /* Adjust the icon height as needed */
        /* margin-right: 10px; */
        align-items: left;
       
      }
  }

  /*changes here*/
  .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu > .dropdown {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.nav-menu > .dropdown > a {
  text-decoration: none;
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.submenu:hover .dropdown-menu {
  display: block;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu a {
  text-decoration: none;
  color: #333;
}


/* Add any additional styles as needed */
.carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  overflow: hidden;
 
}

.carousel img {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;

}
.carousel-button {
  background: rgb(43, 165, 213);
  color: white;
  font-size: 20px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-block;
  margin: 0 10px;
}

.carousel-button:focus {
  outline: none;
}