@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

.header-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* height: 9vh; */
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: #c1c7f6;

}

.header-logo {
    height: 100%;
}
.h-100{
    height: 100vh !important;
}
.logo {
    height: 60px;
    max-width: 100px;
    object-fit: contain;
}

.navbar-items {
    font-weight: 600;
}

.navbar-item p {
    margin: 0;
    font-size: 1rem;
    cursor: pointer;
}

.header-hamburger {
    height: 9vh;
}

.hamburger {
    height: 50%;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 9vh;
    right: 0;
    width: 60%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding: 1rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    padding: 15px;
    text-align: center;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Show menu when active */
.mobile-menu.active {
    transform: translateX(0);
}

.no-scroll {
    overflow: hidden;
}
.navbar-item a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s, background 0.3s;
}
.navbar-item a:hover {
    color: #e71818;
    
}
a.middle
{
    position: relative;
}

a.middle:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e71818;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
a.middle:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
a.middle.active:before {
  visibility: visible;
  transform: scaleX(1);
}

.landing-section{
    height:100vh;
}

.h-60{
    height: 60% !important;
}
.h-40{
    height: 40% !important;
}
.main-title{
    font-size: clamp(50px, 16vw, 200px);
    text-align: center;
    font-weight: 800;
    line-height: 1;
    letter-spacing: clamp(-6px, -1vw, -2px);
}
.sub-title{
    font-size:clamp(20px, 8vw, 30px);
    text-align: center;
}

.bg-dark-yellow{
      background-color: #d0c82a;  
}
.bg-yellow{
    background-color: #FFF441;
}
.bg-green{
    background-color: #4EFC75;
}
.bg-violet{
    background-color: #CC77E9;
}
.bg-brown{
    background-color: #FBB650;
}
.bg-red{
    background-color: #F86563;
}
.bg-blue{
    background-color: #48DAFC;
}
.h-30{
    height: 30vh !important;
}
.text-violet{
    color: #CC77E9;
}
.about-section{
    /* overflow: hidden;  */

}
.about-header{
  position: relative;
}
.about-title {
    font-size: clamp(36px, 10vw, 145px);
    font-weight: 800;
    line-height: 0.75;
    letter-spacing: clamp(-4px, -0.8vw, -1.5px);
    white-space: nowrap;        /* 🔑 prevents line break */
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-star {
  position: absolute;
  top: -15%;
  left: -10%;
  width: clamp(80px, 16vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}
.h-15vh{
    height: 15vh !important;
}
.creativity-img{
    height: 70vh;
    width: 100%;
    z-index: 1;
    position: relative;
}
.about-sub-heading{
font-weight: 400;
}
.highlight{
  font-weight: 700;
}

.details-title{
  font-size: clamp(32px, 10vw, 100px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing:  -8px;
  white-space: nowrap;     /* keeps text in one line */
  line-height: 1;
}
.details-count{
 font-weight: 500;
}
.details-sub-head{
 font-weight: 400;
}
.details-section{
 position: relative;
 overflow: hidden;
 z-index: 1;
}
.detail-star{
   position: absolute;
    bottom: -101px;
    left: -140px;
}
.z-index{
    position: relative;
    z-index: 1;
}
.unset-all{
    all: unset;
}

#work {
    scroll-margin-top: 80px; /* navbar height */
}

html {
    scroll-behavior: smooth;
}

.glazing {
    position: relative;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff5733, #ff8c42);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.5);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Glowing Border Animation */
.glazing::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff5733, #ff8c42, #ff5733, #ff8c42);
    border-radius: 10px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 576px) {
    .sub-title {
        font-size: 15px;
        padding: 0 12px;
    }
    .h-60{
    height: 50% !important;
    }
    .h-40{
        height: 50% !important;
    }
     .about-title {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .about-star {
        top: -38%;
        left: -26%;
        width: 180px;
    }
    .details-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .detail-star{
     bottom: -45px;
     left: -90px;
     width: 300px;
   }
}
@media (min-width: 577px) and (max-width: 775px) {
     .details-title {
        font-size: 50px;
        letter-spacing: -2px;
    }
     .about-star {
        top: -18%;
        left: -16%;
        width: 250px;
    }
   .detail-star{
     width: 350px;
   }
}
@media (min-width: 775px) and (max-width: 991px) {
    .about-title {
        font-size: clamp(48px, 8vw, 96px);
        letter-spacing: -2px;
    }
    .about-star {
        top: -14%;
        left: -8%;
        width: 200px;
    }
    .details-title {
        font-size: 66px;
        letter-spacing: -2px;
    }
}
@media (min-width: 999px) and (max-width: 1170px) {
    .about-star {
        top: -31%;
        left: -20%;
    }
     .details-title {
        font-size: 65px;
        letter-spacing: -5px;
    }
}
@media (min-width: 1350px) and (max-width: 1480px) {
    .about-star {
        top: -31%;
        left: -20%;
    }
    .about-title {
        font-size: 135px;
        letter-spacing: -2px;
    }
}






.landingpage-2 {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out; /* Smooth transition */
    position: relative;
}

.landingpage-2 {
    background-image: url('/images/socialmedia.jpg');
}

.title_wrapper-1 {
    position: absolute; /* Use absolute instead of fixed */

    align-items: center;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;

}
@media (max-width: 768px) {
    .title_wrapper h1 {
        font-size: 60px;
    }
    .title_wrapper-11 h1 {
        font-size: 40px;
    }

    
    .nash-text {
        text-align: center;
        font-size: 50px;
        text-transform: uppercase;
        font-family: Plain, sans-serif;
        font-weight: 900;
        color: rgb(14, 16, 16); /* Ensure text color is visible */
        -webkit-text-stroke: 1px rgb(182, 232, 217);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        background-color: #ffffff;
    }


    .profile,
    .contact-info,
    .address {
        text-align: center;
    }
}


.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    font-family: "Poppins", sans-serif;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }