* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;

    background-color: #fff;
}
    





    /* Navbar styling */
    .navbar {
      padding: 0.8rem 2rem;
      background-color: #fefefe;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
      position: fixed;
      font-family: poppins, sans-serif;

    }

    .navbar-brand img {
      height: 55px;
    }

    .navbar-nav .nav-link {
      color: #000;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s ease;
            font-size: 0.9rem !important;

    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #e63950;
    }

    /* Language switch */
    .lang-switch a {
      color: #000;
      font-weight: 600;
      text-decoration: none;
      margin-left: 5px;
      transition: color 0.3s ease;
    }

    .lang-switch a.active,
    .lang-switch a:hover {
      color: #e63950;
    }

    /* Call button */
    .call-btn {
      background-color: #e63950;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
            font-family: 'Rubik', sans-serif !important;

    }

    .call-btn:hover {
      background-color: #d32f45;
    }

    /* Make sure right content stays aligned */
    .right-section {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    @media (max-width: 992px) {
      .navbar-nav {
        text-align: center;
      }
      .right-section {
        flex-direction: column;
        align-items: start;
        gap: 10px;
      }
    }

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    /* border: none; */
}





























.area-nav {
    opacity: 0;
    visibility: hidden; /* hide completely when not hovered */
    height: 500px;
    background-color: rgb(254, 254, 254);
    z-index: 10;
    border-top: 1px solid rgb(182, 180, 180);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    position: absolute; /* make sure it's absolute */
    top: 100%;
    left: 0;
    width: 100%;
}

/* Hover effect */
.nav-item:hover .area-nav {
    opacity: 1;
    visibility: visible; /* make it visible */
}


.area-nav .area-title {
    color: #6c757d; /* light grey color */
    font-weight: 600;
    font-size: 1.25rem; /* adjust size if needed */
    margin-bottom: 1rem;
}

/* List styles */
.area-nav ul {
    list-style: none; /* remove bullets */
    padding: 0;
    margin: 0;
}

/* Anchor styles */
.area-nav ul li a {
    text-decoration: none; /* remove underline */
    color: #343a40; /* dark grey color for links */
    transition: color 0.3s ease;
    display: block; /* so the link fills the li */
    padding: 0.25rem 0;
    transition: 0.6s ease;
}

.area-nav ul li a:hover {
    color: #000000; /* hover color */
    font-size: 1.3rem !important;
}










.area-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.97);
    z-index: 1050;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* slight slide up */
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.area-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* slide into place */
}

.area-overlay .close-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}






/* Overlay basic styling */
.area-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 1050;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    padding-top: 1rem;
}

.area-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Close button */
.area-overlay .close-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Headings */
.area-overlay h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.area-overlay h5.area-title {
    text-align: center;
    font-weight: 500;
    color: #6c757d; /* dim/light grey */
    margin-top: 1rem; /* spacing between sections */
    margin-bottom: 0.75rem;
}

/* Lists */
.area-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem auto;
    max-width: 220px; /* optional, controls width of list */
    text-align: center;
}

/* List items */
.area-overlay ul li {
    margin-bottom: 0.5rem;
}

/* Links */
.area-overlay ul li a {
    text-decoration: none;
    font-size: 1rem; /* slightly bigger font */
    color: #343a40;
    transition: color 0.3s ease;
    display: inline-block;
}

.area-overlay ul li a:hover {
    color: #007bff; /* hover effect */
}

/* Responsive columns spacing */
.area-overlay .row > [class*="col-"] {
    margin-bottom: 1rem; /* gap between all columns */
}

/* Optional: adjust vertical spacing for Living Abroad after Family Living */
.area-overlay .row > [class*="col-"]:last-child {
    margin-top: 1rem;
}

/* Paragraph styling if you have <p> inside overlay */
.area-overlay p {
    color: #6c757d; /* dim color */
    text-align: center;
    margin-bottom: 1rem;
}

/* Center everything horizontally */
.area-overlay .container,
.area-overlay .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}









        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(212,175,55,0.1)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-section h1 span {
            color: #e63950;
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Why Join Section */
        .why-join {
            padding: 80px 0;
            background: #f8f9fa;
            font-family: 'Poppins', sans-serif;

        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a2e;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 60px;
            font-size: 1.1rem;
        }

        .benefit-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
            border-top: 4px solid #e63950;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #e63950 0%, #943440 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: #fff;
        }

        .benefit-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a2e;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        /* Job Openings */
        .job-openings {
            padding: 80px 0;
            background: #fff;
            font-family: 'Poppins', sans-serif;

        }

        .job-card {
            background: #fff;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 25px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: #e63950;
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .job-card:hover {
            border-color: #b03444;
            box-shadow: 0 8px 25px rgba(212,175,55,0.15);
        }

        .job-card:hover::before {
            transform: scaleY(1);
        }

        .job-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 15px;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 0.95rem;
        }

        .job-meta-item i {
            color: #e63950;
            margin-right: 8px;
        }

        .job-description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .btn-apply {
            background: #e63950;
            color: #fff;
            padding: 12px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-apply:hover {
            background: #b84e5c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(169, 38, 38, 0.3);
            color: #fff;
        }

        /* Company Culture */
        .company-culture {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
        }

        .culture-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #e63950;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            margin-top: 10px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: #f8f9fa;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .btn-contact {
            background: #1a1a2e;
            color: #fff;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-contact:hover {
            background: #e63950;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26,26,46,0.3);
            color: #fff;
        }

        

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }










  .footer-section {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 0 30px;
        }

        .footer-logo {
            max-width: 130px;
            /* margin-bottom: 20px; */
        }

        .footer-tagline {
            font-size: 16px;
            color: #ffffff;
            /* margin-bottom: 30px; */
            line-height: 1.5;
        }

        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .contact-info p {
            color: #cccccc;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-info a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 5px;
        }

        .social-icons a {
            color: #ffffff;
            font-size: 24px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #cccccc;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333333;
            /* margin-top: 40px; */
            padding-top: 25px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-text {
            color: #888888;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-links a {
            color: #888888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 20px;
            }


                    .footer-logo {
            max-width: 150px;
            margin-bottom: 20px;
        }


            .footer-heading {
                margin-top: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }

            .social-icons {
                justify-content: center;
            }
        }
