/* Fixed CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            min-height: 100vh;
            text-align: center;
            background-color: #F8F4E1;
        }

        .container-lg {
            max-width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .hidden {
            display: none !important;
        }

        /* Make sure login section is visible initially */
        #login-section {
            display: block;
        }

        /*Trigger Button*/
        .login-trigger {
            font-weight: bold;
            color: #4E1F00;
            background: linear-gradient(to bottom right, #B05574, #F87E7B);
            padding: 15px 30px;
            border-radius: 30px;
            position: relative; 
        }

        /*Modal*/
        .login-button {
            padding: 6px 20px;
            border-radius: 20px;
            background: none;
            border: 2px solid #FAB87F;
            color: #FAB87F;
            font-weight: bold;
            transition: all .5s;
            margin-top: 1em;
        }
        
        .login:hover {
            background: #FAB87F;
            color: #fff;
        }

        .nav-color {
            background-color: #FEBA17;
        }

        .common-color {
            background-color: #74512D;
            color: #fcf9f9;
        }

        .le-img {
            max-width: 20%;
        }
        
        .slider-caption-padding {
            padding-bottom: 23rem;
        }
        
        .text-color {
            color: #f7f4f3;
        }
        
        .btn-color {
            background-color: #74512D;
            color: #f7f6f5;
        }
        
        .font-size {
            font-size: 24px;
            color: #f8f5f3;
        }
        
        .font-sizea {
            font-size: 24px;
            color: #f8f7f6;
        }

        /* CSS */
        .button-33 {
            background-color: #74512D;
            border-radius: 100px;
            box-shadow: rgba(234, 206, 207, 0.2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
            color: #fdfaf7;
            cursor: pointer;
            display: inline-block;
            font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
            padding: 7px 20px;
            text-align: center;
            text-decoration: none;
            transition: all 250ms;
            border: 0;
            font-size: 16px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
        }

        .button-33:hover {
            box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
            transform: scale(1.05) rotate(-1deg);
        }

        /* CSS */
        .button-85 {
            padding: 0.6em 2em;
            border: none;
            outline: none;
            color: rgb(255, 255, 255);
            background: #4E1F00;
            cursor: pointer;
            position: relative;
            z-index: 0;
            border-radius: 10px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
        }

        .button-85:before {
            content: "";
            background: linear-gradient(
                45deg,
                #ff0000,
                #ff7300,
                #fffb00,
                #48ff00,
                #00ffd5,
                #002bff,
                #7a00ff,
                #ff00c8,
                #ff0000
            );
            position: absolute;
            top: -2px;
            left: -2px;
            background-size: 400%;
            z-index: -1;
            filter: blur(5px);
            -webkit-filter: blur(5px);
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            animation: glowing-button-85 20s linear infinite;
            transition: opacity 0.3s ease-in-out;
            border-radius: 10px;
        }

        @keyframes glowing-button-85 {
            0% {
                background-position: 0 0;
            }
            50% {
                background-position: 400% 0;
            }
            100% {
                background-position: 0 0;
            }
        }

        .button-85:after {
            z-index: -1;
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: #4E1F00;
            left: 0;
            top: 0;
            border-radius: 10px;
        }

        /* display photo  */
        /* Carousel Styles - Can be placed in your CSS file */
        .team-carousel {
            width: 100%;
            text-align: center;
            padding: 20px 0;
        }
        
        .carousel-title {
            font-size: 2.5rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-subtitle {
            color: #5c6bc0;
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }
        
        .carousel-container {
            width: 100%;
            max-width: 1000px;
            height: 450px;
            position: relative;
            perspective: 700px;
            margin: 0 auto 30px;
        }

        .carousel-track {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
        }

        .carousel-card {
            position: absolute;
            width: 280px;
            height: 380px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        .carousel-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-card.center {
            z-index: 10;
            transform: scale(1.1) translateZ(0);
        }

        .carousel-card.center img {
            filter: none;
        }

        .carousel-card.left-2 {
            z-index: 1;
            transform: translateX(-400px) scale(0.8) translateZ(-300px);
            opacity: 0.7;
        }

        .carousel-card.left-2 img {
            filter: grayscale(100%);
        }

        .carousel-card.left-1 {
            z-index: 5;
            transform: translateX(-200px) scale(0.9) translateZ(-100px);
            opacity: 0.9;
        }

        .carousel-card.left-1 img {
            filter: grayscale(100%);
        }

        .carousel-card.right-1 {
            z-index: 5;
            transform: translateX(200px) scale(0.9) translateZ(-100px);
            opacity: 0.9;
        }

        .carousel-card.right-1 img {
            filter: grayscale(100%);
        }

        .carousel-card.right-2 {
            z-index: 1;
            transform: translateX(400px) scale(0.8) translateZ(-300px);
            opacity: 0.7;
        }

        .carousel-card.right-2 img {
            filter: grayscale(100%);
        }

        .carousel-card.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .member-info {
            text-align: center;
            margin-top: 40px;
            transition: all 0.5s ease-out;
            padding: 0 20px;
        }

        .member-name {
            color: #1a237e;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .member-name::before,
        .member-name::after {
            content: "";
            position: absolute;
            top: 100%;
            width: 100px;
            height: 2px;
            background: #1a237e;
        }

        .member-name::before {
            left: -120px;
        }

        .member-name::after {
            right: -120px;
        }

        .member-role {
            color: #5c6bc0;
            font-size: 1.5rem;
            font-weight: 500;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 10px 0;
            margin-top: -15px;
            position: relative;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(26, 35, 126, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #1a237e;
            transform: scale(1.2);
        }
        
        .dots-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .dot-nav-button {
            background: #5c6bc0;
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot-nav-button:hover {
            background: #1a237e;
            transform: scale(1.1);
        }
        
        .dot-nav-button:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: scale(1);
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26, 35, 126, 0.6);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            border: none;
            outline: none;
        }

        .nav-arrow:hover {
            background: rgba(26, 35, 126, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.left {
            left: 20px;
        }

        .nav-arrow.right {
            right: 20px;
        }
        
        .carousel-loading {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin: 2rem 0;
        }
        
        .carousel-error {
            color: #e53935;
            font-size: 1.2rem;
            margin: 2rem 0;
        }
        
        .pagination-info {
            margin-top: 10px;
            color: #5c6bc0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .carousel-title {
                font-size: 2rem;
            }
            
            .carousel-container {
                height: 400px;
            }
            
            .carousel-card {
                width: 240px;
                height: 320px;
            }

            .carousel-card.left-2 {
                transform: translateX(-300px) scale(0.8) translateZ(-300px);
            }

            .carousel-card.left-1 {
                transform: translateX(-150px) scale(0.9) translateZ(-100px);
            }

            .carousel-card.right-1 {
                transform: translateX(150px) scale(0.9) translateZ(-100px);
            }

            .carousel-card.right-2 {
                transform: translateX(300px) scale(0.8) translateZ(-300px);
            }

            .member-name {
                font-size: 2rem;
            }

            .member-role {
                font-size: 1.2rem;
            }

            .member-name::before,
            .member-name::after {
                width: 50px;
            }

            .member-name::before {
                left: -70px;
            }

            .member-name::after {
                right: -70px;
            }
            
            .nav-arrow {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 600px) {
            .carousel-title {
                font-size: 1.8rem;
            }
            
            .carousel-subtitle {
                font-size: 1rem;
            }
            
            .carousel-container {
                height: 350px;
            }
            
            .carousel-card {
                width: 200px;
                height: 280px;
            }

            .carousel-card.left-2 {
                transform: translateX(-220px) scale(0.8) translateZ(-300px);
            }

            .carousel-card.left-1 {
                transform: translateX(-110px) scale(0.9) translateZ(-100px);
            }

            .carousel-card.right-1 {
                transform: translateX(110px) scale(0.9) translateZ(-100px);
            }

            .carousel-card.right-2 {
                transform: translateX(220px) scale(0.8) translateZ(-300px);
            }

            .member-name {
                font-size: 1.5rem;
            }
            
            .member-name::before,
            .member-name::after {
                display: none;
            }

            .member-role {
                font-size: 1rem;
            }
            
            .nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .nav-arrow.left {
                left: 10px;
            }

            .nav-arrow.right {
                right: 10px;
            }
            
            .dots-container {
                max-width: 300px;
            }
            
            /* Fix for mobile viewport issues */
            marquee {
                font-size: 0.8rem !important;
            }
        }

        /* FOR MAP */
        .map-container {
            padding: .25rem;
            margin-bottom: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            width: 100%;
            overflow: hidden;
        }
        
        .map-title {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-weight: 600;
            border-bottom: 2px solid #4a6491;
            padding-bottom: 0.5rem;
        }
        
        .map-wrapper {
            position: relative;
            overflow: hidden;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            border-radius: 8px;
        }
        
        .map-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        
        .image-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            text-align: center;
        }
        
        .president-img {
            width: 100%;
            max-width: 350px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 5px solid #0d8a54;
        }
        
        .caption {
            margin-top: 15px;
            font-style: italic;
            color: #0a6e44;
            font-weight: bold;
        }
        
        .speech-section {
            flex: 2;
            min-width: 300px;
            padding: 20px;
        }
        
        .speech {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #0d8a54;
        }
        
        .speech p {
            margin-bottom: 15px;
            text-align: justify;
            font-size: 1.1rem;
        }
        
        .quote {
            font-style: italic;
            text-align: center;
            padding: 15px;
            margin: 20px 0;
            background: #e8f5e9;
            border-radius: 8px;
            font-size: 1.2rem;
            color: #0a6e44;
            border-left: 3px solid #0a6e44;
        }
        
        /* Additional responsive fixes */
        @media (max-width: 768px) {
            .navbar-nav {
                text-align: center;
            }
            
            .user-profile {
                text-align: center;
                padding: 10px;
            }
            
            .carousel-inner img {
                height: auto;
            }
            
            .footer-column {
                margin-bottom: 20px;
            }
            
            .modal-body input,
            .modal-body textarea {
                width: 100% !important;
            }
        }
        
        /* Fix for horizontal overflow */
        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* User profile styling */
        .user-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }
        
        .logout-button {
            margin-top: 10px;
        }
        
        /* Form styling fixes */
        form label {
            display: block;
            margin-bottom: 10px;
        }
        
        form input, form textarea {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* Marquee responsive fix */
        marquee {
            font-size: 1rem;
            padding: 10px 0;
        }
   