/********** Template CSS **********/
:root {
    --primary: #035ba8;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #fad9ddff;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}





/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-outline-primary {
    color: var(--primary);
    background-color: #FFFFFF;
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* ===============================
   HEADER + NAVBAR
=================================*/

.header-wrapper {
    width: 100%;
}

.top-bar-custom {
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    border-bottom: 1px solid rgb(0 0 0 / 17%);
    /* background: #0000000e; */
}

.top-left small {
    color: #555;
    margin-right: 20px;
}

.top-left i {
    color: var(--primary);
    margin-right: 6px;

}

.top-right img {
    height: 40px;
}

.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 70px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.nav-menu-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background: #fff;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Sticky state applied by JS */
.main-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 12px #035ba83e;
}

.navbar-placeholder {
    display: none;
    height: 80px;
}


.brand-logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================
   ✅ HAMBURGER BUTTON
============================ */
.menu-toggle {
    display: none;
    background: none;
    font-size: 28px;
    border: none;
    cursor: pointer;
    color: #000;
}

/* ============================
   ✅ MOBILE MENU
============================ */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;

        /* ✅ Smooth hide */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;

        transition: all 0.4s ease;
        z-index: 1000;
        border-top: 1px solid #eee;
    }

    /* ✅ ACTIVE STATE (JS toggles this) */
    .nav-links.active {
        max-height: 450px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}


/* ===============================
   HERO / CAROUSEL
=================================*/

.hero-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-carousel {
    position: relative;
    height: 550px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    opacity: 0.8 #000;
}

.hero-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.6s ease;
}

.hero-slide.active .hero-caption {
    transform: translateX(0);
    opacity: 1;
}


.hero-content {
    max-width: 800px;
}

.welcome-badge {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 6px 16px;
    color: #000;
    background: #ffffff;
    font-size: 14px;
    margin-bottom: 20px;
    margin-left: 33px;
}

.hero-content h1 {
    font-size: 25px;
    margin-bottom: 25px;
    color: #ffffff;
    margin-left: 33px;
    width: 80%;
}

.hero-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 6px;
    margin-left: 33px;
}

.hero-btn:hover {
    background: #ffffffff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Controls */

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #035ba8;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 22px;
}

.hero-prev {
    left: 0px;
    border-end-end-radius: 20px;
    border-start-end-radius: 20px;
}

.hero-next {
    right: 0px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
}




/*** About ***/

.about-section {
    padding: 20px 0;
    background: #ffffff;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    /* ✅ TOP alignment */
}

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

.about-content {
    padding-top: 10px;
}

.about-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    padding: 6px 18px;
    border-radius: 5px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000ff;
    font-family: 'Jost', sans-serif;
}

.about-text {
    font-size: 16px;
    line-height: 1.5;
    color: #000000ff;
    margin-bottom: 10px;
    text-align: justify;
}

.about-btn {
    display: inline-block;
    background: #035ba8;
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #ffffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
}

/* ✅ Tabs Section */

.about-tabs-box {
    margin-top: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
}

.about-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.about-tab {
    background: none;
    border: none;
    font-weight: 600;
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
    font-size: 15px;
}

.about-tab.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #035ba8;
    bottom: 0;
    left: 0;
}

.about-tab-content {
    display: none;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-tab-content.active {
    display: block;
}

/* ✅ Responsive */

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 30px;
    }
}


/*** Service section ***/
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    padding: 6px 18px;
    border-radius: 5px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.services-header h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000ff;
    font-family: 'Jost', sans-serif;
}

/* MAIN LAYOUT */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* LEFT TABS */
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-tab {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s ease;
}

.service-tab:hover {
    background: #035ba8;
    color: #fff;
    border-color: #035ba8;
}

.service-tab.active {
    background: #035ba8;
    color: #fff;
    border-color: #035ba8;
}

.services-content {
    border-radius: 0px;
    padding: 0px;
}

.service-pane {
    display: none;
}

.service-pane.active {
    display: block;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-image {
    width: 100%;
    height: 350px;
    border-radius: 0px;
    overflow: hidden;
}

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

.service-text {
    margin-top: -20px;
}

/* TEXT CONTENT */
.service-text h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #000;
}

.service-text p {
    margin-bottom: 18px;
    color: #000000ff;
    line-height: 1.6;
    text-align: justify;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-text ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}

.service-text ul li::before {
    content: "✔";
    color: #035ba8;
    position: absolute;
    left: 0;
}

.service-btn {
    display: inline-block;
    background: #035ba8;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    background: #ffffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
}

/* =========================================
   ✅ LARGE DEVICES (Very large desktops)
   1400px and up
========================================= */
@media (min-width: 1400px) {

    .hero-carousel,
    .hero-slide img {
        height: 650px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .services-header h1,
    .about-title {
        font-size: 44px;
    }
}


/* =========================================
   ✅ DESKTOP / LAPTOP (1200px – 1399px)
========================================= */
@media (max-width: 1399px) {

    .hero-content h1 {
        font-size: 24px;
    }

    .services-layout {
        grid-template-columns: 1fr 2fr;
    }
}


/* =========================================
   ✅ TABLETS (992px – 1199px)
========================================= */
@media (max-width: 1199px) {

    .top-bar-custom,
    .main-navbar {
        padding: 0 30px;
    }

    .nav-links {
        gap: 0px;
    }

    .hero-caption {
        padding-left: 40px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .services-layout {
        grid-template-columns: 1fr 1.5fr;
    }

    .service-tab {
        padding: 28px;
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 300px;
    }
}


/* =========================================
   ✅ SMALL TABLETS & BIG PHONES (768px – 991px)
========================================= */
@media (max-width: 991px) {

    /* ✅ Navbar */
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        display: none;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    /* ✅ Hero */
    .hero-carousel,
    .hero-slide img {
        height: 450px;
    }

    .hero-caption {
        padding-left: 30px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-btn {
        padding: 12px 32px;
    }

    /* ✅ About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 32px;
    }

    /* ✅ Services */
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-tab {
        width: 48%;
        padding: 20px;
        font-size: 15px;
    }
}


/* =========================================
   ✅ MOBILE PHONES (max-width: 767px)
========================================= */
@media (max-width: 767px) {

    /* ✅ Top Bar */
    .top-bar-custom {
        flex-direction: row;
        height: auto;
        padding: 15px;
        text-align: left;
        display: none;
    }

    .top-left small {
        display: block;
        margin-bottom: 6px;
    }

    /* ✅ Navbar */
    .main-navbar {
        padding: 0 20px;
        height: 70px;
    }

    .brand-logo img {
        height: 50px;
    }

    /* ✅ Hero */
    .hero-carousel,
    .hero-slide img {
        height: 360px;
    }

    .hero-caption {
        padding-left: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 13px;
        margin-left: 0;
        width: 245px;
    }

    .welcome-badge,
    .hero-btn {
        margin-left: 0;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        display: none;
    }

    /* ✅ About */
    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 15px;
        text-align: justify;
    }

    .about-tabs {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    /* ✅ Services */
    .services-header h1 {
        font-size: 28px;
    }

    .services-tabs {
        flex-direction: column;
    }

    .service-tab {
        width: 100%;
        padding: 18px;
        font-size: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 240px;
    }

    .service-text h3 {
        font-size: 18px;
    }

    .service-text p {
        font-size: 14px;
    }
}

/* =========================================
   ✅ EXTRA SMALL DEVICES (max-width: 400px)
========================================= */
@media (max-width: 400px) {

    /* ✅ Hero Banner */
    .hero-carousel,
    .hero-slide img {
        height: 280px;
        /* ✅ More reduced banner */
    }

    .hero-content h1 {
        font-size: 11px;
        width: 100%;
        line-height: 1.2;
        background: rgba(0, 0, 0, 0.12);
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .welcome-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    /* ✅ About */
    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
        text-align: justify;
    }

    /* ✅ Services */
    .services-header h1 {
        font-size: 24px;
    }

    .service-tab {
        font-size: 14px;
        padding: 14px;
    }

    .service-image {
        height: 200px;
    }

    .service-text p {
        font-size: 13px;
    }
}


@media only screen and (max-width: 350px) {
    .about-tabs {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .about-tab {
        font-size: 12px;
        padding-bottom: 8px;
    }
}


/*** Project ***/
.industries-item,
.industries-item .industries-img {
    position: relative;
}

.industries-item .industries-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.industries-item:hover .industries-img a {
    opacity: 1;
}

.industries-item .industries-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.industries-item:hover .industries-title {
    background: var(--primary);
    border-color: var(--primary);
}

.industries-item .industries-title h4 {
    transition: .5s;
}

.industries-item:hover .industries-title h4 {
    color: #FFFFFF;
}

.industries-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.industries-carousel .owl-nav .owl-prev,
.industries-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #035ba841;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.industries-carousel .owl-nav .owl-prev:hover,
.industries-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/** Industries Section **/
.industries-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.industries-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.industries-header {
    text-align: center;
    margin-bottom: 50px;
}

.industries-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    padding: 6px 18px;
    border-radius: 5px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

@media only screen and (width: 1024px) {
    .industries-item .industries-title {
        top: 2rem;
        right: 1rem;
        bottom: 0;
        left: 1rem;
    }
}



/*** News & Events ***/
.news-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.news-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    padding: 6px 18px;
    border-radius: 5px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}

.news-badge {
    color: #035ba8;
    font-weight: 600;
}

.news-header h1 {
    font-size: 36px;
    font-weight: 700;
}

/* Slider */
.news-slider-wrapper {
    overflow: hidden;
    max-width: 1114px;
    /* ✅ 3 cards × 350px + gaps */
    margin: 30px auto 0 auto;
}

.news-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.news-card {
    min-width: 350px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.news-card:hover {
    box-shadow: 0 15px 30px #035ba83e;
    transition: transform 0.4s ease;
}

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

.news-content {
    padding: 25px;
}

.news-date {
    color: #035ba8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.news-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

.read-more {
    background: #035ba8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.read-more:hover {
    background: #ffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
    transition: 0.3s;
}

/* ✅ Bottom Center Arrows */
.slider-controls {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 25px;
    display: none;
}

@media (max-width:1113px) {
    .slider-controls {
        display: flex !important;
    }
}

.slider-btn {
    background: #035ba841;
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-btn:hover {
    background: #035ba8;
    transform: scale(1.0);
}

/* Responsive */
@media (max-width: 900px) {
    .news-card {
        min-width: 385px;
    }
}

@media (max-width: 768px) {
    .news-card {
        min-width: 360px;
    }
}

@media (max-width: 576px) {
    .news-card {
        min-width: 360px;
    }
}


/** Contact Section **/

.contact-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #ffffff;
}

.contact-box {
    border: 1px solid #ddd;
    width: 300px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 6px;
    background: #fff;
    transition: 0.3s ease;
}

.contact-box:hover {
    box-shadow: 0 8px 20px #035ba83e;
    transform: translateY(-5px);
}

.icon-circle {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px auto;
    background: #035ba8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #fff;
    font-size: 22px;
}

.contact-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.captcha-box {
    width: 120px;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 1rem .75rem;
}

.captcha-box img {
    max-width: 120px;
    height: auto;
}

.captcha-refresh {
    width: 46px;
}


/*==================== About Page CSS ====================*/

.page-header {
    background: url("../../frontend/img/breacrumb.png") center center / cover no-repeat;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.page-header-overlay {
    width: 100%;
    padding: 80px 0;
}

.page-header h1 {
    color: #fff;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ddd;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

@media (max-width: 576px) {
    .page-header {
        min-height: 220px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header-overlay {
        padding: 50px 0;
    }
}


.csr-section {
    padding: 80px 0 0;
    background: #fff;
}

.csr-section .container {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

.csr-block {
    text-align: center;
    margin-bottom: 80px;
}

.csr-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.csr-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    color: #035ba8;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 15px;
}

.csr-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.csr-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000ff;
    margin-bottom: 15px;
    text-align: justify;
    letter-spacing: 0.1px;
}

.csr-list {
    text-align: left;
    content: "•";
    color: #000000ff;
    margin: 20px auto 0 auto;
    letter-spacing: 0.1px;
}

.csr-head {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000;
}


@media (max-width: 576px) {
    .csr-title {
        font-size: 18px;
    }

    .csr-block p {
        font-size: 14px;
    }

    .csr-image img {
        max-width: 100%;
    }
}


.tech-committee-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.tech-committee-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.tech-committee-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 160px;
    margin-top: 140px;
}

/* MAIN CARD */
.tech-card {
    position: relative;
    border: 1px solid var(--primary);
    border-radius: 15px;
    background: #fff;
    text-align: center;
    padding: 140px 30px 36px;
    transition: 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px #035ba83e;
}

.tech-float-img {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 22px;
    padding: 10px;
}

/* IMAGE ITSELF */
.tech-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* NAME */
.tech-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #000000ff;
}

/* ROLE */
.tech-card p {
    font-size: 14px;
    color: #000000ff;
    font-weight: 500;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .tech-committee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 90px;
    }
}

@media(max-width: 600px) {
    .tech-committee-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   LARGE TABLETS (≤ 1024px)
========================= */
@media (max-width: 1024px) {

    .tech-committee-grid {
        column-gap: 25px;
        row-gap: 140px;
    }

    .tech-float-img {
        width: 200px;
        height: 200px;
        top: -100px;
    }

    .tech-card {
        padding: 130px 24px 32px;
    }
}


/* =========================
   TABLETS (≤ 900px)
========================= */
@media (max-width: 900px) {

    .tech-committee-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
        row-gap: 150px;
        margin-top: 120px;
    }

    .tech-float-img {
        width: 190px;
        height: 190px;
        top: -95px;
    }

    .tech-card {
        padding: 120px 22px 30px;
    }

    .tech-card h3 {
        font-size: 18px;
    }

    .tech-card p {
        font-size: 13px;
    }
}


/* =========================
   MOBILES (≤ 600px)
========================= */
@media (max-width: 600px) {

    /* PAGE HEADER */
    .page-header {
        min-height: 200px;
    }

    .page-header h1 {
        font-size: 22px;
        text-align: center;
    }

    .page-header-overlay {
        padding: 40px 0;
    }

    /* CSR SECTION */
    .csr-section {
        padding: 50px 0 0;
    }

    .csr-title {
        font-size: 17px;
    }

    .csr-block p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* TECH COMMITTEE */
    .tech-committee-grid {
        grid-template-columns: 1fr;
        row-gap: 140px;
        margin-top: 100px;
    }

    .tech-float-img {
        width: 170px;
        height: 170px;
        top: -85px;
    }

    .tech-card {
        padding: 110px 20px 28px;
    }

    .tech-card h3 {
        font-size: 17px;
    }

    .tech-card p {
        font-size: 13px;
    }
}


/* =========================
   SMALL MOBILES (≤ 400px)
========================= */
@media (max-width: 400px) {

    .tech-float-img {
        width: 200px;
        height: 200px;
        top: -75px;
    }

    .tech-card {
        padding: 100px 18px 26px;
    }

    .tech-card h3 {
        font-size: 16px;
        margin-top: 30px;
    }

    .tech-card p {
        font-size: 12px;
    }
}



/** ===== Service Detail Section ===== **/

.services-layout-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.services-tabs-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.service-tab-detail {
    width: 100%;
    padding: 40px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: 0.3s ease;
}

.service-tab-detail:hover {
    background: #035ba8;
    color: #fff;
    border-color: #035ba8;
}

.service-tab-detail.active {
    background: #035ba8;
    color: #fff;
    border-color: #035ba8;
}

.services-content-detail {
    border-radius: 0px;
    padding: 0px;
}

.service-pane-detail {
    display: none;
}

.service-pane-detail.active {
    display: block;
}

.service-grid-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-image-detail {
    width: 100%;
    height: 350px;
    border-radius: 0px;
    overflow: hidden;
}

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

.service-text-detail {
    margin-top: 25px;
}

/* TEXT CONTENT */
.service-text-detail h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #000;
}

.service-text-detail p {
    margin-bottom: 18px;
    color: #000000ff;
    line-height: 1.6;
    text-align: justify;
}

.service-text-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-text-detail ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}

.service-text-detail ul li::before {
    content: "✔";
    color: #035ba8;
    position: absolute;
    left: 0;
}

.service-btn-detail {
    display: inline-block;
    background: #035ba8;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn-detail:hover {
    background: #ffffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
}

@media (max-width: 1024px) {
    .services-layout-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-tabs-detail {
        position: relative;
        top: unset;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-tab-detail {
        padding: 20px;
        font-size: 16px;
        flex: 1 1 calc(50% - 12px);
        justify-content: center;
    }

    .service-grid-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-image-detail {
        height: 300px;
    }

    .service-text-detail h3 {
        font-size: 17px;
    }

    .service-text-detail p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .services-tabs-detail {
        flex-direction: column;
        gap: 12px;
    }

    .service-tab-detail {
        width: 100%;
        padding: 18px;
        font-size: 15px;
    }

    .service-image-detail {
        height: 260px;
    }

    .service-text-detail {
        margin-top: 20px;
    }

    .service-text-detail p {
        font-size: 14px;
        text-align: left;
    }

    .service-btn-detail {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-tab-detail {
        padding: 16px;
        font-size: 14px;
        gap: 8px;
    }

    .service-image-detail {
        height: 220px;
    }

    .service-text-detail h3 {
        font-size: 16px;
    }

    .service-text-detail p {
        font-size: 13.5px;
    }

    .service-btn-detail {
        width: 100%;
        text-align: center;
    }
}

/* MOBILE TOGGLE BUTTON */
.service-toggle-btn {
    display: none;
    width: 55px;
    height: 45px;
    font-size: 22px;
    background: #035ba8;
    color: #fff;
    border: none;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

/* MOBILE SIDE BOX MENU */
@media (max-width: 768px) {

    .service-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .services-tabs-detail {
        position: fixed;
        top: 80px;
        /* ✅ Below header */
        left: 10px;
        /* ✅ Small side gap */
        width: 260px;
        /* ✅ Box width */
        height: auto;
        /* ✅ Only fit content */
        max-height: 240px;
        /* ✅ Just enough for 3 tabs */
        background: #ffffff;
        padding: 16px;
        flex-direction: column;
        /* ✅ 1,2,3 in same column */
        gap: 10px;

        overflow: hidden;
        /* ✅ NO SCROLL */
        transform: translateX(-120%);
        transition: 0.35s ease;
        z-index: 9999;

        border-radius: 14px;
        box-shadow: 0 8px 25px #035ba83e;
    }

    .services-tabs-detail.open {
        transform: translateX(0);
    }

    .service-tab-detail {
        font-size: 14px;
        padding: 14px;
        justify-content: center;
    }
}



/** News and Events Section **/

.news-detail-page {
    padding: 50px 0;
}

.news-detail-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

/* LEFT SECTION */
.news-detail-title {
    font-size: 32px;
    margin-bottom: 25px;
}

.news-detail-meta {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 20px;
}

.news-detail-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.news-detail-share {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 25px;
}

.news-detail-share a {
    background: #035ba8;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.news-detail-share a:hover {
    background: #ffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
    transition: 0.3s;
}

.news-detail-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.news-detail-content h3 {
    font-size: 25px;
    margin: 30px 0 30px;
}

.news-detail-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #222;
}

.news-content h3 {
    margin: 22px 0 12px;
}

.news-detail-content ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

/* SIDEBAR */
.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-detail-widget {
    /* background: #f6f6f6ff; */
    border: 1px solid #ddd;
    padding: 22px;
    border-radius: 14px;
}

.news-detail-widget h4 {
    margin-bottom: 16px;
}

/* SEARCH */
.news-detail-search {
    display: flex;
    gap: 10px;
}

.news-detail-search input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.news-detail-search button {
    background: #035ba8;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
}

/* RELATED ARTICLES */
.related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.related-item img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-item h5 {
    font-size: 14px;
    margin-bottom: 4px;
}

.related-item span {
    font-size: 12px;
    color: #777;
}

@media (max-width: 768px) {

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

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-share {
        flex-wrap: wrap;
        gap: 8px;
    }
}

.related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-link:hover .related-item {
    background: #f5f5f5;
    border-radius: 8px;
}


/** CSR Detail Section **/

.csr-detail-section {
    padding: 50px 0;
    background: #ffffff;
}

.csr-detail-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* MAIN GRID */
.csr-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
}

/* ✅ ALTERNATE SECOND CARD */
.csr-detail-grid:nth-child(even) {
    direction: rtl;
}

.csr-detail-grid:nth-child(even) .csr-detail-content {
    direction: ltr;
}

/* IMAGE */
.csr-detail-image {
    width: 100%;
    max-width: 525px;
    overflow: hidden;
}

.csr-detail-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}


/* CONTENT */
.csr-detail-content {
    padding-top: 10px;
}

.csr-detail-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000ff;
    font-family: 'Jost', sans-serif;
}

.csr-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000000ff;
    margin-bottom: 30px;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
    .csr-detail-grid {
        grid-template-columns: 1fr;
        direction: ltr !important;
        text-align: center;
    }

    .csr-detail-title {
        font-size: 28px;
    }
}

/** Industries Detail Section **/

.industries-detail-page {
    padding: 50px 0;
}

.industries-detail-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.industries-main {
    background: #fff;
}

.industries-main h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Jost', sans-serif;
}

/* IMAGE */
.industry-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
}

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

/* CONTENT */
.industry-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #000;
}

.industry-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 900px;
}

.industries-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.industry-pane {
    display: none;
}

.industry-pane.active {
    display: block;
}

.industry-link.active {
    background: #035ba8;
    color: #fff;
}


.industry-link {
    padding: 16px 20px;
    border-radius: 10px;
    background: #f5f5f5;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.industry-link:hover {
    background: #035ba8;
    color: #fff;
    border-color: #035ba8;
}

@media (max-width: 1024px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industries-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-link {
        flex: 1 1 calc(50% - 12px);
        text-align: center;
    }

    .industries-main h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .industry-link {
        flex: 1 1 100%;
        font-size: 15px;
        padding: 14px;
    }

    .industry-image {
        height: 260px;
    }

    .industries-main h1 {
        font-size: 26px;
    }

    .industry-content h3 {
        font-size: 20px;
    }

    .industry-content p {
        font-size: 15px;
    }
}


/** ICV Section **/

.icv-section {
    padding: 50px 0 0;
    /* background: #f9f9f9; */
}

.icv-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.icv-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 270px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.icv-detail-image {
    overflow: hidden;
    width: 450px;
    max-width: 100%;
    order: 2;
}

.icv-detail-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}


.icv-detail-content {
    padding-top: 10px;
    margin-right: -200px;
    order: 1;
}


.icv-detail-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Jost', sans-serif;
}

.icv-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 24px;
}

.icv-detail-list {
    color: #000000;
}

.icv-btn-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.icv-readmore-btn {
    display: inline-block;
    background: #035ba8;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.icv-readmore-btn:hover {
    background: #ffffff;
    color: #035ba8;
    border: 1px solid #035ba8;
}

/* ================================
   ✅ RESPONSIVE (TABLET)
================================ */

@media (max-width: 991px) {
    .icv-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .icv-detail-content {
        margin-right: 0;
        padding-top: 0;
        order: 2;
        /* ✅ text below image on mobile */
    }

    .icv-detail-image {
        width: 100%;
        order: 1;
        /* ✅ image on top on mobile */
    }

    .icv-detail-title {
        font-size: 32px;
    }
}

/* ================================
   ✅ RESPONSIVE (MOBILE)
================================ */

@media (max-width: 576px) {

    .icv-detail-section {
        padding: 40px 0;
    }

    .icv-detail-title {
        font-size: 26px;
    }

    .icv-detail-text {
        font-size: 15px;
    }

    .icv-btn-wrap {
        justify-content: center;
    }

    .icv-readmore-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/** ICV Detail Page **/

.icv-detail-section {
    padding: 50px 0;
    background: #ffffff;
}

.icv-detail-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.icv-header {
    text-align: center;
    margin-bottom: -20px;
}

.icv-badge {
    display: inline-block;
    border: 1px solid #035ba845;
    padding: 6px 18px;
    border-radius: 5px;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}


/** Footer Section **/

.footer {
    background: #000;
    color: #ccc;
    padding: 70px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #035ba8;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-col i {
    margin-right: 0px;
    color: #fff;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #555;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #035ba8;
    border-color: #035ba8;
}

.footer-time {
    margin-top: 15px;
    font-size: 14px;
}

.footer-time span {
    display: block;
    margin-top: 5px;
    color: #aaa;
}

/* Bottom copyright bar */
.footer-bottom {
    margin-top: 0px;
    background: #2a2a2a;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    color: #ffffffff;
    letter-spacing: 0.5px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-office {
    margin-top: 10px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    /* IMPORTANT */
    gap: 8px;
    /* ICON + TEXT gap control */
    margin-bottom: 12px;
}

.office-item i {
    font-size: 14px;
    margin-top: 4px;
    /* icon konjam keezha move aagum */
    color: #fff;
    min-width: 16px;
    /* ellam straight line align aagum */
}

.office-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.about-top {
    display: none;
}

@media (max-width: 991px) {
    .about-badge {
        display: none;
    }

    .about-top {
        display: inline-block !important;
    }
}

  .cardcontainer{
    width: 350px;
    height: 533px;
    background-color: white;
    margin: auto;
    transition: 0.3s;
    overflow: hidden;
}

.cardcontainer:hover{
    box-shadow: 0 0 45px gray;
}

.photo{
    height: 300px;
    width: 100%;
    transition: 0.3s;
}

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

.content{
    width: 80%;
    margin: auto;
    position: relative;
}

.txt4{
    font-size: 26px;
    font-weight: 700;
    color: #011A41;
    line-height: 1.3;
    letter-spacing: 0.4px;
    padding-top: 18px;
    height: 130px;
    transition: all 0.3s ease;
}

.txt2{
    margin-top: 15px;
    display: none;
    font-size: 14px;
    color: #555;
}

.card-footer{
    width: 83%;
    margin: auto;
    background-color: white;
    transition: 0.3s;
}

/* Hover effects */
.cardcontainer:hover .photo{
    height: 200px;
}

.cardcontainer:hover .txt4{
    font-size: 22px;
    height: auto;
}

.cardcontainer:hover .txt2{
    display: block;
}

.cardcontainer:hover .card-footer{
    margin-top: -10px;
}
