

/* Color Scheme */
:root {
    --dark-blue: #003366;
    --white: #FFFFFF;
    --gold: #FFD700;
    --light-gray: #F8F9FA;
    --text-dark: #333333;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    background-color: var(--dark-blue);
    box-shadow: 0 2px 4px rgba(226, 220, 220, 0.89);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.brand-container {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.navbar-brand img {
    max-height: 80px;
    padding: 5px 0px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-text {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.brand-tagline {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 2px;
    text-align: center;
}

.navbar-brand:hover .brand-text {
    color: var(--white);
}

.navbar-brand:hover .brand-tagline {
    color: var(--gold);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin-right: 1.5rem;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-blue);
    border: none;
}

.btn-gold:hover {
    background-color: #E6C200;
    color: var(--dark-blue);
}

.btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #004080 100%);
    color: var(--white);
    padding: 100px 0 60px;
    min-height: 58vh;
    display: flex;
    align-items: center;
    animation: fadeInUp 1.5s ease-out;
}

.jobs-section {
    position: relative;
    z-index: 0;
    padding-top: 40px;
    background-color: var(--light-gray);
}

.search-section,
.filters-section {
    background: #ffffff;
    border: 1px solid #eaf0f6;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(35, 77, 123, 0.06);
    padding: 16px;
}

.search-section .search-input,
.filters-section .filter-select,
.filters-section input {
    background: #ffffff;
}

/* Page Breadcrumb */
.page-breadcrumb {
    margin-bottom: 1rem;
}

.page-breadcrumb .breadcrumb {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 6px 15px;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    font-weight: 400;
    margin: 0 6px;
}

.page-breadcrumb .breadcrumb-link {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}

.page-breadcrumb .breadcrumb-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 400;
    font-size: 0.85rem;
}

/* About/Services Hero Section - Reduced Height */
#about-hero {
    min-height: 50vh;
    padding: 60px 0;
}

.water-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.water-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.368);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.899);
    backdrop-filter: blur(1px);
    animation: bubble 6s infinite ease-in;
}

.bubble-1 { width: 30px; height: 30px; left: 10%; top: 70%; animation-duration: 7s; animation-delay: 0.2s; }
.bubble-2 { width: 45px; height: 45px; left: 35%; top: 80%; animation-duration: 5.5s; animation-delay: 0.6s; }
.bubble-3 { width: 22px; height: 22px; left: 60%; top: 75%; animation-duration: 6.5s; animation-delay: 0.4s; }
.bubble-4 { width: 38px; height: 38px; left: 80%; top: 68%; animation-duration: 8s; animation-delay: 0.8s; }
.bubble-5 { width: 25px; height: 25px; left: 50%; top: 90%; animation-duration: 6.2s; animation-delay: 0.3s; }

@keyframes bubble {
    0% {
        transform: translateY(0) scale(0.9);
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-130vh) scale(1.2);
        opacity: 0;
    }
}

.dots-overlay {
    position: absolute;
    top: 10%;
    right: 4%;
    width: 220px;
    height: 220px;
    background-image: url('../images/dots.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: 2;
    animation: moveDots 8s ease-in-out infinite alternate;
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-12px, 8px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translate(8px, -10px) scale(0.95);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-provide-section {
    background-color: #ffffff;
}

.services-provide-section .small-tagline {
    color: #0785e3;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.services-provide-section .section-heading {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #071a3f;
}

.services-provide-section .section-lead,
.services-provide-section .section-text {
    color: #4f5b76;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card {
    background: #f7fbff;
    border-radius: 16px;
    border: 1px solid #e5f0fb;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 55, 98, 0.16);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.2rem;
}

.service-card-body h4 {
    margin-bottom: 0.75rem;
    color: #002855;
    text-decoration: underline;
}

.service-card-body h4.highlight-heading {
    text-decoration: none;
}

.service-card-body p {
    margin-bottom: 0.85rem;
    color: #4a5d7a;
}

.read-more {
    color: #e5a000;
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.highlight-heading {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #003366;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.curve-line {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../images/curveLine.svg');
    background-repeat: no-repeat;
    background-position: 20% 40%;
    background-size: 50% auto;
    opacity: 0.35;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-icon {
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 100px;
    height: 100px;
    z-index: 4;
    transform: rotate(-18deg);
    animation: heroIconFloat 5s ease-in-out infinite alternate;
}

.hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(0deg);
}

.round-dline {
    position: absolute;
    left: 20px;
    top: 18px;
    width: 180px;
    height: 180px;
    background-image: url('../images/rounDLine.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    opacity: 0.5;
    animation: roundDLineSpin 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes roundDLineSpin {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(360deg);
    }
    75% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes heroIconFloat {
    0% {
        transform: translate(0,0) rotate(-18deg);
    }
    50% {
        transform: translate(-6px,-8px) rotate(-18deg);
    }
    100% {
        transform: translate(6px,-3px) rotate(-18deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-title .sea-blue {
    color: #1ca7e6;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.2);
}

.hero-buttons .btn {
    margin-right: 1rem;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Rotating Circle for Image */
.rotating-circle {
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: float 8s ease-in-out infinite alternate;
}

.rotating-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B9D 0%, #00D4FF 50%, #FFB700 100%);
    animation: pulse 3.5s ease-in-out infinite, blink 1.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.rotating-circle img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-section .col-lg-6:first-child {
    animation: fadeInLeft 1.5s ease-out 0.3s both;
}

.hero-section .col-lg-6:last-child {
    animation: fadeInRight 1.5s ease-out 0.6s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust Section */
.trust-section {
    background-color: var(--white);
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.services-section h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    background-color: var(--white);
}

.industry-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background-color: var(--white);
    animation: fadeInUp 1.5s ease-out;
}

.about-section .section-title {
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--light-gray);
    animation: fadeInUp 1.5s ease-out;
}

.message-md-section {
    background: linear-gradient(120deg, #002058 0%, #012a63 100%);
    color: #ffffff;
}
.message-md-title {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}
.message-md-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #b8d6ff;
}
.message-md-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ebf2ff;
    margin-bottom: 1rem;
}
.message-md-signature {
    margin-top: 1.2rem;
    font-weight: 500;
    color: #f8f9ff;
}
.message-md-signature strong {
    color: #ffd700;
}

/* Team Members Section */
.team-members-section {
    background-color: #f8f9fa;
}

.team-member-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 102, 153, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.team-image-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-box img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.team-info {
    background-color: #ffffff;
    position: relative;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.5rem;
}

.team-member-title {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.8rem;
}

.team-badge {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
}

/* About / Mission Vision Values cards */
.about-card {
    border: 1px solid rgba(0, 102, 153, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.about-card h4 {
    color: #003366;
    font-weight: 700;
}
.about-card p,
.about-card li {
    color: #2a3f5f;
    line-height: 1.5;
    font-size: 0.98rem;
}
.about-card ul {
    padding-left: 0;
    margin-bottom: 0;
}
.about-card ul li {
    margin-bottom: 0.95rem;
    line-height: 1.7;
}
.about-card ul li:last-child {
    margin-bottom: 0;
}

.mission-vision-image-box {
    border: 2px solid rgba(0, 102, 153, 0.2);
    background: #ffffff;
    max-height: 200px;
    overflow: hidden;
}
.mission-vision-image-box img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}



.why-choose-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.why-choose-card h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Process Section */
.process-section {
    background-color: var(--light-gray);
}

.process-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: bold;
    color: var(--dark-blue);
}

/* Jobs Section */
.jobs-section {
    background-color: var(--light-gray);
}

.job-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Premium Services Section */
.premium-services-section {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: 800px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item-1 {
    grid-column: auto;
}

.grid-item-2 {
    grid-column: auto;
}

.grid-item-3 {
    grid-column: auto;
}

.grid-item-4 {
    grid-column: auto;
}

.grid-item-5 {
    grid-column: auto;
}

.grid-item-6 {
    grid-column: auto;
}

.services-subtitle {
    color: #64B5F6;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.service-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: #0d47a1;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Blog Section */
.blog-section {
    background-color: var(--white);
}

.blog-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
}

.blog-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Our Clients Section */
.clients-section {
    background-color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: slideClients 30s linear infinite;
    width: calc(250px * 28); /* 14 logos * 2 for duplication */
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    filter: none;
    transition: all 0.3s ease;
    height: 220px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.cta-section {
    background: linear-gradient(90deg, #1a73e8 0%, #00a8ff 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 20px 20px;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 520px;
}

.cta-image {
    max-width: 80%;
    border-radius: 20px;
    animation: slideUpFromBottom 1s ease-out;
}

@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section .btn-gold {
    background: #ffd700;
    color: #003366;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
}

.cta-section .btn-gold:hover {
    background: #e6c100;
    color: #002555;
}

.contact-section {
    background-color: var(--light-gray);
}

.contact-section h4 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.contact-section p {
    margin-bottom: 0.5rem;
}

.contact-section i {
    width: 20px;
    margin-right: 10px;
}

/* Welcome Section */
.welcome-section {
    background-color: var(--white);
    padding: 50px 0;
    overflow: hidden;
}

.welcome-badge-text {
    color: #0084D6;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.welcome-title-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.1;
}

.welcome-text-justified {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.9;
    text-align: justify;
    opacity: 0.9;
}

.know-more-btn {
    display: inline-block;
    color: #0084D6;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid #0084D6;
    transition: all 0.3s ease;
    padding-bottom: 3px;
}

.know-more-btn:hover {
    color: var(--dark-blue);
    border-bottom-color: var(--dark-blue);
    text-decoration: none;
    padding-bottom: 5px;
}

.welcome-line-animation {
    display: block;
    margin-top: 20px;
    animation: slideLine 3s ease-in-out infinite;
}

@keyframes slideLine {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.welcome-content {
    flex: 1;
}

.welcome-line-container {
    flex-shrink: 0;
}

.welcome-title-section {
    position: relative;
    text-align: center;
}

.welcome-dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.welcome-dots-animation {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatDots 4s ease-in-out infinite;
}

@keyframes floatDots {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #003366 0%, #4b55db 100%);
    padding: 60px;
    margin-bottom: 80px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    margin-left: 5px;
    color: var(--gold);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Curved wave effect on stats section edges */
.stats-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 50" preserveAspectRatio="none"><path d="M0,15 Q150,0 300,15 T600,15 T900,15 T1200,15 L1200,0 L0,0 Z" fill="white" opacity="0.15"/></svg>') repeat-x;
    background-size: 300px 50px;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 50" preserveAspectRatio="none"><path d="M0,35 Q150,50 300,35 T600,35 T900,35 T1200,35 L1200,50 L0,50 Z" fill="white" opacity="0.15"/></svg>') repeat-x;
    background-size: 300px 50px;
}



/* Footer */
.get-in-touch-section {
    margin-bottom: 60px;
}

.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    animation: fadeInUp 1.5s ease-out;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.footer-bg-dots {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 180px;
    height: 180px;
    background-image: url('../images/dots.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    z-index: 1;
    animation: moveDots 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.footer-bg-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/curveLine.svg');
    background-repeat: no-repeat;
    background-position: 10% 60%;
    background-size: 40% auto;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    color: #f7f6f6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f7f6f6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links a {
    color: #f7f6f6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-links a i {
    font-size: 1.2rem;
}

.footer-social-links a:hover {
    color: var(--gold);
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #f7f6f6;
}

.footer-address a {
    color: #f7f6f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-copyright,
.footer-credits {
    font-size: 0.85rem;
    color: #f7f6f6;
    margin: 0;
}

.social-links a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* Jobs Section Styles */
.jobs-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
}

.job-tabs {
    border: none;
    gap: 0;
}

.job-tabs .nav-link {
    color: #003366 !important;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 1.5rem;
    margin: 0;
    transition: all 0.3s ease;
}

.job-tabs .nav-link:hover,
.job-tabs .nav-link.active {
    color: #00bcd4 !important;
    border-bottom-color: #00bcd4;
}

.vacancy-count {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Search Section */
.search-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-input {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
    color: #999999;
}

.search-input:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.1);
}

.btn-search {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: #0097a7;
}

/* Filters Section */
.filters-section {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-label i {
    margin-right: 6px;
    color: #00bcd4;
}

.filter-select {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 6px;
    color: #666666;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #00bcd4;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.1);
}

/* Job Card Styles */
.job-card, .job-card-new {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8eef8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.job-card:hover, .job-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.job-card-header, .job-card-new .job-card-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.job-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.job-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 20px;
    border: none;
}

.badge-employment {
    background-color: #e8f5f9;
    color: #00838f;
}

.badge-location {
    background-color: #f1f8e9;
    color: #689f38;
}

.job-divider {
    height: 1px;
    border: none;
    background-color: #f0f0f0;
    margin: 16px 0;
}

.job-card-body {
    flex: 1;
    padding: 0 24px;
}

.job-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.job-card-footer {
    padding: 24px;
    display: flex;
    justify-content: flex-start;
}

.btn-apply {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-apply:hover {
    background-color: #0097a7;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Brand Text */
    .brand-text {
        font-size: 1.1rem !important;
    }

    .brand-tagline {
        font-size: 0.65rem !important;
    }

    /* Navigation */
    .nav-link {
        font-size: 0.875rem;
        margin-right: 0.5rem !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .rotating-circle {
        max-width: 300px;
        height: 300px;
    }

    .dots-overlay {
        display: none;
    }

    .hero-icon {
        display: none;
    }

    .hero-section {
        padding: 60px 0;
    }

    /* Page Breadcrumb Mobile */
    .page-breadcrumb {
        margin-bottom: 1rem;
    }

    .page-breadcrumb .breadcrumb {
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
    }

    .page-breadcrumb .breadcrumb-item {
        font-size: 0.8rem;
    }

    /* Footer Mobile Styles */
    .footer-links {
        column-count: 1 !important;
        text-align: center;
    }

    .footer-social-links {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px !important;
    }

    .footer-social-links a {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
        text-align: center;
    }

    .footer-address {
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-bg-dots,
    .footer-bg-curve {
        display: none;
    }

    /* Welcome Section */
    .welcome-container {
        flex-direction: column;
        gap: 20px;
    }

    .welcome-title-large {
        font-size: 2.5rem;
    }

    .welcome-text-justified {
        text-align: left;
    }

    .welcome-line-animation {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Premium Services Section */
    .services-image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 10px;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card-img {
        height: 180px;
    }

    .service-card-body {
        padding: 1rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Clients Section */
    .clients-track {
        width: calc(150px * 28);
    }

    .client-logo {
        height: 180px;
        padding: 20px;
    }

    /* Get In Touch Section */
    .get-in-touch-section h2 {
        font-size: 2rem;
    }

    .get-in-touch-section p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-social-links a {
        font-size: 0.9rem;
    }

    /* Section Headings */
    .section-heading {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-lead,
    .section-text {
        font-size: 0.9rem !important;
    }

    .small-tagline {
        font-size: 0.75rem;
    }

    /* Buttons */
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        margin-right: 0;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    /* Card Text */
    .service-card-body h4 {
        font-size: 1rem;
    }

    .service-card-body p {
        font-size: 0.85rem;
    }

    /* General headings */
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    h4 {
        font-size: 1rem !important;
    }

    h5 {
        font-size: 0.95rem !important;
    }

    p {
        font-size: 0.9rem !important;
    }

    body {
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .rotating-circle {
        max-width: 250px;
        height: 250px;
    }

    .welcome-title-large {
        font-size: 2rem;
    }

    .welcome-text-justified {
        font-size: 0.9rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .get-in-touch-section h2 {
        font-size: 1.8rem;
    }

    .get-in-touch-section p {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.3rem !important;
    }

    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.2rem !important;
    }

    h3 {
        font-size: 1rem !important;
    }

    .service-card-body h4 {
        font-size: 0.95rem;
    }

    .service-card-body p {
        font-size: 0.8rem;
    }

    .section-lead,
    .section-text {
        font-size: 0.85rem !important;
    }

    .client-logo {
        height: 160px;
        padding: 15px;
    }

    p {
        font-size: 0.85rem !important;
    }

    body {
        font-size: 0.85rem;
    }

    /* Footer Mobile Styles for Small Screens */
    .footer-social-links {
        gap: 10px !important;
    }

    .footer-social-links a {
        font-size: 0.8rem;
        padding: 8px 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-address {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
        padding: 10px 0;
    }

    /* Page Breadcrumb Mobile */
    .page-breadcrumb .breadcrumb {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .page-breadcrumb .breadcrumb-item {
        font-size: 0.8rem;
    }
}

/* Ensure text in the about-text-justified class is justified */
.about-text-justified {
    text-align: justify !important;
}