* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
   margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background-image: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%),
    url(https://www.hmablogs.com/wp-content/uploads/2022/06/background-1-scaled.jpg);
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    font-family: 'Fira Sans', sans-serif;
}


nav {
    width: 100%;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav .logo {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li {
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.2s ease-in;
}

nav ul li a {
    color: #4b5563;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

nav .navLinks button {
    padding: 8px 18px;
    border-radius: 10px;
    color: blue;
    font-size: 16px;
    border-style: none;
    font-weight: 700;
    margin-left: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    transition:0.3s;
}

nav ul li:hover {
    background-color: #f0f9ff;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.35);
    transform: translateY(-2px);
}


nav .menubtn {
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
    display: none;
}


/* responsive navbar css */
@media screen and (max-width: 600px) {
    nav .menubtn {
        display: flex;
    }
    nav .navLinks {
        display: none;
    }
    .sideNav {
        display: block !important;
    }
}

.sideNav {
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0%;
    background-color: rgb(44, 1, 197);
    overflow-x: hidden;
    transition: 0.3s ease-in;
    padding-top: 60px;
    display: none;
}

.sideNav a {
    padding: 8px 8px 8px 40px;
    display: block;
    font-size: 25px;
    font-weight: 500;
    color: #d1d1d1;
    transition: 0.3s;
    text-decoration: none;
}

.sideNav a button {
    padding: 10px 20px;
    border-radius: 10px;
    color: blue;
    font-size: 16px;
    border-style: none;
    cursor: pointer;
}

.sideNav a button:hover {
    background-color: #f8fafc;
}



.main {
  height: 100vh;
  width: 100%;
}

.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

.image-data h2 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}


/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}

.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}



.portfolio {
    padding: 140px 8%;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    text-align: center;
}


.container{
           max-width: 1140px;
           margin: auto;
}

.row{
     display: flex;
     flex-wrap: wrap;
}

.section-title{
               flex: 0 0 100%;
               max-width: 100%;
               margin-bottom: 40px;
}
.section-title h1{
                  display: inline-block;
                  font-size: 35px;
                  text-transform: uppercase;
                  font-weight: 700;
                  color: #000000;
                  margin: 0 0 5px;
                  position: relative;
}
.section-title h1:before{
                         content: '';
                         left: 0;
                         position: absolute;
                         height: 2px;
                         right: 32%;
                         background-color: #febd01;
                         bottom: 0px;
}
.text-center{
             text-align: center!important;
}
.text-right{
            text-align: right!important;
}
.portfolio{
           background-color: white;
           padding: 100px 7px;
}
.portfolio .section-title h1:before{
           left: 30%;
}
.portfolio .filter-buttons{
                           flex: 0 0 100%;
                           max-width: 100%;
                           margin-bottom: 20px;
}
.portfolio .filter-buttons ul{
                              list-style: none;
                              text-align: center;
                              padding: 0;
}
.portfolio .filter-buttons ul li{
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    margin: 0px 8px;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 0px;
}

.portfolio .filter-buttons ul li.active{
    color: #febd01;
    border-bottom: 2px solid #febd01;
}

.portfolio .portfolio-gallery{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
}

.portfolio .portfolio-gallery .item{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    position: relative;
    padding: 8px;
}
.portfolio .portfolio-gallery .item .inner{
      position: relative;
}

/* Make the link fill the entire 'inner' container */
.portfolio .portfolio-gallery .item .inner a {
    display: block; 
    width: 100%;
    height: 100%;
}

/* Optional: Add a subtle hover effect to show it's clickable */
.portfolio .portfolio-gallery .item .inner img:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.portfolio-link {
    display: block;
    overflow: hidden; /* Keeps the zoom effect inside the box */
    border-radius: 8px; /* Optional: rounds the corners */
    transition: transform 0.3s ease;
}

/* The "Button" Effect on Hover */
.portfolio-link:hover {
    transform: translateY(-5px); /* Lifts the 'button' up slightly */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Adds a shadow for depth */
}

.portfolio-link:hover img {
    filter: brightness(1.1); /* Makes it pop */
    transform: scale(1.05); /* Subtle zoom */
    transition: 0.3s ease;
}
.portfolio .portfolio-gallery .item img{
       width: 100%;
       display: block;
}

@media(max-width:767px){
                        .portfolio .portfolio-gallery .item{
                                    flex:0 0 50% ;
                                    max-width: 50%;
                                    position: relative;
                                    padding:8px ;
                        }
}
@media(max-width:500px){
                        .portfolio .portfolio-gallery .item{
                                    flex:0 0 100% ;
                                    max-width: 100%; 
                       }
}


.container {
            max-width: 1170px;
            margin: auto;
}

.footer-row {
      display: flex;
      flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: #24262b;
    padding: 70px 0;
    margin: 0;
    margin-top: auto
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

/* Responsive */

@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}