@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}


/* Header Styles */
.header {
    background: #f8f9fa;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#progress {
    z-index: 999999;
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #001a2e;
}

.logo img {
    display: flex;
    width: 50px;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #0a3561;
}

.contact-btn {
    background: transparent;
    color: #0a3561 !important;
    font-size: 0.95rem !important;
    padding: 7px 14px;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
    border: 2px solid #0a3561;
}

.contact-btn:hover {
    color: #fff !important;
    background: #0a3561;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.header {
    display: none;
}

.mobile-hero {
    display: none;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */

.hero-container {
    padding: 20px;
    background-color: #f9f9f9;
}

.hero-wrapper {
    display: flex;
    width: 100%;
}

.hero-card {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-top: 155px;
    background-color: fff;
    border-radius: 10px;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.hero-card .box {
    position: relative;
    width: 49%;
    height: auto;
    background: linear-gradient(to right, #001935, #003366, #095f94);
    height: 100%;
    border-radius: 20px;

}

.hero-card .box:nth-child(1)::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 100%;
    background: transparent;
    z-index: 9;
    margin-left: -225px;
    border-top-right-radius: 40px;
    box-shadow: 6px -6px #f9f9f9;
}

.hero-card .box:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 100%;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 9;
    transform: translateX(-100%);
    margin-top: 145px;
    border-top-right-radius: 40px;
    box-shadow: 10px 0px #f9f9f9;
}

.hero-card .box:nth-child(2)::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 9;
    margin-left: 205px;
    border-top-left-radius: 40px;
    box-shadow: -6px -6px #f9f9f9;
}

.hero-card .box:nth-child(2)::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 9;
    transform: translateX(2%);
    margin-top: 221px;
    border-top-left-radius: 40px;
    box-shadow: -10px 0px #f9f9f9;
}

.hero-card .box:nth-child(2) {
    background: yellow;
}

.hero-card .circle {
    position: absolute;
    width: 450px;
    height: 450px;
    margin-top: -225px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 50%;
    border: 70px solid #f9f9f9;
}

.hero-card .circle .imgBx,
.hero-card .box .imgBx {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
}

.hero-card .circle .imgBx {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.062);
}

.hero-card .box .imgBx {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.032);
}

.hero-card .box .imgBx {
    border-radius: 15px;
}

.hero-card .circle .imgBx img,
.hero-card .box .imgBx video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card .box .imgBx video {
    filter: brightness(0.85);
}

.hero-card .box .hero-nav,
.hero-card .box .hero-nav-right {
    display: flex;
    list-style: none;
    gap: 3.4rem;
    justify-content: flex-end;
    margin-top: 45px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-card .box .hero-nav {
    margin-right: 230px;
}

.hero-card .box .hero-nav-right {
    position: absolute;
    z-index: 9;
    margin-left: 280px;
}

.hero-nav a,
.hero-nav-right a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hero-card .box .hero-nav a:hover,
.hero-card .box .hero-nav-right a:hover {
    color: #ecfbff;
}

.hero-nav .dot1 {
    margin-top: -10px;
    width: 6px;
    height: 6px;
    background: #ecfbff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hero-nav a:nth-child(1):hover~.dot1 {
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.hero-nav a:nth-child(2):hover~.dot1 {
    -webkit-transform: translateX(-190px);
    transform: translateX(-190px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.hero-nav-right .dot2 {
    margin-top: -10px;
    width: 6px;
    height: 6px;
    background: #ecfbff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.hero-nav-right a:nth-child(1):hover~.dot2 {
    -webkit-transform: translateX(-275px);
    transform: translateX(-275px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.hero-nav-right a:nth-child(2):hover~.dot2 {
    -webkit-transform: translateX(-115px);
    transform: translateX(-115px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.hero-card .box .hero-content {
    position: absolute;
    inset: 0;
    padding: 0px 60px 0px 80px;
    margin-top: 230px;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.hero-card .box .hero-content span {
    font-size: 1.2rem;
    color: #dfdfdf;
    letter-spacing: 0.15em;
    line-height: 1.4em;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: -10px;
}

.hero-card .box .hero-content h1 {
    width: 100%;
    font-size: 3.3rem;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.4em;
    font-weight: 700;
}

.hero-card .box .hero-content p {
    width: 90%;
    font-size: 1.1rem;
    color: #dfdfdf;
    letter-spacing: 0.04em;
    line-height: 1.6em;
    font-weight: 300;
}

.hero-card .box .hero-content button {
    position: relative;
    top: 30px;
    padding: 11px 30px;
    background: #003366;
    border-radius: 30px;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid #fff;
    transition: 0.5s;
}

.hero-card .box .hero-content button:hover {
    letter-spacing: 0.12em;
}

@media screen and (min-width: 1601px) and (max-width: 1800px) {
    .hero-card .box:nth-child(1)::before {
        margin-left: -228px;
    }

    .hero-card .box:nth-child(2)::before {
        margin-left: 207px;
    }
    
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .hero-card .box:nth-child(1)::before {
        margin-left: -230px;
    }

    .hero-card .box:nth-child(2)::before {
        margin-left: 209px;
    }

    .hero-card .box:nth-child(1)::after {
        margin-top: 148px;
    }

    .hero-card .box .hero-nav,
    .hero-card .box .hero-nav-right {
        gap: 2.8rem;
        font-size: 1.1rem;
    }

    .hero-card .box .hero-nav {
        margin-right: 190px;
    }

    .hero-card .box .hero-nav-right {
        margin-left: 240px;
    }

    .hero-nav-right a:nth-child(1):hover~.dot2 {
        -webkit-transform: translateX(-245px);
        transform: translateX(-245px);
    }

    .hero-nav-right a:nth-child(2):hover~.dot2 {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    .hero-nav a:nth-child(1):hover~.dot1 {
        -webkit-transform: translateX(-360px);
        transform: translateX(-360px);
    }

    .hero-nav a:nth-child(2):hover~.dot1 {
        -webkit-transform: translateX(-170px);
        transform: translateX(-170px);
    }

    .hero-card .box .hero-content {
        padding: 0px 40px 0px 60px;
    }

    .hero-card .box .hero-content span {
        font-size: 1.15rem;
        margin-bottom: 10px;
        margin-top: -10px;
    }

    .hero-card .box .hero-content h1 {
        font-size: 2.9rem;
    }

    .hero-card .box .hero-content p {
        width: 90%;
        font-size: 1.05rem;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1366px) {
    .hero-card .box:nth-child(1)::before {
        margin-left: -231px;
    }

    .hero-card .box:nth-child(2)::before {
        margin-left: 210px;
    }

    .hero-card .box:nth-child(1)::after {
        margin-top: 151px;
    }

    .hero-card .box .hero-nav {
        margin-right: 190px;
    }

    .hero-card .box .hero-nav-right {
        margin-left: 230px;
    }

    .hero-card .box .hero-nav,
    .hero-card .box .hero-nav-right {
        gap: 2.1rem;
        font-size: 1.02rem;
    }

    .hero-nav-right a:nth-child(1):hover~.dot2 {
        -webkit-transform: translateX(-212px);
        transform: translateX(-212px);
    }

    .hero-nav-right a:nth-child(2):hover~.dot2 {
        -webkit-transform: translateX(-85x);
        transform: translateX(-85px);
    }

    .hero-nav a:nth-child(1):hover~.dot1 {
        -webkit-transform: translateX(-317px);
        transform: translateX(-317px);
    }

    .hero-nav a:nth-child(2):hover~.dot1 {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
    }

    .hero-card .box .hero-content {
        padding: 0px 40px 0px 60px;
        margin-top: 170px;
    }

    .hero-card .box .hero-content span {
        font-size: 1.05rem;

    }

    .hero-card .box .hero-content h1 {
        font-size: 2.6rem;
        margin-top: -20px;
    }

    .hero-card .box .hero-content p {
        width: 96%;
        font-size: 1rem;
    }

    .hero-card .box .hero-content button {
        top: 20px;
        padding: 9px 30px;
        font-size: 1rem;
        border: 2px solid #fff;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
    .hero-card .box:nth-child(1)::before {
        margin-left: -233px;
    }

    .hero-card .box:nth-child(2)::before {
        margin-left: 212px;
    }

    .hero-card .box:nth-child(1)::after {
        margin-top: 151px;
    }

    .hero-card .box .hero-nav-right {
        margin-left: 230px;
    }

    .hero-card .box .hero-nav {
        margin-right: 170px;
    }

    .hero-card .box .hero-nav,
    .hero-card .box .hero-nav-right {
        gap: 2.1rem;
        font-size: 1.02rem;
    }

    .hero-nav-right a:nth-child(1):hover~.dot2 {
        -webkit-transform: translateX(-212px);
        transform: translateX(-212px);
    }

    .hero-nav-right a:nth-child(2):hover~.dot2 {
        -webkit-transform: translateX(-85x);
        transform: translateX(-85px);
    }

    .hero-nav a:nth-child(1):hover~.dot1 {
        -webkit-transform: translateX(-317px);
        transform: translateX(-317px);
    }

    .hero-nav a:nth-child(2):hover~.dot1 {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
    }

    .hero-card .box .hero-content {
        padding: 0px 30px 0px 40px;
        margin-top: 180px;
    }

    .hero-card .box .hero-content span {
        font-size: 1.05rem;

    }

    .hero-card .box .hero-content h1 {
        width: 80%;
        font-size: 2rem;
        margin-top: -20px;
    }

    .hero-card .box .hero-content p {
        width: 96%;
        font-size: 1rem;
    }

    .hero-card .box .hero-content button {
        top: 20px;
        padding: 9px 30px;
        font-size: 0.95rem;
    }
}
@media (max-width: 1024px) {
    .hero-desktop {
        display: none;
    }
}


.mobile-hero {
    padding: 60px 0;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}

.mobile-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.4em;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding: 0 12%;
}

.mobile-hero-text p {
    color: #424242;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
    padding: 0 14%;
}

.mobile-hero button,
.feature-content button {
    top: 20px;
    padding: 12px 26px;
    background: linear-gradient(to right, #001935, #003366, #095f94);
    border-radius: 30px;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
    border: #fff;
}

.mobile-hero button:hover,
.feature-content button:hover {
    letter-spacing: 0.12em;
}



.mobile-hero-video video {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 60px 0 80px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('assets/shape-17.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-content {
    padding: 20px;
    width: 100%;
}

.feature-content span,
.section-header span,
.contact-left span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #0a3561;
    padding: 8px 16px;
    background-color: #d4f4ff;
    border-radius: 6px;
}

.feature-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #1a1a1a;
    line-height: 1.5em;
    letter-spacing: 0.04em;
}

.feature-content p {
    color: #424242;
    font-size: 1rem;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.feature-list {
    background: #f8f9fa;
    border-left: 3px solid #0a3561;
    padding: 15px 20px;
    margin: 20px 0;
}

.feature-list h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-list p {
    color: #424242;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    transition: 0.5s;
}

.feature-image img:hover {
    filter: brightness(0.7);
}

.cloud-icon {
    font-size: 120px;
    color: #00bcd4;
    position: relative;
    z-index: 2;
}

.lock-icon {
    font-size: 60px;
    color: #ff5252;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.feature-image.data-flow {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.data-flow-icon {
    font-size: 80px;
    color: #00e5ff;
}

.feature-image.server-rack {
    background: linear-gradient(135deg, #263238 0%, #455a64 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-icon {
    font-size: 100px;
    color: #4fc3f7;
}

/* Updates Section */
.updates {
    padding: 80px 0;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #1a1a1a;
}

.section-header p {
    padding: 0 12%;
    text-align: center;
    font-size: 1.07rem;
    color: #424242;
    line-height: 1.6em;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    width: 100%;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    color: rgb(240, 240, 240);
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);

    img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.9;
        transition: opacity .2s ease-out;
    }

    h3 {
        position: absolute;
        inset: auto auto 30px 30px;
        margin: 0;
        transition: inset .3s .3s ease-out;
        font-size: 1.15rem;
        font-weight: 500;
        letter-spacing: 0.03em;
        line-height: 1.4em;
    }

    p,
    a {
        position: absolute;
        opacity: 0;
        max-width: 80%;
        transition: opacity .3s ease-out;
    }

    p {
        inset: auto auto 80px 30px;
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    a {
        inset: auto auto 40px 30px;
        color: inherit;
        text-decoration: none;
        font-size: 0.8rem;
        transition: 0.5s;

    }

    a:hover {
        letter-spacing: 0.08em;
        transition: 0.5s;
    }

    &:hover h3 {
        inset: auto auto 165px 30px;
        transition: inset .3s ease-out;
    }

    &:hover p,
    &:hover a {
        opacity: 1;
        transition: opacity .5s .1s ease-in;
    }

    &:hover img {
        transition: opacity .3s ease-in;
        opacity: 1;
    }
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background: #f7f7f7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}



.downloads-card {
    background-color: #fff;
    backdrop-filter: blur(8px);
    padding: 2.2rem;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border-radius: 8px;
}

.downloads-card:nth-child(1) {
    animation-delay: 0.1s;
}

.downloads-card:nth-child(2) {
    animation-delay: 0.2s;
}

.downloads-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.downloads-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.downloads-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(184, 216, 216, 0.3);
}

.downloads-card::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    background: linear-gradient(135deg, #14b6ff 0%, #0856a0 100%);
    opacity: 0.9;
}

.downloads-card:nth-child(1)::before {
    bottom: 0;
    right: 0;
    border-radius: 8px;
    clip-path: circle(calc(3rem + 3rem) at 100% 100%);
}

.downloads-card:nth-child(2)::before {
    bottom: 0;
    right: 0;
    border-radius: 8px;
    clip-path: circle(calc(3rem + 3rem) at 100% 100%);
}

.downloads-card:nth-child(3)::before {
    bottom: 0;
    right: 0;
    border-radius: 8px;
    clip-path: circle(calc(3rem + 3rem) at 100% 100%);
}

.downloads-card:hover::before {
    clip-path: circle(150% at 100% 100%);
}

.downloads-card-content {
    position: relative;
    padding-right: 20px;
}

.document-icon {
    color: #006edf;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 0.625rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    stroke: currentColor;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.downloads-card:hover .document-icon {
    transform: scale(1.1) rotate(5deg);
    color: white;
}



.downloads-card p {
    color: rgb(75, 75, 75);
    margin-bottom: 1.2rem;
    margin-top: 0.625rem;
    transition: color 0.8s;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.downloads-card:hover h3 {
    color: white;
}

.downloads-card:hover p {
    color: white;
}

.downloads-card .downloads-card-content button {
    color: #0a3561;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
    border: none;
    background: transparent;
}

.downloads-card:hover button {

    background: transparent;
    color: #fff;

}

.downloads-card .downloads-card-content button:hover {
    letter-spacing: 0.12em;
}

/* Support Section */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support {
    padding: 80px 0;
    background: #fff;

}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-left h2 {
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #1a1a1a;
}

.contact-left>p {
    color: #424242;
    margin-bottom: 30px;
    line-height: 1.6em;
}

/* Contact Form */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #006edf;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.contact-method p {
    color: #6b7280;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a3561;
}

.form-group textarea {
    resize: vertical;
}

.contact-right button {
    margin-top: 20px;
    padding: 9px 24px;
    background: linear-gradient(to right, #001935, #003366, #095f94);
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
    border: #fff;
}

.contact-right button:hover {
    letter-spacing: 0.12em;
}

/* Footer */
.footer {
    background: #0B2740;
    color: white;
    padding: 40px 0 40px 0;
}




.footer-bottom {
    text-align: center;
    color: #f1f1f1;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 1001;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .feature-row {
        gap: 40px;
    }

    .feature-content h2 {
        font-size: 32px;
    }

    .mobile-hero button,
    .feature-content button {
        top: 10px;
        padding: 9px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .mobile-hero {
        display: block;
    }

    .header {
        display: block;
    }

    .mobile-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-hero-text h1 {
        font-size: 2.8rem;
    }

    .mobile-hero-buttons {
        justify-content: center;
    }

    .features {
        padding: 20px 0 60px 0;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .feature-image.aboutstr {
        display: none;
    }

    .corefeatures img,
    .register img {
        margin-bottom: -40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        max-width: 900px;
        padding: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mobile-hero-video video {
        width: 75%;
        height: 500px;
    }

    .updates {
        padding: 60px 0;
    }

    .updates-grid {
        gap: 20px;
    }

    .news-card h3 {
        margin-right: 10px;
    }

    .resources {
        padding: 60px 0;
    }

    .resources-grid {
        gap: 20px;
    }

    .support {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    #progress {
    height: 50px;
    width: 50px;
}
#progress-value {
    font-size: 20px;
}
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        display: block;
    }


    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-hero {
        padding: 40px 0;
    }

    .contact-btn {

        padding: 5px 10px;
    }



    .mobile-hero-text h1 {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .mobile-hero-text p {
        font-size: 14px;
        padding: 0 20px;
    }

    .mobile-hero button {
        padding: 9px 26px;
        font-size: 0.9rem;
    }

    .features {
        padding: 0 0 40px 0;
    }

    .feature-content {
        padding: 10px;
    }



    .feature-row {
        margin-bottom: 50px;
    }

    .feature-content h2 {
        font-size: 1.4rem;
    }

    .feature-image {
        height: 250px;
    }

    .updates {
        padding: 50px 0;
    }

    .feature-content span,
    .section-header span,
    .contact-left span {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    .feature-content button {
        padding: 9px 26px;
        font-size: 0.9rem;
        margin-top: -10px;
    }

    .section-header h2 {
        font-size: 1.4rem;
        padding: 0 20px;

    }

    .section-header p {
        padding: 0 5%;
        font-size: 1rem;
    }

    .updates-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        height: 400px;
    }

    .resources {
        padding: 50px 0px;
    }

    .support {
        padding: 50px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .contact-left h2 {
        font-size: 1.5rem;
    }

    .contact-container {
        max-width: 768px;
        padding: 0 15px;
    }

    .mobile-hero-video video {
        width: 100%;
        height: 400px;
        margin-top: -20px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .mobile-hero-left h2 {
        font-size: 1.5rem;
    }

    .about-right h2,
    .facilities-left h2,
    .guide-right h2,
    .news-section h2,
    .resources-section h2,
    .contact-left h2 {
        font-size: 1.5rem;
    }
    .contact-form {
        padding: 1rem;
    }
}
