/* ===================== GENERAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #0B1C3C;
    line-height: 1.6;
}

/* ===================== HEADER / NAVIGATION ===================== */
header {
    width: 100%;
    background: #0B1C3C;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #f5a623, #ffb703);
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f5a623;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* ===================== HERO SECTION ===================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    padding-top: 80px; /* For fixed header */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0a0f2c, #0f1a4d, #f5a623, #ffb703);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 0;
    filter: brightness(0.75);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating shapes */
.hero::after,
.hero::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.15), transparent);
}

.hero::after {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation: floatShape 12s ease-in-out infinite;
}

.hero::before {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 5%;
    animation: floatShape 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(20px) translateX(15px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* ===================== ANIMATION ON SCROLL ===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== FOOTER SOCIAL ICONS ===================== */
.footer-social .social-icon {
    transition: all 0.4s ease;
}
/* ===================== SERVICES PAGE ===================== */
.services-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0f2c, #0f1a4d);
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffb703;
}

.services-hero p {
    max-width: 820px;
    margin: auto;
    color: #e5e7eb;
    font-size: 1.1rem;
}

/* Sections */
.services-section {
    padding: 90px 20px;
}

.services-section.alt-bg {
    background: #0b1c3c;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffb703;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
    color: #cbd5e1;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Cards */
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.35s ease;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.3rem;
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,183,3,0.4);
}

/* CTA */
.services-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f1a4d, #0a0f2c);
}

.services-cta h2 {
    font-size: 2.4rem;
    color: #ffb703;
    margin-bottom: 15px;
}

.services-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e5e7eb;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg,#f5a623,#ffb703);
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,166,35,0.4);
}

/* ===================== SCROLL ANIMATION ===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}
/* ===================== SERVICES GRADIENT DESIGN ===================== */

.services-hero-gradient {
    padding: 130px 20px 90px;
    text-align: center;
    background: linear-gradient(135deg, #0a0f2c, #0f1a4d, #1b2a6f);
}

.services-hero-gradient h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffb703;
    margin-bottom: 16px;
}

.services-hero-gradient p {
    max-width: 820px;
    margin: auto;
    font-size: 1.1rem;
    color: #e5e7eb;
    line-height: 1.7;
}

/* Sections */
.services-section-gradient {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b1c3c, #0f1a4d);
}

.services-section-gradient.alt-gradient {
    background: linear-gradient(135deg, #0f1a4d, #0b1c3c);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: #ffb703;
    margin-bottom: 12px;
}

.section-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Gradient Cards */
.service-card-gradient {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 32px 28px;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    text-align: left;
}

.service-card-gradient h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.service-card-gradient p {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* Hover Effect */
.service-card-gradient:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    border-color: rgba(255,183,3,0.5);
}

/* CTA */
.services-cta-gradient {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a0f2c, #0f1a4d);
}

.services-cta-gradient h2 {
    font-size: 2.6rem;
    color: #ffb703;
    margin-bottom: 15px;
}

.services-cta-gradient p {
    max-width: 750px;
    margin: 0 auto 35px;
    color: #e5e7eb;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Button */
.cta-btn-gradient {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg,#f5a623,#ffb703);
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.cta-btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245,166,35,0.45);
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}
/* BACKGROUND FOR THE WHOLE PAGE */
body {
    background-color: #f5f5f5; /* Template background */
}

/* VACANCY LIST */
.vacancy-list {display: flex; flex-direction: column; gap: 20px;}

/* EACH VACANCY ROW */
.vacancy-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #ffffff; /* Light card background for readability */
    border-left: 5px solid #00adee; /* Accent color border to match template */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vacancy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* DETAILS ON THE LEFT */
.vacancy-details {max-width: 75%;}
.vacancy-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #007bb5; /* Primary theme color */
}
.vacancy-details p {margin-bottom: 6px; color: #333;}

/* APPLY BUTTON ON THE RIGHT */
.vacancy-action {display: flex; align-items: center; justify-content: flex-end;}
.apply-btn {
    background: #00adee; /* Primary accent color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.apply-btn:hover {background: #007bb5;}

/* NO VACANCY MESSAGE */
.no-vacancy {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vacancy-item {flex-direction: column; gap: 15px;}
    .vacancy-details {max-width: 100%;}
    .vacancy-action {justify-content: flex-start;}
}


.footer-social.animate-on-scroll .social-icon:nth-child(1) { transition-delay: 0.1s; }
.footer-social.animate-on-scroll .social-icon:nth-child(2) { transition-delay: 0.2s; }
.footer-social.animate-on-scroll .social-icon:nth-child(3) { transition-delay: 0.3s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}

.global-presence {
    text-align: center;
    padding: 40px 0;
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.world-map {
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Marker base */
.marker {
    position: absolute;
    transform: translate(-50%, -100%);
}

/* India exact location */
.marker.india {
    top: 56%;
    left: 63%;
}

/* Pin design */
.marker span {
    width: 14px;
    height: 14px;
    background: #e63946;
    border-radius: 50%;
    display: block;
    position: relative;
    box-shadow: 0 0 0 rgba(230,57,70,0.6);
    animation: pulse 1.5s infinite;
}

/* Pin tail */
.marker span::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 5px;
    width: 4px;
    height: 10px;
    background: #e63946;
    border-radius: 2px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(230,57,70,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230,57,70,0);
    }
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;          /* adjust as needed */
    margin-right: 10px;
}

.logo-primary {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.logo-secondary {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-left: 4px;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;          /* adjust as needed */
    margin-right: 10px;
}

.logo-primary {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.logo-secondary {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-left: 4px;
}


