:root {
    --bs-blue: #20759C;
    --bs-black: #171717;
    --bs-whiht: #fff;
    --bs-Icone: #3ED5DD;
    --bs-btn-show: linear-gradient(to right, rgba(6, 34, 63, 1), rgba(29, 114, 153, 1));
    --bs-btn-hide: linear-gradient(to right, rgba(6, 34, 63, 0.3), rgba(29, 114, 153, 0.3));
    --bs-title: rgba(148, 219, 252, 1);
    --bs-card: linear-gradient(rgb(29 38 68), rgb(42 47 56), rgba(90, 90, 90, 0), rgba(23, 23, 23, 1));
    --bs-btn: linear-gradient(to right, rgba(10, 118, 123, 1), rgba(0, 167, 214, 1));
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bs-black);
    color: var(--bs-whiht);
    overflow-x: hidden;
}

/* Start Design Nav Page */
nav {
    padding: 20px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99999999;
}

nav .logos {
    display: flex;
    align-items: center;
    z-index: 9999;
}

nav .logos img {
    height: 70px;
    width: auto;
    margin-right: 10px;
    z-index: 9999;
}

nav .logos h1 {
    font-size: 2rem;
    background: var(--bs-whiht);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

nav ul {
    list-style: none;
    display: flex;
    z-index: 99999999;
    padding: 20px 20px;
    border-radius: 20px;
    background-color: rgba(28, 110, 149, 0.2);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

nav ul .active {
    background-color: var(--bs-blue);
    border-radius: 20px;
    padding: 2px;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--bs-whiht);
    font-size: 95%;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: var(--bs-whiht);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 9999999999999999999999999999;
}

.hamburger .line {
    width: 25px;
    height: 1px;
    background-color: var(--bs-whiht);
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;

}

.hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
}

.dropdown-menu {
    background: var(--bs-btn-hide);
    text-align: start;
}

.dropdown-menu li a {
    color: var(--bs-whiht) !important;

}

.dropdown-menu li {
    margin: 15px 0px;
    padding: 10px;
}

.dropdown-menu li:hover {
    background: var(--bs-btn-show);
}


/* Start Design Home Page */


.containerss {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90vh;
    padding: 0 5%;
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../../uploads/Bac.svg') no-repeat top right;
    background-size: cover;
    z-index: 1;
}

.content {
    z-index: 21;
    max-width: 90%;
    text-align: start;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: moveUpDown 2s ease-in-out infinite;
}

.logo img {
    height: 500px;
    max-width: 100%;
}

.headline {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
}

.description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: var(--bs-btn-show);
    color: var(--bs-whiht);
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.6s ease-in-out;
}

.cta-button:hover {
    color: var(--bs-title);
}

.shield-image {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    max-width: 75%;
    height: 100vh;
    z-index: -1;

}

.shield-image2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    max-width: 75%;
    height: 50vh;
    z-index: -2;
}





/* About Us */


.container2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bs-whiht);
    padding: 50px;
    gap: 20px;
    margin-top: 100px;

}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 30%;
}

.sidebar-btn {
    background: var(--bs-btn-hide);
    color: white;
    border: none;
    padding: 20px 30px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sidebar-btn:hover,
.sidebar-btn.active {
    background: var(--bs-btn-show);
    transform: scale(1.05);
    color: var(--bs-whiht);
    opacity: 1;
}


.content2 {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    text-align: start;

}

.section-title {
    color: var(--bs-title);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.headline {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sub-headline {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--bs-whiht);
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--bs-whiht);
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--bs-btn-hide);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--bs-btn-show);
    transform: translateY(-2px);
    color: var(--bs-whiht);
}








/* OUR SERVICE */

.service-section {
    padding: 50px 5%;
    color: var(--bs-whiht);
    text-align: center;
    margin-top: 180px;
}

.service-title {
    font-size: 1rem;
    color: var(--bs-title);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-headline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: var(--bs-whiht);
    margin-bottom: 40px;

}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(26.33% - 20px);
    background: var(--bs-card);
    border-radius: 10px;
    padding: 60px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bs-blue);
}

.service-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--bs-whiht);
}







/* Departments */



.feature-card {
    background: var(--bs-card);
    border: none;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: start;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card i {
    font-size: 2rem;
    color: var(--bs-Icone);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: start;
}

.sub-title {
    color: var(--bs-title);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: start;
}

.image-container img {
    border-radius: 20px;
    width: 100%;
}








/* Packages */



.pricing-card {
    background: var(--bs-card);
    border-radius: 8px;
    padding: 100px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

}

.pricing-card:hover {
    transform: scale(1.03);
    transition: transform 0.6s ease-in-out;
    background: var(--bs-btn-show);
    color: var(--bs-whiht) !important;
    border-radius: 8px;
    border: 1px solid var(--bs-title);

    .text-primary {
        color: var(--bs-whiht) !important;
    }
}

.pricing-card .btn {
    background: var(--bs-btn-show);
    color: #fff;
    font-weight: bold;
    border: none;
    width: 100%;
    padding: 20px 10px;
    border-radius: 20px;
}

.pricing-card:hover .btn {
    background: var(--bs-btn);
}

.text-primary {
    color: var(--bs-title) !important;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}




/* Testimonial */




.testimonial-card {
    background: rgba(170, 170, 170, 0.06);
    border-radius: 10px;
    padding: 20px;
    text-align: center;

}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-card h5 {
    margin-top: 10px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 0.9rem;
}

.testimonial-card .stars {
    color: #f39c12;
}

.swiper-pagination {
    color: var(--bs-title) !important;
}








/* Our Blog  */




.blog-section {
    text-align: center;
    padding: 50px 15px;
}

.blog-card {
    background: var(--bs-card);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease-in-out;
    color: var(--bs-whiht);
}

.blog-card:hover {
    transform: scale(1.05);
}

.blog-card img {
    width: 100%;
    height: auto;
}

.blog-card .card-body {
    padding: 20px;
}

.btn-primary {
    background: var(--bs-btn-hide);
    border: none;
    padding: 20px;
    border-radius: 20px;
}

.btn-primary:hover {
    background: var(--bs-btn-show);
    transition: transform 0.5s ease-in-out;
}

.view-all-btn {
    margin-top: 20px;
}







/* Contact Us  */



.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-form {
    background: var(--bs-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 900px;
}

.form-control {
    background: var(--bs-black);
    color: white;
    border: none;
    border-radius: 5px;
    text-align: start;
}

.form-control:focus {
    background: var(--bs-btn-hide);
    color: white;
    box-shadow: none;

}

.btn-send {
    background: var(--bs-btn-hide);
    color: var(--bs-whiht);
    border: none;
    border-radius: 20px;
    padding: 15px 20px;
    transition: all 0.6s ease-in-out;
}

.btn-send:hover {
    background: var(--bs-btn-show);
    color: var(--bs-whiht);
}



/* footer  */



.footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: start;
}

.footer h5 {
    color: var(--bs-title);
}

.footer a {
    color: var(--bs-whiht);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 10px;
    color: var(--bs-whiht);
    font-size: 16px;
    /* border: 1px solid var(--bs-whiht); */
    border-radius: 5px;
    padding: 4px 8px;
}

.subscribe-btn {
    background: var(--bs-btn-hide);
    border: none;
    color: var(--bs-whiht);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}

.subscribe-btn:hover {
    background: var(--bs-btn-show);
}








/*---------------- About Us page ----------------*/



.services-section {
    color: white;
    text-align: center;
    height: 30vh;
}

.containerss-services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50vh;
    padding: 0 5%;
    position: relative;
}

.services-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.services-section p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    height: 100%;
    background: url('wave-pattern.png') no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.shield-imagese {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    max-width: 75%;
    height: 60vh;
    z-index: 1;

}

.shield-image2se {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    max-width: 75%;
    height: 50vh;
    z-index: 2;
}

.service-container {
    text-align: center;
}

.pagination {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 5px;
    background-color: #222;
    padding: 10px;
    margin-top: 35px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    font-size: 14px;
}

.pagination .active {
    background: var(--bs-blue);
    border-color: var(--bs-blue);
    color: #fff;
}

.pagination a.disabled {
    background-color: #444;
    color: #888;
    pointer-events: none;
}

.pagination a:hover {
    background-color: #555;
}





/*---------------- user training page ----------------*/



.content {
    padding: 20px;
}

.main-image img {
    width: 100%;
    border-radius: 8px;
}

.related-posts .card {
    background-color: #222;
    color: #fff;
    border: none;
}

.related-posts .card:hover {
    background-color: #333;
}

.related-posts .btn {
    background-color: #007bff;
    border: none;
}

.related-posts .btn:hover {
    background-color: #0056b3;
}





/*---------------- Cyber security page ----------------*/




.box {

    padding: 20px 40px;
    border-radius: 12px;
    max-width: 800px;
    position: relative;
    text-align: start;

}

.box p {
    color: #d0d0d0;
    /* Light gray text */
    line-height: 1.8;

}

.icon {
    /* width: 40px; */
    /* height: 40px; */
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); */
}

.icon img {
    width: 100%;
    max-width: 400px;
    /* height: 50px; */
}

.wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;

    opacity: 0.7;
}






/*---------------- faq page ----------------*/


.faq-container {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: start;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bs-btn-show);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    /* Adjust for longer answers */
    padding: 15px 20px;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(90deg);
}





/*---------------- Careers page ----------------*/




.job-section {
    padding: 50px 0;
}

.job-card {
    background-color: var(--bs-black);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(1, 0, 0, 0.25);
    text-align: start;
}

option {
    color: var(--bs-black);
}
.form-control::placeholder {
    color: white;
    opacity: 1; /* Firefox */
  }