* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow-x: hidden;
    /* overflow-y: hidden; */
    background-color: rgb(36, 36, 36) !important;
}

html {
    scroll-behavior: smooth;
}

main {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.slider {
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.item {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;

}

.content {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    position: absolute;
    bottom: 10%;
    left: 5%;
    right: 5%;
    text-align: center;
}

.content {
    display: grid !important;
    align-items: center !important;
}

.button {
    background-color: #00c853;

}
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap");

    :root {
        --color-white: #fff;
        --color-1: #350048;
        --color-2: rgba(255, 255, 255, 0.05);
        --color-3: rgba(0, 0, 0, 0.2);
        --color-4: rgba(255, 255, 255, 0.1);
        --color-gradient-1: rgba(255, 255, 255, 0.15);
    }

    .enquirybtn {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .enquirybtn .btn {
        position: relative;
        width: 155px;
        height: 50px;
        margin: 20px;
    }

    .enquirybtn .btn a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--color-2);
        box-shadow: 0 15px 35px var(--color-3);
        border-top: 1px solid var(--color-4);
        border-bottom: 1px solid var(--color-4);
        border-radius: 30px;
        color: var(--color-white);
        z-index: 1;
        font-weight: 400;
        letter-spacing: 1px;
        text-decoration: none;
        overflow: hidden;
        transition: 0.8s;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .enquirybtn .btn:hover a {
        letter-spacing: 3px;
    }

    .enquirybtn .btn a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(to left, var(--color-gradient-1), transparent);
        transform: skewX(45deg) translateX(0);
        transition: 0.8s;
    }

    .enquirybtn .btn:hover a::before {
        transform: skewX(45deg) translateX(200%);
    }

    .enquirybtn .btn::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -5px;
        width: 30px;
        height: 10px;
        background: red;
        border-radius: 10px;
        transition: 0.8s;
        transition-delay: 0s;
    }

    .enquirybtn .btn:hover::before {
        bottom: 0;
        height: 50%;
        width: 80%;
        border-radius: 30px;
        transition-delay: 0.5s;
    }

    .enquirybtn .btn::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -5px;
        width: 30px;
        height: 10px;
        background: red;
        border-radius: 10px;
        transition: 0.8s;
        transition-delay: 0s;
    }

    .enquirybtn .btn:hover::after {
        top: 0;
        height: 50%;
        width: 80%;
        border-radius: 30px;
        transition-delay: 0.5s;
    }

    .enquirybtn .btn:nth-child(1)::before,
    .enquirybtn .btn:nth-child(1)::after {
        background: #b78337;
        box-shadow: 0 0 5px #b78337, 0 0 15px #b78337, 0 0 30px #b78337,
            0 0 60px #b78337;
    }

.button:hover {
    background-color: #00b342 !important;
    color: white !important;
    transform: translateY(-2px);
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3498db;
    border: none;
    color: white;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

.laun {
    text-align: center;
    padding: 5px 10px;
    color: white;

}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#additional-content {
    padding: 2rem;
    background-color: #f0f0f0;
    margin-top: 1rem;
    width: 100%;
}

#additional-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#additional-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-boxes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.info-box {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-box p {
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .info-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .content {
        font-size: 0.85rem;
    }
}

@media (max-width: 650px) {
    .info-box {
        flex: 1 1 100%;
    }

    .content {
        padding: 10px;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.8rem;
    }
}

@media (max-width: 650px) {
    .slider {
        display: block;
    }

    .item {
        height: 50vh;
    }
}

.item {
    width: 200px;
    height: 200px;
    list-style-type: none;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
    opacity: 0.8;

    &:nth-child(1),
    &:nth-child(2) {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
    }

    &:nth-child(3) {
        left: 50%;
    }

    &:nth-child(4) {
        left: calc(50% + 220px);
    }

    &:nth-child(5) {
        left: calc(50% + 440px);
    }

    &:nth-child(6) {
        left: calc(50% + 660px);
        opacity: 0;
    }
}

.content {
    width: min(30vw, 400px);
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;

    & .title {
        text-transform: uppercase;
    }

    & .description {
        line-height: 1.7;
        margin: 1rem 0 1.5rem;
        font-size: 0.8rem;
    }

    & button {
        width: fit-content;
        background-color: rgba(0, 0, 0, 0.1);
        color: white;
        border: 2px solid white;
        border-radius: 0.25rem;
        padding: 0.75rem;
        cursor: pointer;
    }
}

.item:nth-of-type(2) .content {
    display: block;
    animation: show .7s ease-in-out .3s forwards;
}

@keyframes show {
    0% {
        filter: blur(5px);
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@media (width > 650px) and (width < 900px) {
    .content {
        & .title {
            font-size: 1rem;
        }

        & .description {
            font-size: 0.7rem;
        }

        & button {
            font-size: 0.7rem;
        }
    }

    .item {
        width: 160px;
        height: 270px;

        &:nth-child(3) {
            left: 50%;
        }

        &:nth-child(4) {
            left: calc(50% + 170px);
        }

        &:nth-child(5) {
            left: calc(50% + 340px);
        }

        &:nth-child(6) {
            left: calc(50% + 510px);
            opacity: 0;
        }
    }
}

@media (width < 650px) {
    .content {
        & .title {
            font-size: 0.9rem;
        }

        & .description {
            font-size: 0.65rem;
        }

        & button {
            font-size: 0.7rem;
        }
    }

    .item {
        width: 130px;
        height: 220px;

        &:nth-child(3) {
            left: 50%;
        }

        &:nth-child(4) {
            left: calc(50% + 140px);
        }

        &:nth-child(5) {
            left: calc(50% + 280px);
        }

        &:nth-child(6) {
            left: calc(50% + 420px);
            opacity: 0;
        }
    }
}

.linkicons {
    top: 25%;
    left: 5%;
    position: absolute;
    z-index: 2;
}


.col {
    margin: 0px;
    padding: 0px;
}

a {
    color: rgb(255, 255, 255) !important;

}

.a1 {
    color: rgb(255, 255, 255) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px !important;
}

.a2 {
    background: rgba(255, 250, 250, 0.189);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 999 !important;

}

.a123 {
    justify-content: space-evenly;
    padding: 10px 20px !important;
}

.nav-item {
    padding: 0px 10px;
}

.nav-item:hover {
    background-color: rgba(151, 151, 151, 0.407);
    border-radius: 15px !important;
    color: white !important;
}

.dropdown-item:hover {
    color: black !important;
}

.b {
    height: 100px;
    width: 2px;
    border-radius: 10px;
    position: relative;
    background-color: white;
    left: 8px;
}

.b1 div i {
    font-size: 20px;
}

.copyrights {
    text-align: center;
}

.logo {
    background: -webkit-linear-gradient(23deg, rgba(78, 236, 255, 1) 0%, rgba(78, 236, 255, 1) 34%, rgba(9, 102, 246, 1) 75%, rgba(2, 33, 111, 1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer {
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column p {
    margin: 5px 0;
}

.contact-details p,
.address p {
    font-size: 16px;
}

.title1 {
    display: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        padding: 10px 0;
    }
}

@media(max-width:426px) {
    body {
        overflow-y: auto !important;
    }

    .footer-container {
        margin-top: 100px;
        align-items: start;
        padding: 0px 10px;
    }

    .title1 {
        display: block;
    }

    .title12 {
        display: none;
    }

    .row {
        margin-top: 0px !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .item {
        width: 100px;
        height: 100px;
        top: 80%;
    }

    .content {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 20px;
        width: fit-content;
        position: absolute;
        left: 25%;
        bottom: 100px;
        text-align: center;
    }

    .linkicons {
        top: 25%;
        left: 1%;
        position: absolute;
        z-index: 2;

    }
}



footer h5 {
    color: #fff;
}

footer .fa-solid {
    margin-right: 5px;
}

.footer-content {
    padding: 30px 80px 10px 80px;
}

.address p {
    width: 90%;
    color: gray;
}

.address ol {
    width: 90%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.useful-link a,
.popular-link a {
    text-decoration: none;
    color: gray;
}

.useful-link ul li,
.popular-link ul li {
    margin-bottom: 10px;
    list-style-type: none;
}

.useful-link ul li a:hover,
.popular-link ul li a:hover {
    letter-spacing: 0.5px;
    transition: 0.3s;
    color: #fff;
}

.company-name {
    color: #f04917;
    font-weight: 800;
    letter-spacing: 1px;
}