body{
    background-color:#ffffff !important;
}
/* slider start */
.slider-container{
    width: 100%;
    margin-top: 85px;
}
.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    position: relative;
}
.swiper-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.swiper-slide-active {
    transform: scale(1.05);
}

.swiper-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    text-align: center;
    color: white;
    z-index: 20;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.swiper-slide-active .swiper-content {
    opacity: 1;
    transform: translate(-50%, -50%);
    animation: slideUp 1s ease-in-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.swiper-content h1 {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #f58634;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);

}

.swiper-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.swiper-content p {
    font-size: 24px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    font-size: 26px;
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 12px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
    display: none;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: #ff6600;
}

@media (max-width: 768px) {
    .slider-container{
        width: 100%;
        
    }
    .swiper {
        height: 80vh;
        width: 100% !important;
        margin: auto;
    }
    .swiper-wrapper{
        width: 100%;
        margin: auto;
    }
    .swiper-content h1 {
        font-size: 36px;
    }

    .swiper-content h3 {
        font-size: 24px;
    }

    .swiper-content p {
        font-size: 18px;
    }
}

/* slider end */

/* experience start */

/* experience end */

/* event planner section start */
.eventplanner-container{
    display: flex;

}
.eventplanner-image{
    width: 700px;
    height: 700px;
    margin: 0 auto;
    position: relative;
}

.eventplanner-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background-size: 100%;
    margin: 0;  
    animation: rotate360 30s linear infinite;
    z-index: -1;
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.eventplanner-info{
    background: url('../images/globe.png') center center no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 25%;
    z-index: 111;
    width: 320px;
    height: 320px;
    padding: 70px 50px;
    text-align: center;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    
}
.eventplanner-info p{
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
.eventplanner-info h2{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 43px;
    color: #fff;
}

.event-section {
    text-align: center;
    padding: 50px 20px;
}
.event-title {
    font-size: 36px;
    font-weight: bold;
    color: #f28b82;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
    font-family: sans-serif;
}
.event-description {
    font-size: 18px;
    color: black;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-family: ui-sans-serif;
}
.event-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffe5e5;
    padding: 20px;
    border-radius: 10px;
    width: 120px;
    transition: transform 0.3s ease-in-out;
}
.icon-box:hover {
    transform: translateY(-5px);
}
.icon-box i {
    font-size: 30px;
    color: #f28b82;
    margin-bottom: 10px;
}
.icon-box p {
    font-size: 14px;
    color: #333;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .eventplanner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .eventplanner-image {
        width: 90%;
        height: 280px;
        margin: 0 auto;
        position: relative;
    }
    .eventplanner-image img {
        position: absolute;
        top: -49px;
        left: 7%;
        width: 350px;
        height: 350px;
        background-size: 100%;
        margin: 0;
    }
    .eventplanner-info {
        border-radius: 50%;
        position: absolute;
        top: 12%;
        left: 28%;
        z-index: 111;
        width: 200px;
        height: 200px;
        padding: 7px 50px;
        text-align: center;
    }
    .eventplanner-info p {
        font-size: 10px;
        line-height: 21px;
        color: #fff;
        font-family: "Merienda", cursive;
        font-weight: 400;
        margin-top: 7px;
        padding: 0;
    }
    .eventplanner-info h2 {
        font-family: "Merienda", cursive;
        font-weight: 400;
        font-size: 18px;
        color: #fff;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .event-description {
        font-size: 1rem;
    }

    .event-icons {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .icon-box {
        padding: 10px;
    }

    .icon-box i {
        font-size: 20px;
    }
}


/* event planner section end */

/* event slider section start */
.event-slider-container {
    padding: 50px 20px;
    background: #f8f8f8;
    text-align: center;
    margin: auto;
}

.event-slider-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #f28b82;
}

.event-slider-header p {
    font-size: 18px;
    color: #444;
}

.owl-carousel {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.slide {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.slide img {
    width: 100% !important;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.slide h2 {
    font-size: 20px;
    color: #f28b82;
    margin-top: 15px;
}

.slide p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.owl-nav button {
    background: #f28b82 !important;
    color: white !important;
    border-radius: 50%;
    padding: 10px 15px !important;
}

.owl-dots .owl-dot.active {
    background: #f28b82 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .event-slider-header h2 {
        font-size: 24px;
    }

    .event-slider-header p {
        font-size: 16px;
    }

    .slide h2 {
        font-size: 18px;
    }

    .slide p {
        font-size: 12px;
    }
}


/* event slider section end */

/* video container start */
.video-link-container {
    text-align: center;
    padding: 50px 20px;
    background: #f8f8f8;
}

.video-link-header h1 {
    font-size: 42px;
    color: #f28b82;
    margin-bottom: 30px;
    
}

.allvideo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.allvideo video {
    width: 30%; /* Makes videos equal width */
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .allvideo {
        flex-direction: column;
        align-items: center;
    }

    .allvideo video {
        width: 90%; /* Make videos full width on smaller screens */
    }
}

/* video container end */


/* contactus container start */

.contactus-container {
    background: linear-gradient(135deg, #f28b82, #feaea3 );
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    
}
.contact-section{
    display: flex;
}
.contact-header{
    width: 50%;
}
.contact-header h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Playfair Display",serif;
}

.contact-header p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contactus-button {
    background: white;
    color: #f28b82;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contactus-button:hover {
    background: #ffebeb;
    color: #d64545;
}

.callus-section {
    margin-top: 30px;
    width: 50%;
}

.callus-section h2 {
    font-size: 22px;
    font-weight: bold;
    font-family: "Playfair Display",serif;
    margin-bottom: 20px;
}

.callus-section a {
    font-size: 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.callus-section a:hover {
    color: #ffdfdf;
}

/* Responsive */
@media (max-width: 768px) {
    .contactus-container {
        padding: 30px 15px;
    }
    .contact-section{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-header{
        width: 100%;
    }
    .contact-header h2 {
        font-size: 24px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contactus-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .callus-section h2 {
        font-size: 20px;
    }

    .callus-section a {
        font-size: 18px;
    }
}

/* contactus container end */



/* event service start */

.event-services-container {
   
   background: url('../images/event-servicebg.jpg') no-repeat center center/cover;
   text-align: center;
   position: relative;
   /* margin:10px 10px 10px 10px; */
   padding: 55px 40px 50px 40px;
}

.event-services-container::before{
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.event-services-header h2 {
    font-size: 50px;
    font-weight: bold;
    color: #f28b82;
    margin-bottom: 50px;
    position: relative;
    font-family: Playfair Display, serif;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-card a {
    font-size: 14px;
    color: #f28b82;
    text-decoration: none;
    font-weight: bold;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* event service end */


/* photo gallery slider start */

/* Photo Gallery Section */
.photo-gallery-container {
    text-align: center;
    padding: 50px 20px;
}

.photo-gallery h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

/* Slider Container */
.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}

/* Navigation buttons */
.slidebtn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slidebtn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 10px;
    transform: translateY(-50%);
}

.next {
    right: 10px;
    transform: translateY(-50%);
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999999;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 101;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-slide img {
        max-height: 250px;  /* Adjust image size for smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallery-slide img {
        max-height: 200px;
    }
}
/* photo gallery slider end */



