:root {
    --primary-color: #003366;
    --secondary-color: #00a651;
    --dark-blue-bg: #0a2463;
    --footer-bg: #0c2340;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 63px;
}

.margin-fix-style {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .margin-fix-style {
        margin-top: 70px;
    }
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #333 !important;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    position: relative;
    height: 87vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    text-align: left;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #008a41;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#about h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 17px;
}

#about p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

#about img {
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label {
    text-align: center !important;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

#global-presence {
    background-color: var(--dark-blue-bg);
    color: #ffffff;
    padding: 80px 0;
    height: 770px;
}

#global-presence h2 {
    font-weight: 700;
    margin-bottom: 117px;
    color: #ffffff;
}

@media (max-width: 993px) {
    #global-presence h2 {
        font-weight: 700;
        margin-bottom: 37px;
        color: #ffffff;
    }

    .global-presence-info {
        font-size: 17px !important;
        font-weight: 500;
        margin-top: 37px;
    }
}

.global-presence-info {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 37px;
}

#global-presence img {
    max-width: 100%;
    height: auto;
}

#business-operations h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.business-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 37px 27px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    min-height: -webkit-fill-available;
}

.business-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.business-card .icon-box {
    margin: 0 auto 25px auto;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.business-card:hover .icon-box {
    background-color: var(--primary-color);
}

.business-card i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.business-card:hover i {
    color: #ffffff;
}

.business-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
}

.business-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.business-card:nth-child(1) {
    transition-delay: 0.1s;
}

.business-card:nth-child(2) {
    transition-delay: 0.2s;
}

.business-card:nth-child(3) {
    transition-delay: 0.3s;
}

#press-releases h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.press-card {
    background-color: #E7F3FF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    min-height: -webkit-fill-available;
}

.press-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.press-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.press-card-body {
    padding: 25px;
}

.press-card-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.press-card-body p {
    text-align: justify;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.press-card:nth-child(1) {
    transition-delay: 0.1s;
}

.press-card:nth-child(2) {
    transition-delay: 0.2s;
}

.press-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* --- NEW: Footer Section Styles --- */
footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 60px 0 20px 0;
}

footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer p,
footer li {
    color: #b0c4de;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ffffff;
}

footer .contact-info p {
    margin-bottom: 10px;
}

footer .contact-info i {
    color: #64b5f6;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #64b5f6;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-section {
        height: 70vh;
    }

    #about img,
    #global-presence img img {
        margin-top: 30px;
        height: 300px;
    }

    #global-presence {
        padding: 60px 0;
    }

    #global-presence .stat-item {
        text-align: center;
        flex-direction: column;
    }

    #global-presence .stat-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    footer {
        text-align: center;
    }

    footer .footer-column {
        margin-bottom: 30px;
    }
}

.product-card {
    background: #7d236a;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    height: 280px;
}

.product-card img {
    width: 220px;
    transition: transform 0.4s ease-in-out;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.product-card:hover img {
    transform: translateY(-10px) scale(1.05);
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: white;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.arrow-btn:hover {
    transform: scale(1.1);
}

.story-section {
    background-color: #003366;
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .story-section {
        padding: 30px 20px;
        text-align: center;
    }
}

.story-info {
    margin-top: 17px;
    line-height: 30px;
    text-align: justify;
}

/* --- Company Overview Section Styles --- */
.company-overview {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('https://images.pexels.com/photos/5668890/pexels-photo-5668890.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.info-box {
    background: #e6eef6;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 20px;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background: #d6e3f0;
}

.overview-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box,
.overview-card {
    animation: fadeUp 1s ease forwards;
}

@media (max-width: 768px) {
    .company-overview {
        padding: 40px 0;
    }
}

.about-overview {
    text-align: justify;
    line-height: 30px;
}

.core-section {
    background-color: #003366;
    color: white;
    padding: 80px 0;
}

.core-title {
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.core-box {
    padding: 30px;
    height: 100%;
}

/* ONLY SHOW BORDER ON LARGE SCREENS */
@media(min-width: 992px) {

    /* lg and above */
    .border-right-lg {
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }

    .border-bottom-lg {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
}

/* REMOVE BORDERS ON md & sm */
@media(max-width: 991px) {
    .border-right-lg,
    .border-bottom-lg {
        border: none !important;
    }
}

.milestones-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.milestone-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    min-height: 170px;
    text-align: left;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.slick-slide {
    margin: 0 12px;
}

@media(max-width: 768px) {
    .milestone-card {
        min-height: 137px;
        padding: 22px;
    }
}

.director-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}

.director-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
}

.director-title {
    color: #6c757d;
    font-size: 0.95rem;
}

.special-note-section {
    background: #f4eef7;
    padding: 50px 0;
}

.special-note-section h4 {
    color: #003366;
    font-weight: 700;
}

.special-note-section ul li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.healthcare-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    border-radius: 20px;
}

.healthcare-section-other {
    background: linear-gradient(135deg, #990B6E 0%, #af097d 100%);
    border-radius: 20px;
}

.healthcare-section-are {
    background: linear-gradient(135deg, #5225B5 0%, #5520c7 100%);
    border-radius: 20px;
}

.product-item-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
    color: #fff;
    backdrop-filter: blur(10px);
    min-height: -webkit-fill-available;
}

.product-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.product-icon {
    width: 100%;
    height: 170px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.main-title {
    color: #003366;
    font-weight: bold;
    font-size: 30px;
}

.subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.product-name {
    font-size: 1.3rem;
}

.table-custom th {
    background-color: #003d7c;
    color: #fff;
    text-align: center;
}

.table-custom td,
.table-custom th {
    vertical-align: middle;
    padding: 12px;
}

.table-hover tbody tr:hover {
    background-color: #f1f7ff;
    transition: 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-row {
    animation: fadeIn 0.6s ease-in-out forwards;
    opacity: 0;
}

/* Delay animation for each row */
.animate-row:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-row:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-row:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-row:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-row:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-row:nth-child(6) {
    animation-delay: 0.6s;
}

.animate-row:nth-child(7) {
    animation-delay: 0.7s;
}

.animate-row:nth-child(8) {
    animation-delay: 0.8s;
}

.animate-row:nth-child(9) {
    animation-delay: 0.9s;
}

.animate-row:nth-child(10) {
    animation-delay: 1.0s;
}

/* Sustainability Section */
.sustainability-section {
    padding: 0px;

    /* Header Section */
    .header-section {
        text-align: center;
        padding: 60px 0;
        background-color: white;
    }

    .header-section h1 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .header-section p {
        font-size: 1.1rem;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Environmental Section */
    .environmental-section {
        background: linear-gradient(135deg, #003366 0%, #3b82f6 100%);
        color: white;
        padding: 80px 10px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1370px;
        margin: 0 auto;
    }

    .card-esg {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-esg:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .card-esg h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #fff;
    }

    .card-esg p {
        font-size: 0.95rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .header-section h1 {
            font-size: 2rem;
        }

        .cards-container {
            grid-template-columns: 1fr;
        }

        .card-esg {
            padding: 25px;
        }
    }

    @media (max-width: 480px) {
        .header-section h1 {
            font-size: 1.6rem;
        }

        .card-esg {
            padding: 20px;
        }
    }
}

.box-info {
    text-align: justify;
}

.esg-section {
    background: #f8f9fa;
}

.esg-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #003366;
}

.esg-box {
    transition: all 0.4s ease;
}

.esg-box:hover {
    transform: translateY(-10px);
}

.esg-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.esg-subtitle {
    font-weight: bold;
    color: #1e3a5f;
}

.esg-text {
    text-align: justify;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .esg-image {
        margin-top: 20px;
    }
}

/* Section Background */
.sustainability-section {
    background: #ffffff;
}

/* Box Styling */
.sustainability-box {
    background: #98006e;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

/* Hover Animation */
.sustainability-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Text Styling */
.sustainability-box h3 {
    font-weight: 700;
}

/* Responsive Padding */
@media (max-width: 768px) {
    .sustainability-box {
        padding: 30px 20px;
    }
}

.policy-info {
    text-align: justify;
    line-height: 30px;
}

/* SECTION WRAPPER */
.csr-section {
    text-align: center;
}

/* TITLE */
.csr-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #003366;
}

/* CARD BOXES */
.csr-box {
    background: #e8f0f8;
    padding: 18px 20px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.csr-box:hover {
    background: #003366;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #003366;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .csr-box {
        margin-bottom: 15px;
    }

    .csr-section h2 {
        font-size: 1.6rem;
    }
}

/* Custom CSS */
.sustainability-section-title {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sustainability-section-content {
    font-size: 1rem;
    line-height: 30px;
    color: #777;
    text-align: justify;
}

.section-image img {
    max-width: 100%;
    border-radius: 8px;
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .sustainability-section-title {
        font-size: 1.5rem;
        margin-top: 30px;
    }
}

.machinery-section h2 {
    color: #0e3f78;
    font-weight: 700;
}

.machinery-section p {
    max-width: 90%;
    color: #777;
}

/* Card styling */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    height: 270px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    transition: 0.3s ease-in-out;
}

/* Overlay */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 90, 0.55);
    transition: 0.3s ease-in-out;
}

/* Darker hover effect */
.card:hover::after {
    background: rgba(0, 40, 90, 0.75);
}

/* Card text */
.card-body {
    position: absolute;
    bottom: 0;
    z-index: 2;
    color: white;
    font-weight: 500;
}

@media (max-width: 576px) {
    .card {
        height: 200px;
    }
}

.capability-title {
    font-size: 32px;
    font-weight: 700;
    color: #0e3f78;
}

.capability-desc {
    color: #777;
    margin-bottom: 25px;
    max-width: 90%;
}

.capability-card {
    background: #0e3f78;
    color: #ffffff;
    border-radius: 4px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.capability-card:hover {
    background: #0b2f5c;
    transform: translateY(-4px);
}

.capability-card i {
    font-size: 32px;
    margin-bottom: 10px;
}

.capability-image-wrapper img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    height: 500px;
}

@media (max-width: 576px) {
    .capability-card {
        padding: 25px 10px;
    }
}

/* Custom CSS */
.certifie-section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 37px;
    text-align: center;
    color: #003366;
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.certification-logo img {
    max-width: 100%;
    height: auto;
    width: 120px;
}

@media (max-width: 768px) {
    .certification-logo img {
        width: 100px;
    }
}

.life-section {
    background-color: #003366;
    padding: 60px 0;
}

.life-section img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.life-section img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 20px;
}

.career-section {
    background-color: #003366;
    padding: 60px 30px;
    color: #fff;
    border-radius: 10px;
}

.search-box input {
    height: 50px;
    border-radius: 5px;
}

.job-heding-title {
    font-size: 37px;
    margin-bottom: 10px;
}

.job-card {
    background-color: #003366;
    color: #fff;
    border: 1px solid #004080;
    padding: 25px;
    border-radius: 5px;
    transition: 0.3s ease;
    height: 100%;
}

.job-card:hover {
    background-color: #004080;
    transform: translateY(-5px);
}

.job-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.job-card p {
    margin-bottom: 10px;
}

.explore-btn {
    background-color: #fff;
    color: #003366;
    font-weight: 600;
    border-radius: 4px;
}

.explore-btn:hover {
    border: solid 1px white;
    color: #ffffff;
}

.contact-card {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

.contact-title {
    text-align: center;
    font-weight: 700;
    color: #003366;
    margin-bottom: 30px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    font-size: 15px;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.file-btn {
    background-color: #003366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.submit-btn {
    background-color: #003366;
    color: #fff;
    width: 150px;
    height: 45px;
    border-radius: 5px;
    border: none;
}

.submit-btn:hover,
.file-btn:hover {
    background-color: #004080;
}

.more-contact-title {
    text-align: center;
    font-weight: 700;
    color: #003366;
    font-size: 30px;
    margin-bottom: 30px;
}

.more-contact-card {
    background: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.more-contact-card h5 {
    font-weight: 700;
    color: #003366;
}

.more-contact-card p {
    margin: 5px 0;

    color: #333;
}

.direction-btn {
    background-color: #003366;
    color: #fff;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 14px;
    border: none;
}

.direction-btn:hover {
    background-color: #004080;
}

.social-icons i {
    font-size: 22px;
    background-color: #0b3c74;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icons i:hover {
    background-color: #08305c;
    transform: translateY(-3px);
}

/* The main button style */
.send-message-btn {
    background-color: #0d2b5e;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* The shine effect element */
.send-message-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.75s;
}

/* When hovering, trigger the shine animation */
.send-message-btn:hover:before {
    left: 100%;
}

/* Optional: Add a slight lift and shadow on hover */
.send-message-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(13, 43, 94, 0.3);
}

/* The main button style - White Variant */
.send-message-btn-white {
    background-color: #ffffff;
    color: #0d2b5e;
    border: 2px solid #0d2b5e;
    border-radius: 5px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* The shine effect element */
.send-message-btn-white:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 43, 94, 0.1), transparent);
    transition: left 0.75s;
}

.send-message-btn-white:hover:before {
    left: 100%;
}

.send-message-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(13, 43, 94, 0.2);
    background-color: #f8f9fa;
}

/* Icon styling */
.send-message-btn-white .icon {
    margin-right: 8px;
}