/* Custom Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --dark-bg: #212529;
    --light-bg: #f8f9fa;
    --shadow-base: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition-speed: 0.3s;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: #333;
    font-weight: 400;

}

.shadow-lg-custom {
    box-shadow: var(--shadow-base);
    transition: box-shadow var(--transition-speed) ease;
}

.shadow-lg-custom:hover {
    box-shadow: var(--shadow-hover);
}

/* Button Styles */
.btn-shadow {
    box-shadow: var(--shadow-base);
    transition: all var(--transition-speed) ease;
}

.btn-shadow:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    background-color: var(--light-bg);
}

.navbar-brand img {
    transition: transform var(--transition-speed) ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-speed) ease;
}

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

/* Slider Section */
.slider {
    position: relative;
    overflow: hidden;
}

.slider img {
    object-fit: cover;
    width: 100%;
}

.slider .lead {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

/* Who We Are & CEO Message */
.section-content {
    padding: 4rem 0;
}

.animate__fadeInLeft, .animate__fadeInRight {
    opacity: 0;
    animation-delay: 0.2s;
}

.section-content img {
    border-radius: 8px;
    object-fit: cover;
}

/* Our Sectors */
.our-sectors .card {
    background: var(--dark-bg);
    border: none;
    overflow: hidden;
    border-radius: 10px;
}

.our-sectors .card-img-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    transition: background var(--transition-speed) ease;
}

.our-sectors .card:hover .card-img-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
}

.our-sectors .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Our Expedition */
.our-expedition img {
    position: relative;
    z-index: 1;
}

.our-expedition .bg-dark {
    border-radius: 8px;
    padding: 1.5rem;
    transition: opacity var(--transition-speed) ease;
}

.our-expedition:hover .bg-dark {
    opacity: 0.9;
}

/* News & Announcements */
.news-announcements .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.news-announcements .card-img-top {
    transition: transform var(--transition-speed) ease;
}

.news-announcements .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Financial Reports */
.financial-reports img {
    border-radius: 10px;
}

/* Join Our Family */
.join-our-family {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    padding: 4rem 0;
}

.join-our-family .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.join-our-family .btn-light:hover {
    background-color: #f8f9fa;
    color: darken(var(--primary-color), 10%);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: #fff;
}

footer a {
    color: #ccc;
    transition: color var(--transition-speed) ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    .section-content .col-md-6 {
        margin-bottom: 2rem;
    }
    .our-sectors .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news-announcements .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.hero-banner {
    position: relative;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-banner .banner-text h1 {
    font-size: 2.5rem;
}

.hero-banner .banner-text p {
    font-size: 1.25rem;
}


/* Who We Are Section */
.who-we-are-section {
    background: url(../img/map.png) no-repeat left center;
    background-size: cover;
    margin: 100px auto 80px auto !important;
}

.who-we-are-section .rounded {
    border-radius: 15px;
}

.who-we-are-section .shadow-lg {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.who-we-are-section img {
    max-width: 100%;
    height: auto;
}
/* Override Bootstrap btn-primary */
.btn-primary {
    background-color: #1E3A8A !important; /* Dark blue color matching the design */
    color: #FFFFFF !important; /* White text */
    border: none !important;
    padding: 10px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-primary:hover {
    background-color: #152e6b !important; /* Slightly darker on hover */
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.btn-primary i {
    margin-left: 8px !important;
}

/* Success Timeline Section */
.success-timeline {
    position: relative;
}

.success-timeline .row {
    position: relative;
    z-index: 1;
}

.success-timeline .timeline-item {
    position: relative;
    padding: 20px 0px;
    background: #fff;
    /*border-radius: 8px;*/
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

.success-timeline .timeline-item::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -2px;
    width: 20px;
    height: 20px;
    background: url('../img/radio.png') no-repeat center;
    background-size: contain;
}

/*.success-timeline::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 0;
}*/
.top-border {
    border-top: 3px solid #000;
}

/* CEO Message Section */
.ceo-message-section {
    position: relative;
}
@media (min-width: 769px) {
    .ceo-message-section .col-md-6:first-child {
        position: relative;
        padding: 20px 0px 105px;;
    }
}

.ceo-message-section .col-md-6:first-child::before {
    content: "";
    position: absolute;
  /* top: 10px; */
    right: 8px;
    width: 370px;
    height: 228px;
    background: url(../img/dots-top.png) no-repeat center;
    background-size: contain;
    z-index: -1;
}

.ceo-message-section .col-md-6:first-child::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 60px;
    width: 330px;
    height: 228px;
    background: url(../img/dots-bottom.png) no-repeat center;
    background-size: contain;
    z-index: -1;
}

.ceo-message-section .rounded {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceo-message-section h2 {
    border-bottom: 2px solid #1E3A8A;
    display: inline-block;
    padding-bottom: 5px;
}

.ceo-message-section .text-muted {
    font-style: italic;
    margin-top: 15px;
}
/* Our Sectors Section */
.sectors-section {
    position: relative;
}

.sectors-section .col-md-3:first-child {
    margin-top: 0;
}

.sectors-section .col-md-3:nth-child(2) {
    margin-top: 40px;
}

.sectors-section .col-md-3:nth-child(3) {
    margin-top: 80px;
}

.sectors-section .col-md-3:nth-child(4) {
    margin-top: 120px;
}

.sectors-section .sector-box {
    background-color: #1a1a2e;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-left: 0;
    border-radius: 12px !important;
    padding-bottom: 43px;
}
.section-heading {
    font-size: 36px;
    font-weight: 600;
}

.sectors-section .sector-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sectors-section .sector-content {
    padding: 15px;
    z-index: 10 !important;
    position: relative;
}

.sectors-section .sector-box::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: #111111cc;
    background-size: contain;
    z-index: 0;
}
/*

.sectors-section::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    z-index: 0;
}
*/

/* Our Expedition Section */
.expedition-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px; /* Space for pagination */
}

.expedition-slider .swiper {
    width: 100%;
    height: auto;
}

.expedition-slider .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 30px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 1;
    transform: scale(0.6) !important;
}

.expedition-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.expedition-slider .swiper-slide-active {
    width: 100%;
    transform: scale(1) !important;
    z-index: 100;
    opacity: 1;
}

.expedition-slider .swiper-slide-next,
.expedition-slider .swiper-slide-prev {
    transform: scale(0.8) !important;
    z-index: 2 !important;
}

.expedition-slider .swiper-slide-next + .expedition-slider .swiper-slide, .expedition-slider .swiper-slide-prev-2 {
    transform: scale(0.6) !important;
    z-index: 0;
}

/* Target the second previous slide (prev-2) */
.expedition-slider .swiper-slide-prev-2 {
    margin-right: 10px; /* Adjust spacing */
}

.expedition-slider .swiper-pagination {
    text-align: center;
}

.expedition-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
}

.expedition-slider .swiper-pagination-bullet-active {
    background: #1E3A8A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Who We Are Section */
    .who-we-are-section {
        background: url(../img/map.png) no-repeat left center;
        background-size: cover;
        margin: 40px auto 40px auto !important;
    }
    .expedition-slider .swiper-slide {
        width: 100% !important;
    }
    .expedition-slider .swiper-slide-next,
    .expedition-slider .swiper-slide-prev,
    .expedition-slider .swiper-slide-next + .expedition-slider .swiper-slide,
    .expedition-slider .swiper-slide-prev-2 {
        display: none;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner .banner-text h1 {
        font-size: 1.5rem;
    }
    .hero-banner .banner-text p {
        font-size: 1rem;
    }
    .hero-banner img {
        height: 350px;
    }
    .who-we-are-section .row {
        flex-direction: column-reverse;
    }
    .who-we-are-section .col-md-6 {
        margin-bottom: 20px;
    }
    .success-timeline .col-md-3 {
        margin-bottom: 20px;
    }
    .success-timeline::after {
        display: none;
    }.ceo-message-section .row {
         flex-direction: column;
    }
    .ceo-message-section .col-md-6 {
        margin-bottom: 20px;
    }
    .ceo-message-section .col-md-6:first-child::before,
    .ceo-message-section .col-md-6:first-child::after {
        display: none;
    }

    .sectors-section .col-md-3 {
        margin-top: 0 !important;
    }
    .sectors-section .row {
        flex-direction: column;
    }
    .sectors-section .sector-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .success-timeline .col-md-3 {
        border-top: 3px solid #000;
    }
    .top-border {
        border-top: 0;
    }
}
.news-announcement-section {
    background: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.carousel-nav .carousel-control-prev,
.carousel-nav .carousel-control-next {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    margin-left: 10px;
    opacity: 1;
}

.carousel-nav .carousel-control-prev-icon,
.carousel-nav .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0px 0px 32px 0px #00000012;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-title {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.news-excerpt {
    font-size: 14px;
    color: #3E3232BF;
    font-weight: 400;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 12px;
    color: #3E3232BF;
    background: #F5F5F5;
    padding: 12px 16px;
    border-radius: 12px;
}

.news-meta .author {
    font-weight: 600;
    margin-right: 10px;
    color: #3E3232;
}

.financial-reports heading {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.44px;
    color: #333333;
}

.cta-section {
    background: #162340 url(../img/cta-light.png);
    background-size: 50%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.rounded-btn {
    border-radius: 999px;
    color: #4267FF;
    padding: 16px 80px;
}

.contact-info {
    font-size: 14px;
}
.footer {
    background: #162340;
}

.financial-institution {
    background: url(../img/financial-institution.png) no-repeat center bottom/cover;
    padding: 10px;
}

.footer .nav-pills .nav-link {
    color: #E7E7E7;
    font-size: 14px;
    padding: 10px;
}

.footer .nav-pills .nav-link.active {
    color: #0a53be;
    font-size: 14px;
    padding: 10px;
    background-color: #fff;
}
.nav-item {
    padding: 0 12px;
}
.nav-link {

    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}
