/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(120deg, #1e3c72, #2a5298);
    color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.logo img {
    height: 50px;
}

.navbar ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #4ca1af;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 20px;
    background: #4ca1af;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #2a5298;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Services Section */
.services .service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services .card {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    flex: 1 1 30%;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
}

/* News Page */
.news-page {
    padding: 60px 20px;
    text-align: center;
}

.news-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4ca1af;
}

.news-articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.news-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
}

.news-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4ca1af;
}

.news-item p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    background: #4ca1af;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #2a5298;
}

/* About Page */
.about-page {
    padding: 60px 20px;
    text-align: center;
}

.about-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4ca1af;
}

.about-page p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.about-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-item h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4ca1af;
}

.about-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

/* Services Page */
.services-page {
    padding: 60px 20px;
    text-align: center;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4ca1af;
}

.services-page p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Careers Page */
.careers-page {
    padding: 60px 20px;
    text-align: center;
}

.careers-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4ca1af;
}

.careers-page p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
}

.job-listings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.job-item {
    background: rgb(0, 0, 0,.6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.job-item:hover {
    transform: translateY(-10px);
}

.job-item h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.job-item ul {
    text-align: left;
    margin: 0;
    padding: 0 0 10px 20px;
}

.job-item ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.apply-button {
    background-color: #4ca1af;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #2575fc;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-section {
    margin-top: 2rem;
}

.contact-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-item{
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.contact-item a{
    color: #ddd;
}

.contact-item p{
    text-align: start;
}

.elementor-icon-wrapper {
    text-align: center
}

.elementor-1586 .elementor-element.elementor-element-2a2f724.elementor-view-default .elementor-icon {
    color: #222222;
    border-color: #222222
}

.elementor-1586 .elementor-element.elementor-element-2a2f724.elementor-view-default .elementor-icon svg {
    fill: #222222
}

.elementor-1586 .elementor-element.elementor-element-2a2f724 .elementor-icon {
    font-size: 20px
}

.elementor-1586 .elementor-element.elementor-element-2a2f724 .elementor-icon svg {
    height: 20px
}

.elementor-location-header:before,
.elementor-location-footer:before {
    content: "";
    display: table;
    clear: both
}

@media (max-width:1024px) {
    .elementor-widget-heading .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size)
    }

    .elementor-1586 .elementor-element.elementor-element-6b1ae604 {
        --padding-top: 0%;
        --padding-bottom: 0%;
        --padding-left: 5%;
        --padding-right: 5%
    }

    .elementor-1586 .elementor-element.elementor-element-7275019a .elementor-nav-menu .elementor-item {
        font-size: 14px
    }

    body:not(.rtl) .elementor-1586 .elementor-element.elementor-element-85d3125 {
        left: 90%
    }
}

@media (max-width:767px) {
    .elementor-1586 .elementor-element.elementor-element-9fb089a {
        --padding-top: 15px;
        --padding-bottom: 15px;
        --padding-left: 15px;
        --padding-right: 15px
    }

    .elementor-widget-heading .elementor-heading-title {
        font-size: var(--e-global-typography-primary-font-size)
    }

    .elementor-1586 .elementor-element.elementor-element-f52c04e .elementor-heading-title {
        font-size: 12px;
        line-height: 1.2em
    }

    .elementor-1586 .elementor-element.elementor-element-6b1ae604 {
        --min-height: 50px;
        --padding-top: 24px;
        --padding-bottom: 24px;
        --padding-left: 16px;
        --padding-right: 16px
    }

    .elementor-1586 .elementor-element.elementor-element-e257b75 {
        --width: 230px
    }

    .elementor-1586 .elementor-element.elementor-element-12bf9c3 {
        --width: 0px
    }

    .elementor-widget-nav-menu .elementor-nav-menu .elementor-item {
        font-size: var(--e-global-typography-primary-font-size)
    }

    .elementor-1586 .elementor-element.elementor-element-7275019a {
        --nav-menu-icon-size: 20px
    }

    body:not(.rtl) .elementor-1586 .elementor-element.elementor-element-85d3125 {
        left: 80%
    }

    .elementor-1586 .elementor-element.elementor-element-7bceefd {
        --width: 0px
    }
}

@media (min-width:768px) {
    .elementor-1586 .elementor-element.elementor-element-e257b75 {
        --width: 330px
    }

    .elementor-1586 .elementor-element.elementor-element-7bceefd {
        --width: 60px
    }
}

@media (max-width:1024px) and (min-width:768px) {
    .elementor-1586 .elementor-element.elementor-element-e257b75 {
        --width: 520px
    }
}