
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Background decoration */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.3) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    .navbar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 0;
        z-index: 1000;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: calc(100% - 40px);
        max-width: 1200px;
          opacity:0.3;
        
       /*transform: translateY(-40px) scale(0.98); */ /* For GSAP animation */

    }

    .navbar:hover {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 18px;
        position: relative;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo-img {
        width: 32px;
        height: 24px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .logo-img:hover {
        transform: scale(1.1);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 8px;
        flex: 1;
        justify-content: center;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 6px 12px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        font-size: 14px;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        white-space: nowrap;
    }

    .nav-link:hover {
        /*background: rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateY(-1px);*/

    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.4));
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);

    }

    .nav-link.has-dropdown::after {
        content: '▾';
        margin-left: 8px;
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .nav-item:hover .nav-link.has-dropdown::after {
        transform: rotate(180deg);
    }

    .dropdown {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
         background: rgba(120, 119, 198, 0.9);
       /* background: rgba(255, 255, 255, 0.6);*/
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-width: 180px;
        box-shadow: 
            0 12px 32px rgba(0, 0, 0, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .dropdown-item {
      display: block;
        padding: 10px 14px;
        color: whitesmoke;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s ease;
        font-size: 13px;
        font-weight: 400;
    }

    .dropdown-item:hover {
        /*
        background: rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateX(4px);
        */
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.4));
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);

    }

    .mobile-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
        background: rgba(255, 255, 255, 0.9);
        margin: 2px 0;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Content Sections */
    .content {
        margin-top: 70px;
        color: white;
    }

    /* Hero Section */
.hero-section {
    position: relative;
    width: 90vw;
    height: calc(60vh - 70px);
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
      padding: 0rem;
    box-sizing: border-box;
	
	 margin: 0 auto;  
	max-width: 1880px;
	
}

.hero-section-1 {
    position: relative;
    width: 90vw;
    height: calc(36vh - 10px);
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
      padding: 0rem;
    box-sizing: border-box;
	
	 margin: 0 auto;  
	max-width: 1880px;
	
}

.hero-background {
    position: relative;
   
    width: 100%;
    height:100%;
    z-index: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    
}

.hero-background img {
     width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 0 auto;  
}

.hero-content {
    position: absolute;
    bottom: 0;
    
    width: 100%;
    height: auto;
    
	z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
	padding: 20px;
    
	background: rgba(120, 119, 198, 0.8); /* Semi-transparent overlay */
    color: white;
   /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
    max-width: 50%;

	margin:0 auto;
	margin-bottom:10px;

 border-radius: 15px; /* Rounded corners */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Light semi-transparent border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */

}


.hero-title {
    font-size: 1.5rem;
    margin-bottom:0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}


   
 .hero-content-1 {
    position: absolute;
    bottom: 0;
    
    width: 100%;
    height: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1px;
    background: rgba(120, 119, 198, 0.1); /* Semi-transparent overlay */
    color: white;
   /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
   */ 
	 max-width: 16%;
    margin:0 auto;
    margin-top: 01px;

 border-radius: 15px; /* Rounded corners */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Light semi-transparent border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */

}

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
        padding: 6px 24px;
        border: none;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

   
   
   
     /* Mobile Styles */
    @media (max-width: 768px) {
        .navbar {
            top: 10px;
            width: calc(100% - 20px);
        }

        .nav-container {
            padding: 12px 16px;
        }

        .logo-img {
            width: 28px;
            height: 21px;
        }

      
      
        .mobile-toggle {
            display: flex;
        }

        .nav-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            right: 0;
            background:  rgba(120, 119, 198, 0.6);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
            padding: 8px;
        }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            width: 100%;
            padding: 6px 12px;
            border-radius: 8px;
            justify-content: space-between;
        }

        .dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            margin-top: 8px;
            background:  rgba(120, 119, 198, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: none;
        }

        .nav-item.mobile-dropdown-open .dropdown {
            display: block;
        }

       

       
    }

    @media (max-width: 480px) {
        .navbar {
            width: calc(100% - 16px);
            top: 8px;
        }

        .nav-container {
            padding: 10px 12px;
        }

     
    }

    @media (max-width: 768px) {
   
    .content {
        margin-top: 60px; /* Reduced from 40px */
    }
    .hero-section {
        position: relative;
        height: auto; /* Adjusted height */
        margin-top: 0px; /* Space for navbar */
        padding: 10px;
        min-height: auto; /* Minimum height on mobile */
       
    }

		.hero-section-1 {
        position: relative;
        height: 30vw; /* Adjusted height */
        padding: 10px;
        min-height: auto; /* Minimum height on mobile */
       
    }

   .hero-background {
        position: relative;
        height: auto;
        padding: 0px;
        margin-top: 0; /* Remove extra space */
    }

    .hero-background img {
        width: 90%;
        height: auto;
        max-height: 40vh;
        object-fit: contain;
        margin: 0 auto;
    }
    
    .hero-content {
        padding: 10px;
    }

   .hero-title {
        font-size: 1.5rem; /* Smaller font size */
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
            justify-content: center;
        }

    .btn-primary, .btn-secondary {
            padding: 12px 24px;
            font-size: 8px;
        }

}

/* iPad/Tablet Styles */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-section {
        position: relative;
        height: auto;
        margin-top: 60px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-background img {
        width: auto;
        height: auto;
        max-width: 85%;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 20px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 5px;
        max-width: 85%;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 20px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .hero-content {
        width: 90%;
        max-width: 90%;
        height: auto;
        padding: 5px;
        bottom: 10px;
        border-radius: 10px;
      
    }
	.hero-content-1 {
        width: 90%;
        max-width: 90%;
        height: auto;
        padding: 1px;
        bottom: 0px;
        border-radius: 10px;
       max-width: 40%;
    }

    .hero-title {
        font-size: 0.7rem;
        
    }

    .hero-subtitle {
        margin-top: 0rem;
		margin-bottom:0.3rem;
        font-size: 0.7rem;
    }
}

.quote-button {
    position: absolute;
    bottom: 0;
    
    width: 30px;
    height: 30px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
   
   
    background:  rgba(120, 119, 198, 0.5); /* Darker for visibility */
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    z-index: 999; /* High z-index to stay on top */
    transition: background 0.3s;
}

.quote-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Ensure it's visible on mobile */
@media (max-width: 768px) {
    .quote-button {
        font-size: 0.9rem;
        
        padding: 5px;
        bottom:0;

        width: 20px;
        height: 20px;
    }
}
.inline-youtube-player {
    position: absolute;
    top: 20px;
    right:20%;
    width: 300px;
    height: 200px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.inline-youtube-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Mobile styles */
@media (max-width: 768px) {
    .inline-youtube-player {
        top: 10px;
        right: 20px;
        width: 50vw;
        max-width: 200px;
        height: 40vw;
        min-height: 80px;
        max-height: 140px;
        border-radius: 6px;
    }
}

/* Event Bar Styles */
.event-bar {
    position: sticky;
    top: 60px;
      
 
    height: 50px;
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
     
      padding: 0px;
    
    
    cursor: pointer;
    
      flex-wrap: wrap;
   
   
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: calc(100% - 40px);
        max-width: 1200px;
          opacity:0.5;
      

 display: flex;
    
  flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
 margin: 0  auto;
    margin-bottom: 10px;   
    
       z-index: 900;
	}

.event-bar:hover {
        background: rgba(255, 255, 255, 0.01);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1);
			color:white;
    }

.event-bar:hover + .event-dropdown {
  display: block;
}


.event-name,
.event-date {
    margin: 5px 0;
	
	 color: white ; /*#ffaa1d;*/
    font-weight:600;
	 text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);

}
 
/* Responsive adjustments */
@media (max-width: 768px) {
    .event-bar {
        flex-direction: column;
        height: auto;
        padding: 10px;
        text-align: center;
    }

    .event-name,
    .event-date {
        font-size: 1em;
		color:#e1a26e;
    }
}

/* Dropdown Video Section */
.event-dropdown {
    display: none;
    position: absolute;
    
        z-index: 1500;

 top: 120px; /* Adjust based on your .event-bar top offset */
   
 /*left: 50%;
    transform: translateX(-50%);
*/
    align-items: center;        
    text-align: center;
   
    animation: slideDown 0.4s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 
     background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
   
    border-radius: 12px;
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    max-width: 900px;
    width: calc(100% - 40px);
    padding: 20px;
    
    
   margin: 0 auto;
   
  left: 0;
    right: 0;


}



.event-dropdown iframe {
    width: 100%;
    max-width: 500px;
    height: 250px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .event-dropdown iframe {
        height: 200px;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}
.close-btn:hover {
    background-color: #f69d9d;
}


/* Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

