* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
        margin: 0;
        padding: 0;
        background-image:  url(../images/bgimage.jpeg); /* your image path */
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
}

.main-container {
  background-color: white;
  border-radius: 50px;
  padding: 40px;
  max-width: 1450px;
  margin: 40px auto;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
    

header,nav{
    margin-bottom: 0;
  padding-bottom: 0;
}

.header {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1); /* translucent */
    backdrop-filter: blur(10px); /* mirror blur effect */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(223, 222, 222, 0.2);
    border: 2px solid rgba(221, 167, 167, 0.3);
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    position:relative;
    top: 0;
    z-index: 999;
}

.logo-container {
    width: 30%;
}

.logo {
    max-width: 100%;
    height: auto;
}

.header-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
}

.company-name {
    color: pink;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: right;
    width: 100%;
}


.nav-bar {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    width: 100%;
    margin-top: 5px;
    transition: all 0.3s ease;
    color : white;
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .nav-bar {
        position: relative;
        display: flex !important;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        justify-content: flex-end;
    }

    .nav-item {
        width: auto;
    }

    .menu-toggle {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .header {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1); /* translucent */
    backdrop-filter: blur(10px); /* mirror blur effect */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    position: relative;
    top: 0;
    z-index: 999;
}

    .logo-container, .header-content {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
    }

    .company-name {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-bar {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        align-items: center;
    }

    .nav-bar.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .nav-item:hover {
        background-color: #f5f5f5;
    }
}
.nav-item {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color:white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-item:hover:before {
    transform: translateX(0);
}

.nav-item:hover {
    color: pink;
    transform: translateY(-2px);
}

.nav-item.active {
    color:pink;
}

.nav-item.active:before {
    transform: translateX(0);
    background-color: white;
}

/* Remove hover effect for active item */
.nav-item.active:hover:before {
    transform: translateX(0);
    font-weight: 300;
}

/* Home Page Section Styles*/
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

/* Image slider styles */
.image-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.homeimage {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 15px; */
    border-radius: 10px;
    position: relative;
}

.homeimage img {
    width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    display: none;
}

.homeimage img.active {
    display: block;
}

.homeimage img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(176, 67, 244, 0.3);
    filter: brightness(1.05) contrast(1.05);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #B043F4;
    color: rgb(239, 236, 236);
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Events page styles */
.events-title{
    color: #B043F4;
    font-size: 2.5em;
    text-align: center;
    margin-top: 40%;
    margin-bottom: 40%;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    color: inherit;
    border: none;
    padding: 0.5rem 1rem;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.dropbtn i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: #333;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-content a:not(:last-child) {
    margin-bottom: 0.25rem;
}

.dropdown-content a:hover {
    background-color: pink;
    color: #B043F4;
    transform: translateX(5px);
}

.dropdown-content a i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #B043F4;
    transition: transform 0.3s ease;
}

.dropdown-content a:hover i {
    transform: scale(1.1);
}

.dropdown-content a span {
    font-weight: 500;
    display: block;
}

.dropdown-content a small {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-top: 0.25rem;
}

/* Update dropdown button styles */
.dropbtn.nav-item {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropbtn.nav-item:hover::before {
    color: pink;
    transform: translateX(0);
}

.dropbtn.nav-item.active{
    color : pink;
}

.dropdown:hover .dropbtn.nav-item {
    color: pink;
}

/* Gallery styles */
.gallery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 2rem;
}

.gallery-icon {
    font-size: 5rem;
    color: #B043F4;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.gallery-title {
    color: #B043F4;
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
}

.gallery-message {
    color: #B043F4;
    font-size: 1.1em;
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: black;
    color: #fff;
    padding:10px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: darkorchid;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.footer-section p,
.footer-section .address,
.footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.7;
}

.footer-section a:hover {
    color: #fff;
}

/* Social Icons with Animation */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    background-color: #B043F4;
    border-color: #B043F4;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(176, 67, 244, 0.3);
}

.copyright {
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #B043F4;
    font-size: 0.9rem;
    color:darkviolet;
    grid-column: 1 / -1; /* This makes the copyright span the full width */
    font-weight: bolder;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popOut {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }
    50% {
        transform: translateY(-6px) scale(1.2);
        box-shadow: 0 8px 15px rgba(176, 67, 244, 0.4);
    }
    100% {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 10px rgba(176, 67, 244, 0.3);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        min-width: 100%;
    }

    .dropdown:hover .dropdown-content {
        transform: none;
    }

    .dropdown-content a {
        padding: 0.75rem;
    }

    .dropbtn {
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
    }
    
    .homeimage img {
        width: 90%;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .gallery-icon {
        font-size: 4rem;
    }
    
    .gallery-title {
        font-size: 2em;
    }
    
    .gallery-subtitle {
        font-size: 1em;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
    
    .footer-section {
        flex: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-row {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        color: purple;
    }

    .contact-item-text {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
    }
    
    .contact-item {
        gap: 15px;
    }
}


