/* VenJS 5.0 starter stylesheet */
@media screen and (min-width: 900px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.top{
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;;
}

.topLogo{
    width: 100px;
    height: auto;
}

nav{
    width: auto;
    height: auto;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 1;
}

nav p{
    color: black;
    cursor: pointer;
}

nav p:hover{
    color: blue;
}

nav p.active {
    color: navy;
    font-weight: 600;
}

.hamburger{
    display: none;
}


/* * Updated .bg-img and container logic 
* to prevent long images from breaking the layout
* and added overlay content styling
*/

.img-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    position: relative; /* Required for absolute positioning of children */
    margin-top: 70px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* The Overlay Container */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 63, 255, 0.356); /* Dark tint to make text readable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.content-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-overlay .cta-button {
    margin-top: 30px;
    height: 50px;
    width: 200px;
    font-size: 1.1rem;
    background-color: rgb(212, 212, 16);
    color: navy;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.content-overlay .cta-button:hover {
    background-color: #1d4ed8;
    /* Combine both actions into one transform property */
    transform: scale(2.05) rotate(90deg); 
    transition: all 1s;
}

.content-overlay .cta-button:active {
    transform: scale(1.05);
}

.content-overlay .cta-button:hover{
    transform: scale(1.05);
}


.flex-box{
    width: 100%;
    height: auto;
    display: flex;
  padding: 40px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(228, 228, 228);
}

.left-content{
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.right-content{
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding-right: 20px;
}

.abt{
    color: blue;
    font-weight:400;
    font-size: 22px;
}

.conDesc{
    font-size: 40px;
    color: navy;
}

.kmo{
    width: 150px;
    height: 50px;
    padding: 10px;
    background-color: transparent;
    border: 4px solid navy;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: navy;
    margin-top: 150px;
    cursor: pointer;
    transition: all 1s;
}

.kmo:hover{
    border: none;
    background-color: navy;
    color: white;
    transition: all 1s;
}


.conDescr{
    font-size: 1rem;
    color: navy;
}

section{
    width: 100%;
    height: 700px;
    background-color: rgb(236, 235, 235);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os{
    font-size: 20px;
    color: blue;
    font-weight: 500;
    text-align: center;
}

.heading{
    text-align: center;
}

.card-holders{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin-top: 50px;
}

.card{
    width: 20%;
    height: 430px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
}

.card:hover > .card-top > .icon{
    background-color: blue;
    color: white;

}

.card:hover{
    border: 1px solid blue;
}

.card-top{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 2px;
    align-items: center;
    margin-bottom: 30px;
}

.icon{
    background-color: rgb(233, 233, 233);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 10px;
    color: black;
    font-size: 23px;
}

.card-title{
    margin-bottom: 30px;
}

.card button{
    background-color: transparent;
    border: none;
    color: blue;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    margin-top: 30px;
}

.card button:hover{
    background-color: blue;
    color: white;
    transition: all 1s;
}

.section-footer{
    text-align: center;
    color: navy;
    margin-top: 20px;
    cursor: pointer;
    transition: all 1s;
}

.section-footer:hover{
    color: rgb(45, 153, 112)
}


.contact{
    width: 100%;
    height: 700px;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: navy;
    color: white;
    flex-direction: column;
    gap: 10px;
}


form{
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.input{
    width: 100%;
    height: 50px;
    padding: 16px;
    border-radius: 10px;
    background-color: white;
    border: none;
    display: block;
    margin: 10px auto;
    outline: none;
    font-size: 16px;
}

select{
     width: 100%;
    height: 50px;
    padding-right: 20px;
    padding-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    border-radius: 10px;
    background-color: white;
    border: none;
    display: block;
    margin: 10px auto;
    outline: none;
    
    font-size: 16px;
}

textarea{
    width: 100%;
    height: 200px;
    padding: 1em;
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.btnC{
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    margin: 20px auto;
}

.btn:hover{
    background-color: blue;
    border: none;
    color: white;
    transition: all 1s;
    transform: translate(90deg);
}


.team{
    width: 100%;
    height: auto;
    background-color: rgb(236, 235, 235);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 20px;
}


.image-slide{
    width: 45%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-side{
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.team-title{
    color: blue;
    font-size: 20px;
}

.slidee-image{
    width: 80%;
    height: auto;
    border-radius: 30px;
    display: block;
    margin: 0 auto
}

.card-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
}

.name{
    color: navy;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    font-weight: 800;
}

footer{
    width: 100%;
    height: auto;
    background-color:white;
    display: block;
    padding-top: 40px;
    padding-bottom: 20px;
}

 .flex-o{
    width: 100%;
    height: auto;
    background-color:white;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 20px;
}

.company{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
}

.jclicks-logo{
    width: 100px;
    height: auto;
}

.services{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
}

.services p{
    cursor: pointer;
}

.services p:hover{
    color: blue;
}



.legal{
    width: 30%;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
}

.legal p{
    cursor: pointer;
}

.legal p:hover{
    color: blue;
}

a{
    text-decoration: none;
}

.img-conT{
    width: 48%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.text-conT{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

/*started here*/ 

 main{
   width: 100%;
    height: 700px;
    background-color: rgb(162, 240, 201);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
 }

 .rs{
    font-size: 20px;
    color: rgb(8, 92, 50);
    font-weight: 500;
    text-align: center;
}


 .image-card-flex{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
 }

 .image-card{
    width: 350px;
    height: 400px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2px;
 }

   
 .cardin-image{
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
 }

 .card-heading{
    text-align: center;
    padding: 5px;
    color: rgb(27, 194, 124);
 }

 .card-sub{
    color: rgb(150, 142, 142);
    text-align: center;
    padding: 5px;
 }

 .image-card:hover{
    border: 2px solid white;
    transition: all 1s;
 }

 .image-card > .cardin-image:hover{
    border: 2px solid navy;
    transition: all 1s;
 }

 .btn-group{
    width: 350px;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
 }

 .btn{
    width: 130px;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: navy;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 1s;
    margin-top: -4px;
 }

 .btn:hover{
    background-color: white;
    color: navy;
    transition: all 1s;
     border: 1px solid rgb(238, 236, 236);
 }


  .btns{
    width: 130px;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid rgb(238, 236, 236);
    color: navy;
    cursor: pointer;
    transition: all 1s;
    margin-top: -4px;
 }

 .btns:hover{
    background-color: blue;
    color: white;
    transition: all 1s;
 }

 .services-hero {
    width: 100%;
    height: 400px;
    margin-top: 70px; /* Accounts for fixed nav */
    background: linear-gradient(135deg, navy 0%, #043fff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background-color: rgb(245, 247, 250);
    height: auto;
    width: 100%;
    border: 4px solid rgb(236, 236, 236);
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glassmorphism touch */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 128, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 63, 255, 0.15);
    border-color: rgba(4, 63, 255, 0.2);
}

.icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(4, 63, 255, 0.1) 0%, rgba(4, 63, 255, 0.05) 100%);
    color: blue;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/*new start*/

.right-photo{
    width: 100%;
    height: auto;
    border-radius: 30px;
}


/* --- Gallery Hero Section --- */
.gallery-hero {
    width: 100%;
    height: 350px;
    margin-top: 70px; /* Account for the fixed top nav */
    background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(4, 63, 255, 0.8)), url('images/bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.gallery-hero .hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
}

/* --- Gallery Grid Layout --- */
.gallery-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
    height: auto; /* Overrides the fixed 700px height of standard sections */
}

.gallery-grid {
    display: grid;
    /* This creates a highly responsive grid automatically */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Gallery Item & Hover Effects --- */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.75); /* Navy tint */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: #27c27c; /* Your green accent color */
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; /* Slight delay for the icon */
}

/* Hover Triggers */
.gallery-item:hover .gallery-img {
    transform: scale(1.1); /* Zooms the image in slightly */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Shows the dark tint */
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0); /* Slides the text and icon up into place */
}

/*****************/

/* --- Events Hero Section --- */
.events-hero {
    width: 100%;
    height: 350px;
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.85), rgba(4, 63, 255, 0.85)), url('images/event.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.events-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.events-hero .hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
}

/* --- Events List Layout --- */
.events-section {
    background-color: #f4f7f6;
    padding: 80px 20px;
    height: auto;
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- The Event Card --- */
.event-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 128, 0.1);
    border-color: rgba(4, 63, 255, 0.3);
}

/* The Date Block (Left Side) */
.event-date {
    background: navy;
    color: white;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.event-date .e-month {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-date .e-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    color: #27c27c; /* Your green accent */
}

/* The Details Block (Middle) */
.event-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e-title {
    font-size: 1.5rem;
    color: navy;
    margin-bottom: 10px;
}

.e-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.e-meta i {
    color: blue;
}

.e-desc {
    color: #444;
    line-height: 1.6;
}

/* The Action Block (Right Side) */
.event-action {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed #eee;
}

.e-btn {
    background-color: transparent;
    color: blue;
    border: 2px solid blue;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0; /* Override global button margin */
    width: auto;
}

.e-btn:hover {
    background-color: blue;
    color: white;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background-color: navy;
    color: white;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    border-radius: 30px;
    border: none;
    padding: 0 20px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background-color: #27c27c;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0 30px;
    height: 50px;
    font-weight: bold;
    margin-top: 0;
    width: auto;
}

.newsletter-form button:hover {
    background-color: #1e9f63;
}

/* ==========================================================================
   AUTH / LOGIN PAGE STYLES - MODERN REDESIGN
   ========================================================================== 
*/

.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.auth-page-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 0;
}

.auth-container {
    width: 450px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.auth-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 25px;
    animation: slideDown 0.6s ease-out;
}

.auth-card h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Form Layout */
.auth-form {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f7fafc;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-weight: 500;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: #cbd5e0;
}

.input-group input:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Checkbox and Forgot Password Row */
.auth-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.forgot-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Submit Button Override */
.auth-btn {
    width: 100% !important;
    height: 50px !important;
    font-size: 1rem !important;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    margin-top: 10px;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.auth-btn:active {
    transform: translateY(-2px);
}

/* Bootstrap-style Alert Messages */
.login-alert { display: none; }
.register-alert { display: none; }
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-left: 4px solid #dc3545; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-left: 4px solid #28a745; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; border-left: 4px solid #ffc107; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; border-left: 4px solid #17a2b8; }

/* Footer / Signup Link */
.auth-footer {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #4a5568;
}

.auth-footer a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.2s;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* * REGISTRATION PAGE STYLES 
 * Adds Grid layout and specific form elements for Signup
 */

.auth-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.auth-page-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 0;
}

.register-container {
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.register-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}

.register-card h2 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* The Grid System */
.register-form .register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.input-group input, 
.input-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f7fafc;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Service Dropdown styling */
.input-group select {
    cursor: pointer;
    appearance: none; /* Removes default OS arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.auth-controls {
    grid-column: span 2; /* Spans across both columns */
    display: flex;
    justify-content: flex-start;
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a5568;
    cursor: pointer;
    font-weight: 500;
}

.auth-btn {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 10px auto;
    height: 50px;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 12px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.auth-btn:active {
    transform: translateY(-2px);
}

.auth-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.auth-footer a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.partner{
    width: 100%;
    height: 300px;
    background-color: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 10px;
    margin: 10px auto;
}

.partners{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

.partner-logo{
    width: 200px;
    height: auto;
    padding: 10px;
}

.role{
   font-size: 13px;
   color: grey;
   text-align: center;
}

.chatbot{
    position: fixed;
    bottom: 110px;
    right: 70px;
    width: 70px;
    height: 70px;
    border-radius: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    cursor: pointer;
}

.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 70px;
    width: 70px;
    height: 70px;
    border-radius: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    background-color: white;
    cursor: pointer;
}

.social{
    width: 100%;
    height: 150px;
    background-color: rgb(221, 221, 221);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.medias{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.icons{
    width: 50px;
    height: auto;
    cursor: pointer;
}

/*******************
 _____Chat room______
 ********************/
.chat{
     width: 350px;
     height: 400px;
     background-color: white;
     border-radius: 10px;
     position: fixed;
     bottom: 100px;
     right: 148px;
     display: none;
     flex-direction: column;
     z-index: 5000;
  }

 .chatTop{
    width: 100%;
    height: 85px;
    border-bottom: 1px solid rgb(241, 237, 237);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .chatTitle{
    font-weight: 800;
 }

 .status{
    font-size: 12px;
    color: rgb(204, 203, 203);
 }

 .room{
    width: 100%;
    height: 100%;
    overflow-y:scroll;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
 }

 .chatbotMsg{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
 }

 .chatbotPic{
    width: 30px;
    height: 30px;
    border-radius: 60px;
 }

 .chatbotText{
    background-color: rgb(236, 235, 235);
    width: 200px;
    height: auto;
    padding: 10px;
    display: block;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
 }




 .userMsg{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
 }

 .userText{
    background-color: rgb(236, 235, 235);
    width: 200px;
    height: auto;
    padding: 10px;
    display: block;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
 }

  .msgField{
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(228, 226, 226);
 }

 .textMsg{
    width: 280px;
    height: 100%;
    padding: 10px;
    border: none;
    outline: none;
 }

 .sendMsg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 80px;
    border: none;
    background-color: blue;
    color: white;
    cursor: pointer;
 }

 
.close{
     width: 30px;
     height: 30px;
     border-radius: 60px;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     background-color: red;
     color: white;
  }


.register-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 28px;
}

.modal-subtitle {
    color: #666;
    margin: 0 0 30px 0;
}

.modal-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modal-btn i {
    font-size: 20px;
}

.google-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.email-btn {
    background: navy;
    color: white;
}

.email-btn:hover {
    background: #000080;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3);
}

.modal-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.modal-divider span {
    padding: 0 15px;
}

.modal-login {
    color: #666;
    font-size: 14px;
    margin: 20px 0 5px 0;
}

.modal-login-link {
    color: navy;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.modal-login-link:hover {
    text-decoration: underline;
}

.register-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.register-modal.show-modal {
    display: flex !important;
}


iframe{
    width: 90%;
    margin: 20px auto;
    height: 500px;
    border-radius: 30px;
    display: block;

}

.service-card-modern button{
    background-color: transparent;
    border: none;
    color: blue;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    margin-top: 30px;
}

.service-card-modern button:hover{
    background-color: blue;
    color: white;
    transition: all 1s;
}

/*
CAREER STYLINGS
*/
/* * @author Myxo victor
* @description Styling for Careers Page - J-click Smart Tech 
*/

:root {
    --primary-navy: #000080;
    --secondary-blue: #007bff;
    --text-dark: #333;
    --text-muted: #666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.careers-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed nav */
}

/* --- Hero Section --- */
.careers-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.2));
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-text-box {
    max-width: 650px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffcc00; /* Contrast accent color */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #f0f0f0;
}

/* --- Section Shared Styles --- */
.section-title, .section-title-navy {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title-navy {
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-subtitle.center {
    text-align: center;
}

/* --- Why Work With Us --- */
.careers-why-section {
    padding: 80px 8%;
    background: var(--white);
    height: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.why-item:hover {
    background: #eef2ff;
    transform: translateX(10px);
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
}

/* --- Culture Section --- */
.careers-culture-section {
    padding: 80px 8%;
    background: var(--bg-light);
}

.culture-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.culture-text {
    flex: 1;
    min-width: 300px;
}

.culture-title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.culture-visuals {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 15px;
}

.culture-img-placeholder {
    height: 300px;
    flex: 1;
    background: #ccc;
    border-radius: 15px;
    width: 300px;
}

.culture-img-placeholder.dark {
    background: var(--primary-navy);
    margin-top: 40px;
}

/* --- Job Cards --- */
.careers-roles-section {
    padding: 80px 8%;
    height: auto;
}

.roles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.careers-job-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.careers-job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-navy);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job-icon {
    font-size: 1.8rem;
    color: var(--primary-navy);
    background: #eef2ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    display: flex;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.job-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 15px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.job-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.job-list-item {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.job-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-navy);
    font-weight: bold;
}

.job-apply-btn {
    margin-top: auto;
    padding: 12px;
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.job-apply-btn:hover {
    background: var(--secondary-blue);
}

/* --- Internship Section --- */
.careers-intern-section {
    padding: 60px 8%;
    text-align: center;
    background: #eef2ff;
}

.intern-btn {
    margin-top: 20px;
    min-width: 250px;
    margin: 20px auto;
    border: 1px solid navy;
}

/* --- Process Steps --- */
.careers-process-section {
    padding: 80px 8%;
    height: auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px auto;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-navy);
}

.step-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Footer CTA --- */
.careers-footer-cta {
    padding: 80px 8%;
    background: var(--primary-navy);
    color: var(--white);
    text-align: center;
    height: auto;
}

.footer-cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer-cta-desc {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cv-btn {
    padding: 15px 40px;
    background: #ffcc00;
    color: var(--primary-navy);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 200px;
    margin: 5px auto;
}

.cv-btn:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* --- Nav Active State --- */
.nav-active {
    color: var(--primary-navy) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-navy);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */

    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-container {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-img-placeholder.dark {
        margin-top: 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20%;
    }
    
    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .step-number {
        margin: 0;
    }

    .culture-img{
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .culture-teXt{
        width: 100%;
        height: auto;
        padding: 16px;
        font-size: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }



    /* Resources Page Custom Styles */

.resources-page .nav-link {
    cursor: pointer;
}

/* Hero Section */
.resources-hero {
     width: 100%;
    height: 350px;
    margin-top: 70px; /* Account for the fixed top nav */
    background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(4, 63, 255, 0.8)), url('images/culture.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.resources-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.resources-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.resources-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Category Grid */
.category-section {
    padding: 60px 10%;
    background: #f9f9f9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: navy;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 10%;
    text-align: center;
    background: white;
}

.coming-soon-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 20px;
}

.pulse-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.coming-soon-container h2 {
    color: navy;
    margin-bottom: 10px;
}

.coming-soon-container p {
    color: #777;
}

.subscribe-form {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
}

.subscribe-form .btns {
    margin: 0;
    padding: 12px 25px;
}

/* Footer */
.resources-footer {
    background: navy;
    color: white;
    padding: 40px 10%;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.resources-footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/*
POSTIONS PAGE 
*/
/* Positions Page Styles */
.positions-page .nav-link {
    cursor: pointer;
    margin: 0 10px;
}

.positions-hero {
    background: linear-gradient(rgba(0,0,128,0.85), rgba(0,0,128,0.85)), url('../images/careers-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 5% 80px;
    text-align: center;
    color: white;
}

.positions-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Layout Grid */
.positions-container {
    padding: 60px;
    background: #f4f7f6;

}

.positions-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Job list is wider than the form */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Job Cards */
.jobs-column h2 {
    color: navy;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.job-card {
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}

.job-card:hover {
    transform: translateY(-3px);
    border-color: navy;
}

.job-card h3 {
    color: navy;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.job-meta span {
    color: #666;
    font-size: 0.9rem;
}

.job-meta i {
    color: #ffd700; /* Gold icon color */
}

/* Application Form */
.apply-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px; /* Sticks the form while scrolling jobs */
}

.apply-card h2 {
    color: navy;
    margin-bottom: 5px;
}

.form-subtitle {
    color: #777;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: navy;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: navy;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #000066;
}
/* * Service Detail Page Styles 
 * Designed for VenJS 5.5 Architecture
 * @author Myxo victor
 */

/* Main Container */
.service-detail-page {
    padding-top: 0px; /* Offset for fixed header */
    background-color: #f9f9f9;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.service-hero {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,128,0.4), rgba(0,0,0,0.8));
}

.hero-content {
    color: white;
    padding: 20px;
    z-index: 2;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffd700; /* Gold accent */
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    gap: 10px;
    padding: 20px 10%;
    background: white;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.breadcrumb p {
    margin: 0;
    transition: color 0.3s;
}

.breadcrumb p:hover {
    color: navy;
}

.breadcrumb .current {
    color: navy;
    font-weight: 600;
}

/* Main Content Layout */
.service-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section-title {
    color: navy;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    border: none;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
}

.service-overview-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature-item p {
    margin: 0;
    color: #555;
    font-weight: 500;
}

/* Curriculum List */
.curriculum-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.curriculum-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-left: 4px solid navy;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.curriculum-item i {
    color: navy;
}

.curriculum-item p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Benefits Box */
.benefits-box {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-right: 5px solid #ffd700;
}

/* Details Grid Cards */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.detail-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 200px;
}

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

.detail-card i {
    font-size: 2.5rem;
    color: navy;
    margin-bottom: 15px;
}

.detail-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.detail-card p {
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.service-cta {
    background: navy;
    color: white;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    height: auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    height: 50px;
    width: 250px;
}

.cta-primary {
    background: #ffd700;
    color: navy;
    display: flex;
    align-items: center;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-primary:hover {
    background: white;
    transform: scale(1.05);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Back Navigation */
.back-navigation {
    text-align: center;
    padding: 40px 0 80px;
}

.back-to-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid #eee;
    padding: 12px 25px;
    border-radius: 30px;
    color: navy;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-services:hover {
    background: navy;
    color: white;
    border-color: navy;
}

/* Error State Styles */
.service-detail-error {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-container h1 {
    font-size: 3rem;
    color: navy;
    margin-bottom: 20px;
}

.back-button {
    margin-top: 20px;
    padding: 12px 30px;
    background: navy;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


}

/*
******************************************
***********************************************
****************************************************
********************************
*********************
************
******
**************************************************
**********************************************
******************************************
_______________________________________________
_______________________________________________
________________________________________________
________________________________________________

*/






















/* VenJS 5.0 starter stylesheet */
@media screen and (max-width: 899px){
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.top{
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
     position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;;
}

.topLogo{
    width: 100px;
    height: auto;
}

nav{
    width: 300px;
    height: 100vh;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
    margin-left: -400px;
    transition: margin-left 0.3s ease;
    background-color: white;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1000;
    padding-top: 40px;
    padding-left: 20px;
    position: fixed;
    top: 0;
    left: 0
}

nav p{
    color: black;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
}

nav p:hover{
    color: blue;
}

nav p.active {
    color: navy;
    font-weight: 600;
}


/* * Updated .bg-img and container logic 
* to prevent long images from breaking the layout
* and added overlay content styling
*/

.img-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    position: relative; /* Required for absolute positioning of children */
    margin-top: 70px;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* The Overlay Container */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(4, 63, 255, 0.356); /* Dark tint to make text readable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.content-overlay h1 {
    margin-bottom: 20px;
    font-weight: 700;
}

.content-overlay p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-overlay .cta-button {
    margin-top: 30px;
    height: 50px;
    width: 200px;
    font-size: 1.1rem;
    background-color: #ffcc00;
    color: navy;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.content-overlay .cta-button:hover {
    background-color: #1d4ed8;
    /* Combine both actions into one transform property */
    transform: scale(2.05) rotate(90deg); 
    transition: all 1s;
}

.content-overlay .cta-button:active {
    transform: scale(1.05);
}

.content-overlay .cta-button:hover{
    transform: scale(1.05);
}


.flex-box{
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 30px;
  padding: 10px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgb(228, 228, 228);
}

.left-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
}

.right-content{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.abt{
    color: blue;
    font-weight:400;
    font-size: 22px;
}

.conDesc{
    font-size: 40px;
    color: navy;
}

.kmo{
    width: 150px;
    height: 50px;
    padding: 10px;
    background-color: transparent;
    border: 4px solid navy;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: navy;
    margin-top: 50px;
    cursor: pointer;
    transition: all 1s;
}

.kmo:hover{
    border: none;
    background-color: navy;
    color: white;
    transition: all 1s;
}


.conDescr{
    font-size: 1rem;
    color: navy;
}

section{
    width: 100%;
    height: auto;
    background-color: rgb(236, 235, 235);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os{
    font-size: 20px;
    color: blue;
    font-weight: 500;
    text-align: center;
}

.heading{
    text-align: center;
}

.card-holders{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    gap: 20px;
}

.card{
    width: 90%;
    height: 430px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
}

.card:hover > .card-top > .icon{
    background-color: blue;
    color: white;

}

.card:hover{
    border: 1px solid blue;
}

.card-top{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 2px;
    align-items: center;
    margin-bottom: 30px;
}

.icon{
    background-color: rgb(233, 233, 233);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 5px;
    border-radius: 10px;
    color: black;
    font-size: 23px;
}

.card-title{
    margin-bottom: 30px;
}

.button{
    background-color: transparent;
    border: none;
    color: blue;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    margin-top: 30px;
}

.button:hover{
    background-color: blue;
    color: white;
    transition: all 1s;
}

.section-footer{
    text-align: center;
    color: navy;
    margin-top: 20px;
    cursor: pointer;
    transition: all 1s;
}

.section-footer:hover{
    color: rgb(45, 153, 112)
}


.contact{
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: navy;
    color: white;
    flex-direction: column;
    gap: 10px;
}

.contact h1{
    text-align: center;
}

.contact p{
    text-align: center;
    font-size: 1rem;
}


form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.input{
    width: 100%;
    height: 50px;
    padding: 16px;
    border-radius: 10px;
    background-color: white;
    border: none;
    display: block;
    margin: 10px auto;
    outline: none;
    font-size: 16px;
}

select{
     width: 100%;
    height: 50px;
    padding-right: 20px;
    padding-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    border-radius: 10px;
    background-color: white;
    border: none;
    display: block;
    margin: 10px auto;
    outline: none;
    
    font-size: 16px;
}

textarea{
    width: 100%;
    height: 200px;
    padding: 1em;
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.btn{
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn:hover{
    background-color: blue;
    border: none;
    color: white;
    transition: all 1s;
    transform: translate(90deg);
}


.team{
    width: 100%;
    height: auto;
    background-color: rgb(236, 235, 235);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 20px;
    flex-direction: column;
}


.image-slide{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-side{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.team-title{
    color: blue;
    font-size: 20px;
}

.slidee-image{
    width: 80%;
    height: auto;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
}

.card-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
}

.name{
    color: navy;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    font-weight: 800;
}

footer{
    width: 100%;
    height: 340px;
    background-color:white;
    display: block;
}

 .flex-o{
    width: 100%;
    height: auto;
    background-color:white;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    flex-direction: column;
}

.company{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
}

.jclicks-logo{
    width: 100px;
    height: auto;
}

.services{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
    margin-bottom: 20px;
}

.services p{
    cursor: pointer;
}

.services p:hover{
    color: blue;
}



.legal{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    padding-left: 20px;
}

.legal p{
    cursor: pointer;
}

.legal p:hover{
    color: blue;
}

a{
    text-decoration: none;
}

.hamburger{
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    position: relative;
    z-index: 1001;
}


.img-conT{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
}

.text-conT{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px;
}

.stat{
     display: flex; 
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 20px; 
            padding: 50px; 
            background: navy; 
            color: white;
            text-align: center;
}



/*started here*/ 

 main{
   width: 100%;
    height: auto;
    background-color: rgb(162, 240, 201);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
 }

 .rs{
    font-size: 20px;
    color: rgb(8, 92, 50);
    font-weight: 500;
    text-align: center;
}


 .image-card-flex{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
 }

 .image-card{
    width: 100%;
    height: 400px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2px;
 }

   
 .cardin-image{
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
 }

 .card-heading{
    text-align: center;
    padding: 5px;
    color: rgb(27, 194, 124);
 }

 .card-sub{
    color: rgb(150, 142, 142);
    text-align: center;
    padding: 5px;
 }

 .image-card:hover{
    border: 2px solid white;
    transition: all 1s;
 }

 .image-card > .cardin-image:hover{
    border: 2px solid navy;
    transition: all 1s;
 }

 .btn-group{
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
 }

 .btn-group .btn{
    width: 90%;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: navy;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 1s;
    margin-top: -4px;
 }

 .btn-group .btn:hover{
    background-color: white;
    color: navy;
    transition: all 1s;
     border: 1px solid rgb(238, 236, 236);
 }


  .btn-group .btns{
    width: 90%;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid rgb(238, 236, 236);
    color: navy;
    cursor: pointer;
    transition: all 1s;
    margin-top: -4px;
 }

 .btn-group .btns:hover{
    background-color: blue;
    color: white;
    transition: all 1s;
 }


 .services-hero {
    width: 100%;
    height: 400px;
    margin-top: 70px; /* Accounts for fixed nav */
    background: linear-gradient(135deg, navy 0%, #043fff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background-color: rgb(245, 247, 250);
    height: auto;
    width: 100%;
    border: 4px solid rgb(236, 236, 236);
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Glassmorphism touch */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 128, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 63, 255, 0.15);
    border-color: rgba(4, 63, 255, 0.2);
}

.icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(4, 63, 255, 0.1) 0%, rgba(4, 63, 255, 0.05) 100%);
    color: blue;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/*new start*/


.right-photo{
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    margin: 10px auto;
}


/* --- Gallery Hero Section --- */
.gallery-hero {
    width: 100%;
    height: 350px;
    margin-top: 70px; /* Account for the fixed top nav */
    background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(4, 63, 255, 0.8)), url('images/bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-hero .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.gallery-hero .hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
}

/* --- Gallery Grid Layout --- */
.gallery-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
    height: auto; /* Overrides the fixed 700px height of standard sections */
}

.gallery-grid {
    display: grid;
    /* This creates a highly responsive grid automatically */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Gallery Item & Hover Effects --- */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.75); /* Navy tint */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: #27c27c; /* Your green accent color */
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s; /* Slight delay for the icon */
}

/* Hover Triggers */
.gallery-item:hover .gallery-img {
    transform: scale(1.1); /* Zooms the image in slightly */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Shows the dark tint */
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay i {
    transform: translateY(0); /* Slides the text and icon up into place */
}


    .event-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    flex-direction: column;
    margin: 20px auto;
    }

    /* MEvents hero: make background image visible on mobile */
    .events-hero {
        height: 280px;
        background:
            linear-gradient(135deg, rgba(0, 0, 128, 0.65), rgba(4, 63, 255, 0.65)),
            url('images/event.jpg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 20px 16px;
    }

    .events-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 70px;
        color: white;
        text-align: center;
    }

    .events-hero .hero-sub {
        font-size: 1rem;
        max-width: 520px;
        margin-top: 10px;
        color: white;
        text-align: center
    }

    .events-section {
        padding: 50px 16px;
    }

    .event-details {
        padding: 20px 16px;
    }
    
   /* The Date Block (Left Side) */
.event-date {
    background: navy;
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.event-date .e-month {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-date .e-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    color: #27c27c; /* Your green accent */
}

/* The Details Block (Middle) */
.event-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e-title {
    font-size: 1.5rem;
    color: navy;
    margin-bottom: 10px;
}

.e-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.e-meta i {
    color: blue;
}

.e-desc {
    color: #444;
    line-height: 1.6;
}

/* The Action Block (Right Side) */
.event-action {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed #eee;
}

.e-btn {
    background-color: transparent;
    color: blue;
    border: 2px solid blue;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0; /* Override global button margin */
    width: auto;
}

.e-btn:hover {
    background-color: blue;
    color: white;
}

/* --- Newsletter Section --- */
.newsletter-section {
    background-color: navy;
    color: white;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    border-radius: 30px;
    border: none;
    padding: 0 20px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background-color: #27c27c;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0 30px;
    height: 50px;
    font-weight: bold;
    margin-top: 0;
    width: auto;
}

.newsletter-form button:hover {
    background-color: #1e9f63;
}



/* ==========================================================================
   AUTH / LOGIN PAGE STYLES 
   ========================================================================== 
*/

.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.auth-page-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    z-index: 0;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.auth-logo {
    width: 70px;
    height: auto;
    margin: 0 auto 20px;
    animation: slideDown 0.6s ease-out;
}

.auth-card h2 {
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Form Layout */
.auth-form {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 16px;
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f7fafc;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    font-weight: 500;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: #cbd5e0;
}

.input-group input:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Checkbox and Forgot Password Row */
.auth-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 8px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #4a5568;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #667eea;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.forgot-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Submit Button Override */
.auth-btn {
    width: 100% !important;
    height: 48px !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    margin-top: 8px;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.auth-btn:active {
    transform: translateY(-2px);
}

/* Footer / Signup Link */
.auth-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #4a5568;
}

.auth-footer a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
    transition: all 0.2s;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}



/* * REGISTRATION PAGE STYLES - MODERN REDESIGN
 * Adds Grid layout and specific form elements for Signup
 */

.auth-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.auth-page-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    z-index: 0;
}

.register-container {
    width: 100%;
    max-width: 420px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.register-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}

.register-card h2 {
    color: #2d3748;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* The Grid System */
.register-form .register-grid {
    display: flex;
    flex-direction: column; /* Two equal columns */
    gap: 16px;
    text-align: left;
    margin-top: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.input-group input, 
.input-group select {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f7fafc;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Service Dropdown styling */
.input-group select {
    cursor: pointer;
    appearance: none; /* Removes default OS arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.auth-controls {
    display: flex;
    justify-content: flex-start;
    margin: 12px 0;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #4a5568;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #667eea;
}

.auth-btn {
    width: 100%;
    max-width: 300px;
    margin: 22px auto 8px auto;
    height: 48px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.auth-btn:active {
    transform: translateY(-2px);
}

.auth-footer {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 500;
}

.auth-footer a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    margin-left: 3px;
    transition: all 0.2s;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}




.partner{
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 10px;
    margin: 10px auto;
    justify-content: center;
}

.partners{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    flex-direction: column;
}

.partner-logo{
    width: 150px;
    height: auto;
    padding: 10px;
    margin: 20px auto;
}


.chatbot{
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    cursor: pointer;
}

.btnC{
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    margin: 20px auto;
}


.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    background-color: white;
    cursor: pointer;
}


.social{
    width: 100%;
    height: 150px;
    background-color: rgb(221, 221, 221);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.medias{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.icons{
    width: 40px;
    height: auto;
    cursor: pointer;
}



/*******************
 _____Chat room______
 ********************/
.chat{
     width: 100%;
     height: 95vh;
     background-color: white;
     border-radius: 10px;
     position: fixed;
     display: none;
     flex-direction: column;
     z-index: 5000;
     top: 0;
  }

 .chatTop{
    width: 100%;
    height: 85px;
    border-bottom: 1px solid rgb(241, 237, 237);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
 }

 .close{
    width: 30px;
    height: 30px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: red;
    color: white;
 }

 .chatTitle{
    font-weight: 800;
 }

 .status{
    font-size: 12px;
    color: rgb(204, 203, 203);
 }

 .room{
    width: 100%;
    height: 100%;
    overflow-y:scroll;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
 }

 .chatbotMsg{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
 }

 .chatbotPic{
    width: 30px;
    height: 30px;
    border-radius: 60px;
 }

 .chatbotText{
    background-color: rgb(236, 235, 235);
    width: 200px;
    height: auto;
    padding: 10px;
    display: block;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
 }




 .userMsg{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
 }

 .userText{
    background-color: rgb(236, 235, 235);
    width: 200px;
    height: auto;
    padding: 10px;
    display: block;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
 }

  .msgField{
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(228, 226, 226);
 }

 .textMsg{
    width: 280px;
    height: 100%;
    padding: 10px;
    border: none;
    outline: none;
 }

 .sendMsg{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 80px;
    border: none;
    background-color: blue;
    color: white;
   cursor: pointer;
  }


.register-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    margin: 0 0 10px 0;
    color: #1a1a1a;
    font-size: 28px;
}

.modal-subtitle {
    color: #666;
    margin: 0 0 30px 0;
}

.modal-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.modal-btn i {
    font-size: 20px;
}

.google-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.email-btn {
    background: navy;
    color: white;
}

.email-btn:hover {
    background: #000080;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3);
}

.modal-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.modal-divider span {
    padding: 0 15px;
}

.modal-login {
    color: #666;
    font-size: 14px;
    margin: 20px 0 5px 0;
}

.modal-login-link {
    color: navy;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.modal-login-link:hover {
    text-decoration: underline;
}

    .modal-content {
        padding: 30px 20px;
        width: 90%;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-btn {
        padding: 12px 15px;
        font-size: 15px;
    }



.role{
   font-size: 13px;
   color: grey;
   text-align: center;
}



iframe{
    width: 90%;
    margin: 20px auto;
    height: 300px;
    border-radius: 20px;
    display: block;

}

/* Bootstrap-style Alert Messages */
.login-alert { display: none; }
.register-alert { display: none; }
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-left: 4px solid #dc3545; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-left: 4px solid #28a745; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; border-left: 4px solid #ffc107; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; border-left: 4px solid #17a2b8; }




/*
CAREER STYLINGS
*/
/* * @author Myxo victor
* @description Styling for Careers Page - J-click Smart Tech 
*/

:root {
    --primary-navy: #000080;
    --secondary-blue: #007bff;
    --text-dark: #333;
    --text-muted: #666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.careers-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Space for fixed nav */
}

/* --- Hero Section --- */
.careers-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 128, 0.8), rgba(0, 0, 128, 0.2));
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-text-box {
    max-width: 650px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffcc00; /* Contrast accent color */
    margin-top: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #f0f0f0;
}

/* --- Section Shared Styles --- */
.section-title, .section-title-navy {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title-navy {
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-subtitle.center {
    text-align: center;
}

/* --- Why Work With Us --- */
.careers-why-section {
    padding: 80px 8%;
    background: var(--white);
    height: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.why-item:hover {
    background: #eef2ff;
    transform: translateX(10px);
}

.check-icon {
    color: #28a745;
    font-size: 1.2rem;
}

/* --- Culture Section --- */
.careers-culture-section {
    padding: 80px 8%;
    background: var(--bg-light);
    width: 100%;
}

.culture-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.culture-text {
    flex: 1;
    min-width: 300px;
}

.culture-title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.culture-visuals {
    flex: 1;
    width: 100%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
}

.culture-img-placeholder {
    height: 300px;
    flex: 1;
    background: #ccc;
    border-radius: 15px;
    width: 300px;
    margin: 0 auto;
}

.culture-img-placeholder.dark {
    background: var(--primary-navy);
    margin-top: 40px;
}

/* --- Job Cards --- */
.careers-roles-section {
    padding: 80px 8%;
    height: auto;
}

.roles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.careers-job-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.careers-job-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-navy);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.job-icon {
    font-size: 1.8rem;
    color: var(--primary-navy);
    background: #eef2ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    display: flex;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.job-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 15px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.job-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.job-list-item {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.job-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-navy);
    font-weight: bold;
}

.job-apply-btn {
    margin-top: auto;
    padding: 12px;
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.job-apply-btn:hover {
    background: var(--secondary-blue);
}

/* --- Internship Section --- */
.careers-intern-section {
    padding: 60px 8%;
    text-align: center;
    background: #eef2ff;
}

.intern-btn {
    margin-top: 20px;
    width: 200px;
    margin: 20px auto;
    border: 1px solid navy;
    height: 40;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    justify-content: center;
    background-color: transparent;
}

/* --- Process Steps --- */
.careers-process-section {
    padding: 80px 8%;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px auto;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-navy);
}

.step-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Footer CTA --- */
.careers-footer-cta {
    padding: 80px 8%;
    background: var(--primary-navy);
    color: var(--white);
    text-align: center;
    height: auto;
}

.footer-cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer-cta-desc {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cv-btn {
    padding: 15px 40px;
    background: #ffcc00;
    color: var(--primary-navy);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 200px;
    margin: 5px auto;
}

.cv-btn:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* --- Nav Active State --- */
.nav-active {
    color: var(--primary-navy) !important;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-navy);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */

    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-container {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-img-placeholder.dark {
        margin-top: 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20%;
    }
    
    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .step-number {
        margin: 0;
    }

    .culture-img{
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .culture-teXt{
        width: 100%;
        height: auto;
        padding: 16px;
        font-size: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }


    /* Resources Page Custom Styles */

.resources-page .nav-link {
    cursor: pointer;
}

/* Hero Section */
.resources-hero {
     width: 100%;
    height: 350px;
    margin-top: 70px; /* Account for the fixed top nav */
    background: linear-gradient(rgba(0, 0, 128, 0.8), rgba(4, 63, 255, 0.8)), url('images/culture.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.resources-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.resources-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.resources-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Category Grid */
.category-section {
    padding: 60px 10%;
    background: #f9f9f9;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: navy;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 10%;
    text-align: center;
    background: white;
}

.coming-soon-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 20px;
}

.pulse-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.coming-soon-container h2 {
    color: navy;
    margin-bottom: 10px;
}

.coming-soon-container p {
    color: #777;
}

.subscribe-form {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe-form input {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
}

.subscribe-form .btns {
    margin: 0;
    padding: 12px 25px;
}

/* Footer */
.resources-footer {
    background: navy;
    color: white;
    padding: 40px 10%;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.resources-footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/* * Service Detail Page Styles 
 * Designed for VenJS 5.5 Architecture
 * @author Myxo victor
 */

/* Main Container */
.service-detail-page {
    padding-top: 0px; /* Offset for fixed header */
    background-color: #f9f9f9;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.service-hero {
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(0,0,128,0.4), rgba(0,0,0,0.8));
}

.hero-content {
    color: white;
    padding: 20px;
    z-index: 2;
    height: auto;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffd700; /* Gold accent */
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    gap: 10px;
    padding: 20px 10%;
    background: white;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.breadcrumb p {
    margin: 0;
    transition: color 0.3s;
}

.breadcrumb p:hover {
    color: navy;
}

.breadcrumb .current {
    color: navy;
    font-weight: 600;
}

/* Main Content Layout */
.service-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.service-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section-title {
    color: navy;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    border: none;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
}

.service-overview-text {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature-item p {
    margin: 0;
    color: #555;
    font-weight: 500;
}

/* Curriculum List */
.curriculum-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.curriculum-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-left: 4px solid navy;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.curriculum-item i {
    color: navy;
}

.curriculum-item p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Benefits Box */
.benefits-box {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-right: 5px solid #ffd700;
}

/* Details Grid Cards */
.service-details-grid {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-direction: column;
    justify-content: center;
}

.detail-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 200px;
    width: 220px;
    margin: 10px auto;
}

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

.detail-card i {
    font-size: 2.5rem;
    color: navy;
    margin-bottom: 15px;
}

.detail-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.detail-card p {
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.service-cta {
    background: navy;
    color: white;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    height: auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    height: 50px;
    width: 250px;
}

.cta-primary {
    background: #ffd700;
    color: navy;
    display: flex;
    align-items: center;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-primary:hover {
    background: white;
    transform: scale(1.05);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Back Navigation */
.back-navigation {
    text-align: center;
    padding: 40px 0 80px;
}

.back-to-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid #eee;
    padding: 12px 25px;
    border-radius: 30px;
    color: navy;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-services:hover {
    background: navy;
    color: white;
    border-color: navy;
}

/* Error State Styles */
.service-detail-error {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-container h1 {
    font-size: 3rem;
    color: navy;
    margin-bottom: 20px;
}

.back-button {
    margin-top: 20px;
    padding: 12px 30px;
    background: navy;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}









}

