*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*------------navbar part start----------------*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 2.5rem 5%; */
    padding: 20px 70px 20px 70px;
    background: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background:white;
    backdrop-filter: blur(10px);
}

.logo a img{
   height: 50px;
    width: 260px;
}

/* .logo a:hover {
    color: #00a8cc;
    text-shadow: 0 0 10px rgba(0, 168, 204, 0.3);
} */

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Noto Sans Mono", monospace;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    color:  #82c6c5;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #82c6c5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color:  #82c6c5;
}

.nav-link.active::after {
    width: 100%;
    background-color:  #82c6c5;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: linear-gradient(0deg,rgba(130, 198, 197, 0.9) 45%, rgba(247, 212, 12, 0.79) 100%);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 990px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }    
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 95px;
        flex-direction: column;
       background: linear-gradient(0deg,rgba(130, 198, 197, 0.9) 5%, rgba(247, 212, 12, 0.79) 100%);
        backdrop-filter: blur(10px);
        width: 250px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        gap: 0;
        z-index: 1000;
        padding: 2rem 0;
        max-height: 350px;
        border-radius: 0 0 10px 0;
        overflow-y: auto;
    }

    .nav-item {
        margin: 0.8rem 0;
    }

    .nav-menu.active {
        left: 0;
        border-left: 10px solid #000000;
    }
      .nav-menu .nav-link:hover{
        color: #000000;
      }
      .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #000000;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link.active {
        color:  #000000;
    }

    .nav-link.active::after {
        width: 100%;
        background-color:  #000000;
    }
  
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 1rem 4%;
    }
    .logo a {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 87px;
        flex-direction: column;
        backdrop-filter: blur(10px);
        width: 250px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        gap: 0;
        padding: 2rem 0;
        max-height: 350px;
        border-radius: 0 0 10px 0;
        overflow-y: auto;
        z-index: 1000;
    }

 
}

/* Additional padding for sections to account for fixed navbar */
#about, #services, #portfolio, #contact {
    padding-top: 100px; /* Navbar height + some extra space */
}



/*----------------navbar part close-------------------*/





/*==========================Slider part Start======================================*/
    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .swiper-slide .swiper-text{
        position: absolute;
        top:130px;
        left: 60px;
        text-align: left;
        display: inline-block;
        /* border: 1px solid black; */
    }
    .swiper-slide .swiper-text h1{
        font-family: "Righteous", sans-serif;
        text-transform: uppercase;
        font-size: 60px;
        letter-spacing: 1px;
        text-shadow: 0 0 5px #82c6c5;
    }

    .swiper-slide .swiper-text p{
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        margin-top: 20px;
    }
    .swiper-slide .swiper-text button{
        margin-top: 30px;
        padding: 8px 20px 8px 20px;
        background: #000000;
        border: none;
        box-shadow: 0 0 3px #82c6c5;
    }
    .swiper-slide .swiper-text button a{
        color: white;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        font-size: 20px;
        letter-spacing: 0px;
    }
    .swiper-slide .swiper-text button:hover{
        background: #82c6c5;
        transition: 0.8s;
    }
     .swiper-slide .swiper-text button:hover a{
        color: black;
     }
    .swiper-slide img {
      display: block;
      width: 100%;
      height:600px;
    }

    @keyframes zoomOutText {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
    }

    .swiper-text.animate-zoom {
    animation: zoomOutText 0.8s ease-out;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }
    /* Mobile devices (up to 767px) */
    @media (max-width: 767px) {
        .swiper-slide img {
            display: block;
            width: 100%;
            height:200px;
            object-fit: cover;
        }
        .swiper-slide .swiper-text{
            position: absolute;
            top:40px;
            left: 10px;
            width: 250px;
        }
        .swiper-slide .swiper-text h1{
            font-size: 15px;
            letter-spacing: 1px;
        }
        .swiper-slide .swiper-text p{
            font-family: "Roboto", sans-serif;
            font-size: 13px;
            margin-top: 5px;
        }
        .swiper-slide .swiper-text button{
            margin-top: 5px;
            padding: 5px 10px 5px 10px;
        }
        .swiper-slide .swiper-text button a{
            font-size: 13px;
        }
        .autoplay-progress {
            width: 25px;
            height: 25px;
        }
    }

    /* Tablets (768px to 1024px) */
    @media (min-width: 768px) and (max-width: 1024px) {
        .swiper-slide img {
            display: block;
            width: 100%;
            height:400px;
            object-fit: cover;
        }
         .swiper-slide .swiper-text{
            position: absolute;
            top:100px;
            left:10px;
            width: 550px;
            /* border:2px solid black; */
        }
        .swiper-slide .swiper-text h1{
            font-size: 35px;
            letter-spacing: 1px;
        }
        .swiper-slide .swiper-text p{
            font-family: "Roboto", sans-serif;
            font-size: 17px;
            margin-top: 15px;
        }
        .swiper-slide .swiper-text button{
            margin-top: 5px;
            padding: 5px 10px 5px 10px;
        }
        .swiper-slide .swiper-text button a{
            font-size: 13px;
        }
    }

    /* Small Laptops / Desktop (1025px to 1366px) */
    @media (min-width: 1025px) and (max-width: 1366px) {
        .swiper-slide img {
            display: block;
            width: 100%;
            height:500px;
            object-fit: cover;
        }
        .swiper-slide .swiper-text{
            position: absolute;
            top:100px;
            left:30px;
            /* border:2px solid black; */
        }
        .swiper-slide .swiper-text h1{
            font-size: 50px;
            letter-spacing: 1px;
        }
        .swiper-slide .swiper-text p{
            font-family: "Roboto", sans-serif;
            font-size: 20px;
            margin-top: 15px;
        }
        .swiper-slide .swiper-text button{
            margin-top: 20px;
            padding: 9px 20px 9px 20px;
        }
        .swiper-slide .swiper-text button a{
            font-size:17px;
        }
    }
/*==========================Slider part close======================================*/



/*==========================work with us part start======================================*/

.work{
    color: white;
}
.work .work-head{
    padding:100px 0 50px 80px;
    /* font-family: "Righteous", sans-serif; */
     font-family: "Roboto", sans-serif;
}
.work .work-head p{
    color: #f7d40c;
    font-size: 25px;
    letter-spacing: 2px;
}
.work .work-head h1{
    color: #82c6c5;
    font-size: 100px;
     font-family: "Righteous", sans-serif;
}
.work .work-part{
    /* border: 2px solid yellow; */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 130px;
}
.work .work-part .work1{
    height: 350px;
    width: 22%;
    background: #f5f5f5;
    border: 3px solid #82c6c5;
    text-align: center;
}
.work .work-part .work1 .ic{
    height:200px;
    width: 200px;
    border-radius: 50%;
    background: #f7d40c94;
    margin: 50px 0 0 20%;
    border: 3px solid #82c6c5;
}
.work .work-part .work1 .ic img{
    height:100px;
    width:100px;
    margin-top: 25%;
}
.work .work-part .work1 h3{
    font-family: "Righteous", sans-serif;
    margin-top: 20px;
    color: #000000;
    font-size: 25px;
    font-weight: 300;
}
/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Initial state */
.work1 {
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* When visible */
.work1.visible {
  animation: zoomIn 0.6s forwards;
}



/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .work .work-head{
        padding:70px 0 50px 10px;
        /* font-family: "Righteous", sans-serif; */
        font-family: "Roboto", sans-serif;
    }
    .work .work-head p{
        color: #f7d40c;
        font-size: 20px;
        letter-spacing: 1px;
    }
    .work .work-head h1{
        color: #82c6c5;
        font-size: 58px;
    }
   .work .work-part .work1{
        width: 100%;
    }
       .work .work-part{
        padding:0 0px 0 0px;
    }
     .work .work-part .work1 .ic{
        height:200px;
        width: 200px;  
        margin: 50px 0 0 23%;
    }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .work .work-head{
        padding:100px 0 50px 50px;
        font-family: "Roboto", sans-serif;
    }
    .work .work-part{
        padding:0 40px 0 50px;
    }
     .work .work-part .work1{
        width: 48%;
    }
    .work .work-part .work1 .ic{
        height:200px;
        width: 190px;  
        margin: 50px 0 0 22%;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .work .work-part{
        padding-left: 40px;
    }
    .work .work-part .work1{
        height: 350px;
        width: 23%;
        align-items: center;
    }
    .work .work-head{
        padding:100px 0 50px 50px;
        font-family: "Roboto", sans-serif;
    }
    .work .work-part .work1 .ic{
        margin: 50px 0 0 14%;
    }
}
/*==========================work with us part close======================================*/


/*=========================service part start======================*/

.service{
    /* border: 2px solid yellow; */
    display:flex;
    flex-wrap: wrap;
    padding: 90px 0 50px 0;
}

.service1{
    height:auto;
    width: 50%;
    /* border: 2px solid red; */
    color: white;
}
.service2{
    height:auto;
    width: 50%;
    /* border: 2px solid red; */
    color: white;
}
.service1 .service-head{
     /* font-family: "Righteous", sans-serif; */
     /* font-family: "Roboto", sans-serif; */
    padding: 0 40px 0 100px;
}
.service .service1 .service-head h1{
    font-family: "Righteous", sans-serif;
      font-size: 55px;
      color: #82c6c5;
      letter-spacing: 1px;
      display: inline-block;
      border-bottom: 2px solid #f7d40c;
}
.service .service1 .service-head h6{
     font-family: "Roboto", sans-serif;
     font-size: 20px;
     font-weight:300;
     color: #fbef7ded;
     margin-top: 30px;
     margin-bottom: 10px;
     text-align: justify;
}
.service .service1 .service-head .s-part{
    display: flex;
    flex-wrap: wrap;
}
.service .service1 .service-head .s-part .s1{
    height: auto;
    width: 50%;
}
.service .service1 .service-head .s-part .s1 p{
     font-family: "Roboto", sans-serif;
     margin-top: 10px;
     color: #d1d1d1ed;
}
.service .service2 img {
  height: 600px;
  width: 600px;
  margin-left: 100px;
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(100px);
}

.service2.show img {
  opacity: 1;
  transform: translateY(0);
}
/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .service{
        padding: 40px 0 50px 0;
    }
     .service1{
        width: 100%;
        order: 2;
     }
    .service .service2{
        height:auto;
        width: 100%;
        order: 1;
        color: white;
    }
    .service .service2 img {
        height:380px;
        width:380px;
        margin-left: 0px;
        }
    .service1 .service-head{
        padding: 0 5px 40px 5px;
    }
      .service .service1 .service-head h1{
        font-size:35px;
    }
    .service .service1 .service-head .s-part .s1 p{
        font-family: "Roboto", sans-serif;
        margin-top: 10px;
        font-size: 13px;
        color: #d1d1d1ed;
    }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .service1{
        width: 100%;
        order: 2;
    }
    .service2{
        height:auto;
        width: 100%;
        order: 1;
    }
    .service1 .service-head{
        padding: 0 40px 40px 50px;
    }
     .service .service1 .service-head h1{
        font-size: 60px;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .service1 .service-head{
        padding: 0 40px 0 50px;
    }
    .service .service1 .service-head h1{
        font-size: 50px;
    }
     .service .service2 img {
        margin-left: 0px;
    }
}
/*=========================service part close======================*/



/*=========================gallery part start======================*/
.gallery{
    padding: 100px 0 100px 140px;
    background: #82c6c5;
}
.gallery .gallery-head{
    padding-bottom: 30px;
}
.gallery .gallery-head h1{
        font-family: "Righteous", sans-serif;
        font-size: 60px;
        letter-spacing: 2px;
        color: #000000;
}
@layer demo {
	.grid {
		max-width: 1300px;;
		display: grid;
		gap: 0.5rem;
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: 200px;
		/* @media (min-width: 700px) {
			grid-auto-rows: 200px;
		} */
	}

	.item > img {
		width: 100%;
		height: 100%;
        object-fit: cover;
	}
	.item[data-active="true"] {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
		z-index: 2;
	}
}
@layer general {
	* {
		box-sizing: border-box;
	}
	body {
		background: #111;
		min-height: 100svh;
		display: grid;
		place-content: center;
	}
}
/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    /* .gallery .gallery-head h1{
        font-family: "Righteous", sans-serif;
        font-size: 30px;
    }
 .gallery{
        padding: 30px 0px 30px 0px;
        background: #82c6c5;
    } */
  .gallery {
    padding: 30px 10px;
    background: #82c6c5;
  }

  .gallery .gallery-head h1 {
    font-size: 28px;
    text-align: left;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows:250px;
  }

  .item[data-active="true"] {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .gallery{
        padding: 50px 20px 50px 30px;
        background: #82c6c5;
    }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .gallery{
    padding: 100px 0 100px 30px;
    background: #82c6c5;
}
}

/*=========================gallery part close=====================*/




/*=========================review part startt=======================*/

.review-part{
    /* border: 1px solid yellow; */
    padding: 60px 60px 60px 60px;
    display: flex;
    flex-wrap: wrap;
}

.review-part .project{
    height: 500px;
    width: 60%;
    /* border: 2px solid #f5f5f5; */
}
.review-part .project h1{
    color: #82c6c5;
    font-family: "Righteous", sans-serif;
    display: inline-block;
    border-bottom: 2px solid #f7d40c;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 2px;
}
.review-part .project p{
    font-family: "Roboto", sans-serif;
    color: white;
    text-align: justify;
    letter-spacing: 1px;
    margin:20px 30px 30px 10px;
}
/*Eight Part Start*/
.eight-part{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding:10px 10px 10px 20px;
  background: linear-gradient(354deg, rgba(19, 19, 19, 0.955) 5%, #82c6c5 100%);

}
.eight-part .c1{
  height:auto;
  width:32.5%;
  padding: 30px 0 30px 0;
  text-align: center;
  background: #00000033;
}
.eight-part .c1 h2{
  font-family: "Poppins", serif;
  font-size:50px;
  color: white;
}
.eight-part .c1 h2::after{
  content: "+";
  font-size:35px;
  font-family: "Poppins", serif;
  height: auto;
  width:auto;
  color: rgb(255, 255, 255);
}
.eight-part .c1 p{
  font-family: "Open Sans", serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-top:0px;
  color: white;
  text-align: center;
}



/*Eight Part Close*/


.review-part .review{
    height: 500px;
    width: 40%;
    /* border: 1px solid yellow; */
}
.review-part .review img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
  
  .review-part{
    /* border: 1px solid yellow; */
    padding: 0px 10px 60px 10px;
    display: flex;
    flex-wrap: wrap;
}
.review-part .project h1{
   
    border-bottom: 2px solid #f7d40c;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0px;
}

.review-part .project{
    height:auto;
    order: 2;
    width: 100%;
    /* border: 2px solid #f5f5f5; */
}
.review-part .project p{
   
    margin:20px 30px 30px 10px;
}
  .review-part .review{
    height:300px;
    width: 100%;
    order: 1;
    /* border: 1px solid yellow; */
}
.eight-part{
    gap:15px;
    padding:30px 20px 30px 20px;
  }
  .eight-part .c1{
    width:100%;
  }
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
 .review-part .project{
    height: auto;
    width: 100%;
    order: 2;
    /* border: 2px solid #f5f5f5; */
}
.review-part .review{
    height:500px;
    width: 100%;
    order: 1;
    text-align: center;
}
.review-part .project h1{
    font-size: 40px;
    letter-spacing: 2px;
}
.eight-part .c1{
  height:auto;
  width:32.5%;
  padding: 0px 0 0px 0;
  text-align: center;
  background: #00000033;
}
.eight-part .c1 h2{
  font-family: "Poppins", serif;
  font-size:40px;
  color: white;
}
 .eight-part{
    gap: 5px;
    padding:30px 40px 30px 40px;
  }
  .eight-part .c1{
    width:32.5%;
  }
  .eight-part .c1 p{
    font-size: 13px;
    letter-spacing: 0px;
  }
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
.review-part .project{
    height: 500px;
    width: 100%;
    order: 2;
    /* border: 2px solid #f5f5f5; */
}
.review-part .review{
    height:500px;
    width: 100%;
    order: 1;
    display: none;
    text-align: center;
}
}
/*=========================review part close=======================*/


/*----------------------Scroll Button------------------------*/
.scroll-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    padding: 15px 15px;
    font-size: 35px;
    background-color:#82c6c5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.715);
}

.scroll-button:hover {
    background-color: #f7d40c;
}
/*Cursor part start*/
.cursor {
    position: fixed;
    width: 13px;
    height: 13px;
    background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
    border-radius: 50%;
    pointer-events:none; 
    z-index: 10000;
    transform: translate(-50%, -50%); 
    transition: transform 0.1s ease-out;
}
/*Cursor part close*/