/* Style your gallery container and images/videos */
/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}
body{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .portfolio, .contact, .footer .testimonials .brands{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 650;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}
/* Navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    font-family: 'Ubuntu', sans-serif !important;
    z-index: 99999;
    padding: 30px 0;
    transition: all 0.3s ease; 
    
  }
  .navbar.sticky{
    padding: 15px 0;
    background: crimson;
}
  .navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
  }
  
  .navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
  }
  .navbar .logo a span{
    color: crimson;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
  .navbar .menu {
    display: flex;
    align-items: center;
  }
  
  .navbar .menu li {
    position: relative;
    display: inline-block;
  }
  
  .navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
  }
  
  .navbar .menu li a:hover {
    color: crimson;
  }
  .navbar.sticky .menu li a:hover{
    color: #fff;
}
  .navbar .menu .dropdown .arrow {
    position: absolute;
    top: 50%;
    right: -30px !important;
    transform: translateY(-50%) !important;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .navbar .menu .dropdown:hover .arrow {
    transform: translateY(-50%) rotate(180deg) !important;
  }
  
  .navbar .menu .dropdown:hover .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    padding: 10px;
    border-radius: 4px;
    z-index: 99999;
    min-width: 200px;
  }
  
  .navbar .menu .sub-menu {
    display: none;
  }
  
  .navbar .menu .dropdown:hover .sub-menu {
    display: block;
  }
  

/* Rest of your CSS styles */

/* Hamburger menu styling */
.navbar .menu-btn {
    display: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  
  /* Move the arrow icon next to "Services" */
  .navbar .menu li.dropdown .menu-btn {
    display: inline-block;
    position: relative;
  }
  
  .navbar .menu li.dropdown .bx.bxs-chevron-down.arrow {
    position: absolute;
    top: 50%;
    right: -25px !important; /* Adjust the value to position the arrow */
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px; /* Adjust the font size as needed */
    cursor: pointer;
  }
  /* Add space between "Services" and "Skills" */
.navbar .menu li:nth-child(3) {
    margin-right: 20px; /* Adjust the value as needed for the desired spacing */
  }
  
  /* Reduce font size in the dropdown */
  .navbar .menu .sub-menu a {
    font-size: 14px; /* Adjust the font size as desired */
  }
  
  /* Adjust the box space in the dropdown */
  .navbar .menu .sub-menu {
    display: none;

    padding: 8px !important; /* Add padding as desired */
  }
  
  .navbar .menu .dropdown:hover .sub-menu {
    display: block;
    top: 100%;
    left: 0;
    background: #111;
    border-radius: 4px;
    z-index: 99999;
    min-width: 200px;
  }
  
  
  
  @media screen and (max-width: 768px) {
    .navbar .menu {
      display: none;
    }
  
    .navbar .menu-btn {
      display: block;
      margin-right: 5vw;
      /* border:  2px solid red */
    }
  
    .navbar .menu-btn .fas {
      font-size: 30px;
      font-style: bold !important;
    }
  
    .navbar .menu.show {
      display: flex;
      flex-direction: column;
      padding-left: 40px !important;
      align-items: flex-start;
      background: #111;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 10px;
      z-index: 99999;
    }
  
    .navbar .menu.show li {
      margin-bottom: 10px;
    }
  
    .navbar .menu.show li:last-child {
      margin-bottom: 0;
    }
  
    .navbar .menu.show .dropdown:hover .sub-menu {
      display: block;
      top: 100%;
      left: 0;
      background: #111;
      padding: 10px;
      border-radius: 4px;
      z-index: 99999;
      min-width: 200px;
    }
    .navbar .menu .dropdown .bxbxs-chevron-downarrow {
        position: absolute;
        top: 50%;
        right: -5px !important;
        transform: translateY(-50%);
        color: #fff;
        transition: all 0.3s ease;
      }
    .navbar .menu.show .sub-menu {
      display: none;
    }
    .navbar .menu.show .sub-menu a {
        font-size: 16px; 
        font-weight: normal;/* Adjust the font size as desired */
      }
    .navbar .menu.show .sub-menu.show {
      display: block;
    }
  
    .navbar .menu.show .sub-menu li {
      margin-left: 0;
      margin-bottom: 5px;
    }
  }
  /* Add this to your existing CSS or style.css file */

.menu .sub-menu {
  display: none;
}

.menu .sub-menu.show {
  display: block;
}

  /* Sticky navbar styling */
.navbar.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: crimson;
    padding: 15px 0;
    transition: padding 0.3s ease; /* Adding transition for smooth effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
 /* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: crimson;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
} 

/* home section styling */
.home{
    display: flex;
    background: url("Images/coming\ soon\ 2.jpg") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-position: top;
    font-family: 'Ubuntu', sans-serif;
}
@media(max-width:760px){
    .home{
        background-position: center;
    }
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    color: crimson;
}
.home .home-content .text-3{
    font-size: 20px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: crimson;
    font-weight: 500;
}
.home .home-content a.button{
    padding-top: 8%;
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: crimson;
    background: none;
}
.social-media a{
    width: 2.5rem !important;
    height: 2.5rem !important;
    font-size: 1.2rem !important;
    margin: -0.2rem!important;
    margin-top: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: 0.4s ease !important;
    color: #fff !important;
}
.social-media a:hover{
    color: crimson !important;
    box-shadow: 0 0 0.5rem crimson !important;
}
@media (max-width: 768px) {
    .social-media a {
      margin: -0.5rem!important; /* Adjust the value as needed */
      padding-left: 5% !important;
      margin-top: 4.3% !important;
    }
  }