*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

.navbar-collaps.show ul{
        background-image: url('image/IMG_5410.png');
      background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
         /* example change 
        padding: 10px !important;
}
.gallery {
    background-color: #000;   /* Black background */
    /* padding: 40px 0; */
}

.image-box {
    width: 100%;
   /*aspect-ratio: 1 / 1;  */  
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Keeps image nicely cropped */
    display: block;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Optional styling */
.dropdown-menu {
  border-radius: 5px;
  border: none;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}


/* Button */
.navbar-toggler {
    border: none;
    background: transparent;
    width: 50px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

/* Hamburger Lines */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 5px;
}

/* Middle Line */
.navbar-toggler-icon {
    top: 0;
    transform: translateY(-50%);
}

/* Top & Bottom */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* OPEN STATE = X */
.navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
}

/* White X */
.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #fff;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #fff;
}

.logo{
    font-size:26px;
    font-weight:700;
}

.menu-btn{
    width:35px;
    cursor:pointer;
}

.menu-btn span{
    display:block;
    height:2px;
    background:#fff;
    margin:7px 0;
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:120px 8%;
    position:relative;
    background-color:#000;
}

.hero-image{
    text-align:right;
}

.hero-image img{
    width:90%;
    opacity:.75;
    filter:brightness(.7);
}

.small-title{
    color:#9f9f9f;
    font-size:12px;
    letter-spacing:3px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    margin-top:10px;
}

.line{
    width:60px;
    height:2px;
    background:#666;
    margin:25px 0;
}

.hero h3{
    font-size:28px;
    font-weight:300;
    margin-bottom:30px;
}

.description{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:20px;
    max-width:600px;
}

.approach-box{
    margin-top:40px;
    border:1px solid rgba(255,255,255,.15);
    padding:30px;
    width:350px;
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(8px);
}

.approach-box h4{
    margin-bottom:20px;
}

.approach-box li{
    list-style:none;
    margin-bottom:10px;
    color:#d9d9d9;
}

.services{
    background:#e4e1db;
    color:#111;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.service{
    text-align:center;
    padding:50px 20px;
    border-right:1px solid #ccc;
}

.service:last-child{
    border:none;
}

.stats{
    background:#070707;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:100px 8%;
}

.stat{
    text-align:center;
}

.stat h2{
    font-size:55px;
    margin-bottom:10px;
}

.stat p{
    color:#b5b5b5;
}

@media(max-width:992px){

    .hero{
        grid-template-columns:1fr;
    }

    .hero-image{
        margin-top:60px;
        text-align:center;
    }

    .hero h1{
        font-size:52px;
    }

    .services{
        grid-template-columns:1fr 1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }
}

@media(max-width:600px){

    header{
        padding:25px;
    }

    .hero{
        padding:120px 25px 70px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero h3{
        font-size:22px;
    }

    .services{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .approach-box{
        width:100%;
    }
}
footer {
  background-image: url('image/IMG_5348.png');
  /* background: #fff; */
  padding: 40px 0;
  text-align: center;
      color: 111;
}
.footer-fluid{
  max-width: 12%;
}
