

/* contact */

.header-navbar.scrolled {
    background-color: #aaa6b9; 
} 
.landingpage {
    height: 85vh;
    position: relative;
    overflow: hidden; /* Prevent overflow if needed */
}

/* Set containers to take full height of the parent */
.containers {
    position: relative;
    height: 50%;
    width: 100%;
}

/* Solid container background */
.container_solid {
    top: 0;
    height: 50%;
}

/* Title wrapper centered vertically */
.title_wrapper {
    position: absolute; /* Use absolute instead of fixed */
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* Title styles */
.title_wrapper h1 {
    text-align: center;
    font-size: 80px;
    text-transform: uppercase;
    font-family: Plain, sans-serif;
    font-weight: 900;
    color: rgb(51, 54, 84); /* Ensure text color is visible */
}
.title_wrapper-11 h1 {
    text-align: center;
    font-size: 80px;
    text-transform: uppercase;
    font-family: Plain, sans-serif;
    font-weight: 900;
    color:  rgb(226, 226, 227); /* Ensure text color is visible */
}

/* Title styles */
.nash-text {
    text-align: center;
    font-size: 80px;
    text-transform: uppercase;
    font-family: Plain, sans-serif;
    font-weight: 900;
    color: rgb(16, 17, 16); /* Ensure text color is visible */
    -webkit-text-stroke: 3px rgb(182, 232, 217);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}

/* Profile Section */
.profile {
    height: 50%;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
}

.name {
    font-size: 22px;
    font-weight: bold;
    color: rgb(0, 0, 0);

}

.designation,
.email {
    font-size: 14px;
    margin: 2px 0;
    color: rgb(7, 5, 5);

}


.phone {
    font-size: 22px;
    font-weight: bold;
    color: rgb(4, 3, 3);

}

.address-text {
    font-size: 18px;
    font-weight: bold;
    color: rgb(0, 0, 0);

}

/* Small Headings */
.small-heading {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}
.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;
  }