* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.top-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #0d1041;
    color: #ccc;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.header-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #ddd;
}

.header-item .icon {
    margin-right: 5px;
    color: #f1b400;
    /* Golden icon color */
}

@media (max-width: 768px) {
    .top-header {
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .header-item {
        margin: 5px 0;
    }
}

/* // header // */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0d1041;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 18px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.logo-text p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #f1b400;
}

.info-section {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: right;
}

.info-item {
    font-size: 14px;
    color: white;
}

.info-item span {
    font-size: 12px;
    display: block;
    color: white;
}

.toggle-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .info-section {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: left;
        margin-top: 10px;
    }

    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 30px;
    }
}

/* // navbar // */
.navbar {
    background: #111;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: -40px;
    right: 42px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

}

.nav-menu li {
    position: relative;
    border: none;
}

.nav-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu li a.active {
    color: #f1b400;
}

.nav-menu li+li {
    border-left: 1px dashed #444;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: #222;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #333;
}

.dropdown-menu li a:hover {
    background-color: #000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu li a {
    color: white;
    /* default color */
    text-decoration: none;
    padding: 10px;
}

.nav-menu li a.active {}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
    }

    .nav-menu li+li {
        border: none;
    }

    .nav-menu li a {
        padding: 15px 20px;
    }

    .nav-menu li .dropdown-menu {
        position: static;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        position: relative;
    }
}

/* hero section */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides {
    height: 100%;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width : 720px) {}

.slide.active {
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 90%;
    z-index: 9;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0 0 20px;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}

/* //requestQ */

.requestQ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d1041;
    padding: 50px;
    color: white;
}

.requestQ p {
    font-size: 25px;
}

.requestQ a button {
    padding: 20px 40px;
    border-radius: 10px;
    border: .1px solid #ddd;
    font-size: 15px;
    font-weight: 600;
    background-color: #f1b400;
    color: white;
    cursor: pointer;
}

/* // welcome two seas  */

.welcome-section {
    padding: 50px 20px;
    background-color: white;
}

.welcome-grid {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    gap: 40px;
}

.welcome-grid-images {
    width: 23%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-row {
    display: flex;
    gap: 20px;
}

.image-row img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.content {
    width: 50%;
}

.content h2 {
    margin: 0 0 20px;
    font-size: 24px;
    text-transform: uppercase;
    color: #f1b400;
}

.content h2 span {
    color: #0d1041;
}

.content p {
    margin: 0 0 20px;
    color: #333;
    line-height: 1.6;
}

.certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .welcome-grid {
        flex-direction: column;
    }

    .image-row {
        flex-direction: column;
    }

    .certifications {
        justify-content: center;
    }
}

/* project gallery */
.projects-gallery {
    display: flex;
    flex-wrap: wrap;
    background: #222;
    color: #fff;
    padding: 40px 20px;
}

.projects-text {
    flex: 1 1 300px;
    margin-right: 20px;
}

.projects-text h2 {
    font-size: 28px;
    margin: 0 0 15px;
}

.projects-text p {
    font-size: 16px;
    line-height: 1.6;
}

.projects-text a {
    display: inline-block;
    margin-top: 15px;
    color: #f1b400;
    text-decoration: none;
    font-weight: bold;
}

.projects-images {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-card {
    position: relative;
    flex: 1 1 calc(25% - 10px);
    overflow: hidden;
    width: 200px;
    height: 200px;
}

.project-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.project-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.overlay a {
    display: inline-block;
    padding: 8px 16px;
    background: #0d1041;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    border: .1px solid #ddd;
}

.cta-banner {
    background: #0d1041;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.cta-banner p {
    font-size: 20px;
    margin: 0 0 20px;
}

.quote-btn {
    display: inline-block;
    background: #f1b400;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    font-weight: bold;
    border: .1px solid #ddd;
}

@media (max-width: 992px) {
    .project-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .projects-gallery {
        flex-direction: column;
    }

    .projects-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .project-card {
        flex: 1 1 100%;
    }
}

/* <!-- our vision and mission  --> */
.vision-mission {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 100px;
}

.vision,
.mission {
    flex: 1 1 400px;
}

.vision h2,
.mission h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    color: #0d1041;
}

.vision h2 span,
.mission h2 span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #f1b400;
    margin-left: 10px;
    position: relative;
    top: -6px;
}

.vision p,
.mission p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
    }
}

/* our service section */
.our-services {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.Services {
    text-align: center;
    margin-top: 130px;
    color: #0d1041;
}

.service-card {
    background: #fff;
    flex: 1 1 300px;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.service-card:hover {
    box-shadow: 0 0 10px 0px #ccc;
    cursor: pointer;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    padding: 20px 0 10px;
}

.service-header img {
    width: 40px;
    height: 40px;
}

.service-header h3 {
    font-size: 18px;
    margin: 0;
    color: #0d1041;
}

.service-image {
    width: 100%;
    height: auto;

}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    background: #0d1041;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
}

.read-more:hover {
    border: .1px solid #0d1041;
    color: #0d1041;
    background: transparent;
}

@media (max-width: 768px) {
    .our-services {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }
}

/* our client sec */
.our-clients {
    max-width: 100%;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
    background-color: #0d1041;
    color: white;
    padding: 30px;
}

.our-clients h2 {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #f1b400;
}

.our-clients h2 span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #2980b9;
    margin-left: 10px;
    position: relative;
    top: -8px;
}

.swiper {
    padding: 20px 0;
    overflow: hidden;

}

.swiper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
}

/* Nav buttons styling */
.swiper-button-next,
.swiper-button-prev {
    color: #333 !important;
    font-size: 14px !important;
}

/* our team sec */

.team-section {
    padding: 50px 20px;
    background: #f7f7f7;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d1041;
    position: relative;
    display: inline-block;
}

.section-title .line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #0074a6;
    margin-left: 10px;
    vertical-align: middle;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.team-member {
    background: #fff;
    max-width: 250px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member h3 {
    font-size: 16px;
    margin: 15px 0 5px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
}

.team-member p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

@media (max-width: 768px) {
    .team-member {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .team-member {
        max-width: 100%;
    }
}

/* contact us se  */
.contact-us-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d1041;
    width: 100%;
    padding: 30px;
}

.contact-us-sec p {
    font-size: 30px;
    color: white;
}

.contact-us-sec a button {
    padding: 15px 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: transparent;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

@media only screen and (max-width:720px) {
    .requestQ {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .requestQ p {
        font-size: 13px;
    }

    .requestQ a button {
        font-size: 12px;
        padding: 10px 30px;
    }

    .welcome-grid-images {
        width: 100%;
    }

    .content {
        width: 100%;
    }

    .vision-mission {
        margin-top: 20px;
    }

    .vision,
    .mission {
        flex: 1 1 150px;
    }

    .Services {
        text-align: center;
        margin-top: 75px;
    }

    .contact-us-sec {
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }
}

/* footer section */
.footer {
    background-color: #1a1a1a;
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-column h3 {
    color: #fff;
    font-size: 16px;
    position: relative;
    margin-bottom: 20px;
}

.footer-column h3 span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #f1b400;
    margin-left: 10px;
    vertical-align: middle;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info li i {
    margin-right: 10px;
    color: #f1b400;
}

.social {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.social-icon {
    font-size: 22px;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
    line-height: 50px;
}

.social-icon:hover {
    background: #f1b400;
    color: #fff;
}
.service-card-i{
    color: white;
    background-color: #f1b400;
    padding: 10px 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul li {
        font-size: 13px;
    }

    .footer-column {
        flex: 1 1 55px;
        min-width: 220px;
    }
}

.footer-bottom a {
    color: #f1b400;
}

.strengths {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.strengths h2 {
    color: #1a2951;
    font-size: 28px;
    margin-bottom: 10px;
}

.strengths .intro {
    color: #555;
    margin-bottom: 40px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 20px;
}

.strength-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: #fff;
    border-radius: 4px;
}

.strength-item i {
    font-size: 28px;
}

.blue {
    background-color: #1a2951;
}

.yellow {
    background-color: #f1b400;
    color: #1a2951;
}

.darkblue {
    background-color: #1a2951;
}

.strength-item p {
    margin: 0;
}

/* whats app  */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px green;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* map */
.map-section {
    margin-top: 30px;
    text-align: center;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0d1041;
}

.map-section p {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strengths {
        padding: 30px 15px;
    }

    .strengths h2 {
        font-size: 24px;
    }
}