* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

::selection {
    background-color: var(--primary-color);
    color: #ffffff;
}

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}


ul {
    list-style: none;
    padding: 0;
}

::placeholder {
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus,
.btn-close:focus {
    box-shadow: none !important;
}

input,select{
    height: 50px;
}
input[type="file"] {
    height: auto;
}
    


@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/Segoe-UI.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/Segoe-UI-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

html,
body {
    font-family: 'Segoe UI';
    overflow-x: hidden;
    background: #fff;
    scroll-behavior: smooth;
}

:root {
    --header-height: 3.5rem;
    --primary-font: 'Segoe UI';
    --first-color: hsl(220, 68%, 97%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(220, 48%, 28%);
    --text-color: hsl(220, 10%, 72%);
    --body-color: hsl(220, 100%, 99%);
    /*--primary-color:#2454CF;*/
    --primary-color: #00528c;
    --secondary-color: #27ade0;
    /* --secondary-color:#E01E24; */

    --card-color: #1e293b;


    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    --primary-gradient: linear-gradient(150deg, rgba(0, 82, 140, 1) 31%, rgba(39, 173, 224, 1) 100%);
    --primary-shadow: 0 16.83486px 15.71254px 0 rgba(0, 0, 0, .025);
    ;

    --text-col: #0f172a;

}

/* .container{
    max-width: 1200px;
} */
.section {
    padding: 70px 0;
    overflow: clip;
}

.section_title {
    margin-bottom: 50px;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
}

.section_title h6 {
    margin-bottom: 10px;
    color: #000;
}

.section_heading {
    font-size: 43px;
    font-weight: bold;
    text-align: center;
    color: #000;
}



.section_desc {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    margin: 0px auto;
}

.subhead {
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
}


.main_btn {
    background: transparent;
    padding: 12px 28px;
    color: #000;
    font-weight: 500;
    letter-spacing: .5px;
    border: 1px solid #000;
    transition: all .3s ease;
    text-transform: capitalize;
    border-radius:50px;
}

.main_btn:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
    /* smoothly transitions */
}


.border_btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    transition: all .3s ease;
}

.border_btn:hover {
    color: #fff;
}

header .main_btn {
    padding: 12px 40px !important;
    font-weight: 500 !important;
     color: #fff !important; 
     border-color:#fff !important;
}
header .main_btn:hover{
    color: #fff;
    background:#000;
    border-color: #000 !important;
}


.white_btn {
    padding: 12px 40px !important;
    font-weight: 500 !important;
     color: #fff !important; 
     border-color:#fff !important;
}

.white_btn:hover{
    color: #fff;
    background:#000;
    border-color: #000 !important;
}


.lets-talk-btn {
    background-color: #fff;
    color: var(--primary-color) !important;
    font-weight: 400 !important;
    padding: 12px 24px !important;
}



/*header .main_btn {*/
/*    background: #000;*/

/*}*/

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    transform: translateY(0);
    transition:
        background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    will-change: transform, background, opacity;
}

/* When header hides while scrolling down */
header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

/* When header becomes visible again */
header.show {
    transform: translateY(0);
    opacity: 1;
}

/* When scrolled — glassmorphism effect */
header.scrolled nav {
   background: rgba(0, 26, 66, 0.78);

    backdrop-filter: blur(600px) saturate(0%);
    -webkit-backdrop-filter: blur(600px) saturate(0%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


nav {
    background: transparent ;
    position: fixed;
    width: 100%;
    z-index: 999;
    height: 70px;
    line-height: 70px;
    /* box-shadow: var(--primary-shadow); */
}

nav .wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-linkss {
    margin-bottom: 0;
    display: flex;
    gap: 20px;
}

.wrapper .logo {
    width: 140px;
}

.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0;
}

.nav-links li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    font-weight: 300;
    letter-spacing: .7px;
}

.nav-links .drop-menu {
    background-color: #fff;
    width: 180px;
    top: 85px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    z-index: 9999;
    top: 60px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.drop-menu li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.drop-menu li:hover {
    background-color: #f7f7f7;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    color:#000;
}

.mega-box {
    position: absolute;
    top: 65px;
    background: #fff;
    
    width: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    box-shadow: var(--primary-shadow);
    border-radius:20px;
}


.nav-links .drop-menu,
.mega-box {
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: 
        transform 0.35s ease,
        opacity 0.1s ease;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}





.mega-box .menu .flex_ul{
    display: flex;
    gap: 16px;
}
.mega-box .menu h6{
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.mega-box .menu ul{
    padding-left: 0;
}
.mega-box .menu ul li{
    line-height: 2;
    
}
.spakaimenu{
    margin-left: 32px;
}
.mega-box .menu ul li a{
    color: #000;
    padding: 0;
    font-weight: 300;
    font-size: 14px;
    transition: all .3s;
}
.mega-box .menu ul li a:hover span{
    text-decoration: underline;
}

.mega-box .content {
    max-width:1200px;
    margin:0 auto;
    padding:30px;
}

.mega-box .content .grid_row {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    column-gap:60px;   /* spacing between columns */
    width:100%;
}


.mega-box .grid_row .menu{
    margin-bottom: 24px;
}

.mega-box .grid_row .item{
    position: relative;
}


.mega-box .grid_row .item::after{
    position: absolute;
    width: .4px;
    height: 90%;
    background: #ababab;
    content: '';
    top: 0;
    right: 80px;
}
.mega-box .grid_row .item.last::after {
    display: none;
}

header .flex_row{
    display: flex;
    align-items: center;
}








.nav-links .mobile-item {
    display: none;
}

.wrapper .btn {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.cancel-btn {
    position: absolute;
    right: 5px;
    top: 12px;
}

@media screen and (max-width:1199px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background-color: #0a0f1c;
        display: block;
        top: 0;
        left: -100%;
        line-height: 50px;
        overflow-y: auto;
        padding: 50px 10px;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
        transition: all .3s ease;
        z-index: 99999;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0px;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        /* padding-left: 20px; */
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .drop-menu li {
        margin: 0;
    }

    .nav-links .drop-menu li a {
        font-size: 18px;
        border-radius: 5px;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        font-size: 20px;
        color: #fff;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all .3s ease;
    }

    .mega-box .content .grid_row {
        grid-template-columns: 1fr;
    }


    .mega-box {
        position: static;
        top: 65px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .mega-box .content {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .grid_row{
        gap: 0;
    }
    .mega-box .grid_row .item::after{
        display: none;
    }
    .mega-box .grid_row .menu{
        margin-bottom: 0;
    }
    .nav-links li{
        margin: 4px;
    }

}

.wrapper input {
    display: none;
}
.wrapper .desktop-item{
    cursor:pointer;
}



/* --------------------------------------------------------------------- */

.main-area {
    background: url(images/banner.avif);
    width: 100%;
    height: 100vh;
    background-size: cover;
}



.page_banner {
    position: relative;
    height: 400px;
    /*background: var(--primary-gradient);*/
     background: url(../images/page-banner/led.jpg) no-repeat center center/cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page_banner.education{
    background:url(../images/page-banner/education.jpg);
    
}
.page_banner.corporate{
    background:url(../images/page-banner/corporate.jpg)no-repeat center center/cover;
}
.page_banner.terms_and_condition{
    background:url(../images/page-banner/terms_banner.webp)no-repeat center center/cover;
}
.page_banner.privacy_banner{
    background:url(../images/page-banner/privacy-policy.webp)no-repeat center bottom/cover;
}
.page_banner.contact_page_banner{
    background:url(../images/page-banner/contact-banner.webp)no-repeat center bottom/cover;
     height:100vh;
    text-align:left;
}
.page_banner.career_page_banner{
    background:url(../images/page-banner/Careers-banner.webp)no-repeat center bottom/cover;
    height:100vh;
    text-align:left;
}
.page_banner.academy_banner{
    background:url(../images/page-banner/Academy-banner.webp)no-repeat center bottom/cover;
    height:100vh;
    text-align:left;
    
}

.page_banner.academy_banner::after{
    display:none;
}

.banner-content{
    text-align:left;
    display:flex;
    flex-direction:column;
    gap:8px;
    max-width:600px;
}
.banner-content h6{
    font-size:20px;
    color:#16B9FF;
}
.banner-content h2{
    text-align:start;
    font-size:48px !important;
    line-height:56px !important;
}
.banner-content h2 span{
    color:#16B9FF;
}
.banner-content p{
    font-size:16px;
    line-height:24px;
}
.career_page_banner .main_btn{
    background:#fff;
    width:fit-content;
    color:#000;
    border:none;
    transition:all .3s;
}
.career_page_banner .main_btn:hover{
    background:#000;
    color:#fff;
}

/* Overlay with glass effect */
.page_banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(0, 82, 140, .3) 31%, rgba(39, 173, 224, .3) 100%);
    /*backdrop-filter: blur(5px);             */
    /*-webkit-backdrop-filter: blur(8px);     */
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Banner text should stay above overlay */
.page_banner h1,
.page_banner .container {
    position: relative;
    z-index: 2;
    color: #fff; /* white text for contrast */
}


.page_banner h2 {
    color: #fff;
    font-size: 32px;
}

/* Dropdown styling */
.header-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.dropbtn {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

.arrow {
    margin-left: 5px;
    font-size: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-dropdown {
        display: block;
        margin: 10px 0;
        margin-right: 20px;
    }

    .dropbtn {
        font-size: 16px;
        white-space: nowrap;
        /* Prevent text wrap */
        overflow: hidden;
        /* Hide overflow text */
        text-overflow: ellipsis;
        /* Add "..." if text is too long */
        max-width: 120px;
        /* Adjust width as needed */
        display: flex;
        align-items: center;


    }

}
/*@media (max-width: 600px) {*/
/*    .header-dropdown {*/
/*        margin-right: 150px;*/
/*    }*/
/*}*/