* {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    box-sizing: border-box;
    transition: 0.2s all ;
    font-family: "Gowun Batang", serif;
    font-weight: 500;
}

body {
    background-color: #f4f4f4;
    background: url(photo/bodyBG.png) center;
}

/* root classes */

.flexJA{
    display: flex;
    justify-content: center;
    align-items: center;
}


.navC {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
    height: 90px;
    background-color: #ADEAEA;
    color: white;
}

/* Logo container */
.logoC .logo a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Navbar styling */
.container {
    display: flex;
    justify-content: flex-end;
}

#nav {
    position: absolute;
    top: 20px;
    z-index: 5;
    font-size: 20px;
}

/* Main Menu Items */
.ul1 {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Menu Item styling */
.ul1 .li {
    position: relative;
}

.ul1 .li a {
    text-decoration: none;
    color: #A67C00;
    padding: 10px 15px;
    display: block;
}

.ul1 .li a:hover {
    /* background-color: cyan; */
    color: #FFD700; /* Brighter gold on hover */
    transform: scale(1.05);
}

/* Dropdown (Sub-nav) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 5px;
}

.dropdown-content li {
    padding: 10px 15px;
}

.dropdown-content li a {
    color: white;
}

.dropdown-content li a:hover {
    background-color: #575757;
}

/* Show dropdown when hovering */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger icon (for mobile view) */
#tag {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

/* Show hamburger on mobile view */
@media screen and (max-width: 768px) {
    .navC{
        width: 100%;
        height: 100px;
    }
    #ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background-color: #333;
        width: 100%;
    }

    #ul.show {
        display: flex;
    }

    #ul .li {
        width: 100%;
    }

    #tag {
        display: block;
    }

    .ul1 .li a {
        padding: 15px 20px;
    }

    .dropdown-content {
        position: relative;
        display: block;
        width: 100%;
    }

    .dropdown-content li a {
        padding: 15px 20px;
    }

}
.animate{
    animation: animate 3s   1 linear ;
}
@keyframes animate {
    0%{
        height: 0px;
        background-color: green;
    }
    100%{
        height: 200px;
        background-color: red;
    }
}
a{
    color: white;
    text-decoration: none;
}
a:hover{
    text-decoration:underline;
}

.heroVDc {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.heroVD video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    min-width: 400px;
    object-fit: cover;
    /* z-index: -1;  */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}
.workC {
    height: 100vh;
    width: 100%;
    background-color: orange;
    display: flex;
    justify-content: center;
}

.work {
    height: 300px;
    width: 300px;
    background-color: green;
    margin: 5px;
    position: absolute;
}

/* slider------------------------ */
.carousel-container {
    position: relative;
    width: 900px;
    height: 650px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    object-fit: contain;
}

.carousel-slide.active {
    opacity: 1;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    height: 70%;
    width: 30px;
    background-color: grey;
    opacity: 0.8;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
@media screen and (max-width: 768px) {
    
    .carousel-container{
        width: 400px;
        height: 300px;
    }
}
/* .slider---------------------------- */
.serviceC{
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.service{
    width: 300px;
    height: 450px;
    /* background-color: red; */
    margin: 15px;
    padding: 12px;
    border-radius: 12px;
    flex-direction: column;
}
.img{
    width: 260px;
    height: 220px;
    /* background-color: yellow; */
}
.img>img{
    width: 100%;
    filter: brightness(80%);
}
.img>img:hover{
    transform: scale(1.05);
    filter: brightness(100%);
}
.desc > h2{
    color: #DE119D;
}
.show > p{
    font-size: 30px;
}
.reviewC{
    width: 100%;
    min-height: 100vh;
    flex-wrap: wrap;
}
.review{
    width: 350px;
    height: 400px;
    background-color:white;
    box-shadow: 10px 10px 15px whitesmoke;
    border-radius:12px ;
    margin: 5px;
    padding: 12px;
}
.pfp{
    height: 90px;
    width: 90px;
    /* background-color: green; */
    border-radius: 50%;
    margin: 20px auto;
    overflow: hidden;
}
.pfp > img{
    width: 100%;
}
.textR{
    font-size: 30px;
    color: black;
}

footer{
    height: 300px;
    width: 100%;
    background-color: #153451;
    padding: 25px 0px 0px 0px;
    margin-top: 25px;
    box-shadow: 1px 20px 10px rgba(0, 0, 0, 0.5);
}
.footer {
    font-size: 20px;
    text-align: center;
    
}
.links{
    margin-bottom: 10px;
}
.footer a {
    text-decoration: none;
    color: white;
    opacity: 0.9;
}
.footer a:hover{
    text-decoration: underline;
    color: white;
    opacity: 1;
}
.follow{
    height: 27px;
    width: 27px;
    margin:1px;
    opacity: 0.7;
}
.follow:hover{
    opacity: 1;
    transform: translateY(-5px);
}
.Icon{
    text-decoration: none;
}
.footer::after{
    content: 'Created by Mr.Ashish💓';
    color: white;
}