* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

body {
    font-family: sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #202124;
    overflow: hidden;
}

/*homepage css start*/

/* Header */
header {
    height: 60px;
}

.navbar-home {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
}

.navbar-home ul {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
}

.navbar-home ul li {
    margin-left: 17px;
}

.navbar-home ul li a {
    color: #fff;
}

.link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.circle-icon-shadow {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.circle-icon-shadow:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-icon,
.user-icon span {
    font-size: 18px;
}

.user-icon span {
    color: white;
}

.user-icon {
    background-color: #EF6C00;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}

/*grid*/
.apps-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 12px;
    background: #1b1b1b;
    border-radius: 30px;
    position: absolute;
    box-shadow: 0px 4px 11px rgba(251, 251, 251, 0.1);
    left: -282px;
    z-index: 1000;
    overflow: scroll;
    scrollbar-width: none;
    overflow-x: hidden;
    top: 60px;
    height: 375px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    padding: 8px 17px;
    border-radius: 8px;
    height: 100%;
    width: 100%;
}

.app-item:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}

.app-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.app-item p {
    margin: 0;
    font-size: 12px;
    color: #9c9797;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80px;
    height: 38px;
    transition: width 0.3s ease;
    position: relative;
}

.app-item:hover p {
    width: auto;
    white-space: normal;
    color: black;
}

.circle-grid-shadow {
    cursor: pointer;

}

.circle-grid-shadow.active .apps-grid {
    display: grid;
}

.social-icons {
    display: none;
    margin-top: 1px;
    position: absolute;
    background-color: transparent;
    padding: 10px;
    z-index: 1000;
}

.icon {
    display: block;
    margin: 9px 8px;
    text-decoration: none;
    color: #000;
    font-size: 24px;
    transform: rotateX(90deg);
    transition: transform 0.5s ease-in-out;
}

.icon i {
    margin-right: 8px;
}

.icon:hover {
    color: #e19a27;
}

ul {
    list-style: none;
}

ul li {
    position: relative;
}

.link:hover + .social-icons {
    display: block;
}

.social-icons .icon {
    animation: vertical-rotation 0.5s forwards ease-in-out;
}

@keyframes vertical-rotation {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.social-icons .icon:nth-child(1) {
    animation-delay: 0.1s;
}

.social-icons .icon:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icons .icon:nth-child(3) {
    animation-delay: 0.3s;
}

.social-icons .icon:nth-child(4) {
    animation-delay: 0.4s;
}
/* Content */
.content-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.logo-img {
    height: auto;
    width: 15%;
    position: absolute;
    /* position: relative; */
    top: 77px;
}

.home-bar {
    border: 1px solid rgb(248, 244, 244);
    width: 600px;
    height: 54px;
    border-radius: 18px 20px 20px 18px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: absolute;
    top: 44%;
}

.home-bar:hover {
    box-shadow: 0px 0px 4px 0px #B5B5B5;
}

.home-bar i {
    font-size: 18px;
    color: rgb(248, 245, 245);
    margin-right: 15px;
    cursor: pointer;
}

.home-bar input {
    flex-grow: 1;
    height: 30px;
    margin-right: 15px;
    font-size: 16px;
    border: none;
    background-color: #202124;
    color: white;
}

.home-bar input:focus {
    outline: none;
}

.search-btns {
    margin-top: 16%;
}
.search-btns button a {
    color: white;
}

.search-btns button {
    height: 40px;
    font-size: 14px;
    border: 1px solid #5f6368;
    border-radius: 5px;
    margin-left: 10px;
    color: #e8eaed;
    background-color: #303134;
    box-shadow: 0 1px 3px rgba(23, 23, 23, 0.24);
}

.search-btns button:hover {
    border: 1px solid lightgray;
}

.google-search-btn {
    width: 120px;
}

.lucky-search-btn {
    width: 140px;
}

.language {
    margin-top: 20px;
    font-size: 12px;
    margin-left: 20px;
}

.language p {
    color: #fff;
}

.language p a {
    color: #99c3ff;
}

.language p a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #040404;
    height: 100px;
    position: absolute;
    bottom: 0%;
    width: 100vw;
}

.footer-content {
    display: flex;
    align-items: center;
    padding: 20px;
}

.upper-footer {
    padding: 15px 30px;
    border-bottom: 1px solid #313335;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.upper-footer p {
    color: rgb(249, 249, 249);
    font-size: 14px;
}

.lower-footer {
    height: 50%;
    display: flex;
    justify-content: space-between;
}

.lower-footer ul li {
    color: #fff;
}

.lower-footer ul li a {
    font-size: 14px;
    color: rgb(245, 240, 240);
}

.lower-footer ul li a:hover {
    text-decoration: underline;
}

.lower-left-footer {
    display: flex;
}

.lower-left-footer li {
    margin-right: 15px;
}


.lower-right-footer {
    display: flex;
}

.lower-right-footer li {
    margin-left: 15px;
}

.suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 40.3%;
    margin: 0 auto;
    border: 1.5px solid white;
    border-top: none;
    display: none;
    position: relative;
    z-index: 1;
    background-color: #202124;
    border-radius: 0px 0px 21px 21px;
    margin-top: 287px;
}

.suggestions-list:hover {
    box-shadow: 0px 3px 3px -3px #B5B5B3;
    border-top: none;
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
    background: #202124;
    margin-top: 15px;
    border: 5px solid #202124;
    border-radius: 42px 42px 42px 42px;
}

.suggestions-list li a {
    color: white;
}

.suggestions-list li:hover {
    background-color: #fefefe3c;
    border-radius: 0px 0px 0px 0px;
}

.suggestions-list li.highlight {
    background-color: #fefefe3c;
}

/* home page css end*/


/*services css start*/  
.left-content {
    position: absolute;
    right: 35%;
    width: 70%;
}

.video-ad{
    height: auto;
    width: 120%;
}
.right-content {
    position: absolute;
    left: 70%;
    top: 70px;
    width: 40%;
    height: auto;
}

.animated-content {
    opacity: 0;
    animation: moveZoomIn 2s ease-in-out forwards;
}

.main-section h1,
p,
h3,
h4 {
    color: white;
}

.suggestions-list-services {
    list-style: none;
    margin: -4px;
    padding: 0px;
    width: 100%;
    margin: 0 auto;
    border: 1.5px solid white;
    border-top: none;
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: #202124;
    border-radius: 0px 0px 18px 18px;
    margin-top: 257px;
    margin-left: -14.8px;
}

.suggestions-list-services:hover {
    box-shadow: 0px 3px 3px -3px #B5B5B3;
    border-top: none;
}

.suggestions-list-services li {
    padding: 0px;
    cursor: pointer;
    background: #202124;
    margin-top: 15px;
    border: 5px solid #202124;
    border-radius: 42px 42px 42px 42px;
}

.suggestions-list-services li a {
    color: white;
    text-decoration: none;
}

.suggestions-list-services li:hover {
    background-color: #fefefe3c;
    border-radius: 24px 24px 24px 22px;
}

.suggestions-list-services li.highlight {
    background-color: #fefefe3c;
}

.service-bar {
    border: 1px solid rgb(248, 244, 244);
    width: 65%;
    height: 48px;
    border-radius: 26px 26px 26px 26px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    position: absolute;
    top: 1%;
    left: 6%;
}

.service-bar:hover {
    box-shadow: 0px 0px 4px 0px #B5B5B5;
}

.service-bar i {
    font-size: 18px;
    color: rgb(248, 245, 245);
    margin-right: 15px;
    cursor: pointer;
}

.service-bar input {
    flex-grow: 1;
    height: 30px;
    margin-right: 15px;
    font-size: 16px;
    border: none;
    background-color: #202124;
    color: white;
}

.service-bar input:focus {
    outline: none;
}

.back-button_services {
    position: absolute;
    top: 1%;
    left: 2%;
}

.back-button_services a {
    color: white;
    font-size: 2rem;
}

.horizontal-line {
    margin-top: 0.3rem;
    margin-bottom: 0rem;
    border: 0;
    border-top: 0.5px solid #353131;
    width: 100%;
}

/*services css end*/

/*about css start*/
.header-about {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    height: auto;
}

.about-container {
    width: 100%;
    padding: 20px;
}

.wrapper-about {
    width: 90%;
    max-width: 1200px;
    height: 82%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    border: 1px solid #fff;
    border-radius: 23px;
    box-shadow: 0px 0px 25px 0px #ac89b9;
    padding: 20px;
    margin: auto;
}

.wrapper-about .box {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.description h2 {
    font-family: 'Acme', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.description p {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.about {
    color: #fff;
    text-align: center;
    font-weight: bolder;
    font-size: 2.5rem;
    font-family: 'Acme', sans-serif;
    margin-bottom: 20px;
}

/*about css end*/

/*contact page css start*/
main {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #343a40;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* style.css */

/* Slide-right transition */
.slide-right {
    position: relative;
    left: -100%;
    animation: slide-right 1s ease-out forwards;
}

@keyframes slide-right {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.rotate-animations {
    animation: rotate 2s ease-in-out;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Map visibility */
.show-map {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.map-visible {
    opacity: 1;
}



.contact-box {
    position: relative;
    width: 100%;
    max-width: 1020px;
    height: 500px;
    bottom: 67px;
    background-color: #fff;
    border-radius: 3.3rem;
    box-shadow: 0px 0px 4px 4px rgb(255 217 92);
}

.inner-box {
    position: absolute;
    width: calc(100% - 4.1rem);
    height: calc(100% - 4.1rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forms-wrap {
    position: absolute;
    height: 100%;
    width: 45%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    transition: 0.8s ease-in-out;
}

form {
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transition: opacity 0.02s 0.4s;
}

form.sign-up-form {
    opacity: 0;
    pointer-events: none;
}

.contact-logo {
    display: flex;
    align-items: center;
}

.contact-logo img {
    width: 45px;
    margin-right: 0.3rem;
    position: relative;
    top: -8px;
}

.contact-logo h4 {
    font-size: 1.5rem;
    margin-top: -3px;
    letter-spacing: -0.5px;
    color: #151111;
    font-weight: 700;
}

.contact-heading h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: rgb(34, 34, 34);
}

.contact-heading h6 {
    color: #bababa;
    font-weight: 400;
    font-size: 0.75rem;
    display: inline;
}

.toggle {
    color: #151111;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: 0.3s;
}

.toggle:hover {
    color: #8371fd;
}

.input-wrap-contact {
    position: relative;
    height: 37px;
    margin-bottom: 2rem;
}

.input-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #bbb;
    padding: 0;
    font-size: 0.95rem;
    color: #151111;
    transition: 0.4s;
}

label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: rgb(34, 34, 34);
    pointer-events: none;
    transition: 0.4s;
}

.input-field.active {
    border-bottom-color: #151111;
}

.input-field.active+label {
    font-size: 0.75rem;
    top: -2px;
}

.sign-btn {
    display: inline-block;
    width: 100%;
    height: 43px;
    background-color: #151111;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0.8rem;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.sign-btn:hover {
    background-color: #8371fd;
}

.text {
    color: #bbb;
    font-size: 0.7rem;
}

.text a {
    color: #bbb;
    transition: 0.3s;
}

.text a:hover {
    color: #8371fd;
}

main.sign-up-mode form.sign-in-form {
    opacity: 0;
    pointer-events: none;
}

main.sign-up-mode form.sign-up-form {
    opacity: 1;
    pointer-events: all;
}

main.sign-up-mode .forms-wrap {
    left: 55%;
}

main.sign-up-mode .carousel-contact {
    left: 0%;
}

.carousel-contact {
    position: absolute;
    height: 100%;
    width: 55%;
    left: 45%;
    top: 0;
    background-color: #343a40;
    border-radius: 2rem;
    display: grid;
    grid-template-rows: auto 1fr;
    padding-bottom: 2rem;
    overflow: hidden;
    transition: 0.8s ease-in-out;
}

.images-wrapper-contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.image .img-3 {
    position: relative;
    z-index: 1;
}

.image {
    width: 100%;
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    transition: opacity 0.3s, transform 0.5s;
}

.img-1 {
    transform: translate(0, -50px);
}



.img-3 {
    transform: scale(0.3) rotate(-20deg);
}

.image.show {
    opacity: 1;
    transform: none;
    display: block;
}

.contact-h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    top: 40px;
    color: #fff;
    font-weight: 900;
}

.contact-p {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:large;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    top: 60px;
}

.text-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: 0px;
}

.text-wrap {
    max-height: 2.2rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.text-group {
    display: flex;
    flex-direction: column;
    text-align: center;
    transform: translateY(0);
    transition: 0.5s;
}

.text-group h2 {
    line-height: 2.2rem;
    font-weight: 600;
    font-size: 1.6rem;
    color: #fff;
}

.bullets {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullets span {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #aaa;
    margin: 0 0.25rem;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.bullets span.active {
    width: 1.5rem;
    background-color: #151111;
    border-radius: 1rem;
}
.left-contact-mini{
    position: relative;
    left: 6px;
}
.right-contact-mini{
    position: relative;
    left: 7px;
}

.iconsss a {
    color: #f7f3f3;
    /* Adjust the color as needed */
}

.iconsss a:hover {
    color: #007bff;
    /* Change color on hover */
}

.iconsss {
    display: flex;
    position: relative;
    top: 109px;
    justify-content: space-evenly;
}

/*contact page css end*/


/*gallery page css*/
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    bottom: 28%;
    width: fit-content;
    height: auto;
    background: none;
    border: none;
    transform: translateY(50%);
}

.carousel-control-prev {
    left: 50%;
    transform: translate(-50%, 50%);
}

.carousel-control-next {
    left: 55%;
    transform: translate(-50%, 50%);
}
/* .carousel-control-prev-icon {
    background-image: url(/images/left-arrow-gal.png);
}
.carousel-control-next-icon {
    background-image: url(/images/right-arrow-gal.png);
} */

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carousel-indicators-preview {
    position: absolute;
    bottom: 20px;
    right: 100px;
    width: 300px;
    height: 300px;
    overflow: hidden;
    z-index: 900;
    transform-style: preserve-3d;
}

.preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 0.5s;
}

.carousel-indicators-preview img {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, opacity 0.3s, filter 0.3s;
}

.preview-container img {
    transform-origin: center center;
    filter: blur(2px);
    opacity: 0.5;
}

.preview-container img.active {
    filter: none;
    opacity: 1;
}

.preview-container img:nth-child(1) {
    transform: rotateY(0deg) translateZ(135px);
}

.preview-container img:nth-child(2) {
    transform: rotateY(60deg) translateZ(135px);
}

.preview-container img:nth-child(3) {
    transform: rotateY(120deg) translateZ(135px);
}

.preview-container img:nth-child(4) {
    transform: rotateY(180deg) translateZ(135px);
}

.preview-container img:nth-child(5) {
    transform: rotateY(240deg) translateZ(135px);
}

.preview-container img:nth-child(6) {
    transform: rotateY(300deg) translateZ(135px);
}

.carousel-indicators-preview img.active {
    border-color: #007bff;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width:500px){
    .carousel-control-prev, .carousel-control-next{
    display: none;
    }
}

/*gallery page css end*/