 :root {
     --primary: #0b63bb;
     --accent: #ff9d00;
     --light: #fff1dc;
     --dark: #333;
     --text-light: #fff;
     --text-dark: #333;
 }

 body,
 html {
     height: 100%;
     margin: 0;
     padding: 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     scroll-behavior: smooth;
     overflow-x: hidden;
 }

 .navbar {
     background-color: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     z-index: 1000;
     transition: all 0.3s ease;
     text-align: center;
 }

 .navbar.scrolled {
     padding: 0.25rem 0;
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.75rem;
     color: var(--primary);
     letter-spacing: -0.5px;
     transition: all 0.3s ease;
 }

 .nav-link {
     color: var(--dark);
     font-weight: 500;
     margin: 0 0.5rem;
     padding: 0.5rem 1rem;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .nav-link:hover {
     color: var(--primary);
     background-color: rgba(11, 99, 187, 0.1);
 }

 .nav-link.active {
     color: var(--primary);
     font-weight: 600;
     position: relative;
 }

 .nav-link.active::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 30px;
     height: 3px;
     background-color: var(--primary);
     border-radius: 10px;
 }

 .hero-image {
background-color: rgba(0, 0, 0, 0.6);;
     background-position: center;
     background-size: cover;
     min-height: 50vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 6rem 1rem 2rem;
     text-align: center;
 }

 .hero-title {
     font-size: clamp(2.5rem, 8vw, 4.5rem);
     font-weight: bold;
     color: white;
     margin-bottom: 1rem;
     line-height: 1.1;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }


 h2 {
     line-height: 1.1;
     margin-bottom: 0;
     color: white;
 }

 .cta-button {
     background: var(--primary);
     color: white;
     border: none;
     padding: 1rem 2rem;
     font-size: clamp(1rem, 2.5vw, 1.2rem);
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(11, 99, 187, 0.4);
     position: relative;
     overflow: hidden;
     animation: fadeIn 1s ease-out 0.6s both;
     min-width: 150px;
     text-decoration: none;
     display: inline-block;
 }

 .cta-button:hover {
     background: #0951a0;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(11, 99, 187, 0.5);
     color: white;
 }

 .cta-button:active {
     transform: translateY(1px);
 }

 .pulse-animation {
     position: relative;
 }

 .pulse-animation::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 50px;
     box-shadow: 0 0 0 0 rgba(11, 99, 187, 0.7);
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(11, 99, 187, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(11, 99, 187, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(11, 99, 187, 0);
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Content Section */
 .section {
     padding: 2rem 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     position: relative;
     font-weight: 700;
     color: var(--dark);
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background-color: var(--primary);
     border-radius: 10px;
 }

 /* Feature boxes */
 .feature-box {
     background-color: white;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     padding: 2rem;
     height: 100%;
     transition: all 0.3s ease;
 }

 .feature-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background-color: rgba(11, 99, 187, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
 }

 .feature-icon i {
     font-size: 2rem;
     color: var(--primary);
 }

 .bg-light-alt {
     background-color: #f8f9fa;
 }

 footer {
     padding: 40px 0;
     background-color: #f8f9fa;
     border-top: 1px solid #eaeaea;
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .logo-row {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 30px;
     margin-bottom: 20px;
 }

 .footer-logo {
     object-fit: contain;
 }

 .copyright {
     text-align: center;
     padding-top: 1.5rem;
     margin-top: 1.5rem;
     border-top: 1px solid #eaeaea;
     color: #666;
     font-size: 0.9rem;
 }

 .logo {
     display: inline-block;
     vertical-align: top;
     width: 210px;
     height: 55px;
     margin-right: 20px;
 }

 .logo-sdg {
     display: inline-block;
     vertical-align: top;
     width: 50px;
     height: 50px;
     margin-right: 20px;
 }

 .numbered-item {
     display: flex;
     margin-bottom: 1.5rem;
 }

 .number-circle {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: var(--primary);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     margin-right: 1rem;
     flex-shrink: 0;
 }

 .number-content {
     flex-grow: 1;
 }

 .highlight-box {
     background-color: rgba(11, 99, 187, 0.05);
     border-left: 4px solid var(--primary);
     padding: 1.5rem;
     border-radius: 0 8px 8px 0;
     margin-bottom: 2rem;
 }

 .award-highlight {
     background: linear-gradient(135deg, #fff3cd, #ffeaa7);
     border: 2px solid var(--accent);
     border-radius: 12px;
     padding: 2rem;
     margin: 2rem 0;
     text-align: center;
     box-shadow: 0 8px 25px rgba(255, 157, 0, 0.15);
 }

 /* Vertical Linear-gradient */
 .img {
     max-width: 100%;
 }

 .photo-overlay {
     position: relative;
     display: inline-block;
     opacity: 0;
     transform: translateY(50px);
     animation: slideUp 0.8s ease-out forwards;
 }

 @keyframes slideUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .photo-overlay::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .welcome-address {
    display: flex;
    width: 100%;
    min-height: 700px;
    background-color: #000;
    align-items: stretch;
}

.welcome-image-container {
    position: relative;
    width: 50%;
    overflow: hidden;
    min-height: 700px;
}

.welcome-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;  /* Changed from 'center' to 'left center' */
    display: block;
}
.gradient-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.welcome-text-container {
    width: 50%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
    position: relative;
}

.welcome-text-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left, #000 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.welcome-text-container > * {
    position: relative;
    z-index: 1;
}

.welcome-text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
}

.welcome-text-container p {
    font-size: 1.4rem;
    line-height: 1.8;
    padding-top:10px;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.w-txt-qt {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.w-txt-qt p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1.7rem !important;
}

.w-txt-qt p:last-child {
    font-style: normal;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
    font-size: 1.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-address {
        flex-direction: column;
        min-height: auto;
    }

    .welcome-image-container {
        width: 100%;
        height: 400px;
        min-height: auto;
    }
    
    .gradient-overlay {
        width: 100%;
        height: 30%;
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #000 0%, transparent 100%);
    }

    .welcome-text-container {
        width: 100%;
        padding: 40px 20px;
    }
    
    .welcome-text-container::before {
        display: none;
    }

    .welcome-text-container h2 {
        font-size: 2rem;
    }

    .welcome-text-container p {
        font-size: 1rem !important;
    }
    
    .w-txt-qt p {
        font-size: 1rem !important;
    }
    
    .w-txt-qt p:last-child {
        font-size: 0.9rem !important;
    }
}
 .side-gradient {
     position: relative;
     top: 0;
     left: 0;
     width: 100%;
     /* adjust how far the gradient extends */
     height: 100%;
     background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
 }

 /* Mobile-specific improvements */
 .lead {
     font-size: clamp(1rem, 2.5vw, 1.125rem);
     line-height: 1.6;
 }

 .card {
     border-radius: 12px;
     margin-bottom: 1rem;
 }

 .card-body {
     padding: 1.5rem;
 }

 @media (max-width: 768px) {
     .card-body {
         padding: 1rem;
     }
 }

 /* Touch-friendly buttons */
 .btn {
     min-height: 44px;
     min-width: 44px;
     touch-action: manipulation;
 }

 /* Improved list styling for mobile */
 .list-unstyled li {
     margin-bottom: 0.75rem;
     display: flex;
     align-items: flex-start;
 }

 .list-unstyled li i {
     margin-top: 2px;
     flex-shrink: 0;
 }

 /* Event details responsive improvements */
 .event-detail-icon {
     font-size: clamp(1.5rem, 4vw, 2rem);
 }

 @media (max-width: 768px) {
     .d-flex.mb-4 {
         flex-direction: column;
         text-align: center;
     }

     .ms-3 {
         margin-left: 0 !important;
         margin-top: 0.5rem;
     }
 }

 /* Smooth scrolling improvements */
 html {
     scroll-padding-top: 80px;
 }

 /* Loading performance */
 img {
     max-width: 100%;
     height: auto;
 }

 /* Accessibility improvements */
 .nav-link:focus,
 .btn:focus,
 .navbar-toggler:focus {
     outline: 2px solid var(--primary);
     outline-offset: 2px;
 }

 /* Text readability */
 p {
     line-height: 1.6;
 }

 @media (max-width: 576px) {
     .text-indent {
         text-indent: 0 !important;
     }
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .schedule-table {
         font-size: 0.9rem;
     }

     .schedule-table th,
     .schedule-table td {
         padding: 8px 5px;
     }
 }

 /* Placeholder for missing images */
 .placeholder-logo {
     width: 150px;
     height: 50px;
     background-color: #e9ecef;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-right: 20px;
     border-radius: 4px;
     color: #6c757d;
     font-size: 0.8rem;
     text-align: center;
 }

 .placeholder-footer-logo {
     width: 170px;
     height: 80px;
     background-color: #e9ecef;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 4px;
     color: #6c757d;
     font-size: 0.8rem;
     text-align: center;
 }

 /*5th Section*/
.fth-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.fth-section > img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.fth-section::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.fth-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 15px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.fth-container:last-child {
    margin-bottom: 0;
}

.description {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-left:4px solid #ff9d00 ;
    padding: 5px 8px;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.fth-container .media-container {
    flex: 1;
    min-height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fth-container .media-container img,
.fth-container .media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .fth-section {
        padding: 40px 0;
    }
    
    /* Keep parallax effect on mobile */
    .fth-section > img {
        position: fixed;
        height: 100vh;
        z-index: -1;
    }
    
    .fth-section::after {
        position: fixed;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4); /* Slightly darker on mobile for better readability */
        z-index: -1;
    }
    
    .fth-container {
        flex-direction: column;
        margin-bottom: 50px;
        gap: 30px;
    }
    
    .description {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.2); /* Slightly more opaque on mobile */
    }
    
    .description h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .fth-container .media-container {
        width: 100%;
        min-height: 250px;
    }
}
 /*6th Section*/
.sth-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
}

.sth-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sth-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
    pointer-events: none;
}

.sth-desc-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    z-index: 10;
    padding: 40px 15px 60px;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sth-desc-container.slide-up {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sth-desc-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.sth-desc-container p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: stretch;
}

.sth-desc-container button {
    background: #ff9d00;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.sth-desc-container button a{
   color: #fff;
   text-decoration: none;
}
.sth-desc-container button a:hover{
   color: #0951a0;
   text-decoration: none;
}

.sth-desc-container button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 99, 187, 0.6);
}

.sth-desc-container button:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 768px) {
    .sth-section {
        min-height: 500px;
    }
    
    .sth-section::after {
        height: 60%;
    }
    
    .sth-desc-container {
        padding: 30px 15px 40px;
    }
    
    .sth-desc-container h1 {
        font-size: 1.8rem;
    }
    
    .sth-desc-container p {
        font-size: 1rem;
    }
    
    .sth-desc-container button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/*7th*/
.svnth-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: visible;
    /* Remove background-color: #000; */
    z-index: 1;
}

.svnt-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 15px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.svnt-container .description {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.svnt-container .description h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.svnt-container .description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.svnt-container .media-container {
    flex: 1;
    min-height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.svnt-container .media-container img,
.svnt-container .media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .svnth-section {
        padding: 40px 0;
    }
    
    .svnt-container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .svnt-container .description {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .svnt-container .description h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .svnt-container .description p {
        font-size: 1rem;
    }
    
    .svnt-container .media-container {
        width: 100%;
        min-height: 250px;
    }
}

/*8th Section*/
/* Session Section Styles */
.ss-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 700px;
    background-color: #000;
    align-items: stretch;
}

.ss-txt-container {
    width: 50%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
    position: relative;
}

.ss-txt-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right, #000 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.ss-txt-container > * {
    position: relative;
    z-index: 1;
}

.ss-txt-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
}

.txt-desc-container {
    background-color: #000;
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.txt-desc-container p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #ffffff !important;
}

.ss-txt-container button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--accent);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ss-txt-container button a {
   text-decoration: none;
   color: #fff;
}
.ss-txt-container button a:hover {
   color: #0951a0;

}

.ss-txt-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.ss-img-container {
    position: relative;
    width: 50%;
    overflow: hidden;
    min-height: 700px;
}

.ss-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    transform: scale(1.5); 

}

.ss-img-container .gradient-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

/* Reverse layout - Image Left, Text Right */
.ss-container:has(.ss-img-container:first-child) .ss-txt-container {
    order: 2;
}

.ss-container:has(.ss-img-container:first-child) .ss-txt-container::after {
    display: none;
}

.ss-container:has(.ss-img-container:first-child) .ss-txt-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left, #000 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Right border for reversed layout */
.ss-container:has(.ss-img-container:first-child) .txt-desc-container {
    border-left: none;
    border-right: 4px solid var(--accent);
}

.ss-container:has(.ss-img-container:first-child) .ss-img-container {
    order: 1;
}

.ss-container:has(.ss-img-container:first-child) .ss-img-container img {
    object-position: left center;
}

.ss-container:has(.ss-img-container:first-child) .ss-img-container .gradient-overlay {
    right: 0;
    left: auto;
    background: linear-gradient(to right, transparent 0%, #000 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .ss-container {
        flex-direction: column;
        min-height: auto;
    }

    .ss-txt-container {
        width: 100%;
        padding: 40px 20px;
        order: 2;
    }
    
    .ss-txt-container::after {
        display: none;
    }
    
    .ss-txt-container::before {
        display: none;
    }

    .ss-txt-container h2 {
        font-size: 2rem;
    }

    .txt-desc-container p {
        font-size: 1rem !important;
    }

    .ss-txt-container button {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
    }

    .ss-img-container {
        width: 100%;
        height: 400px;
        min-height: auto;
        order: 1;
    }
    
    .ss-img-container .gradient-overlay {
        width: 100%;
        height: 30%;
        left: 0;
        right: auto;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, #000 0%, transparent 100%);
    }
}


/* Closing Section Styles */
.closing-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.closing-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.closing-txt-container {
    position: relative;
    width: 100%;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.9) 50%, transparent 100%);
    padding: 80px 60px 60px 60px;
    z-index: 1;
    color: white;
}

.closing-txt-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff !important;
    border-bottom: 4px solid #ff9d00;
    padding-bottom: 15px;
    display: inline-block;
}

.closing-txt-container p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #ffffff !important;
    max-width: 1200px;
}

/* Responsive */
@media (max-width: 768px) {
    .closing-section {
        min-height: 500px;
    }

    .closing-txt-container {
        padding: 60px 20px 40px 20px;
    }

    .closing-txt-container h1 {
        font-size: 2rem;
    }

    .closing-txt-container p {
        font-size: 1rem !important;
    }
}


/*Slideshow*/
/* Photo Overlay Slideshow Styles */
.photo-overlay {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: #ff9d00;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .photo-overlay,
    .slideshow-container {
        min-height: 100vh;
        height: 100vh;
    }

    .slide-controls {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}
/* Video Thumbnail Link */
.video-thumbnail-link {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play Button Overlay for Thumbnails */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 157, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.play-button-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.video-thumbnail-link:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 157, 0, 1);
    box-shadow: 0 8px 30px rgba(255, 157, 0, 0.6);
}

.video-thumbnail-link:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-button-overlay::after {
        border-left: 18px solid white;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
    }
}