 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Urbanist", sans-serif;
 }

 body, html{
    overflow-x: hidden;
 }

 section{
    scroll-margin-top:68px ;
 }

 p {
     font-size: 18px;
     line-height: 28px;
     font-family: "Urbanist", sans-serif;
     font-weight: 500;
 }


 .navbar-main {
     padding: 0.8rem 1.5rem;
     /* position: relative; */
     backdrop-filter: blur(1px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(255 255 255 / 0%);
     border-bottom: 1px solid rgba(255, 255, 255, 0.125);
 }

 .scrolled {
     background-color: #fff;
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.8rem;
     color: #4361ee !important;
     display: flex;
     align-items: center;
     transition: transform 0.3s ease;
 }

 .navbar-brand:hover {
     transform: scale(1.05);
 }

 .logo-icon {
     color: #4361ee;
     margin-right: 10px;
     font-size: 2rem;
 }

 .logo-text {
     background: linear-gradient(to right, #4361ee, #3a0ca3);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* Desktop menu styling */
 .nav-link {
     font-weight: 600;
     color: #000000 !important;
     margin: 0 8px;
     padding: 8px 16px !important;
     border-radius: 8px;
     transition: all 0.3s ease;
     position: relative;
 }

 .scrolled .nav-link {
     color: #000 !important;
 }

 .nav-link:hover,
 .nav-link.active {
     color: #4361ee !important;
     background-color: rgba(67, 97, 238, 0.1);
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 3px;
     background-color: #4361ee;
     transition: width 0.3s ease;
     border-radius: 2px;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 70%;
 }

 /* Mobile menu button */
 .navbar-toggler {
     border: none;
     padding: 8px 10px;
     border-radius: 8px;
     background-color: rgba(67, 97, 238, 0.1);
     transition: all 0.3s ease;
 }

 .navbar-toggler:focus {
     box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
 }

 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 97, 238, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 /* Right-side mobile menu */
 .offcanvas {
     background-color: white;
     box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
 }

 .offcanvas-header {
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     padding: 1.2rem 1.5rem;
 }

 .offcanvas-title {
     font-weight: 700;
     font-size: 1.5rem;
     color: #4361ee;
 }

 .btn-close {
     background-size: 0.8rem;
     padding: 0.8rem;
 }

 .offcanvas-body {
     padding: 1.5rem;
 }

 .mobile-nav-item {
     margin-bottom: 10px;
 }

 .mobile-nav-link {
     display: block;
     padding: 14px 20px;
     color: #2b2d42;
     text-decoration: none;
     font-weight: 600;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .mobile-nav-link:hover,
 .mobile-nav-link.active {
     background-color: rgba(67, 97, 238, 0.1);
     color: #4361ee;
     transform: translateX(5px);
 }

 .bg-vd {
     position: relative;
     overflow: hidden;
 }

 .strip {
     position: absolute;
     width: 100%;
     top: 67px;
     z-index: 1;
     left: 0;
 }

 .banner-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Overlay */
 .video-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom,
             rgba(0, 0, 0, 0.65),
             rgba(0, 0, 0, 0.35),
             rgba(0, 0, 0, 0.75));
     /* dark overlay */
     z-index: 1;
 }

 /* Content on top */
 #vd {
     position: absolute;
     z-index: 2;
     top: 55%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 /* Animation for mobile menu */
 @keyframes slideInRight {
     from {
         transform: translateX(100%);
     }

     to {
         transform: translateX(0);
     }
 }

 .offcanvas.showing {
     animation: slideInRight 0.3s ease-out;
 }


 .heady {
     font-size: 44px;
     font-weight: 800;
     background: #5B2920;
     background-repeat: repeat;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-position: right;
     line-height: 1.3;
 }


 #about {
     padding: 60px 0;
     /* background: url(https://events.eletsonline.com/gamechanger/assets/images/game6bg3.png); */
     background-position: right;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .about_right {
     backdrop-filter: blur(16px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(255 255 255 / 75%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
     padding: 20px;
 }

 .about_right p b {
     font-weight: bold;
 }

 .stack-section {
     padding: 100px 0;
 }

 .stack-container {
     max-width: 1200px;
     margin: auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     min-height: 200vh;
 }

 /* LEFT SIDE */
 .left-content h2 {
     font-size: 40px;
     margin-bottom: 40px;
 }

 .content-block {
     margin-bottom: 120px;
 }

 .content-block h4 {
     font-size: 22px;
     margin-bottom: 10px;
     color: #38bdf8;
 }

 .content-block p {
     font-size: 16px;
     line-height: 1.7;
     opacity: 0.85;
 }

 #cards {
     list-style: none;
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: repeat(var(--numcards), var(--card-height));
     gap: var(--card-margin);
     padding-bottom: calc(var(--numcards) * var(--card-top-offset));
     margin-bottom: var(--card-margin);
 }

 #card-1 {
     --index: 1;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }

 #card-1::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }

 .card-content p {
     color: #aae09c;
     font-size: 20px;
     font-weight: 800;
     line-height: 26px;
     text-align: center;
     width: 100%;
     margin: 0;
 }

 .stack_text span {
     color: #aadb9e;
     font-weight: bold;
 }

 .stack_inner {
     margin: 0 0 30px;
 }

 #card-2 {
     --index: 2;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }

 #card-2::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }

 #card-3 {
     --index: 3;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }


 #card-3::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }

 #card-4 {
     --index: 4;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }

 #card-4::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }

 #card-5 {
     --index: 5;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }

 #card-5::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }

 #card-6 {
     --index: 6;
     background: #2866a8;
     background-size: cover;
     background-repeat: no-repeat;
     position: relative;
     z-index: 1;
     backdrop-filter: blur(2px) saturate(180%);
     -webkit-backdrop-filter: blur(16px) saturate(180%);
     background-color: rgb(17 25 40 / 0%);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.125);
 }

 #card-6::before {
     position: absolute;
     z-index: -1;
     content: '';
     top: 0;
     left: 0;
     background: linear-gradient(to top, #000000, #ffffff00);
     width: 100%;
     height: 100%;
 }


 .card {
     position: sticky;
     top: 0;
     padding-top: calc(var(--index) * var(--card-top-offset));
     margin: 10px 0;
     border-radius: 10px;
     overflow: hidden;
 }

 .card-content {
     box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
     /* background: #fffaf2; */
     color: #131212;
     border-radius: 2rem;
     overflow: hidden;
     display: grid;
     grid-template-areas: "text img";
     grid-template-rows: auto;
     align-items: stretch;
     padding: 1.4em;
     min-height: 185px;
 }

 .stack_text {
     /* position: absolute; */
     bottom: 15px;
     /* transform: translateX(-50%); */
     /* left: 50%; */
 }

 .card-content>div {
     grid-area: text;
     width: 95%;
     max-width: 800px;
     place-self: center;
     text-align: left;
     display: grid;
     gap: 1em;
     place-items: start;
 }

 .card-content>figure {
     grid-area: img;
     overflow: hidden;
     display: none;
 }

 .card-content>figure>img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: .4em;
 }



 p {
     font-weight: 300;
     line-height: 1.42;
     font-size: 1.1rem;
 }

 /* Animation */
 @supports (animation-timeline: works) {

     @scroll-timeline cards-element-scrolls-in-body {
         source: selector(body);
         scroll-offsets:
             selector(#cards) start 1,
             selector(#cards) start 0;
         start: selector(#cards) start 1;
         end: selector(#cards) start 0;
         time-range: 4s;
     }

     .card {
         --index0: calc(var(--index) - 1);
         --reverse-index: calc(var(--numcards) - var(--index0));
         --reverse-index0: calc(var(--reverse-index) - 1);
     }

     .card__content {
         transform-origin: 50% 0%;
         will-change: transform;

         --duration: calc(var(--reverse-index0) * 1s);
         --delay: calc(var(--index0) * 1s);

         animation: var(--duration) linear scale var(--delay) forwards;
         animation-timeline: cards-element-scrolls-in-body;
     }

     @keyframes scale {
         to {
             transform:
                 scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
         }
     }
 }


 .stack-section {
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .stack-section h6 {
     color: #fff;
     text-align: center;
     font-weight: 400;
     font-size: 16px;
     line-height: 24px;
 }

 /* background image layer */
 .stack-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background: url("./images/pillar-bg.png") no-repeat center;
     background-size: cover;
     background-attachment: fixed;
     z-index: -2;
     animation: bgZoom 7s ease-in-out infinite alternate;
 }

 /* overlay layer */
 .stack-section::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(rgba(0, 0, 0, 0.55),
             rgba(0, 0, 0, 0.55));
     z-index: -1;
 }

 /* zoom animation */
 @keyframes bgZoom {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.18);
     }
 }

 .stack_inner h2 {
     color: #fff;
     font-size: 44px;
     font-weight: 800;
     background-repeat: repeat;
     -webkit-background-clip: text;
     background-position: right;
     line-height: 1.3;
 }

 .stack_inner h2 span {
     color: #aadb9e;
 }

 .stack_inner p {
     color: #fff;
 }

 .pillar_btm {
     color: #fff;
     text-align: center;
     padding-top: 40px;
     font-weight: 600;
 }

 .focus_areas {
     padding: 60px 0;
 }

 .focus_areas h2 {
     color: #000000;
     font-size: 44px;
     font-weight: 800;
     background-repeat: repeat;
     -webkit-background-clip: text;
     background-position: right;
     line-height: 1.3;
 }

 .subtitle {
     color: #000000;
     font-size: 1.1em;
     font-style: italic;
 }

 /* Carousel Container */
 .carousel-wrapper {
     position: relative;
     padding: 40px 0;
 }

 /* Stakeholder Card */
 .stakeholder-card {
     background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
     border-radius: 20px;
     padding: 40px 30px;
     margin: 20px 15px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     min-height: 250px;
     display: flex;
     flex-direction: column;
 }

 .stakeholder-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 6px;
     background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
 }

 .stakeholder-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
 }

 /* Icon Section */
 .card-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5em;
     margin-bottom: 25px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .card-title {
     color: #1a3a52;
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.3;
 }

 .card-description {
     color: #546e7a;
     font-size: 1.05em;
     line-height: 1.7;
     flex-grow: 1;
 }

 .card-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 20px;
 }

 .tag {
     background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
     color: white;
     padding: 6px 14px;
     border-radius: 20px;
     font-size: 0.85em;
     font-weight: 600;
     opacity: 0.9;
 }

 /* Color Schemes */
 /* .card-1 {
     --card-color: #1976d2;
     --card-color-light: #42a5f5;
 }

 .card-2 {
     --card-color: #d32f2f;
     --card-color-light: #ef5350;
 }

 .card-3 {
     --card-color: #7b1fa2;
     --card-color-light: #ab47bc;
 }

 .card-4 {
     --card-color: #0288d1;
     --card-color-light: #29b6f6;
 }

 .card-5 {
     --card-color: #f57c00;
     --card-color-light: #ffa726;
 }

 .card-6 {
     --card-color: #00796b;
     --card-color-light: #26a69a;
 }

 .card-7 {
     --card-color: #5d4037;
     --card-color-light: #8d6e63;
 } */

 /* OWL Carousel Custom Navigation */
 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.95) !important;
     color: #1a3a52 !important;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     font-size: 2em !important;
     line-height: 60px !important;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .owl-carousel .owl-nav button.owl-prev:hover,
 .owl-carousel .owl-nav button.owl-next:hover {
     background: #1976d2 !important;
     color: white !important;
     box-shadow: 0 8px 30px rgba(25, 118, 210, 0.4);
 }

 .owl-carousel .owl-nav button.owl-prev {
     left: -30px;
 }

 .owl-carousel .owl-nav button.owl-next {
     right: -30px;
 }

 /* OWL Dots */
 .owl-carousel .owl-dots {
     text-align: center;
     margin-top: 40px;
 }

 .owl-carousel .owl-dot {
     display: inline-block;
     margin: 0 6px;
 }

 .owl-carousel .owl-dot span {
     width: 14px;
     height: 14px;
     background: rgba(255, 255, 255, 0.4);
     display: block;
     border-radius: 50%;
     transition: all 0.3s ease;
 }

 .owl-carousel .owl-dot.active span,
 .owl-carousel .owl-dot:hover span {
     background: #64b5f6;
     width: 40px;
     border-radius: 10px;
 }

 /* Counter */
 .counter {
     text-align: center;
     margin-top: 30px;
     color: #90caf9;
     font-size: 1.1em;
     font-weight: 600;
 }

 .who_attend {
     padding: 60px 0;
 }

 .who_attend h1 {
     color: #000000;
     font-size: 44px;
     font-weight: 800;
     background-repeat: repeat;
     -webkit-background-clip: text;
     background-position: right;
     line-height: 1.3;
 }


 .galanight-left {
     background-image: url('./images/expected.jpg');
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
     min-height: 680px;
     display: flex;
     flex-direction: column;
     flex-wrap: wrap;
     justify-content: flex-end;
     font-family: "Outfit", sans-serif;
     border-radius: 5%;
     position: relative;
     padding: 30px 80px;
 }

 .galanight-left h2 {
     color: #fff;
     font-size: 38px;
     font-weight: 900;
     font-style: italic;
     margin: 0;
     margin-bottom: 15px;
     z-index: 1;
     padding: 0;
     line-height: 70px;
 }

 .galanight-left p {
     color: #fff;
     width: 100%;
     z-index: 1;
     font-weight: 500;
     font-size: 16px;
     line-height: 27px;
     font-style: italic;
 }

 .galanight-left:after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 100%;
     background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(255 255 255 / 0%) 100%);
     -webkit-transition: all 0.4s ease-in-out 0s;
     -moz-transition: all 0.4s ease-in-out 0s;
     transition: all 0.4s ease-in-out 0s;
     border-bottom-left-radius: 5%;
     border-bottom-right-radius: 5%;
 }

 .attend_points {
     display: flex;
     align-items: center;
     border-bottom: 1px solid;
     padding: 20px 0;
 }

 .attend_points h4 {
     margin-bottom: 8px;
     color: rgb(255, 255, 255);
     padding-left: 20px;
     font-weight: 600;
     font-size: 28px;
 }

 .attend_points p {
     margin-left: 20px;
     color: #fff;
     font-size: 16px;
     line-height: 25px;
 }

 .expected_outcome {
     background: #022d5f;
     padding: 60px 0;

 }

 .pb-90 {
     padding-bottom: 90px;
 }

 .menu li a {
     color: #fff;
     font-size: 15px;
     line-height: 28px;
     text-decoration: none;
 }

 .social-icon {
     margin-left: 25px;
 }

 .footer-social__v3 {
     display: flex;
     align-items: center;
     gap: 28px;
     margin-top: 20px;
     padding-top: 10px;
     /* border-top: 1px solid #363e6a; */
 }

 .footer-social__v3 a {
     background: transparent;
     padding: 0;
     width: 0;
     height: 0;
     color: #fff;
     margin-right: 15px;
 }

 .xb-footer_bottom {
     padding: 20px 0;
     background: #000000;
     position: relative;
 }

 .xb-footer_bottom p {
     font-weight: 500;
     color: #ffffff;
 }

 .xb-footer_bottom p a {
     color: #fff;
 }


 .why-p-sec {
     background: url(https://events.eletsonline.com/gamechanger/assets/images/redy3bg2.png);
     background-size: cover;
     padding: 200px 0 0;
     border-bottom: 1px solid #eee;
     background-position: bottom;
     background-attachment: fixed;
 }

 .why-p-sec h5 {
     font-size: 19px;
     font-weight: 800;
     margin: 0 0 23px;
 }

 .connect_inner {
     padding: 15px 30px;
     border-radius: 10px;
     margin: 20px;
     box-shadow: rgb(154 192 200) 0px 5px 15px;
 }


 .button-container {
     position: relative;
     display: inline-block;
 }

 .liquid-button {
     position: relative;
     padding: 10px 60px;
     font-size: 18px;
     font-weight: 600;
     color: #000000;
     background: transparent;
     border: none;
     cursor: pointer;
     outline: none;
     z-index: 1;
     letter-spacing: 0.5px;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
 }

 /* Liquid jelly background */
 .liquid-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg,
             rgba(255, 245, 235, 0.95) 0%,
             rgba(255, 220, 190, 0.9) 20%,
             rgba(255, 180, 140, 0.88) 50%,
             rgba(240, 150, 110, 0.92) 100%);
     border-radius: 50px;
     overflow: hidden;
     z-index: -1;
     box-shadow:
         0 8px 25px rgba(240, 140, 100, 0.35),
         0 2px 8px rgba(0, 0, 0, 0.1),
         inset 0 -8px 15px rgba(220, 120, 80, 0.25),
         inset 0 8px 20px rgba(255, 255, 255, 0.5);
     transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 /* Glass shine effect */
 .liquid-bg::before {
     content: '';
     position: absolute;
     top: 10%;
     left: 15%;
     width: 50%;
     height: 45%;
     background: radial-gradient(ellipse at 30% 30%,
             rgba(255, 255, 255, 0.8) 0%,
             rgba(255, 255, 255, 0.4) 30%,
             rgba(255, 255, 255, 0.1) 50%,
             transparent 70%);
     border-radius: 50%;
     filter: blur(4px);
     transform: rotate(-25deg);
 }

 /* Liquid wave effect */
 .liquid-wave {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 200%;
     height: 100%;
     background: linear-gradient(to top,
             rgba(255, 140, 90, 0.6) 0%,
             rgba(255, 180, 140, 0.3) 50%,
             transparent 100%);
     border-radius: 45%;
     animation: wave-float 3s ease-in-out infinite;
 }

 .liquid-wave::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: -50%;
     width: 200%;
     height: 100%;
     background: linear-gradient(to top,
             rgba(240, 120, 80, 0.5) 0%,
             rgba(255, 160, 120, 0.2) 40%,
             transparent 100%);
     border-radius: 43%;
     animation: wave-float 4s ease-in-out infinite reverse;
 }

 @keyframes wave-float {

     0%,
     100% {
         transform: translateX(-25%) translateY(0%) rotate(0deg);
     }

     50% {
         transform: translateX(-75%) translateY(-10%) rotate(5deg);
     }
 }

 /* Liquid bubbles */
 .liquid-bubble {
     position: absolute;
     border-radius: 50%;
     background: radial-gradient(circle at 30% 30%,
             rgba(255, 255, 255, 0.6) 0%,
             rgba(255, 255, 255, 0.3) 50%,
             rgba(255, 200, 160, 0.2) 100%);
     box-shadow:
         inset 0 2px 6px rgba(255, 255, 255, 0.5),
         0 2px 8px rgba(0, 0, 0, 0.1);
     animation: bubble-rise linear infinite;
 }

 .liquid-bubble:nth-child(1) {
     width: 8px;
     height: 8px;
     left: 15%;
     bottom: -10px;
     animation-duration: 3.5s;
     animation-delay: 0s;
 }

 .liquid-bubble:nth-child(2) {
     width: 12px;
     height: 12px;
     left: 45%;
     bottom: -15px;
     animation-duration: 4s;
     animation-delay: 1s;
 }

 .liquid-bubble:nth-child(3) {
     width: 6px;
     height: 6px;
     left: 70%;
     bottom: -8px;
     animation-duration: 3s;
     animation-delay: 2s;
 }

 .liquid-bubble:nth-child(4) {
     width: 10px;
     height: 10px;
     left: 30%;
     bottom: -12px;
     animation-duration: 3.8s;
     animation-delay: 0.5s;
 }

 .liquid-bubble:nth-child(5) {
     width: 7px;
     height: 7px;
     left: 85%;
     bottom: -9px;
     animation-duration: 3.2s;
     animation-delay: 1.5s;
 }

 @keyframes bubble-rise {
     0% {
         transform: translateY(0) scale(1);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(-120px) scale(0.5);
         opacity: 0;
     }
 }

 /* Hover state */
 .liquid-button:hover .liquid-bg {
     transform: scale(1.05);
     box-shadow:
         0 12px 35px rgba(240, 140, 100, 0.45),
         0 4px 12px rgba(0, 0, 0, 0.15),
         inset 0 -10px 18px rgba(220, 120, 80, 0.3),
         inset 0 10px 25px rgba(255, 255, 255, 0.6);
 }

 .liquid-button:hover .liquid-wave {
     animation-duration: 2s;
 }

 /* Active/Click state - liquid squish */
 .liquid-button:active .liquid-bg {
     animation: liquid-squish 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
     transform: scale(0.95);
 }

 @keyframes liquid-squish {
     0% {
         border-radius: 50px;
     }

     25% {
         border-radius: 45px 55px 48px 52px / 52px 48px 45px 55px;
         transform: scale(0.95) scaleY(0.9);
     }

     50% {
         border-radius: 52px 48px 55px 45px / 48px 52px 52px 48px;
         transform: scale(0.95) scaleY(1.05);
     }

     75% {
         border-radius: 48px 52px 45px 55px / 55px 45px 48px 52px;
         transform: scale(0.95) scaleY(0.97);
     }

     100% {
         border-radius: 50px;
         transform: scale(0.95);
     }
 }

 /* Different color variants */
 .liquid-button.blue .liquid-bg {
     background: linear-gradient(135deg,
             rgba(230, 240, 255, 0.95) 0%,
             rgba(190, 220, 255, 0.9) 20%,
             rgba(140, 180, 255, 0.88) 50%,
             rgba(100, 150, 240, 0.92) 100%);
     box-shadow:
         0 8px 25px rgba(100, 150, 240, 0.35),
         0 2px 8px rgba(0, 0, 0, 0.1),
         inset 0 -8px 15px rgba(80, 120, 220, 0.25),
         inset 0 8px 20px rgba(255, 255, 255, 0.5);
 }

 .liquid-button.blue .liquid-wave {
     background: linear-gradient(to top,
             rgba(90, 140, 255, 0.6) 0%,
             rgba(140, 180, 255, 0.3) 50%,
             transparent 100%);
 }

 .liquid-button.blue .liquid-wave::before {
     background: linear-gradient(to top,
             rgba(80, 120, 240, 0.5) 0%,
             rgba(120, 160, 255, 0.2) 40%,
             transparent 100%);
 }

 .liquid-button.green .liquid-bg {
     background: linear-gradient(135deg,
             rgba(240, 255, 235, 0.95) 0%,
             rgba(200, 240, 190, 0.9) 20%,
             rgba(140, 220, 140, 0.88) 50%,
             rgba(100, 200, 110, 0.92) 100%);
     box-shadow:
         0 8px 25px rgba(100, 200, 110, 0.35),
         0 2px 8px rgba(0, 0, 0, 0.1),
         inset 0 -8px 15px rgba(80, 180, 90, 0.25),
         inset 0 8px 20px rgba(255, 255, 255, 0.5);
 }

 .liquid-button.green .liquid-wave {
     background: linear-gradient(to top,
             rgba(90, 200, 100, 0.6) 0%,
             rgba(140, 220, 140, 0.3) 50%,
             transparent 100%);
 }

 .liquid-button.green .liquid-wave::before {
     background: linear-gradient(to top,
             rgba(80, 180, 90, 0.5) 0%,
             rgba(120, 210, 120, 0.2) 40%,
             transparent 100%);
 }

 .liquid-button.purple .liquid-bg {
     background: linear-gradient(135deg,
             rgba(250, 235, 255, 0.95) 0%,
             rgba(230, 190, 255, 0.9) 20%,
             rgba(200, 140, 255, 0.88) 50%,
             rgba(170, 100, 240, 0.92) 100%);
     box-shadow:
         0 8px 25px rgba(170, 100, 240, 0.35),
         0 2px 8px rgba(0, 0, 0, 0.1),
         inset 0 -8px 15px rgba(150, 80, 220, 0.25),
         inset 0 8px 20px rgba(255, 255, 255, 0.5);
 }

 .liquid-button.purple .liquid-wave {
     background: linear-gradient(to top,
             rgba(170, 90, 240, 0.6) 0%,
             rgba(200, 140, 255, 0.3) 50%,
             transparent 100%);
 }

 .liquid-button.purple .liquid-wave::before {
     background: linear-gradient(to top,
             rgba(150, 80, 220, 0.5) 0%,
             rgba(190, 120, 250, 0.2) 40%,
             transparent 100%);
 }

 /* Shadow beneath button */
 .button-shadow {
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 15px;
     background: radial-gradient(ellipse at center,
             rgba(0, 0, 0, 0.2) 0%,
             rgba(0, 0, 0, 0.08) 50%,
             transparent 75%);
     border-radius: 50%;
     filter: blur(6px);
     transition: all 0.3s ease;
 }

 .liquid-button:hover~.button-shadow {
     width: 85%;
     opacity: 1.2;
 }

 .liquid-button:active~.button-shadow {
     width: 90%;
     bottom: -8px;
 }


 .logo-mid {
     width: 80%;

 }

 .header-pill {
     background: linear-gradient(135deg, #2952CC, #4a69dd);
     color: white;
     padding: 15px 40px;
     border-radius: 50px;
     font-size: 20px;
     font-weight: 700;
     display: inline-block;
     box-shadow: 0 8px 25px rgba(41, 82, 204, 0.4);
     animation: float 3s ease-in-out infinite;
     transition: all 0.3s ease;
     border: 2px solid rgba(255, 255, 255, 0.2);
 }

 .header-pill:hover {
     transform: scale(1.05);
     box-shadow: 0 12px 35px rgba(41, 82, 204, 0.6);
 }

 .content-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 25px;
     padding: 20px;
     box-shadow: 0 10px 40px #0000000a;
     margin-top: 30px;
     min-height: 550px;
     animation: pulse-glow 4s ease-in-out infinite;
     border: 1px solid rgba(255, 255, 255, 0.5);
     transition: transform 0.3s ease;
 }

 .content-card:hover {
     transform: translateY(-5px);
 }

 .pillar-item {
    font-size: 15px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 20px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 10px;
 }


 .pillar-item:hover {
     background: linear-gradient(135deg, rgba(41, 82, 204, 0.1), rgba(74, 105, 221, 0.1));
     transform: translateX(10px);
     box-shadow: -4px 0 0 #2952CC;
 }

 .pillar-item i {
     color: #2952CC;
     font-size: 1.5rem;
     margin-right: 15px;
     margin-top: 5px;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .pillar-item:hover i {
     transform: scale(1.2) rotate(10deg);
     color: #4a69dd;
 }

 .focus-item {
        font-size: 15px;
    color: #444;
    margin-bottom: 7px;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.sterring img {
  transition: transform 0.1s linear;
  will-change: transform;
}
 

 .focus-item:hover {
     background: linear-gradient(135deg, rgba(41, 82, 204, 0.1), rgba(74, 105, 221, 0.1));
     transform: translateX(10px);
     box-shadow: -4px 0 0 #2952CC;
 }

 .focus-item i {
     color: #2952CC;
     font-size: 1.3rem;
     margin-right: 12px;
     margin-top: 3px;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .focus-item:hover i {
     transform: scale(1.2) rotate(10deg);
     color: #4a69dd;
 }

 @media only screen and (max-width: 600px) {
     .header-pill {
         font-size: 1.4rem;
         padding: 12px 30px;
     }

     .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{
        display: none;
     }

     .content-card {
         padding: 25px;
     }

     .pillar-item,
     .focus-item {
         font-size: 1rem;
     }

     #vd {
         top: 70%;
     }

     .bg-vd .lv_timer_info img {
         width: 250px;
     }

     .bg-vd {
         height: 500px;
     }

     #about {
         padding: 60px 0;
     }

     .who_attend h1,
     .heady,
     .stack_inner h2,
     .focus_areas h2 {
         font-size: 35px;
     }

     .galanight-left h2 {
         font-size: 35px;
         line-height: 42px;
     }

     .why-p-sec {
         padding: 100px 0;
     }

     .galanight-left {
         padding: 30px;
     }
 }