/* Language dropdown styles */
.nav .main-menu>li.lang-dropdown {
    margin-left: 15px;
    position: relative;
}

.nav .main-menu>li.lang-dropdown .lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-weight: bold;
}

.nav .main-menu>li.lang-dropdown .lang-selector i {
    display: inline-block;
    font-size: 16px;
    position: static;
    transition: transform 0.2s;
}

.nav .main-menu>li.lang-dropdown.active .lang-selector i {
    transform: rotate(180deg) !important;
}

.nav .main-menu>li.lang-dropdown .lang-menu {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 65px;
    padding: 5px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.nav .main-menu>li.lang-dropdown.active .lang-menu {
    display: block !important;
}

.nav .main-menu>li.lang-dropdown .lang-menu li {
    text-align: center;
    border-bottom: 1px solid #EFEFEF;
    margin: 0;
}

.nav .main-menu>li.lang-dropdown .lang-menu li:last-child {
    border-bottom: none;
}

.nav .main-menu>li.lang-dropdown .lang-menu li a {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    font-weight: bold;
}


.nav .main-menu>li.lang-dropdown .lang-menu li a:hover {
    color: #333;
    padding-left: 25px;
}

@media (max-width: 992px) {
    .nav .main-menu>li.lang-dropdown {
        margin-left: 0;
    }

    .nav .main-menu>li.lang-dropdown .lang-selector {
        width: 100%;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .nav .main-menu>li.lang-dropdown .lang-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid #EFEFEF;
        border-radius: 0;
        border: none;
        width: 100% !important;
    }
}

/* Fix horizontal scrolling */
.nav {
    overflow-x: visible;
}

.main-bar .container {
    overflow: visible;
}

/* Synced Slider Styles */
.intro-slider {
    position: relative;
}

.slider-for .slide {
    position: relative;
    height: 600px;
}

.slider-for .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-for .content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.slider-nav {
    margin-top: -80px;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

.slider-nav .slide-nav {
    padding: 5px 10px;
}

.slider-nav .slide-nav-bg {
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider-nav .slick-current .slide-nav-bg {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10000;
}

/* Slider arrows */
.slider-nav .slick-prev,
.slider-nav .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 0;
    transition: .2s ease-in-out;
}

.slider-nav .slick-prev {
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-nav .slick-next {
    right: 0;
    display: flex;
        justify-content: center;
        align-items: center;
}

.slider-nav .slick-prev:before,
.slider-nav .slick-next:before {
    font-family: 'feather' !important;
    color: #333;
    font-size: 20px;
    line-height: 1;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-nav .slick-prev:before {
    content: "\e910";
    color: #1C9ABF;
}

.slider-nav .slick-next:before {
    content: "\e912";
    color: #1C9ABF;
}

.slider-nav .slick-prev:hover,
.slider-nav .slick-next:hover {
    background: #1C9ABF;
}

.slider-nav .slick-prev:hover:before,
.slider-nav .slick-next:hover:before {
    color: #fff;
}

/* Add this to ensure slides don't get squished */
.slider-nav .slick-list {
    margin: 0 -10px;
}

@media (max-width: 768px) {
    .slider-for .slide {
        height: auto; 
    }
    
    .slider-for .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    .slider-for .content {
        padding-top: 60px;
    }
    
    .slider-nav {
        margin-top: -40px;
        padding: 0 40px;
    }
    
    .slider-nav .slide-nav-bg {
        height: 60px;
    }

    /* Optional: Adjust content positioning for better mobile view */
    .slider-for .content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .slider-for .content h6 {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Main Menu Dropdown Styles */
.nav .main-menu > li.has-dropdown {
    position: relative;
}

.nav .main-menu > li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav .main-menu > li.has-dropdown > a i {
    font-size: 16px;
    transition: transform 0.2s;
}

/* Adjust dropdown position and add transition */


/* Show dropdown on hover */
@media (min-width: 992px) {
    .nav .main-menu>li.has-dropdown .dropdown-menu {
            display: block;
            position: absolute;
            top: calc(100% - 5px);
            left: 0;
            min-width: 220px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            padding: 10px 0;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease-in-out;
        }
    .nav .main-menu>li.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    
        .nav .main-menu>li.has-dropdown:hover>a i {
            transform: rotate(180deg);
        }

                .nav .main-menu>li.has-dropdown .dropdown-menu li a:hover {
                    background: #f5f5f5;
                    color: #1C9ABF;
                    padding-left: 30px;
                }
}

.nav .main-menu > li.has-dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav .main-menu > li.has-dropdown .dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}


/* Mobile Menu Adjustments */
@media (max-width: 992px) {
    .nav .main-menu > li.has-dropdown {
        overflow: hidden;
    }

    .nav .main-menu > li.has-dropdown > a {
        padding-right: 50px;
        position: relative;
    }

    .nav .main-menu > li.has-dropdown > a i {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .nav .main-menu > li.has-dropdown .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        padding: 0;
        margin: 0;
        background: #f5f5f5;
    }

    /* Use :active for immediate response on first touch */
    /* .nav .main-menu > li.has-dropdown:active .dropdown-menu,
    .nav .main-menu > li.has-dropdown:hover .dropdown-menu {
        max-height: 500px;
        pointer-events: auto;
    } */

    /* .nav .main-menu > li.has-dropdown:active > a i,
    .nav .main-menu > li.has-dropdown:hover > a i {
        transform: translateY(-50%) rotate(180deg);
    } */

    .nav .main-menu > li.has-dropdown .dropdown-menu li a {
        padding: 12px 30px;
        background: rgba(0,0,0,0.03);
    }

    .nav .main-menu > li.has-dropdown .dropdown-menu li:not(:last-child) a {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

/* Project Grid Styles - Updated */
.projects-grid {
    padding: 60px 0;
}

.project-item-wrapper {
    margin-bottom: 30px; /* Add consistent spacing between rows */
}

.project-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.project-location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    color: #666;
}

.project-location i {
    color: #1C9ABF;
    font-size: 18px;
    margin-top: 3px;
}

.project-location span {
    font-size: 15px;
    line-height: 1.5;
}

.project-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #1C9ABF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link span {
    margin-right: 8px;
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-item:hover .project-link {
    color: #333;
}

.project-item:hover .project-link i {
    transform: translateX(5px);
}

/* Load More Button Styles - Updated */
.load-more-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.btn-load-more {
    background: #1C9ABF;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-load-more:hover {
    background: #167A97;
    transform: translateY(-2px);
}

.btn-load-more.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Animation Styles */
.project-item-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.project-item-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 992px) {
    .project-item-wrapper {
        flex: 0 0 50%; /* Make items take up 50% of container */
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .project-item-wrapper {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .project-item-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .projects-grid {
        padding: 40px 0;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 18px;
    }
}

.projects-intro::after {
    content: none;
}
.projects-intro {
    margin-bottom: 0;
    /* height: 150px; */
    margin-top: 120px;
}
.projects-intro h1 {
    color: #5B5B5B;
}

.projects-grid {
    padding-inline: 80px;
}

@media (max-width: 768px) {
    .projects-grid {
        padding-inline: 20px;
    }
}

/* Chairman Speech Page Styles */
.page-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 60px;
    margin-top: 100px;
}

.page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.chairman-speech {
    padding: 60px 0;
}

.chairman-image {
    position: relative;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
.chairman-image {
    padding-top: 30px;
}
}

.chairman-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chairman-info {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    text-align: center;
}

.chairman-info h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.chairman-info p {
    margin: 5px 0 0;
    color: #666;
}

.chairman-content {
    padding: 20px;
}

.chairman-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.chairman-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.chairman-signature {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.chairman-signature h4 {
    margin: 5px 0;
    font-size: 22px;
    color: #333;
}

.chairman-signature p {
    margin: 0;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .chairman-image {
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 200px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .chairman-content {
        padding: 0;
    }
    
    .chairman-info {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/* Add this general style for all main content sections */
.page-content,
.intro-page,
.page-hero {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .page-content
     {
        margin-top: 30px;
    }
    .chairman_speech_banner img {
        object-position: left;
    }
    
}
.chairman_speech_banner img {
    object-position: 0 ;
}
/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 100px;
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Info Styles */
.contact-info {
    padding: 40px;
    background: #1C9ABF;
    color: #fff;
}

.contact-info h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-divider {
    width: 50px;
    height: 3px;
    background: #fff;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
}

.info-content h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

/* Contact Form Styles */
.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form-wrapper .info-divider {
    background: #1C9ABF;
}

.modern-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.modern-form label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-bottom-color: #1C9ABF;
}

.modern-form input:focus ~ label,
.modern-form textarea:focus ~ label,
.modern-form input:valid ~ label,
.modern-form textarea:valid ~ label {
    top: -12px;
    font-size: 13px;
    color: #1C9ABF;
}

.modern-form textarea {
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: #1C9ABF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn span {
    margin-right: 10px;
}

.submit-btn:hover {
    background: #167A97;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: #f8f9fa;
}

.map-wrapper {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 200px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

.contact-info_new {
    margin-bottom: 30px;
}

/* HSE Implementation Page Styles */
.hse-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 100px;
}

.hse-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #eee;
}

.hero-content .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.company-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.company-tag img {
    height: 24px;
    width: auto;
}

.company-tag span {
    font-size: 14px;
    font-weight: 600;
}

.hse-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

.hse-points p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #666;
}

.next-page {
    margin-top: 60px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.next-link {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.next-link:hover {
    color: #333;
}

.next-link span {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hse-hero {
        height: 400px;
    }

    .hero-content .hero-title {
        font-size: 36px;
    }

    .hse-content {
        padding: 50px 0;
    }

    .lead-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hse-hero {
        height: 300px;
    }

    .hero-content .hero-title {
        font-size: 28px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }
}

/* Policy Page Specific Styles */
.policy-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 120px;
}

.policy-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.policy-hero__subtitle {
    font-size: 18px;
    color: #eee;
    margin-bottom: 15px;
    font-weight: 500;
}

.policy-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* Policy Content Styles */
.policy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-content__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.policy-intro {
    text-align: center;
    margin-bottom: 60px;
}

.policy-intro__text {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Policy Grid Cards */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.policy-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
}

.policy-card__icon {
    font-size: 40px;
    color: #1C9ABF;
    margin-bottom: 20px;
}

.policy-card__title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.policy-card__text {
    color: #666;
    line-height: 1.6;
}

/* Policy Statement Section */
.policy-statement {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 60px;
}

.policy-statement__title {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.policy-statement__content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-statement__content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-statement__content p:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .policy-hero {
        height: 300px;
    }

    .policy-hero__title {
        font-size: 36px;
    }

    .policy-intro__text {
        font-size: 20px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-content {
        padding: 40px 0;
    }
}

/* Bank Details Page Styles - Updated */
.bank-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.bank-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.bank-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bank-hero__subtitle {
    font-size: 18px;
    color: #eee;
    margin-bottom: 15px;
    font-weight: 500;
}

.bank-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.bank-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.bank-content__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.bank-details {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bank-details__item {
    padding-right: 20px;
}

.bank-details__item--full {
    grid-column: 1 / -1;
}

.bank-details__item h3 {
    font-size: 14px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-details__item p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
    word-break: break-word;
}

.bank-details__separator {
    grid-column: 1 / -1;
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bank-content {
        padding: 60px 0;
    }

    .bank-details {
        padding: 30px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .bank-hero {
        height: 200px;
        margin-top: 80px;
    }

    .bank-hero__title {
        font-size: 28px;
    }

    .bank-content {
        padding: 40px 20px;
    }

    .bank-details {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bank-details__item {
        padding-right: 0;
    }

    .bank-details__item h3 {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .bank-details__item p {
        font-size: 15px;
    }

    .bank-details__separator {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .bank-hero {
        height: 180px;
    }

    .bank-hero__title {
        font-size: 24px;
    }

    .bank-content {
        padding: 30px 15px;
    }

    .bank-details {
        padding: 15px;
        gap: 12px;
    }
}

/* Leaders Page Styles - Updated */
.leaders-title {
    padding-top: 130px;
    padding-bottom: 30px;
    background: #fff;
}



.leaders-title__content {
    text-align: center;
}

.leaders-title__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaders-title__heading {
    font-size: 42px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
}

.leaders-content {
    padding: 50px 0 80px;
    background: #fff;
}

/* Leader Card Styles */
.leader-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0;
}

.leader-card__image {
    position: relative;
    height: 100%;
}

@media (min-width: 992px) {
    .leader-card__image {
        padding-top: 30px;
    }
}

.leader-card__image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border-radius: 15px;
}

.leader-card__content {
    padding: 10px 40px 40px 40px;
}

.leader-card__name {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.leader-card__position {
    font-size: 18px;
    color: #1C9ABF;
    margin-bottom: 30px;
    font-weight: 500;
}

.leader-card__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item h3 {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.detail-item p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.detail-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.detail-item ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1C9ABF;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .leader-card {
        grid-template-columns: 1fr;
    }
/* 
    .leader-card__image {
        height: 400px;
    } */
}


@media (max-width: 768px) {
    .leaders-title {
        padding-top: 30px;
    }

    .leaders-title__heading {
        font-size: 36px;
    }

    .leaders-content {
        padding: 40px 0;
    }

    .leader-card__content {
        padding: 30px;
    }

    .leader-card__name {
        font-size: 24px;
    }

    .leader-card__position {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* .leader-card__image {
        height: 300px;
    } */
}

/* Financial Report Page Styles */
.financial-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.financial-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.financial-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.financial-hero__title {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.financial-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.report-section {
    margin-bottom: 50px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-year {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.report-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.report-card__content {
    padding: 25px;
    text-align: center;
}

.report-card__icon {
    display: block;
    font-size: 36px;
    color: #dc3545;
    margin-bottom: 15px;
}

.report-card__title {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .financial-hero {
        height: 200px;
        margin-top: 80px;
    }

    .financial-hero__title {
        font-size: 32px;
    }

    .financial-content {
        padding: 40px 0;
    }

    .report-year {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .report-grid {
        gap: 15px;
    }

    .report-card__content {
        padding: 20px;
    }
}

/* Services List Page Styles - Updated */
.services-hero {
    position: relative;
    height: 250px;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.services-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.services-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.services-hero__title {
    font-size: 36px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.services-content {
    padding: 50px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card__icon {
    font-size: 32px;
    color: #1C9ABF;
    margin-bottom: 15px;
}

.service-card__title {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 200px;
        margin-top: 60px;
    }

    .services-hero__title {
        font-size: 28px;
        padding: 0 20px;
    }

    .services-content {
        padding: 30px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card__icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .service-card__title {
        font-size: 16px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .services-hero__title {
        font-size: 24px;
    }

    .service-card {
        padding: 15px;
    }
}

/* Service Detail Page Styles */
.service-detail-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.service-detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.service-detail-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item {
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    opacity: 0.5;
}

.service-detail-hero__title {
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.service-detail-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail__main {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.service-detail__image {
    height: 400px;
    overflow: hidden;
}

.service-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__text {
    padding: 40px;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1C9ABF;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item:hover {
    opacity: 0.8;
}

.news-item__image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item__content {
    flex: 1;
}

.news-item__date {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.news-item__title {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 768px) {
    .services-hero,
    .service-detail-hero {
        height: 250px;
        margin-top: 80px;
    }

    .services-hero__title,
    .service-detail-hero__title {
        font-size: 32px;
    }

    .services-content,
    .service-detail-content {
        padding: 40px 0;
    }

    .service-card {
        padding: 30px;
    }

    .service-detail__image {
        height: 300px;
    }

    .service-detail__text {
        padding: 30px;
    }
}

.sorting-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sorting-container label {
    margin-right: 10px;
    font-weight: bold;
    color: #333;
}

#sortOrder {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f8f9fa;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

#sortOrder:hover {
    border-color: #1C9ABF;
}

#sortOrder:focus {
    outline: none;
    border-color: #1C9ABF;
    box-shadow: 0 0 5px rgba(28, 154, 191, 0.5);
}

.work-description .about-description {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.touched {
    display: block !important;
    visibility: visible !important;
}

.rotated {
    transform: translateY(-50%) rotate(180deg) !important;
}

/* Certificate Styles */
.certificates-container {
    padding: 60px 0;
}

.certificate-card {
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-card .card-image {
    position: relative;
    width: 100%;
    padding-bottom: 141.4%; /* Aspect ratio for A4 format */
    overflow: hidden;
}

.certificate-card .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .card-image img {
    transform: scale(1.05);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 154, 191, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay i {
    color: #fff;
    font-size: 24px;
}

/* Magnific Popup Customization */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .certificates-container {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .certificates-container {
        padding: 30px 0;
    }
    
    .certificate-card {
        margin-bottom: 20px;
    }
}