/* 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;
    padding-bottom: 30px;
}

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

.logo {
    margin-bottom: 15px;
}

.logo img {
    height: 75px;
}

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

/* Category Buttons */
.category-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    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: 310px;
    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;
}

a.category-card {
    text-decoration: none;
    color: inherit;
}

a.category-card:visited {
    color: inherit;
}

a.category-card:hover {
    text-decoration: none;
}

.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;
    pointer-events: 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('bg.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;
    background-color: white;
}

.about-page .overlay {
    display: none;
}

.about-page .header {
    position: fixed;
    width: 100%;
    z-index: 10;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-page .menu-btn {
    color: #092B4A;
}

.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-y: auto;
    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: 1100px;
    margin: 0 auto;
    padding: 60px 0px;
    background-color: transparent;
    color: #333;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: none;
    border: none;
}

/* Two-column layout */
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-column {
    display: flex;
    flex-direction: column;
}

.about-container h2 {
    color: #092B4A;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    padding-bottom: 0;
}

.about-container h2:after {
    display: none;
}

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

.about-container h3:after {
    display: none;
}

.about-container p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    text-align: justify;
}

/* Signatures styling */
.signatures-container {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.signatures-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.founders {
    font-style: normal;
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 600;
    color: #092B4A;
    font-size: 12px;
}

/* Founding story button */
.founding-story-btn {
    text-align: center;
    margin-top: 20px;
}

.founding-story-btn a {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #092B4A;
    color: #092B4A;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.founding-story-btn a:hover {
    background-color: #092B4A;
    color: #FFFAFF;
}

/* Team section */
.team-section {
    border-top: 1px solid rgba(9, 43, 74, 0.1);
    padding: 60px 0;
    width: 100%;
}

.team-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 1200px;
}

.team-heading {
    color: #092B4A !important;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-subheading {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    background-color: #f0f0f0;
}

.team-name {
    color: #092B4A;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
}

.team-region {
    color: #555;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 10px;
    }

    .team-heading {
        font-size: 22px;
    }

    .team-subheading {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .team-photo {
        width: 110px;
        height: 110px;
    }
}

#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) {

    .header-container {
        padding: 0 30px !important;
    }

    .scrollable-content {
        height: calc(100vh - 180px);
    }

    .about-container {
        margin: 10px;
        padding: 20px;
        border-radius: 8px;
    }

    /* Stack columns on mobile */
    .about-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-container h2 {
        font-size: 20px;
    }

    .about-container h3 {
        font-size: 18px;
    }

    .about-container p {
        font-size: 13px;
        line-height: 1.5;
    }

    .about-page .main-content {
        padding-top: 70px;
        height: auto;
        overflow-y: auto;
    }

    .about-page .main-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0;
    }
}

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

.tf {
    width: 100%;
}

.scrollable-content {
    width: 100%;
    max-width: 1000px;
}/* About Footer Styles */
.about-footer {
    background-color: #092B4A;
    color: white;
    padding: 60px 40px 30px;
    font-size: 14px;
    position: relative;
    width: 100%;
    margin-top: auto;
}

.about-footer .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.about-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.about-footer .footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about-footer .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.about-footer .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.about-footer .social-icons {
    display: flex;
    gap: 20px;
}

.about-footer .social-icons a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.about-footer .social-icons a:hover {
    opacity: 1;
}

.about-footer .footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 40px 0;
}

.about-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.about-footer .footer-logo {
    height: 35px;
    margin-bottom: 5px;
}

.about-footer .company-name {
    text-transform: uppercase;
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.about-footer .copyright {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

.about-footer .back-to-top {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-footer .back-to-top:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.about-footer .back-to-top img {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .about-footer {
        padding: 40px 20px;
    }

    .about-footer .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .about-footer .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .about-footer .back-to-top {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 30px;
        margin-left: auto;
    }
}

.sub-t{
    font-size: 18px; line-height: normal; font-weight: 300; opacity:0.8; max-width: 60%; margin-top: 16px;
}
@media (max-width: 768px) {
   .sub-t{
    font-size: 16px; line-height: normal; font-weight: 300; opacity:0.8; max-width: 100%; margin-top: 16px;
}
}