/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f9f9f9;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* ================= HEADER ================= */
header {
    background: #000; /* solid black */
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* stays on top when scrolling */
    top: 0;
    width: 100%;
    z-index: 999;
}


    header .logo img {
        height: 150px; /* bigger logo */
        width: auto;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

        header .logo img:hover {
            opacity: 1;
            transform: scale(1.08);
        }

    header nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

        header nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

            header nav ul li a.active,
            header nav ul li a:hover {
                color: #00b894;
            }

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

#fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important;
    z-index: 2;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3rem;
    margin: auto;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #fff;
    color: #0984e3;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

    .hero .btn:hover {
        background: #00b894;
        color: #fff;
    }

/* ================= ABOUT ================= */
.about {
    text-align: center;
}

    .about h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #0984e3;
    }

    .about p {
        font-size: 1.1rem;
    }

/* ================= CAROUSEL ================= */
.carousel-section {
    text-align: center;
    margin-top: 40px;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 12s linear infinite;
}

.carousel-item {
    min-width: 250px;
    margin: 0 15px;
    text-align: center;
}

    .carousel-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }

    .carousel-item h3 {
        margin-top: 10px;
        color: #0984e3;
        font-size: 1.2rem;
        font-weight: 600;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ================= FOOTER ================= */
footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

    .footer-col h3 {
        margin-bottom: 15px;
        color: #00b894;
        font-size: 1.2rem;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

            .footer-col ul li img {
                margin-right: 8px;
                border-radius: 3px;
            }

            .footer-col ul li a {
                color: #fff;
                text-decoration: none;
            }

                .footer-col ul li a:hover {
                    color: #00b894;
                }

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.9rem;
}

/* ================= FLOATING BUTTONS ================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s ease-in-out;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background: #20b954;
    }

    .whatsapp-float i {
        margin-top: 16px;
    }

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background: #0984e3;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s ease-in-out;
}

    .call-float:hover {
        transform: scale(1.1);
        background: #0652dd;
    }

    .call-float i {
        margin-top: 17px;
    }

/* ================= JOBS ================= */
.country-filter h2 {
    text-align: center;
    margin-bottom: 20px;
}

.country-buttons {
    text-align: center;
    margin-bottom: 20px;
}

    .country-buttons button {
        margin: 5px;
        padding: 10px 15px;
        border: none;
        background: #0984e3;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
        font-weight: 600;
    }

        .country-buttons button:hover {
            background: #00b894;
        }

.job-listings {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.job-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    width: 220px;
    text-align: center;
}

/* ================= TESTIMONIALS ================= */
.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.testimonial {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    text-align: center;
}

    .testimonial.active {
        display: block;
    }

    .testimonial h4 {
        margin-top: 10px;
        color: #0984e3;
    }

/* ================= SUBSCRIPTION ================= */
.subscribe-form {
    display: flex;
    flex-direction: column;
}

    .subscribe-form input {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        border: none;
    }

    .subscribe-form button {
        padding: 10px;
        background: #00b894;
        border: none;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        border-radius: 5px;
    }

        .subscribe-form button:hover {
            background: #0984e3;
        }

/* ================= MISSION & VISION ================= */
.mission-vision {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.mv-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* ================= WHY CHOOSE US ================= */
.why-choose ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: auto;
}

.why-choose li {
    background: #f9f9f9;
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ================= LEADERSHIP ================= */
.leadership {
    text-align: center;
    margin-top: 50px;
}

.leader-card {
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.leader-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* ================= TIMELINE ================= */
.timeline {
    margin: 50px 0;
    position: relative;
}

    .timeline h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.timeline-line {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 45%;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

    .timeline-item.left {
        left: 0;
    }

    .timeline-item.right {
        left: 55%;
    }

    .timeline-item h3 {
        color: #0984e3;
        margin-bottom: 10px;
    }

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: #00b894;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* ================= SERVICES ================= */
.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

    .service-card i {
        font-size: 2rem;
        color: #0984e3;
        margin-bottom: 10px;
    }

    .service-card h3 {
        margin-bottom: 10px;
    }

/* ================= PROCESS ================= */
.process h2 {
    text-align: center;
    margin-bottom: 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .step span {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #00b894;
        color: #fff;
        border-radius: 50%;
        line-height: 40px;
        font-weight: bold;
        margin-bottom: 10px;
    }

/* ================= INDUSTRIES ================= */
.industries h2 {
    text-align: center;
    margin-bottom: 20px;
}

.industries ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.industries li {
    background: #fff;
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

/* ================= FAQ ================= */
.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin: 10px auto;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f1f1;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* ================= EDIT BUTTON ================= */
.edit-btn {
    display: inline-block;
    margin-top: 10px;
    margin-left: 8px;
    padding: 6px 12px;
    background: #2980b9;
    color: white;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
}

    .edit-btn:hover {
        background: #1f6391;
    }

/* Mobile Responsive Header */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

        header nav {
            display: none; /* hidden by default */
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 0;
        }

            header nav ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

                header nav ul li a {
                    font-size: 1.1rem;
                }

    .menu-toggle {
        display: block;
    }

    header.active nav {
        display: flex; /* show menu when active */
    }
}

/* Responsive job cards */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive form */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
        padding: 20px;
    }
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 70vh; /* reduce height on mobile */
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem; /* smaller title */
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem; /* smaller subtitle */
        margin: 10px auto;
    }

    .hero .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 1.5rem; /* even smaller for tiny screens */
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
.apply-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #2980b9;
    color: white;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
}

    .apply-btn:hover {
        background: #27ae60;
    }
.hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Parallax hero --- */
.hero-parallax {
  position: relative;
  min-height: 70vh;              /* visible height */
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;            /* keep canvas/z-index clean */
}

/* The background layer */
.hero-parallax__bg {
  position: absolute;
  inset: 0;
  z-index: -2;

  /* Desktop: fixed attachment parallax (super smooth) */
  background-image: url("../images/hero-lg.jpg");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  will-change: transform;
}

/* Progressive sources via image-set (modern) */
@supports (background: image-set("x" type("image/jpeg") 1x)) {
  .hero-parallax__bg {
    background-image: image-set(
      url("../images/hero-sm.webp") type("image/webp") 1x,
      url("../images/hero-md.webp") type("image/webp") 2x,
      url("../images/hero-lg.webp") type("image/webp") 3x,
      url("../images/hero-sm.jpg") type("image/jpeg") 1x,
      url("../images/hero-md.jpg") type("image/jpeg") 2x,
      url("../images/hero-lg.jpg") type("image/jpeg") 3x
    );
  }
}

/* Mobile/tablet: avoid fixed attachment jank; JS will handle subtle parallax */
@media (max-width: 1023px) {
  .hero-parallax__bg {
    background-attachment: scroll;      /* disable fixed on mobile */
    background-image: url("../images/hero-md.jpg");
  }
}

/* Optional: taller on big screens */
@media (min-width: 1280px) {
  .hero-parallax { min-height: 80vh; }
}

/* Keep existing hero text styling if you have it */
.hero-text {
  text-align: center;
  color: #fff;
  padding: 1rem 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* Make sure fireworks canvas sits above bg but below text */
#fireworks {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

