/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    overflow: hidden;
    position: relative;
    color: white;
    transition: margin-right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    background-color: #000;
}

@media (max-width: 768px) {
    body{ overflow: scroll;
       padding:10px;
       height: 100%;
    }
   
}



/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -2;
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Blue Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(9, 43, 74, 0.4) 0%, rgba(9, 43, 74, 0.7) 60%, rgba(9, 43, 74, 0.9) 100%);
    z-index: -1;
    animation: fadeIn 1.5s ease-out;
}



/* Header */
.header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px;
}

.menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 26, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 60px 30px;
}

.side-menu.active {
    right: 0;
}

.side-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.side-menu-links hr {
    opacity: 0.5;
    border: none;
    height: 1px;
    background-color: white;
    margin: 5px 0;
}

.side-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: relative;
    display: inline-block;
}

.side-menu-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #00CCCC;
}

.side-menu-copyright {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: left;
}

.side-menu-copyright p {
    color: white;
    font-size: 12px;
    opacity: 0.7;
}



.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 80vh;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .main-content {
        height: 100%;
        overflow: scroll;
    }
}

.logo {
    margin-bottom: 15px;
}

.logo img {
    height: 40px;
}

.main-content h2 {
    font-weight: normal;
    font-size: 24px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
    color: white;
}

/* Category Buttons */
.category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    /* max-width: 1200px; */
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    width: 290px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-card h3 {
    color: #092B4A;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
    color: #555;
}

.card-button {
    background-color: #00CCCC;
    color: #092B4A;
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.chevron-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    stroke: white;
}

.category-card:nth-child(1) .card-button {
    background-color: #00CCCC;
}

.category-card:nth-child(2) .card-button {
    background-color: #FF99FF;
}

.category-card:nth-child(3) .card-button {
    background-color: #092B4A;
    color: #fff;
}

.category-card:nth-child(4) .card-button {
    background-color: #00a0e3;
    padding: 8px 9px !important;
}

.card-button:hover {
    background-color: #0082b8;
}

.category-card:nth-child(2) .card-button:hover {
    background-color: #ff80ff;
}

.category-card:nth-child(3) .card-button:hover {
    background-color: #0a3b64;
}

/* Remove glow effect */
.category-btn::after {
    display: none;
}

.category-btn:hover::after {
    display: none;
}

.category-btn:active {
    background-color: rgba(0, 26, 51, 0.8);
}

/* Blue Button */
.category-btn.blue-border {
    /* border-color: #00a3cc; */
}

.category-btn.blue-border::after {
    display: none;
}

.category-btn.blue-border:hover::before {
    display: none;
}

/* Pink Button */
.category-btn.pink-border {
    /* border-color: #ff66b3; */
}

.category-btn.pink-border::after {
    display: none;
}

.category-btn.pink-border:hover::before {
    display: none;
}

/* Animations */
@keyframes borderBeam {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

/* Footer */
.footer {
    /* position: absolute; */
    bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

footer p {
    opacity: .5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .category-buttons {
        flex-direction: column;
        align-items: center;
        width: 90%;
        gap: 15px;
        margin-bottom: 30px;
    }

    .category-card {
        width: 100%;
        max-width: 320px;
    }
    
    .main-content h2 {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .side-menu {
        width: 100%;
        right: -100%;
    }
    
    body.menu-open {
        margin-right: 0;
        overflow: hidden;
    }
    
    .side-menu-links {
        align-items: center;
    }
    
    .footer {
        position: relative;
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.w-img {

    background-image: url('2.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -2;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .overlay {
      height: 100%;
    }
    .footer {
        position: relative !important;
        bottom: 0 !important;
    }
    .w-img {

        background-image: url('2.jpg');
        background-size: cover;
        background-position: left -400px center;
        z-index: -2;
        background-repeat: no-repeat;
    }
    .header {
        padding: 10px 10px;
    }
}

.typeform-container {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

/* Style for the Typeform button */
.typeform-container button {
    background-color: #00cccc !important;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
 
}

.typeform-container button:hover {
    background-color: #00a3a3;
}
#helpcentre{
    position: relative;
}

#helpcentre button {
    position: absolute !important;
    top: unset !important;
    right: 0 !important;
    left: 0 !important;
    height: 30% !important;
    /* width: 100% !important; */
    border-radius: 0 !important;
    opacity: 0 !important;
   bottom: 0 !important;
}

@media (max-width: 768px) {
    .main-content{
        padding: 0;
    }
}

.hsl{
    position: relative;
    div{
        position: absolute;
        top: -13px;
        opacity: 0;
    }
}

/* About Page Styles */
.about-page body {
    overflow: hidden !important;
    height: 100vh !important;
    min-height: 100vh;
    position: relative;
}

.about-page .overlay {
    position: fixed;
}

.about-page .header {
    position: fixed;
    width: 100%;
    z-index: 10;
    background: linear-gradient(180deg, rgba(9, 43, 74, 0.8) 0%, rgba(9, 43, 74, 0) 100%);
    backdrop-filter: blur(5px);
}

.about-page .logo {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.about-page .logo:hover {
    transform: scale(1.05);
}

.about-page .side-menu {
    z-index: 1000;
}

.about-page .main-content {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 20px;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Scrollable content area */
.scrollable-content {
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(9, 43, 74, 0.3) transparent;
}

/* Custom scrollbar styling */
.scrollable-content::-webkit-scrollbar {
    width: 5px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: rgba(9, 43, 74, 0.3);
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(9, 43, 74, 0.5);
}

/* About container styles */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #FFFAFF;
    border-radius: 12px;
    color: #333;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.about-container h2 {
    color: #092B4A;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.about-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #092B4A, #00CCCC);
    border-radius: 2px;
}

.about-container h3 {
    color: #092B4A;
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-container h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00CCCC;
    opacity: 0.6;
    border-radius: 2px;
}

.about-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}

.founders {
    font-style: italic;
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
    color: #092B4A;
}

#partners {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(9, 43, 74, 0.1);
}

#partners a {
    transition: all 0.3s ease;
    text-decoration: none;
}

#partners a:hover {
    color: #00CCCC !important;
}

@media (max-width: 768px) {
    .scrollable-content {
        height: calc(100vh - 180px);
    }
    
    .about-container {
        margin: 10px;
        padding: 20px;
        border-radius: 8px;
    }
    
    .about-container h2 {
        font-size: 24px;
    }
    
    .about-container h3 {
        font-size: 20px;
    }
    
    .about-container p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .about-page .main-content {
        padding-top: 70px;
        height: auto;
        overflow-y: auto;
    }
    
    .about-page .main-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* .contact-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
} */

.tf{
    width: 100%;
}
.scrollable-content{
    width: 100%;
    max-width: 1000px;
}