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

body {
    background-color: #050226;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* section ---- 1 ----- css */

.header-section {
    width: 100%;
    background-color: #0a072a;
}

header {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li {
    font-size: 14px;
    font-weight: 400;
    color: #E4E4E4;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li:hover {
    color: #9CC3F1;
}


/* --- Dropdown Specific CSS --- */

.nav-links li.dropdown-trigger {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #0a072a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;

    z-index: 1100;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
    font-size: 14px;
    color: #e0e0e0;
    transition: background 0.3s;
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    width: 100%;
    color: inherit;
}

.dropdown-menu li:hover {
    background-color: rgba(156, 195, 241, 0.1);
    color: #9CC3F1;
}

.dropdown-trigger:hover i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-contact {
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    color: #050226;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
}

.search-icon {
    cursor: pointer;
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.watermark-text img {
    position: absolute;
    top: 58%;
    width: 100%;
    z-index: 1;
    max-width: 70%;
    margin: 0 auto !important;
    left: 46%;
    transform: translateX(-50%);
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 90%;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    padding-left: 20px;
    position: relative;
    z-index: 12;
}

/* --- NEW: Text Glow Background Image --- */
.text-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: auto;
    z-index: -1;
    opacity: 0.8;
    pointer-events: none;
    filter: blur(20px);
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box {
    display: inline-block;
    background: linear-gradient(136.81deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #050226;
    padding: 0 10px;
    margin-top: 5px;
}

.hero-content p {
    font-size: 34px;
    line-height: 38px;
    color: #E4E4E4;
    margin-top: 20px;
    font-weight: 400;
}

.visuals-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.collage-img {
    position: absolute;
    top: 70%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 46%;
    height: auto;
    z-index: 11;
    border-radius: 20px;
}

.desc-card {
    position: absolute;
    right: 4%;
    top: 56%;
    transform: translateY(-50%);
    width: 26%;
    border-radius: 16px;
    z-index: 10;
}

.desc-card p {
    font-size: 15px;
    line-height: normal;
    color: #FFFFFF;
    margin-bottom: -20px;
}

.btn-get-started {
    position: absolute;
    bottom: 0;
    right: 15%;
    background-color: #BFDCF8;
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #050226;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    z-index: 12;
    pointer-events: auto;
}

.mob {
    display: none !important;
}

.desktp {
    display: block !important;
}

@media (max-width: 767px) {

    .desktp {
        display: none !important;
    }

    .mob {
        display: block !important;
    }

    header {
        padding: 20px;
    }

    .nav-links,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .container {
        flex-direction: column;
        height: auto;
        width: 90%;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .visuals-area,
    .collage-img,
    .desc-card,
    .btn-get-started {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 20px auto;
    }

    .collage-img {
        width: 100%;
        max-width: 400px;
        display: block;
    }

    .desc-card {
        width: 100%;
        background: rgba(16, 16, 44, 0.8);
    }

    .btn-get-started {
        display: block;
        margin: 0 auto;
    }

    .watermark-text {
        font-size: 80px;
        bottom: 0;
    }

    #menuToggle {
        display: block !important;
        position: relative;
        z-index: 2000;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 3;
        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #ffffff;
        /* Tumhara White Color */
        border-radius: 3px;
        z-index: 2;
        /* Menu ke upar dikhe */
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            opacity 0.55s ease;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #ffffff;
    }

    #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked~span:nth-last-child(2) {
        opacity: 1;
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        position: fixed;
        width: 300px;
        height: 100vh;
        margin: -100px 0 0 0;
        padding: 50px;
        padding-top: 125px;
        top: 0;
        right: -100px;
        background: #0a072a;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(100%, 0);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1;
    }

    #menu li {
        padding: 15px 0;
        font-size: 20px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    #menu a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }

    #menu a:hover {
        color: #9CC3F1;
    }

    #menuToggle input:checked~ul {
        transform: none;
    }


}


#menuToggle {
    display: none;
}

/* .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #0a072a;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
} */




/* section ---- 2 ----- css */


.tech-product-section {
    width: 100%;
    min-height: 100vh;
    background: #050226;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #fff;


    position: relative;
    overflow: hidden;
    z-index: 1;

}

/* New Class for Center Glow Image */
.section-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(300deg);
    width: 60%;
    height: auto;
    opacity: 0.5;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 90%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.content-left {
    flex: 1;
    padding-top: 20px;
}

.section-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E4E4E4;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.highlight-growth {
    background: linear-gradient(130.12deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #050226;
    padding: 0 10px;
    display: inline-block;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #E4E4E4;
    margin-bottom: 40px;
    max-width: 90%;
}

.learn-more-btn {
    text-decoration: none;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    transition: transform 0.2s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.experience-badge {
    position: absolute;
    top: -50px;
    left: -50px;
    background: linear-gradient(135.08deg, #343B78 0%, #050226 100%);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #CCE2F5;
}

.experience-badge .exp-text {
    display: block;
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    /* width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: center; */
}

.icon-box img {
    width: 50px;
    height: 50px;
}

.text-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.text-box p {
    font-size: 14px;
    color: #E4E4E4;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .tech-product-section {
        padding: 40px 15px;
        height: auto;
    }

    .container {
        flex-direction: column;
        gap: 30px;
    }

    .main-heading {
        font-size: 36px;
    }

    .experience-badge {
        left: 0;
        top: -20px;
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 24px;
    }

    .content-right {
        width: 100%;
    }

    .feature-item {
        gap: 15px;
    }
}


/* section ---- 3 ---- css */

.authority-section {
    background-color: #14133E;
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.container-auth {
    max-width: 90%;
    width: 100%;
    text-align: center;
}

.tagline {
    color: #E4E4E4;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.auth-heading {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.highlight-auth {
    background: linear-gradient(133.67deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #070711;
    padding: 2px 12px;
    display: inline-block;
}

.auth-desc {
    color: #E4E4E4;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.card-outer {
    flex: 1;
    min-width: 300px;
    border-radius: 24px;
    padding: 8px;
    background: linear-gradient(176.26deg, rgba(52, 59, 120, 0.58) 0%, #0F0E2B 100%);
    background-clip: padding-box;
    border: 2px solid #FFFBFB1A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-outer:hover {
    transform: translateY(-10px);
}

.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: linear-gradient(176.26deg, rgba(52, 59, 120, 0.58) 0%, #0F0E2B 100%);
    background-clip: padding-box;
    border: 2px solid #FFFBFB1A;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-outer:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-content p {
    color: #E4E4E4;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.pill-tag {
    background-color: #0f1026;
    border: 1px solid #2f3454;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.card-link {
    color: #CCE2F5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.card-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* --- Responsive Design (Max-width 767px) --- */
@media (max-width: 767px) {
    .authority-section {
        padding: 50px 15px;
    }

    .auth-heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .auth-desc {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .cards-grid {
        flex-direction: column;
        gap: 40px;
    }

    .card-outer {
        width: 100%;
        min-width: auto;
    }
}

/* section ----- 4 ---- css */

.stats-section {
    background-color: #050226;
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.stats-container {
    max-width: 90%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.stat-item {
    flex: 1;
    text-align: left;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 400;
    color: #CCE2F5;
    margin-left: 5px;
}

.progress-track {
    width: 100%;
    height: 3px;
    background-color: #191E44;
    border-radius: 2px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #5d6cc0 0%, #343B78 100%);
    border-radius: 2px;
    transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-title {
    font-size: 16px;
    font-weight: 500;
    color: #CCE2F5;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 13px;
    color: #E4E4E4;
    font-weight: 300;
}

/* --- Responsive (Max-width 767px) --- */
@media (max-width: 767px) {
    .stats-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        text-align: left;
        padding: 0 10px;
    }

    .stat-number {
        font-size: 56px;
    }
}


/* section --- 5 --- css */

.geo-section {
    background-color: #050226;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.geo-section * {
    box-sizing: border-box;
}

.container-geo {
    max-width: 90%;
    width: 100%;
}

.geo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.geo-header .section-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #CCE2F5;
    margin-bottom: 15px;
}

.geo-header .main-heading {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
    margin: 0;
}

.geo-header .highlight-ai {
    background: linear-gradient(140.11deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #070711;
    padding: 2px 10px;
    display: inline-block;
}

.geo-header .header-right {
    max-width: 500px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.geo-header .header-desc {
    color: #E4E4E4;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.geo-header .see-more-btn {
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #050226;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s;
    display: inline-block;
}

.geo-header .see-more-btn:hover {
    transform: translateY(-2px);
}

.geo-cards-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.geo-card-outer {
    width: 100%;
    border-radius: 24px;
    padding: 16px;
    border: 2px solid #FFFFFF14;
    background: #050226;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.geo-card-outer.in-view {
    opacity: 1;
    transform: translateY(0);
}

.geo-card-outer:hover {
    /* border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
}

.geo-card-inner {
    width: 100%;
    min-height: 250px;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #FFFBFB1A;
    background-image: linear-gradient(167deg, #1e2046 0%, #14133e 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.geo-tech-bg {
    background: linear-gradient(139.27deg, rgba(255, 255, 255, 0.04) 0%, rgba(52, 59, 120, 0.58) 100%);
    border: 2px solid #FFFFFF14;
    background-clip: padding-box;
}

.geo-horizontal-layout {
    display: flex;
    flex-direction: row;
}

.geo-reverse-layout {
    flex-direction: row-reverse;
}

.geo-content {
    flex: 1;
    z-index: 2;
}

.geo-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 0;
    color: #CCE2F5;
}

.geo-content p {
    font-size: 16px;
    color: #E4E4E4;
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}

.geo-visual {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.geo-reverse-layout .geo-visual {
    justify-content: flex-start;
}

.geo-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Mobile Responsive (Max-width 767px) --- */
@media (max-width: 767px) {
    .geo-section {
        padding: 60px 20px;
    }

    .geo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .geo-header .header-right {
        align-items: flex-start;
        text-align: left;
    }

    .geo-header .main-heading {
        font-size: 36px;
    }

    .geo-card-inner.geo-horizontal-layout,
    .geo-card-inner.geo-reverse-layout {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 25px;
        gap: 25px;
    }

    .geo-content {
        width: 100%;
    }

    .geo-content h3 {
        font-size: 24px;
    }

    .geo-visual {
        width: 100%;
        justify-content: center;
    }

    .geo-tech-bg {
        background-size: cover;
        background-position: center;
    }

    .geo-visual img {
        height: 200px;
        object-fit: cover;
    }

}


/* section ---- 6 --- css */

.media-tech-section {
    background-color: #050226;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 100px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.media-tech-section * {
    box-sizing: border-box;
}

.media-tech-container {
    max-width: 90%;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.media-left-col {
    flex: 1;
}

.main-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px;
    max-width: 380px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.box-icon img {
    width: 40px;
    height: auto;
}

.box-content h4 {
    color: #343B78;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.box-content p {
    color: #050226;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.media-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    margin-bottom: 40px;
}

.tagline {
    color: #CCE2F5;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 15px;
}

.media-tech-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.highlight-media {
    background-color: #CCE2F5;
    color: #050226;
    padding: 0px 8px;
    display: inline-block;
}

.sub-heading {
    color: #E4E4E4;
    font-size: 16px;
    margin: 0;
}

.feature-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.dark-gradient-bg {
    background: linear-gradient(180deg, #14133E 0%, #050226 100%);
    border: 2px solid #FFFFFF2E
}

.card-img-side {
    width: 50%;
    position: relative;
}

.card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.card-text-side {
    width: 50%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: auto;
    max-width: 60px;
}

.card-text-side h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.card-text-side p {
    color: #E4E4E4;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive (Max-width 767px) --- */
@media (max-width: 767px) {
    .media-tech-section {
        padding: 60px 20px;
    }

    .media-tech-container {
        flex-direction: column;
        gap: 50px;
    }

    .main-image-wrapper {
        height: 450px;
    }

    .overlay-box {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        padding: 20px;
    }

    .media-tech-section h2 {
        font-size: 36px;
    }

    .feature-card {
        flex-direction: column;
    }

    .card-img-side,
    .card-text-side {
        width: 100%;
    }

    .card-img-side {
        height: 200px;
    }

    .card-text-side {
        padding: 25px;
    }
}


/* section ---- 7 ---- */

.tnp-cta-section {
    background-color: #050226;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.tnp-cta-section * {
    box-sizing: border-box;
}

.tnp-cta-container {
    max-width: 90%;
    width: 100%;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background-image: url('image/27.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgb(60 59 89);
}

.tnp-cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 26, 0.85) 0%, rgba(20, 19, 62, 0.7) 100%);
    z-index: 1;
}

.tnp-cta-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    gap: 40px;
}

.tnp-cta-left {
    flex: 1;
}

.tnp-cta-tagline {
    font-size: 14px;
    color: #CCE2F5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tnp-cta-heading {
    font-size: 56px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.tnp-highlight-scale {
    background: linear-gradient(151.3deg, #98C0F1 0%, #CFE4F5 100%);
    color: #070711;
    padding: 2px 12px;
    display: inline-block;
}

.tnp-cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 450px;
}

.tnp-cta-desc {
    font-size: 16px;
    color: #E4E4E4;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tnp-cta-btn {
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #050226;
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    transition: transform 0.2s ease;
}

.tnp-cta-btn:hover {
    transform: translateY(-3px);
}


/* --- POPUP MODAL CSS --- */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(176.26deg, rgba(52, 59, 120, 0.9) 0%, #0F0E2B 100%);
    background-clip: padding-box;
    border: 2px solid rgba(255, 251, 251, 0.1);
    border-radius: 20px;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: popupAnim 0.4s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

/* Animation Keyframes */
@keyframes popupAnim {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #fff;
}

.modal-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.modal-subtitle {
    color: #b0b8c8;
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(140.11deg, #9CC3F1 0%, #CCE2F5 100%);
    color: #070711;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: transform 0.2s;
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: rgba(7, 7, 17, 0.6);
}

.popup-form input:focus,
.popup-form textarea:focus {
    transform: scale(1.01);
    box-shadow: 0 0 0 2px rgba(156, 195, 241, 0.5);
}

.popup-form textarea {
    resize: vertical;
}

.submit-btn {
    background: #fff;
    color: #050226;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e0e0e0;
}

/* Mobile Responsive for Form */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 25px;
    }
}

/* --- Responsive (Max-width 767px) --- */
@media (max-width: 767px) {
    .tnp-cta-section {
        padding: 40px 15px;
    }

    .tnp-cta-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
    }

    .tnp-cta-heading {
        font-size: 42px;
    }

    .tnp-cta-right {
        max-width: 100%;
    }

    .tnp-cta-btn {
        width: 100%;
        text-align: center;
    }
}


/* section ----- 8 ----- */

.vorxus-footer-section {
    background-image: url('image/Footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 80px 20px 30px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.vorxus-footer-section * {
    box-sizing: border-box;
}

.vorxus-footer-container {
    max-width: 90%;
    width: 100%;
}

/* --- Top Row Styles --- */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.footer-brand-col {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand-desc {
    color: #E4E4E4;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.social-circle {
    /* width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s; */
}

.social-circle:hover {
    /* background-color: rgba(255, 255, 255, 0.2); */
}

.social-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}


.footer-cta-col {
    flex: 1;
    max-width: 500px;
    text-align: start;
}

.cta-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.vorxus-footer-btn {
    display: inline-block;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: #050226;
    background: linear-gradient(180deg, #9CC3F1 0%, #CCE2F5 100%);
    transition: transform 0.2s ease;
}

.vorxus-footer-btn:hover {
    transform: translateY(-3px);
}

.footer-links-row {
    /* display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; */
    margin-bottom: 40px;
    /* padding-top: 20px; */
}

.footer-link-col {
    flex: 1;
    min-width: 160px;
}

ul.footer-nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-nav-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list a {
    text-decoration: none;
    color: #E4E4E4;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: #CCE2F5;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #E4E4E4;
    font-size: 16px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-contact-list a {
    text-decoration: none;
    color: #E4E4E4;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #CCE2F5;
}

.address-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #CCE2F5;
}

.address-col p {
    color: #E4E4E4;
    font-size: 16px;
    line-height: 1.6;
    max-width: 220px;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #E4E4E4;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    text-decoration: none;
    color: #E4E4E4;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* --- Responsive (Max-width 991px) --- */
@media (max-width: 991px) {
    .cta-heading {
        font-size: 36px;
    }

    .footer-top-row {
        gap: 20px;
    }
}

/* --- Responsive (Max-width 767px - Mobile) --- */
@media (max-width: 767px) {
    .vorxus-footer-section {
        padding: 60px 20px 30px 20px;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 50px;
    }

    .footer-brand-col,
    .footer-cta-col {
        max-width: 100%;
        text-align: left;
    }

    .cta-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .footer-links-row {
        gap: 40px 20px;
    }

    .footer-link-col {
        flex-basis: calc(50% - 10px);
        min-width: auto;
    }

    .contact-col,
    .address-col {
        flex-basis: 100%;
    }

    .footer-bottom-row {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        gap: 0;
    }

    .footer-legal-links a {
        margin: 0 8px;
    }

    ul.footer-nav-list {
        gap: 0;
        flex-direction: column;
    }
}