* {
    box-sizing: border-box;
    font-family: Poppins;
}

img {
    width: 100%;
}
h2{
    color: #3F51B5;
  font-size: 50px;
  margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}
body {
    margin: 0;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.container {
    width: 1224px;
    margin: 0 auto;
}

header {
    background: #2d313f;
}

header .logo {
    align-self: center;
}

.logo img {
    width: 70%;
}

header .menu ul {
    display: flex;
}

header .menu li {
    padding: 25px 30px;
}

header .menu li a {
    color: #fff;
}

.border-bottom:after {
    display: block;
    content: '';
    border-bottom: solid 3px #61698e;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.border-bottom:hover:after {
    transform: scaleX(1);
}
.banner{
    background-color: #292c36;
}
.banner ul{
    padding: 50px 0;
  font-weight: 600;
  font-size: 50px;
}
.banner ul li{
    padding: 5px 0;
    justify-content: left;
  gap: 30px;
  color: #fff;
}
.banner .number{
    color: rgb(81, 90, 120);
    font-size: 40px;
    margin-right: 25px;
    width: 40px;
  text-align: center;
}
.products p{
    font-size: 26px;
    color: #3F51B5;
}
.fl23{
    flex: 1 1 60%;
}
.fl13{
    flex: 1 1 30%;
}
.fl12{
    flex: 1 1 40%;
}
.f-wrap{
    flex-wrap: wrap;
}
.products .flex{
    gap: 50px;
}
.products img{
    height: 100%;
}
.demos p{
    font-size: 26px;
    color: #3F51B5;
}
.demos .flex{
    gap: 40px;
    flex-wrap: wrap;
}
.demos .websites p{
    text-align: center;
}
footer{
    background-color: #292c36;
    color: #fff;
}
footer .top-footer{
    padding: 30px;
}
footer h3{
    margin-bottom: 40px;
}
footer i{
    font-size: 30px;
  margin-right: 15px;
}
.bottom-footer{
    padding: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu{
    display: none;
}


/* Sidebar menu styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Initially hidden */
    width: 300px;
    height: 100vh;
    background: #292c36; /* Change to match your design */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Show sidebar */
.sidebar-menu.active {
    right: 0;
}
.sidebar-menu li{
    text-align: center;
    color: #fff;
}
.sidebar-menu li a{
    color: #fff;
}
/* Close button */
.sidebar-menu .close-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}
.sidebar-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


@media(max-width:767px){
    .container{
        width: 92%;
    }
    .menu{
        display: none;
    }
    .mobile-menu{
        display: block;
  color: #fff;
  padding: 10px;
  font-size: 20px;
    }
    .banner .number{
        margin-right: 10px;
    font-size: 14px;
    width: fit-content;
    }
    .banner ul li {
        font-size: 15px;
        gap: 1px;
      }
    h2{
        font-size: 20px;
    }
    p{
        font-size: 16px !important;
        margin-top: 0;
    }
    .flex{
        flex-wrap: wrap;
    }
    .fl23{
        flex: 1 1 100%;
    }
    .fl13, .fl12{
        flex: 1 1 100%;
    }
    header .logo{
        flex: 1 1 ;
    }
    iframe{
        width: 100%;
    }
}