.home {
    width: 100%;
    height: auto;
}

.intro {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -60px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 10px black;
}

.intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(0.5);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease both;
    transition: all 0.3s ease-in-out;
}

.intro-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.intro-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    animation: fadeIn 1s ease forwards;
}

.intro-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    animation: fadeIn 1.5s ease forwards;
}

.price-info {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffc800, #ff7300);
    padding: 12px 24px;
    border-radius: 30px;
    animation: fadeIn 2s ease forwards;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0066ff, #0033cc);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.4s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 51, 204, 0.4);
    animation: fadeIn 2.5s ease forwards;
}

.contact-button:hover {
    background: linear-gradient(135deg, #0052cc, #002999);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 51, 204, 0.6);
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 2.2rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .price-info {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@media (max-width: 600px) {
    .intro-content {
        padding: 30px 20px;
    }

    .intro-content h1 {
        font-size: 2.2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .intro-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
        margin-bottom: 30px;
    }

    .intro-item {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    .intro-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.image-slide-up-wrap {
    margin-top: 60px;
}

.image-slide-title {
    width: 100%;
    font-size: 3rem;
    color: #1f1f1f;
    font-weight: 'bold';
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.image-slide-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, #ffaa00, #ff6600);
    margin: 12px auto 0;
    border-radius: 2px;
}


.home .image-slide-wrap {
    width: 100%;
    height: 500px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ffaa00;
    border-left: none;
    border-right: none;
    overflow: hidden;
    transition: box-shadow 0.4s ease-in-out;
}

.home .image-slide-wrap:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.image-slide-wrap .image-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 0px;
    transition: transform 0.5s ease-in-out;
}

.image-slide-wrap .image-container img {
    height: 100%;
    transition: transform 0.4s ease, filter 0.3s ease;
    border-left: 1px solid white;
    border-right: 1px solid white;
    will-change: transform;
    opacity: 0.95;
}

.image-slide-wrap .image-container img:hover {
    transform: scale(1.07);
    filter: brightness(1.1);
    z-index: 1;
}

.image-slide-wrap .fa-chevron-right,
.image-slide-wrap .fa-chevron-left {
    position: absolute;
    z-index: 2;
    font-size: 0;
    cursor: pointer;
    height: 100%;
    width: 0.1%;
    top: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    transition:
        width 0.8s ease-in-out,
        font-size 0.4s ease-in-out,
        color 0.4s ease-in-out,
        background-color 0.3s ease-in-out,
        transform 0.3s ease;
    backdrop-filter: blur(2px);
}

.image-slide-wrap .fa-chevron-left {
    left: 0;
}

.image-slide-wrap .fa-chevron-right {
    right: 0;
}

.image-slide-wrap .fa-chevron-left:hover {
    background: linear-gradient(to right, #ec9d00, rgba(255, 0, 0, 0));
    transform: scaleX(1.1);
}

.image-slide-wrap .fa-chevron-right:hover {
    background: linear-gradient(to left, #ec9d00, rgba(255, 0, 0, 0));
    transform: scaleX(1.1);
}

.image-slide-wrap:hover .fa-chevron-left,
.image-slide-wrap:hover .fa-chevron-right {
    width: 8%;
    font-size: 2em;
    color: #ffffff;
}

.image-slide-wrap:hover .fa-chevron-left {
    background: linear-gradient(to right, #ffaa00, rgba(255, 0, 0, 0));
}

.image-slide-wrap:hover .fa-chevron-right {
    background: linear-gradient(to left, #ffaa00, rgba(255, 0, 0, 0));
}

.image-slide-wrap .image-container img:not(:hover) {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.image-slide-wrap .image-container img:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}


.about-us-section {
    width: 100%;
    background: linear-gradient(to bottom right, #ffffff 0%, #f5f5f5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-us-content {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
    text-align: center;
    animation: fadeInUp 1.6s ease both;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15);
}

.about-us-content .title {
    font-size: 3rem;
    color: #1f1f1f;
    font-weight: 'bold';
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.about-us-content .title::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, #ffaa00, #ff6600);
    margin: 0px auto 0;
    border-radius: 2px;
}

.about-us-content p {
    font-size: 1.25rem;
    line-height: 2;
    color: #444;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s ease;
}

.about-us-content p:hover {
    color: #222;
}

@media (max-width: 992px) {
    .about-us-content {
        padding: 50px 30px;
    }
    .about-us-content .title {
        font-size: 2em;
    }

    .image-slide-title {
        font-size: 2em;
    }

    .about-us-content h2 {
        font-size: 2.5rem;
    }

    .about-us-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .about-us-content {
        padding: 40px 20px;
    }

    .about-us-content h2 {
        font-size: 2rem;
    }

    .about-us-content p {
        font-size: 1rem;
        line-height: 1.8;
    }
}
