* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        

        
        .navbar {
            background: #1a365d;
            padding: 0;
            position: relative;
            margin-bottom: 0px;
           
            min-height: 50px;
            border: 1px solid transparent;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: 70px;
        }

.section-mycampus{
    display: contents;
}
.section-platform_admin

 {
    background: #1a294a;
    display: contents;
}
        .navbar-logo {
            display: flex;
            align-items: center;
        }

        .navbar-logo img {
            height: 50px;
            width: auto;
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .navbar-menu li {
            margin: 0 15px;
        }

        .navbar-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .navbar-menu a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .navbar-buttons {
            display: none; 
        }

        .navbar-buttons-desktop {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-navbar {
            padding: 8px 20px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
            cursor: pointer;
        }

        .btn-login {
            background: #ffd700;
            color: #1a365d;
        }

        .btn-login:hover {
            background: #ffed4e;
            transform: translateY(-2px);
        }

        .btn-register {
            background: #ff6b35;
            color: white;
        }

        .btn-register:hover {
            background: #ff8c42;
            transform: translateY(-2px);
        }

        /* Language Selector */
        .language-selector {
            margin-left: 20px;
        }

        .language-selector select {
            background: #2d3748;
            color: white;
            border: 1px solid #4a5568;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

       
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        
        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        
        .main-content {
            display: flex;
            flex-direction: column;
            /* min-height: calc(100vh - 70px); */
            padding: 0;
        }

       
        .hero-section {
            position: relative;
            min-height: 70vh;
            background-image: url('{{_p.web_css_theme}}images/backhome.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 40px;
        }

        
        .welcome-message {
            max-width: 400px;
            margin-bottom: 20px;
            margin-left: 20px;
        }

        .welcome-message img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .welcome-message img:hover {
            transform: scale(1.05);
        }

        
        @media (max-width: 1024px) {
            .welcome-section {
                padding: 30px;
            }
            
            .welcome-message {
                max-width: 350px;
                margin-bottom: 15px;
                margin-left: 15px;
            }
        }

        @media (max-width: 768px) {
            .welcome-section {
                padding: 20px;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
            
            .welcome-message {
                max-width: 300px;
                margin-bottom: 10px;
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .welcome-section {
                padding: 15px;
            }
            
            .welcome-message {
                max-width: 250px;
                margin-bottom: 5px;
            }
        }

     
        .content-sections {
            background: white;
            /* padding: 60px 0; */
        }

        .container {
            width: 100%;
            margin: 0;
            padding: 0 20px;
            position: relative;
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .banner-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }
            
            .banner-section {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 5px;
            }
            
            .banner-section {
                padding: 20px 10px;
            }
        }

        
        .banner-section {
            text-align: center;
            width: 100%;
            background-color: #1a365d;

            background-size:cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 40px;
            /* border-radius: 20px; */
            position: relative;
            /* margin-bottom: 60px; */
        }

        .banner-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .banner-images-row {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
            position: relative;
            padding: 40px;
        }

        .banner-images-row #bannerSectionImage {
            width: 105%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-right:400px ;
            position: relative;
        }

        
        .section-info-images {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            width: 50%;
            position: absolute;
            right: 2%;
            z-index: 1;
        }

        .section-info-images img {
            width: 500px;
            /* max-width: 200px; */
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .section-info-images img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            filter: brightness(1.1);
        }

        
        @media (max-width: 1024px) {
            .section-info-images {
                width: 45%;
                right: 3%;
                gap: 8px;
            }
            
            .section-info-images img {
                max-width: 380px;
            }
        }

        @media (max-width: 768px) {
            .section-info-images {
                width: 40%;
                right: 2%;
                gap: 6px;
                flex-direction: column;
            }
            
            .section-info-images img {
                /* max-width: 150px; */
                width: 100%;
            }
            
            .banner-images-row #bannerSectionImage {
                width: 85%;
                margin-right: 180px;
            }
        }

        @media (max-width: 480px) {
            .section-info-images {
                width: 35%;
                right: 1%;
                gap: 4px;
                flex-direction: column;
            }
            
            .section-info-images img {
                /* max-width: 120px; */
                width: 130%;
                border-radius: 8px;
                margin-top: 120px;
            }
            
            .banner-images-row #bannerSectionImage {
                width: 100%;
                margin-right: 70px;
                top: 60px;
            }
        }

        @media (max-width: 320px) {
            .section-info-images {
                width: 32%;
                right: 1%;
                gap: 3px;
            }
            
            .section-info-images img {
                /* max-width: 100px;
                width: 80%; */
                border-radius: 6px;
            }
            
            .banner-images-row #bannerSectionImage {
                /* width: 70%; */
                margin-right: 100px;
            }
        }

        
        #sectionInfo1 {
            display: block;
        }

        #sectionInfo1En {
            display: none;
        }

        
        #bannerInfoImage {
            display: block;
        }

        #bannerInfoImageEn {
            display: none;
        }

        
        .banner-info-section {
            position: relative;
        }

        
        .section-image2-container {
            position: absolute;
            bottom: -60px;
            left: 15px;
            width: 150px;
            z-index: 10;
        }

        .section-image2-container img {
            width: 350%;
            /* max-width: 100%; */
            height: auto;
            border-radius: 12px;
            /* box-shadow: 0 8px 20px rgba(0,0,0,0.15); */
            transition: all 0.3s ease;
            cursor: pointer;
            margin-left: 50px;
        }

        .section-image2-container img:hover {
            transform: scale(1.08);
            /* box-shadow: 0 12px 30px rgba(0,0,0,0.25); */
            filter: brightness(1.1);
        }

       
        @media (max-width: 1024px) {
            .section-image2-container {
                width: 130px;
                bottom: -50px;
                left: 12px;
            }
        }

        @media (max-width: 768px) {
            .section-image2-container {
                width: 110px;
                bottom: -40px;
                left: 10px;
            }
            
            .section-image2-container img {
                border-radius: 10px;
            }
        }

        @media (max-width: 480px) {
            .section-image2-container {
                width: 90px;
                bottom: -30px;
                left: 8px;
            }
            
            .section-image2-container img {
                border-radius: 8px;
            }
           .section-image2-container img {
                width: 280%;
            }
            
            .section-image2-container img:hover {
                transform: scale(1.05);
            }
        }

        @media (max-width: 320px) {
            .section-image2-container {
                width: 75px;
                bottom: -25px;
                left: 5px;
            }
            
            .section-image2-container img {
                border-radius: 6px;
            }
        }

        .section-image-container {
            position: relative;
        }

       
        #sectionImage2 {
            display: block;
        }

        #sectionImage2En {
            display: none;
        }

        
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .info-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .info-section img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .section-info-container {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .section-info-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        
        .banner-info-section {
            padding: 30px;
            margin: 30px auto;
            max-width: 1000px;
            width: 90%;
            position: relative;
            overflow: hidden;
        }

        .banner-info-section img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            display: block;
            margin: 0 auto;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
        }

        .banner-info-section img:hover {
            transform: scale(1.02);
            /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
        }

        
        @media (max-width: 1024px) {
            .banner-info-section {
                padding: 25px;
                margin: 25px auto;
                max-width: 900px;
                width: 92%;
            }
            
            .banner-info-section img {
                border-radius: 12px;
            }
        }

        @media (max-width: 768px) {
            .banner-info-section {
                padding: 20px;
                margin: 20px auto;
                max-width: 95%;
                width: 95%;
            }
            
            .banner-info-section img {
                border-radius: 10px;
            }
        }

        @media (max-width: 480px) {
            .banner-info-section {
                padding: 15px;
                margin: 15px auto;
                max-width: 98%;
                width: 98%;
            }
            
            .banner-info-section img {
                border-radius: 8px;
            }
            
            .banner-info-section img:hover {
                transform: scale(1.01);
            }
        }

        @media (max-width: 320px) {
            .banner-info-section {
                padding: 10px;
                margin: 10px auto;
                width: 99%;
            }
            
            .banner-info-section img {
                border-radius: 6px;
            }
        }

        
        .section-image-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 800px;
            margin: 40px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #e3f2fd;
        }

        .section-image-container img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #dfe2e7 0%, #0c267a 100%);
            color: white;
            padding: 20px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
        }

        .close {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #ffd700;
            transform: translateY(-50%) scale(1.1);
        }

        .modal-body {
            padding: 30px;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 25px;
        }

        .logo-container img {
            max-width: 150px;
            height: auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4a5568;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .btn-login-form {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #cdd0e0 0%, #103177 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .btn-login-form:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-register-form {
            width: 100%;
            padding: 15px;
            background: #ffd700;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-register-form:hover {
            background: #103a86;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .alert {
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 1px solid transparent;
        }

        .alert-warning {
            color: #856404;
            background-color: #fff3cd;
            border-color: #ffeaa7;
        }

        .software-name {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            color: #718096;
            font-size: 14px;
        }

        .software-name a {
            color: #667eea;
            text-decoration: none;
        }

        
        @media (max-width: 1024px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }

            .navbar-buttons-desktop {
                display: none;
            }

            .navbar-container {
                height: 70px;
                padding: 0 20px;
                position: relative;
            }

            .navbar-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: #1a365d;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 30px 20px;
                transition: left 0.3s ease;
                z-index: 999;
                margin: 0;
                overflow-y: auto;
            }

            .navbar-menu.active {
                left: 0;
            }

            .navbar-menu li {
                margin: 15px 0;
                width: 100%;
                text-align: center;
            }

            .navbar-menu a {
                display: block;
                padding: 15px 20px;
                font-size: 18px;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .navbar-menu .navbar-buttons {
                position: static;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                margin-top: 30px;
                padding: 20px;
                background: rgba(255,255,255,0.1);
                border-radius: 10px;
                display: flex;
            }

            .navbar-buttons .btn-navbar {
                width: 100%;
                text-align: center;
                margin: 5px 0;
                padding: 12px 20px;
                font-size: 16px;
            }

            .language-selector {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }

            .language-selector select {
                width: 100%;
                padding: 12px 15px;
                font-size: 16px;
                background: #2d3748;
                color: white;
                border: 1px solid #4a5568;
                border-radius: 8px;
            }

            .hero-section {
                min-height: 50vh;
                padding: 20px;
            }

            .welcome-message {
                max-width: 300px;
                margin-bottom: 15px;
                margin-left: 10px;
            }

            .content-sections {
                /* padding: 40px 0; */
            }

            .container {
                padding: 0 15px;
            }

            .info-section,
            .section-info-container {
                padding: 20px;
            }

            .banner-info-section {
                padding: 30px;
                margin: 30px auto;
            }

            .section-image-container {
                padding: 30px;
                margin: 30px auto;
            }

            .modal-content {
                margin: 10% auto;
                width: 95%;
            }

            .modal-body {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                padding: 10px 15px;
            }

            .navbar-buttons {
                flex-direction: column;
                gap: 5px;
            }

            .btn-navbar {
                padding: 6px 15px;
                font-size: 12px;
            }

            .hero-section {
                min-height: 40vh;
                padding: 15px;
            }

            .welcome-message {
                max-width: 250px;
                margin-bottom: 10px;
                margin-left: 5px;
            }

            .content-sections {
                /* padding: 30px 0; */
            }

            .info-section,
            .section-info-container {
                padding: 15px;
            }

            .banner-info-section {
                padding: 20px;
                margin: 20px auto;
            }

            .section-image-container {
                padding: 20px;
                margin: 20px auto;
            }

            .modal-content {
                margin: 5% auto;
            }

            .modal-body {
                padding: 15px;
            }

            .modal-title {
                font-size: 20px;
            }
        }

        
        .video-section-container {
            width: 100%;
            height: 100vh;
            margin: 0;
            padding: 40px;
            position: relative;
            background-color: #1a365d;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            box-sizing: border-box;
        }

        
        .iframe-section {
            width: 100%;
            height: calc(100vh - 130px);
            margin: 70px 0 0 0;
            padding: 0;
            position: relative;
            background: transparent;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .containeriframe {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: hidden;
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .responsive-iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            background-color: transparent;
            opacity: 1;
            visibility: visible;
            z-index: 1;
            object-fit: fill;
            object-position: center center;
        }

        
        @media (max-width: 1024px) {
            .iframe-section {
                height: calc(100vh - 100px);
                margin: 50px 0 0 0;
                border-radius: 10px;
            }
        }

        @media (max-width: 768px) {
            .iframe-section {
                height: calc(100vh - 80px);
                margin: 40px 0 0 0;
                border-radius: 8px;
            }
            
            .responsive-iframe {
                width: 100%;
                height: 100%;
                object-fit: fill;
            }
        }

        @media (max-width: 480px) {
            .iframe-section {
                height: calc(100vh - 60px);
                margin: 30px 0 0 0;
                border-radius: 5px;
            }
            
            .responsive-iframe {
                width: 100%;
                height: 100%;
                object-fit: fill;
            }
        }

       
        .info-images-section {
            width: 100%;
            padding: 80px 40px;
            background: #ffffff;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }



        .info-images-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            width: 100%;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .info-image-item {
            flex: 1;
            text-align: center;
            position: relative;
            /* background: rgba(255, 255, 255, 0.95); */
            border-radius: 20px;
            padding: 30px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }



        .info-image-item:hover {
            transform: translateY(-20px) scale(1.08);
            box-shadow: 
                0 30px 60px rgba(26, 54, 93, 0.2),
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .info-image-item img {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 15px;
            transition: all 0.5s ease;
        }

        .info-image-item:hover img {
            transform: scale(1.1) rotate(2deg);
            box-shadow: 0 15px 30px rgba(26, 54, 93, 0.2);
        }

        
        .info-image-item:nth-child(1) {
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .info-image-item:nth-child(2) {
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .info-image-item:nth-child(3) {
            animation: slideInRight 1s ease-out 0.6s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

    
        @media (max-width: 768px) {
            .info-images-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .info-images-section {
                padding: 60px 20px;
            }

            .info-image-item {
                padding: 25px;
            }

            .info-image-item:hover {
                transform: translateY(-15px) scale(1.05);
            }

            .info-image-item:nth-child(1),
            .info-image-item:nth-child(2),
            .info-image-item:nth-child(3) {
                animation: slideInUp 1s ease-out both;
            }

            .info-image-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .info-image-item:nth-child(3) {
                animation-delay: 0.4s;
            }
        }

        
        .section3-container {
            width: 100%;
            height: 770px;;
            min-height: 600px;
            background-color: #1a365d;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
        }

        .section3-content {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section3-main-image {
            position: relative;
            z-index: 2;
        }

        .section3-main-image img {
            /* max-width: 600px; */
            width: 100%;
            height: auto;
            border-radius: 15px;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
        }

        .section3-corner-images {
            position: absolute;
            bottom: -50px;
            right: 20px;
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .section3-corner-images img {
            
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .section3-corner-images img:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        
        @media (max-width: 768px) {
            .section3-container {
                min-height: 400px;
                padding: 40px 15px;
            }

            .section3-content {
                height: 350px;
            }

            .section3-main-image img {
                max-width: 550px;
            }

            .section3-corner-images {
                bottom: 2px;
                right: 10px;
            }
        }

        
        .role-selection {
            margin-bottom: 25px;
        }

        .role-options {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .role-option {
            flex: 1;
        }

        .role-option input[type="radio"] {
            display: none;
        }

        .role-label {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f9fafb;
        }

        .role-label:hover {
            border-color: #1a365d;
            background: #f0f4ff;
        }

        .role-option input[type="radio"]:checked + .role-label {
            border-color: #1a365d;
            background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
        }
        .section-global{
            display: contents;
        }
        .role-icon {
            font-size: 24px;
            margin-right: 12px;
        }

        .role-text strong {
            display: block;
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .role-text p {
            margin: 0;
            color: #6b7280;
            font-size: 14px;
        }

        
        .password-requirements {
            margin-top: 5px;
        }

        .password-requirements small {
            color: #6b7280;
            font-size: 12px;
        }

        
        .signup-input, .signup-input select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
        }

        .signup-input:focus {
            outline: none;
            border-color: #1a365d;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        
        @media (max-width: 480px) {
            .role-options {
                flex-direction: column;
                gap: 10px;
            }
            
            .role-label {
                padding: 12px;
            }
            
            .role-icon {
                font-size: 20px;
                margin-right: 10px;
            }
        }
                
            

            .section3-corner-images img {
                /* width: 80px; */
            }
        

        @media (max-width: 480px) {
            .section3-main-image img {
                max-width: 400px;
            }

            .section3-corner-images img {
                width: 250px;
            }
        }

        
        .pan-footer {
            background: linear-gradient(135deg, #0251B0 0%, #1a365d 100%);
            border-top: 1px solid #eaeff5;
            padding: 40px 20px 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            text-align: center;
        }

        .footer-logo-img {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .footer-copyright {
            text-align: center;
        }

        .footer-copyright p {
            margin: 0;
            line-height: 1.6;
            color: white !important;
        }

        .footer-copyright a {
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #87CEEB !important;
        }
        
        .footer-copyright a:hover {
            color: white !important;
            text-decoration: underline;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
            transform: translateY(-1px);
        }

        
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-button svg {
            width: 28px;
            height: 28px;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            }
        }

    
        @media (max-width: 768px) {
            .pan-footer {
                padding: 30px 15px 15px;
                /* margin-top: 40px; */
            }

            .footer-logo-img {
                height: 50px;
            }

            .footer-copyright p {
                font-size: 12px !important;
            }

            .whatsapp-float {
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-button {
                width: 50px;
                height: 50px;
            }

            .whatsapp-button svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                gap: 15px;
            }

            .footer-logo-img {
                height: 40px;
            }
        }

        
        @media (min-width: 1200px) {
            .banner-section,
            .video-section-container,
            .section3-container {
                background-size: cover !important;
                background-position: center center !important;
                background-attachment: fixed !important;
            }
        }

        
        @media (min-width: 768px) and (max-width: 1199px) {
            .banner-section,
            .video-section-container,
            .section3-container {
                background-size: cover !important;
                background-position: center center !important;
                background-attachment: scroll !important;
                min-height: 400px;
            }
            
            .banner-section {
                padding: 30px 20px !important;
            }
        }

        
        @media (max-width: 767px) {
            .banner-section,
            .video-section-container,
            .section3-container {
                background-size: contain !important;
                background-position: center center !important;
                background-attachment: scroll !important;
                background-repeat: no-repeat !important;
                min-height: 400px !important;
            }
            
            .banner-section {
                padding: 20px 15px !important;
                min-height: 450px !important;
            }
            
            .video-section-container {
                min-height: 350px !important;
            }
            
            .section3-container {
                min-height: 400px !important;
            }
        }

        
        @media (max-width: 480px) {
            .banner-section,
            .video-section-container,
            .section3-container {
                background-size: contain !important;
                background-position: center center !important;
                background-attachment: scroll !important;
                background-repeat: no-repeat !important;
                min-height: 350px !important;
            }
            
            .banner-section {
                min-height: 400px !important;
                padding: 15px 10px !important;
            }
            
            .video-section-container {
                min-height: 300px !important;
            }
            
            .section3-container {
                min-height: 350px !important;
            }
        }

        
        @media (max-width: 360px) {
            .banner-section,
            .video-section-container,
            .section3-container {
                background-size: auto 80% !important;
                background-position: center center !important;
                background-attachment: scroll !important;
                background-repeat: no-repeat !important;
                min-height: 300px !important;
            }
            
            .banner-section {
                min-height: 350px !important;
                padding: 10px 5px !important;
            }
            
            .video-section-container {
                min-height: 250px !important;
            }
            
            .section3-container {
                min-height: 300px !important;
            }
        }

        
        .banner-section,
        .video-section-container,
        .section3-container {
            width: 100% !important;
            overflow: hidden;
            position: relative;
        }

        
        .banner-section img,
        .video-section-container img,
        .section3-container img {
            max-width: 100%;
            height: auto;
        }

        
        @media (max-width: 768px) {
            .responsive-iframe {
                height: 250px !important;
            }
        }

        @media (max-width: 480px) {
            .responsive-iframe {
                height: 200px !important;
            }
        }

       
        .signup-overlay {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
        }

        .signup-container {
            position: relative;
            background-color: #ffffff;
            margin: 3% auto;
            padding: 0;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            border-radius: 15px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .signup-header {
            position: relative;
            background: linear-gradient(135deg, #1a365d 0%, #3a46ed 100%);
            padding: 20px;
            border-radius: 15px 15px 0 0;
        }

        .signup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: none;
        }

        .signup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(90deg);
        }

        .signup-content {
            padding: 40px 30px 30px;
            background: white;
            overflow-y: auto;
            flex: 1;
        }

        .signup-wrapper {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .signup-logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .signup-logo img {
            max-width: 180px;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        .signup-title {
            text-align: center;
            color: #1f2937;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .signup-form {
            width: 100%;
        }

        .signup-message {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        .signup-message.alert-success {
            color: #065f46;
            background-color: #d1fae5;
            border: 1px solid #a7f3d0;
        }

        .signup-message.alert-danger {
            color: #991b1b;
            background-color: #fee2e2;
            border: 1px solid #fecaca;
        }

        .signup-field {
            margin-bottom: 25px;
        }

        .signup-label {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            color: #374151;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .signup-input {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 15px;
            color: #1f2937;
            display: block;
            width: 100%;
            /* height: 50px; */
            background: #f9fafb;
            padding: 15px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            outline: none;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .signup-input:focus {
            border-color: #1a365d;
            background: white;
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
            transform: translateY(-1px);
        }

        .signup-input::placeholder {
            color: #9ca3af;
        }

        .signup-button {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 16px;
            color: #ffffff;
            font-weight: 600;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 25px;
            width: 100%;
            height: 55px;
            background: linear-gradient(135deg, #1a365d 0%, #3a3ded 100%);
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }

        .signup-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
            background: linear-gradient(135deg, #1a365d 0%, #2b28d9 100%);
        }

        .signup-button:active {
            transform: translateY(-1px);
        }

        .signup-link {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }

        .signup-switch {
            color: #1a365d;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .signup-switch:hover {
            color: #1a365d;
            text-decoration: underline;
        }

        .signup-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 12px;
            color: #6b7280;
        }

        .signup-footer a {
            color: #1a365d;
            text-decoration: none;
        }

        .signup-footer a:hover {
            text-decoration: underline;
        }

        
        @media (max-width: 768px) {
            .signup-container {
                width: 95%;
                margin: 2% auto;
                max-height: 95vh;
            }
            
            .signup-content {
                padding: 30px 25px 25px;
            }
            
            .signup-close {
                top: 12px;
                right: 15px;
                width: 35px;
                height: 35px;
                font-size: 24px;
            }
            
            .signup-title {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .signup-logo img {
                max-width: 150px;
            }

            .signup-field {
                margin-bottom: 20px;
            }

            .signup-input {
                height: 48px;
                padding: 12px 15px;
            }

            .signup-button {
                height: 50px;
                margin-top: 25px;
            }
        }

        @media (max-width: 480px) {
            .signup-container {
                width: 98%;
                margin: 1% auto;
            }
            
            .signup-content {
                padding: 25px 20px 20px;
            }
            
            .signup-logo img {
                max-width: 130px;
            }

            .signup-title {
                font-size: 20px;
            }

            .signup-input {
                height: 45px;
                font-size: 14px;
            }

            .signup-button {
                height: 48px;
                font-size: 15px;
            }
        }

        
        .info-images-section {
            width: 100%;
            padding: 80px 40px;
            background: #ffffff;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }



        .info-images-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            width: 100%;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .info-image-item {
            flex: 1;
            text-align: center;
            position: relative;
            /* background: rgba(255, 255, 255, 0.95); */
            border-radius: 20px;
            padding: 30px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }



        .info-image-item:hover {
            transform: translateY(-20px) scale(1.08);
            box-shadow: 
                0 30px 60px rgba(26, 54, 93, 0.2),
                0 20px 40px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .info-image-item img {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 15px;
            transition: all 0.5s ease;
        }

        .info-image-item:hover img {
            transform: scale(1.1) rotate(2deg);
            box-shadow: 0 15px 30px rgba(26, 54, 93, 0.2);
        }

        
        .info-image-item:nth-child(1) {
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .info-image-item:nth-child(2) {
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .info-image-item:nth-child(3) {
            animation: slideInRight 1s ease-out 0.6s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px) translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }

    
        @media (max-width: 768px) {
            .info-images-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .info-images-section {
                padding: 60px 20px;
            }

            .info-image-item {
                padding: 25px;
            }

            .info-image-item:hover {
                transform: translateY(-15px) scale(1.05);
            }

            .info-image-item:nth-child(1),
            .info-image-item:nth-child(2),
            .info-image-item:nth-child(3) {
                animation: slideInUp 1s ease-out both;
            }

            .info-image-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .info-image-item:nth-child(3) {
                animation-delay: 0.4s;
            }
        }

        
        .section3-container {
            width: 100%;
            height: 770px;;
            min-height: 600px;
            background-color: #1a365d;

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
        }

        .section3-content {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section3-main-image {
            position: relative;
            z-index: 2;
        }

        .section3-main-image img {
            /* max-width: 600px; */
            width: 100%;
            height: auto;
            border-radius: 15px;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
        }

        .section3-corner-images {
            position: absolute;
            bottom: -50px;
            right: 20px;
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .section3-corner-images img {
            
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .section3-corner-images img:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        
        @media (max-width: 768px) {
            .section3-container {
                min-height: 400px;
                padding: 40px 15px;
            }

            .section3-content {
                height: 350px;
            }

            .section3-main-image img {
                max-width: 550px;
            }

            .section3-corner-images {
                bottom: 2px;
                right: 1
            }
        }