* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary: #d4af37;
    --secondary: #2c3e50;
    --white: #ffffff;
    --dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--white);
    overflow-x: hidden;
}
.home-btn{
    position: fixed;
    bottom: 10px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}
.icons{
    background-color: green;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; */
    cursor: pointer;
}
.icons a i{
    color: white;
    font-size: 30px;
}
.icon{
    background-color: rgb(65, 66, 65);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 50%; */
    cursor: pointer;
    position: relative;
    z-index:9999999;

}
.icon a i{
    color: white;
    font-size: 20px;
}
/* Navigation */
.nav-wrapper {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    margin-top: -8vh;
   
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateZ(20px);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    font-weight: bolder;
    
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
}
   /* Responsive styles */
   @media (max-width: 768px) {
    .toggle-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: rgba(29, 28, 28, 0.849);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    perspective: 1000px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-title{
     font-size: 35px;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    
}

.btn {
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 15px;
    background: red;
    
    border: 3px solid #d4af37;
    border-radius: 50% 0px 50% 0px;
    width: 30%;
    margin-top: 10px;
    
}
.btn a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
    font-size: 25px;
}


/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    color: var(--dark);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 30px;
    align-items: center;
}

.about-image {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transform: rotateY(-20deg);
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: rotateY(0deg);
}

.about-content {
    transform: translateZ(0);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background:white;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background:#d4af37;
    padding: 30px;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateZ(20px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05) translateZ(20px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background:url(https://i.ibb.co/308qJnL/image.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial-slider {
    margin-top: 50px;
    overflow: hidden;
}
.instagram{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.instagram-media{
    background:#FFF;
    border:0;
    border-radius:3px;
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);
    margin: 1px;
    max-width:100px;
    height: 80vh;
}
.testimonial-card {
    background: #d4af37a6;
    padding: 30px;
    border-radius: 20px;
    margin: 20px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateZ(20px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color:bla;
    font-weight: bold;
}


/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        transform: rotateY(0);
    }
    .btn{
        width: 80%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .instagram{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .instagram{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    max-width: 800px;
    margin: 0 1rem;
    border-radius: 8px;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slide-button {
    background: #d4af37;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.slide-button:hover {
    background: #c19b26;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.nav-dot.active {
    background: white;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slider-button {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

/* Footer styling */
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(https://img.weddingbazaar.com/shaadisaga_production/photos/pictures/008/117/507/new_medium/mini_magick20240201-15397-1jlmlvb.jpg?1706815649);
    color: white;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 987;
}

/* Footer columns */
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #f5f5f5;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #f5a623;
}

/* Social media icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #f5a623;
}

/* Booking form styling */
.booking-form {
    display: flex;
    flex-direction: column;
    margin: 25px;
}

.booking-form label {
    font-size: 14px;
    margin-bottom: 5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.booking-form button {
    background-color: #f5a623;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: #e59422;
}

.imgslide{
    padding: 10vh;
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    z-index: 999;
    color: black;
}
.kjs{
    display: flex;
    justify-content: space-around;
    padding: 25px;
}
.map{
    height: 417px;
    width: 680px;
    margin-top: -10vh;
}

/* Responsive styles */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
    .kjs{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 20px;
    }
    .map{
      display: none;

    }

}

@media (max-width: 500px) {
    .footer-social {
        justify-content: center;

    }

    .video-container {
        width: 100%;
        height: 100vh;
    }

    #background-video {
        width: fit-content;
        height: 100%;
    }
}

