* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    /* position: relative; */
}


header {
    height: 100vh;
    width: 100%;
    padding-top: 20px;
    position: relative;
}

.inimg {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100vh;
    width: 100%;
    z-index: 0;
}

.inimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cov {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #ffffff4f;
    box-shadow: inset 0px 0px 93px 106px #fff;
    z-index: 0;
}

.navbar {
    height: 10vh;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;

}

.logo {
    height: 60px;
    width: 150px;
    padding: 5px 10px;
    /*background: url('../images/color-unscreen.gif');*/
    /*background-position: center;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* From Uiverse.io by Saad3092003 */
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    /* border: 0; */
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    box-shadow: 0 0 5px 1px white;
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: rgb(23 23 23 / 49%);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
    box-shadow: 0 0 10px 2px white;
}

button:hover .button-text {
    transform: translate(-1.7rem, 0);
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(8.7rem, 0);
}

button:active .circle .icon.arrow {
    transform: translate(9.5rem, 0);
    transition: all 0.3s;
}

button:active .circle {
    transform: scale(0.9);
    transition: all 0.3s;
    box-shadow: 0 0 5px 0.5px white;
}

button:hover .button-text {
    color: #fff;
}

button:active .button-text {
    color: rgba(255, 255, 255, 0.459);
}

.cont-di {
    position: relative;
    height: 85vh;
    width: 100%;
    z-index: 1;
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.text-container {
    cursor: pointer;
    padding: 20px;
    line-height: 0.5;
}

.contact-box {
    position: absolute;
    bottom: 0%;
    right: 2%;
}

.text-3d {
    font-size: 80px;
    font-family: "MuseoModerno", sans-serif;
    font-weight: bold;
    color: #000000;
    /* Text color changed to black */
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

/* Normal state - flat text */
.text-3d:not(:hover) {
    text-shadow: none;
    transform: none !important;
}

/* Hover state - 3D effect */
.text-3d:hover {
    text-shadow:
        0 1px 0 #777,
        0 2px 0 #666,
        0 3px 0 #555,
        0 4px 0 #444,
        0 5px 0 #333,
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15);
}

.wec-des {
    font-size: 1rem;
    font-weight: 600;
    color: #2e2e2e;
    text-align: center;
    width: 50%;
}

.first-page {
    height: fit-content;
    width: 100%;
    padding: 20px 5%;
}

.hea-out {
    margin-top: 10px;
    height: fit-content;
    width: fit-content;
    border-bottom: 1.5px solid #535353;
    transition: color 0.7s ease-in-out;
}

.hea-out h3 {
    font-size: 1.2rem;
    font-family: "MuseoModerno", sans-serif;
    font-weight: 500;
}

.hea-out:hover {
    cursor: pointer;
    transition: color 0.7s ease-in-out;
    border-bottom: 2px solid #121212;
}

.first-page h2,
.second-page h2,
.three-page h2,
.four-page h2,
.five-page h2 {
    font-size: 4rem;
    font-weight: 50;
    color: #171717;
}

.one-ser {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 10px 0px;
}

.in-info {
    width: 50%;
    display: flex;
    gap: 20px;
}

.in-img {
    height: 200px;
    width: 300px;
    border-radius: 10px;
    /* background-color: blanchedalmond; */
}

.in-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.in-info-coun h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #aaaaaa;
}

.in-info-hea-dis h3 {
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.in-info-hea-dis p {
    margin-top: 3px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    font-style: italic;
    color: #7e7e7e;
}

.fonfmli{
    font-family: "MuseoModerno", sans-serif;
}

/* ----------- site Swap ------------- */

/* ----------- site Swap ------------- */

.second-page {
    min-height: 100vh;
    width: 100%;
    /* Change 1040px to 100% to make it responsive */
    padding: 20px 5%;
    overflow: hidden;
    box-sizing: border-box;
    /* To include padding in total width */
}

.animated-text {
    opacity: 0;
    /* Initially hidden */
    transform: translateX(-10px);
    /* Optional: slight offset for smoother effect */
    transition: all 0.3s ease-in-out;
    /* Smooth transitions */
}


.p-in-big {
    height: fit-content;
    padding: 15px 0px;
    display: flex;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    /* Allow horizontal scrolling if content overflows */
    scroll-behavior: smooth;
    /* Smooth scrolling for JavaScript functionality */
}


.p-in-show {
    cursor: pointer;
    height: 400px;
    width: 450px;
    /* Ensure fixed width for consistency */
    background-color: #535353;
    border-radius: 10px;
    flex-shrink: 0;
    /* Prevent shrinking of boxes */
    position: relative;
    box-sizing: border-box;
    /* Include padding/border in width/height */
    overflow: hidden;
}

.p-in-show img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.p-in-show-lin {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    scale: 0;
}

.p-in-show-lin-out {
    cursor: pointer;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-in-show-lin-out i {
    font-size: 1.7rem;
    font-weight: 400;
    color: #555;
}

.lef-righ-shwaip {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 10px;
}

.left-in,
.right-in {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #132927;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-in i,
.right-in i {
    font-size: 1.3rem;
    font-weight: 500;
}

.three-page {
    height: fit-content;
    width: 100%;
    /* Change 1040px to 100% to make it responsive */
    padding: 20px 5%;
    overflow: hidden;
    box-sizing: border-box;
    /* To include padding in total width */
}

.team-big-box {
    height: fit-content;
    width: 100%;
}

.team-mem-in {
    position: relative;
    height: fit-content;
    width: 270px;
    padding: 10px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    scroll-behavior: smooth;
}

.team-mem {
    position: relative;
    height: 250px;
    width: 250px;
    border-radius: 10px;
    background-color: #555;
    transition: all 0.5s ease;
    overflow: hidden;
}

.team-mem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team-info {
    cursor: unset;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.5s ease;
    padding: 0px 10px;
}

.team-mem:hover .team-info {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    transition: all 0.5s ease;
}



.up-dow-shwaip {
    height: 100%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 10px;
}

.up-in,
.down-in {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #132927;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.up-in i,
.down-in i {
    font-size: 1.3rem;
    font-weight: 500;
}

.four-page {
    height: fit-content;
    width: 100%;
    /* Change 1040px to 100% to make it responsive */
    background-color: #132927;
    padding: 20px 5%;
    overflow: hidden;
    box-sizing: border-box;
    /* To include padding in total width */
    /
}

.about-in {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-left {
    height: fit-content;
    width: 50%;
    padding-right: 30px;
}

.about-left h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #9b9b9b;
    margin-bottom: 5px;
}

.about-left h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #bfbfbf;
    line-height: 1.2;
}

.socal-media {
    height: fit-content;
    width: 100%;
    padding: 20px 0px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.media-box {
    cursor: pointer;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #a5a5a536;
    border: 1px solid #777;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-box i {
    font-size: 1.9rem;
    font-weight: 400;
    color: #131313;
}

.about-right {
    height: 310px;
    width: 50%;
    display: flex;
    gap: 5px;
    padding-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.about-right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.right-box {
    height: 400px;
    width: 200px;
    overflow: hidden;
    /* background-color: blue; */
}

.right-box-in {
    height: 350px;
    width: 100%;
    /* background-color: cyan; */
    overflow: hidden;
}

/* .right-box-in img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} */
.right-box-in-img {
    height: 350px;
    width: 200px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.right-box-in:hover .right-box-in-img {
    cursor: pointer;
    height: 390px;
    width: 260px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.right-box-padd {
    padding-top: 50px;
}

.five-page {
    height: fit-content;
    width: 100%;
    padding: 20px 5%;
    overflow: hidden;
    box-sizing: border-box;
}

.contac-us {
    height: fit-content;
    width: 100%;
    display: flex;
}

.contac-left {
    height: fit-content;
    width: 60%;
    padding-top: 30px;
}

.contac-left h4 {
    font-size: 0.9rem;
    font-weight: 300;
}

.contac-left form {
    padding-top: 20px;
}

.inpt {
    border: none;
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #333;
    outline: none;
    transition: all 0.6s ease;
    padding-left: 5px;
}

.inpt:focus {
    border-bottom: 2px solid #132927;
    transition: all 0.6s ease;
}

.na-ph-in {
    height: fit-content;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

.na-ph-in-box {
    height: 40px;
    width: 50%;
}

.ema-box {
    margin-top: 15px;
    height: 40px;
    width: 100%;
}

.tex-box {
    margin-top: 15px;
    height: 100px;
    width: 100%;
}

.sub-butt {
    cursor: pointer;
    height: 40px;
    width: 30%;
    background-color: #132927;
    color: #c8c8c8;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-right {
    height: 370px;
    width: 40%;
    padding-left: 10px;
    display: flex;
    justify-content: start;
    align-items: end;
}

.cont-right-box {
    height: fit-content;
    width: 350px;
    border-radius: 20px;
    background-color: #132927;
    padding: 20px;
}

.cont-right-box h5 {
    font-size: 1rem;
    font-weight: 400;
    color: #c8c8c8;
}

.cont-right-box h5 span {
    font-size: 1.3rem;
    font-weight: 400;
    margin-right: 5px;
}


/* ----------- foooter -------------- */

footer {
    background-color: #132927;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex-basis: 30%;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #ccc;
}

.social-media {
    display: flex;
    justify-content: flex-start;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #555;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #777;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}


/* about us  */
/* Desktop Styles */
.nav-link {
    @apply text-gray-700 hover:text-blue-600 transition duration-300;
}

.dropdown-menu {
    @apply hidden group-hover:block absolute left-0 mt-2 bg-white shadow-md rounded-md w-48;
}

.dropdown-item {
    @apply block px-4 py-2 text-gray-700 hover:bg-gray-100;
}

.active {
    @apply text-blue-600 font-bold;
}

/* Mobile Styles */
.mobile-nav-link {
    @apply block px-6 py-3 text-gray-700 hover:bg-gray-100 border-b;
}

.mobile-dropdown {
    @apply hidden pl-6 bg-gray-50;
}

.mobile-dropdown-item {
    @apply block px-6 py-2 text-gray-700 hover:bg-gray-200;
}

/* about us  */

@media (max-width: 968px) {
    .logo {
        height: 177px;
        width: 296px;
    }

    .cont-di {
        height: 80vh;
        overflow: hidden;
    }

    .text-3d {
        font-size: 80px;
    }

    .wec-des {
        font-size: 1.3rem;
        width: 95%;
    }

    .one-ser {
        flex-direction: column-reverse;
    }

    .in-info {
        width: 100%;
    }

    .first-page h2,
    .second-page h2,
    .three-page h2,
    .four-page h2,
    .five-page h2 {
        font-size: 6rem;
        line-height: 0.8;
        margin-bottom: 20px;
    }

    .hea-out h3 {
        font-size: 2rem;
    }

    .in-img {
        height: 250px;
        width: 100%;
    }

    .second-page {
        min-height: fit-content;
    }

    .about-in {
        flex-direction: column-reverse;
    }

    .about-right {
        width: 100%;
    }

    .about-left {
        padding-top: 30px;
        width: 100%;
    }

    .about-left h5 {
        font-size: 1.2rem;
    }

    .about-left h3 {
        font-size: 1.1rem;
    }

    .contac-us {
        flex-direction: column-reverse;
    }

    .contact-right {
        height: 180px;
        width: 100%;
    }

    .cont-right-box {
        height: fit-content;
        width: 100%;
    }

    .contac-left {
        height: fit-content;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        /* align-items: center; */
        padding: 0px 5%;
    }

    .footer-section {
        flex-basis: auto;
        margin-bottom: 30px;
    }
    .team-mem-in {
        width: 200px;
    }
    
    .team-mem {
        height: 180px;
        width: 200px;
    }
}

@media (max-width: 668px) {
    .navbar {
        height: 6vh;
        padding: 0 0px;
    }

    .text-3d {
        font-size: 38px;
    }

    .in-img {
        height: 250px;
        width: 100%;
    }

    .wec-des {
        font-size: 0.9rem;
        width: 100%;
    }

    .logo {
        height: 100px;
        width: 130px;
    }

    .one-ser {
        flex-direction: column-reverse;
    }

    .in-info {
        width: 100%;
    }

    .first-page h2,
    .second-page h2,
    .three-page h2,
    .four-page h2,
    .five-page h2 {
        font-size: 6rem;
        line-height: 0.8;
        margin-bottom: 20px;
    }

    .hea-out h3 {
        font-size: 2rem;
    }

    .second-page {
        min-height: fit-content;
    }

    .p-in-show {
        width: 100%;
    }

    .about-in {
        flex-direction: column-reverse;
    }

    .about-right {
        width: 100%;
    }

    .about-left {
        padding-top: 30px;
        width: 100%;
    }

    .about-left h5 {
        font-size: 1.2rem;
    }

    .about-left h3 {
        font-size: 1.1rem;
    }

    .contac-us {
        flex-direction: column-reverse;
    }

    .contact-right {
        height: 180px;
        width: 100%;
    }

    .cont-right-box {
        height: fit-content;
        width: 100%;
    }

    .contac-left {
        height: fit-content;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        /* align-items: center; */
        padding: 0px 5%;
    }

    .footer-section {
        flex-basis: auto;
        margin-bottom: 30px;
    }
    .team-mem-in {
        width: 140px;
    }
    
    .team-mem {
        height: 170px;
        width: 160px;
    }

}