/* ===== RESET ===== */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.5;
}

/* ===== NAVBAR ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    background: #0d1b2a;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.logo img {
    width: 90px;
    height: auto;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.nav-links a:hover {
    color: #00b4d8;
}

/* BUTTON */
.btn {
    background: #00b4d8;
    padding: 6px 14px;
    border-radius: 5px;
    color: #000;
    font-weight: 600;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1b263b;
    list-style: none;
    min-width: 220px;
    display: none;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #00b4d8;
    color: #000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 25px 20px 60px;
    background: #e9ecef;
    text-align: center;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.home-images {
    display: flex;
    gap: 40px;
    margin-bottom: 21px;
}

.home-images img {
    width: 320px;
    border-radius: 8px;
}

.home-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.hero p {
    margin-bottom: 12px;
    font-size: 16px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #00b4d8;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
    text-align: center;
}

.light {
    background: #f5f5f5;
}

/* ===== CARDS ===== */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ===== FLIP CARD ===== */
.flip-card {
    width: 280px;
    height: 340px;
    perspective: 1000px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ✅ FRONT – PROFESSIONAL CORPORATE BLUE */
.flip-card-front {
    background: linear-gradient(135deg, #e3f2fd, #1a6fbe);
    color: #0f2a44;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ✅ BACK – CLEAN LIGHT GREY BLUE */
.flip-card-back {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #0f2a44;
    transform: rotateY(180deg);
}

/* ===== CAREERS ===== */
.career-list {
    list-style: none;
    margin-top: 20px;
}

.career-list li {
    margin: 8px 0;
}

/* ===== FOOTER ===== */
footer {
    background: #0d1b2a;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #7f7cff, #9b7cff);
}

/* BOX */
.contact-box {
    display: flex;
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* LEFT */
.contact-left {
    width: 45%;
    background: #00b4d8;
    color: #ffffff;
    padding: 50px 40px;
}

.contact-left h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* RIGHT */
.contact-right {
    width: 55%;
    padding: 50px 40px;
}

.contact-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* FORM */
.contact-right form {
    display: flex;
    flex-direction: column;
}

.contact-right input,
.contact-right textarea {
    border: none;
    background: #f1f1f1;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.contact-right textarea {
    resize: none;
    height: 110px;
}

/* BUTTON */
.contact-right button {
    margin-top: 10px;
    background: #00b4d8;
    color: #000;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #0096c7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }
}

/* ===== CHECKBOX ===== */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #333;
    margin-bottom: 15px;
}

.checkbox input {
    margin-top: 3px;
}

/* ===== the below css is for careers ===== */
/* ===== CAREERS ===== */
.career-intro {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 16px;
    color: #333;
}

.career-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.career-card {
    background: #ffffff;
    width: 320px;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-6px);
}

.career-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #0d1b2a;
}

.job-type {
    font-size: 13px;
    color: #00b4d8;
    font-weight: 600;
}

.job-desc {
    margin: 12px 0;
    font-size: 14px;
    color: #444;
}

.career-card ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.career-card ul li {
    font-size: 13px;
    margin-bottom: 6px;
}

.apply-note {
    font-size: 13px;
    font-weight: 600;
    color: #0f2a44;
}

/* ===== Apply Now Button ===== */

/* ===== APPLY NOW BUTTON ===== */
.apply-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #00b4d8;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
    background: #0096c7;
    transform: translateY(-2px);
}

/* ===== Button For Center ===== */

.apply-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0; /* centers the button */
    padding: 10px 22px;
    background: #00b4d8;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* ===== Blog Code below ===== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.blog-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
}

.blog-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #00b4d8;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* ===== the below is about us code ===== */

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #111;
}

.about-intro {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 14px;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.highlight-card h4 {
    margin-bottom: 8px;
    font-size: 16px;
    color: #111;
}

.highlight-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}


/* ===== CHAT TOGGLE BUTTON ===== */
.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #00b4d8;
    color: #000;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
}

/* ===== CHAT BOX ===== */
.chat-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

/* HEADER */
.chat-header {
    background: #0d1b2a;
    color: #ffffff;
    padding: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

/* BODY */
.chat-body {
    padding: 15px;
    height: 240px;
    overflow-y: auto;
    background: #f5f7fa;
}

/* MESSAGES */
.chat-message {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    max-width: 85%;
}

.chat-message.bot {
    background: #e1ecf4;
    color: #000;
}

.chat-message.user {
    background: #00b4d8;
    color: #000;
    margin-left: auto;
}

/* FOOTER */
.chat-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 14px;
}

.chat-footer button {
    background: #00b4d8;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-weight: 600;
}

/* ===== Contact us Map Css code below ===== */

/* ===== MAP IN CONTACT LEFT ===== */
.map-box {
    margin-top: 70px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ===== the below code is for apply button ===== */

/* ===== APPLY FORM MODAL ===== */
.apply-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.apply-modal-content {
    background: #ffffff;
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* HEADER */
.apply-modal-header {
    background: #0d1b2a;
    color: #ffffff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-modal-header span {
    cursor: pointer;
    font-size: 18px;
}

/* FORM */
.apply-form {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.apply-form input,
.apply-form select {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 14px;
}

/* FILE UPLOAD */
.upload-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.upload-label input {
    margin-top: 6px;
}

/* SUBMIT */
.submit-btn {
    background: #00b4d8;
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0096c7;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .apply-modal-content {
        width: 90%;
    }

    .form-row {
        flex-direction: column;
    }
}

/* the below css for mobile view nav bar */

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .logo span {
        font-size: 14px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
        color: #fff;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
        background: #0b1c2d;
        margin-top: 15px;
        border-radius: 8px;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #102a43;
    }

    /* HERO SECTION */
    .home-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }

    .home-images {
        flex-direction: column;
        gap: 15px;
    }

    .home-images img {
        width: 90%;
        margin: auto;
    }

    .home-content h1 {
        font-size: 26px;
    }

    /* SERVICES CARDS */
    .cards {
        grid-template-columns: 1fr;
    }

    /* CAREERS */
    .career-cards {
        grid-template-columns: 1fr;
    }

    /* BLOG */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT */
    .about-container {
        flex-direction: column;
    }

    /* CONTACT */
    .contact-box {
        flex-direction: column;
    }

    .map-box iframe {
        width: 100%;
        height: 250px;
    }

    /* CHAT BOX */
    .chat-box {
        width: 90%;
        right: 5%;
    }
}

/* hidding hambarger for desktop site */

/* ================= PROFESSIONAL MOBILE NAVBAR ================= */

/* Desktop */
.menu-toggle {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #0b1c2d;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px;
        position: relative;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 60px);
    }

    .logo span {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* HAMBURGER */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);

        width: 44px;
        height: 44px;

        font-size: 24px;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 10px;

        cursor: pointer;
        z-index: 1200;
    }

    /* NAV MENU */
    .nav-links {
        display: none;
        flex-direction: column;

        position: fixed;
        top: 60px; /* height of header */
        left: 0;

        width: 100%;
        height: calc(100vh - 60px);

        background: #0b1c2d;
        overflow-y: auto;            /* ✅ MENU SCROLL FIX */
        -webkit-overflow-scrolling: touch;

        padding: 10px 0;
        z-index: 1100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 14px 0;
    }

    .nav-links a {
        display: block;
        font-size: 16px;
    }

    /* DROPDOWN */
    .dropdown-menu {
        position: static;
        background: #102a43;
        box-shadow: none;
        max-height: none;
    }
}


