html{
    min-height: 100vh;
}
body{
    margin: 0;
    background-color: rgb(33, 33, 33);
}
@media (max-width: 900px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        min-height: 100vh;
    }
}
.header{
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: black;
    height: 60px;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: Arial, Helvetica, sans-serif, monospace;
    border-bottom: solid 1.5px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;
}
.logo{
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 900px) {
    .logo {
        padding-left: 20px;
    }
}
.head1{
    flex-grow: 1;
    font-weight: bold;
    font-size: large;
}
.head2{
    cursor: pointer;
}
.head3{
    cursor: pointer;
}
.head4 {
    position: relative;
    display: inline-block;
}

.About {
    cursor: pointer;
    padding: 10px;
    background-color:#333;
    color: #ffffff;
    border: 1px solid #333;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px; /* ✅ Increased distance to avoid flicker */
    left: 10;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 9000; /* ✅ High enough to avoid overlap issues */
    border: 1px solid #ddd;
    transition: opacity 0.2s ease-in-out; /* ✅ Added smooth transition */
    opacity: 0;
    pointer-events: none;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* ✅ Ensure the dropdown remains open when hovering over it */
.head4:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 900px) {
    #head2 {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    #head3 {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    #head4 {
        font-size: 12px;
    }
}
@media (max-width: 900px) {
    #head5 {
        font-size: 10px;
    }
}
.head5{
    padding-right: 10px;
    cursor: pointer;
}
#logo{
    width: 40px;
}
#buttonLogo{
    width: 40px;
}
#banner{
    width: 100%;
    opacity: 30%;
}
@media (max-width: 900px) {
    #banner {
        width: 100%;
        height: 500px;
    }
}

.background-image {
    display: block; /* Removes default inline spacing below the image */    
}
#blueprint{
    width: 100px;
    border-radius: 20px;
    visibility: hidden;
}
.another{
    position: absolute; /* Places the div on top of the image */
    top: 200px; /* Adjusts the vertical position */
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media (max-width: 900px) {
    .another {
        width: 550px;
    }
}
.overlay-content {
    margin-left: 350px; /* Centers horizontally */
    transform: translateX(-50%); /* Only horizontally center it */
    color: rgb(255, 255, 255); /* Makes the text visible */
    font-size: large;
    font-weight: bolder;
    padding: 20px; /* Optional: Padding around the text */
    border-radius: 20px; /* Optional: Rounded corners */
    font-family: Arial, Helvetica, sans-serif, monospace;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    width: 500px;
}
@media (max-width: 900px) {
    .overlay-content {
        font-size: 15px;
        margin-left: 200px; 
    }
}

.overlay-content:hover {
    transform: translateX(-50%) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.overlay-content1 {
    transform: translateX(-50%); /* Only horizontally center it */
    color: rgb(255, 255, 255); /* Makes the text visible */
    font-size: large;
    font-weight: bolder;
    padding: 20px; /* Optional: Padding around the text */
    border-radius: 20px; /* Optional: Rounded corners */
    font-family: Arial, Helvetica, sans-serif, monospace;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.overlay-content1:hover {
    transform: translateX(-50%) scale(1.05); /* Slight scale for subtle floating effect */
}

.herobutton{
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    padding: 6px;  
    padding-right: 20px;
    color: rgb(0, 0, 0);
    border-bottom: solid 1.5px;
    font-family:Arial, Helvetica, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
.herobutton:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.herobutton1{
    background-color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    padding: 3px;  
    padding-right: 20px;
    color: rgb(0, 0, 0);
    border-bottom: solid 1.5px;
    font-family:Arial, Helvetica, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    flex-wrap: wrap;
}
.herobutton1:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.secondPart{
    background-color: rgb(255, 255, 255);
    height: 1000px;
}
@media (max-width: 1000px) {
    .secondPart {
        height: 1300px;
        width: 100%;
        padding-top: 0px;
    }
}
.thirdPart{
    background-color: black;
    height: 450px;
    padding: 50px;
}
@media (max-width: 900px) {
    .thirdPart {
        height: 800px;
        padding-bottom: 100px;
    }
}
.headings{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.caption{
    color: white;
    font-family:Arial, Helvetica, sans-serif, monospace;
    text-align: center;
    font-size: 15px;
}
.caption1{
    color: rgb(200, 200, 200);
    font-family:Arial, Helvetica, sans-serif;
    font-size: 15px;
}
.fourthPart{
    background-color: rgb(221, 221, 221);
    height: 470px;
    padding-top: 50px;
}
@media (max-width: 900px) {
    .fourthPart {
        margin-top: 0px;
        height: 1100px;
    }
}
.media1{
    display: flex;
    justify-content: center;
    background-color: black;
    border-top: dashed 5px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;
}
@media (max-width: 900px) {
    .media1 {
        display: flex;
        flex-direction: column;
        height: 1000px;
        justify-content: left;
    }
}
.media{
    color:black;
    background-color: white;
    padding: 20px;
}
@media (max-width: 900px) {
    .media {
        background-color: white;
        padding: 20px;
    }
}

.slideUpDiv1{
    padding: 0px;
}

.our{
    text-align:center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 55px;
}
@media (max-width: 900px) {
    .our {
        text-align: left;
        padding-left: 22px;   
    }
}
.here{
    padding: 50px;
    font-family: Arial, Helvetica, sans-serif, monospace;
    text-align: center;
    font-size: 20px;
}
@media (max-width: 900px) {
    .here {
        text-align: left; 
        margin-left: 0px;  
        padding-bottom: 0px;
    }
}
.struct{
    font-size: 20px; 
    font-family: Arial, Helvetica, sans-serif; 
    padding: 20px;
}
.build{
    display: flex; 
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
    font-size: 30px;
    border-bottom: solid 2px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;

}
.par{
    padding: 20px; 
    font-family: Arial, Helvetica, sans-serif, monospace;
    width: 600px;
    text-align: justify;
    color: white;
}
@media (max-width: 900px) {
    .par {
        width: 80%; 
        padding-right: 100px;
    }
}






/* Default (desktop) */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
}

.nav-menuxx {
  display: flex;
  align-items: center;
  gap: 20px;
  width: auto;
  font-size: 20px;
}

.hamburgerxx {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  .nav-menuxx {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    height: 3000%;
    overflow-x:hidden;
    z-index: 1000;
  }

  .nav-menuxx.show {
    display: flex;
  }

  .hamburgerxx {
    display: block;
    margin-right: 10px;
  }
}














.headings1{
    color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#talisay{
    width: 300px;
    border-radius: 20px;
    border-bottom: solid 2px rgb(56, 169, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
.imageService{
    width: 450px;
    border-radius: 20px;
    border-bottom: solid 2px rgb(56, 169, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    margin-left: 100px;
}
@media (max-width: 900px) {
    .imageService {
        visibility:hidden;
    }
}
.imageService:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

#talisay:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
#cruz{
    width: 300px;
    border-radius: 20px;
    border-bottom: solid 2px rgb(255, 25, 217);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
#cruz:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
#arora23{
    width: 300px;
    border-radius: 20px;
    border-bottom: solid 2px rgb(56, 169, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
#arora23:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.gallery{
    display: flex;
    gap: 30px;
    justify-content: center;
}
@media (max-width: 900px) {
    .gallery {
        flex-direction: column;
        justify-items: center;
        align-items: center;
    }
}
.fifthPart{
    background-color: rgb(0, 0, 0);
    height: 1400px;
    padding-top: 50px;
}
@media (max-width: 900px) {
    .fifthPart {
        height: 2500px;
        padding-left: 20px;
    }
}
.fifth{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}
@media (max-width: 900px) {
    .fifth {
        flex-direction: column;
    }
}
.headings2{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#uhmar{
    border-radius: 20px;
    width: 200px;
    flex-grow: 2;
    border-right: solid 2px rgb(56, 169, 255);
    border-bottom: solid 2px rgb(56, 169, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
#uhmar:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
#pat{
    border-radius: 20px;
    width: 200px;
    flex-grow: 4;
    border-right: solid 2px rgb(255, 25, 217);
    border-bottom: solid 2px rgb(255, 25, 217);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
#pat:hover {
    transform: translateX(-5px) scale(1.05); /* Slight scale for subtle floating effect */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.details{
    font-family: Arial, Helvetica, sans-serif, monospace;
    color: rgb(255, 255, 255);
}
.headProf{
    color: rgb(56, 169, 255);
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif, monospace;
}
.headProf1{
    color: rgb(255, 25, 217);
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif, monospace;
}
.sixthPart{
    background-color: rgb(228, 228, 228);
    height: 200px;
    color: white;
    margin-bottom: 0;
    padding-bottom: 0;
    border-top: solid 5px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;
}
@media (max-width: 900px) {
    .sixthPart {
        height: 100px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
#logoFoot{
    width: 130px;
    padding: 30px;
}
@media (max-width: 900px) {
    #logoFoot {
        width: 50px;
    }
}



.imageColumn{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media (max-width: 900px) {
    .imageColumn {
        display: none;
    }
}


.six{
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    .six {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.aaes{
    font-family: Arial, Helvetica, sans-serif, monospace;
    color: black;
}
@media (max-width: 900px) {
    .aaes {
        font-size: 10px;
    }
}
#link{
    width: 50px;
}
@media (max-width: 900px) {
    #link {
        width: 20px;
    }
}
.link{
    flex-grow: 2;
    margin-left: 400px;
    display: flex;
    align-items: center;
}
@media (max-width: 900px) {
    .link {
        margin-left: 50px;
    }
}
#fb{
    width: 50px;
}
@media (max-width: 900px) {
    #fb {
        width: 20px;
    }
}
#ig{
    width: 50px;
}
@media (max-width: 900px) {
    #ig {
        width: 20px;
    }
}

.parent{
    display: flex;
    flex-direction: row;
    height: 1000px;
    gap: 20px;
    justify-content: center;
    padding: 30px;
    flex-wrap: wrap;
    border-top: solid 5px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;
}
@media (max-width: 900px) {
    .parent {
    height: 2000px;
    }
}
.description{
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
}
.engrtitle{
    font-size: 40px;
    border-bottom: solid 2px;
    border-image: linear-gradient(to right, rgb(56, 169, 255), rgb(255, 25, 217)) 1;
}
.engrPic{
    color: black;
}
.img{
    width: 350px;
    border-radius: 40px;
}
.placeHolder{
    flex: 0 0 90%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 55px;
    text-align: center;
}
.placeHolder1{
    flex: 0 0 90%;
    color: rgb(0, 0, 0);
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 55px;
    text-align: center;
    padding: 30px;
}
.glass-button {
    position: relative;
    padding: 14px 36px;
    font-size: 18px;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    background-color: rgb(255, 255, 255);
  }

  .glass-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
    z-index: 2;
  }

  @keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }