/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #004b68;
    --dark-teal: #004C4C;
    --golden: #D4AF37;
    --light-blue: #E8F0F7;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --white: #FFFFFF;
    --link-blue: #0066CC;
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   HEADER STYLES
   =================================== */

.header {
    background-color: #004b68;
    padding: 12px 25px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 85%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

/* Logo Section */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 26px;
    color: var(--golden);
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--golden);
    letter-spacing: 0.8px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.3px;
    line-height: 1;
}

/* Header Divider */
.header-divider {
    width: 1.5px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    /* margin-left: auto; */
    width: 100%;
    justify-content: space-between;
}

.header-nav .nav-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav .nav-link:hover {
    color: var(--golden);
}

.header-nav .nav-link.active {
    color: var(--golden);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION STYLES
   =================================== */


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Image */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

/* Hero Heading */
.hero-heading-wrapper {
    margin-bottom: 50px;
}

.hero.inner-page .hero-title{
    font-weight: 600 !important;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.1px;
    line-height: 1.2;
    margin: 0;
}
.hero-title span{
    font-weight: 700;
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;

    margin: 0 auto;
}

.stat-item {
    flex: 0 1 auto;
    padding: 20px 35px;
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
   
    line-height: 1.4;
}

.stat-divider {
    width: 3px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}



/* ===================================
   ABOUT + INDUSTRIES SECTION
   =================================== */

.about-industries {
    padding: 60px 0;
    background-color: #ffffff;
}



.about-industries .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--dark-teal);
    font-size: 24px;
    font-weight: 400;

}

.about-industries .section-title {
    font-size: 36px;
    font-weight: 400;
    color: #3F4947;
    line-height: 56px;

    margin-bottom: 0;
}

.about-intro {
    margin-top: 60px;
}

.industries-headline {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.industries-title {
    font-size: 36px;
    color: var(--dark-teal);
    font-weight: 400;
    margin-bottom: 0;
}

.industries-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    color: #3F4947;
    font-weight: 400;
    gap: 8px;
}

.industries-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #3F4947;
    border-radius: 50%;
    color: #222222;
}
.industries-icon i{
    rotate: -30deg;
}
.industries-description {
    font-size: 16px;
    color: #3F4947;
    line-height: 1.75;
    margin-top: 4px;
    font-weight: 400;
}

.industries-grid {
    margin-top: 40px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 26px 24px 24px;
    width: 100%;
}

.card-logo {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.card-caption {
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
}

/* ===================================
   CORE STRENGTHS SECTION
   =================================== */

.core-strengths {
    padding: 80px 0 100px;
}

.core-strengths .section-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-teal);
    margin-bottom: 14px;
}

.core-strengths .section-subtitle {
    font-size: 16px;
    color: #3F4947;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.strength-card {
    background-color: #ffffff;
    
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 40px;
    text-align: center;
    /* display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-6px);
    border: 1px solid #A8840782;
    box-shadow: 0 20px 40px rgba(10, 20, 15, 0.08);
}

.strength-icon {
    width: 77px;
    height: 77px;
    border: 1px solid #A88407;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-teal);
    margin-bottom: 22px;
}

.strength-title {
    font-size: 20px;
    font-weight: 400;
    color: #1b3533;
    margin-bottom: 14px;
    line-height: 1.4;
    text-align: center;
}

.strength-text {
    font-size: 14px;
    font-weight: 400;
    color: #5f6f6d;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===================================
   GIVING BACK SECTION
   =================================== */

.giving-back {
    position: relative;
    padding: 100px 0 !important;
    
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 0;
}

.giving-back-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 89, 87, 0.68);
    z-index: 1;
}

.giving-back .container {
    position: relative;
    z-index: 2;

}



.giving-back-title {
    font-size: 54px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 22px;
}

.giving-back-text {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 28px;
}
.giving-back-content {
  padding: 60px 0px;
}

.giving-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.95);
   
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.giving-back-btn:hover {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--dark-teal);
}

/* ===================================
  Services
   =================================== */
.service-row{
    padding: 0;
    margin:30px 0 0 0;
}

.service-box{
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-box img.bg-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-box::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.45); */
    z-index: 1;
}

.service-box:hover img.bg-img{
    transform: scale(1.08);
}

.content-center{
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.content-center img.logo{
    max-width: 140px;
    width: 100%;
}

.arrow-btn{
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: .3s;
}

.arrow-btn:hover{
    background: #fff;
    color: #000;
}

@media(max-width:768px){
    .service-box{
        height: 350px;
    }
}
/* ===================================
   TEAM SECTION
   =================================== */

.team {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.team-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-teal);
    margin-bottom: 16px;
}

.team-subtitle {
    font-size: 16px;
    color: #3F4947;
    line-height: 1.75;
    font-weight: 400;
    margin: 0 auto;
}

.team-card {
    /* background-color: var(--light-blue); */
    /* border-radius: 16px; */
    overflow: hidden;
    border: 1px solid #EAECF0;
    /* padding: 20px; */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(10, 20, 15, 0.12);
}

/* .team-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
} */

.team-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: left;
}

.team-name {
    font-size: 15px;
    font-weight: 600;
    color: #004C4C;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    color:#3F4947;
    font-weight: 400;
    margin-bottom: 12px;
}

.team-description {
    font-size: 12px;
    color: #3F4947;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #A88407;
    border-radius: 50%;
    color: #A88407;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    border-color: var(--golden);
    color: var(--golden);
    background-color: rgba(212, 175, 55, 0.08);
}

/* ===================================
   BLOGS SECTION
   =================================== */

.blog-section{
    position:relative;
    padding:100px 0;
    background-size:cover;
    background-position:center;

    /* background:url('assets/images/blog-bg.png') center center/cover no-repeat; */
}

/* Simple grid of blog cards (replaces the old vertical sliders) */
.blog-grid{
    position:relative;
    z-index:2;
}

.blog-grid .blog-card{
    margin:0;
    height:100%;
    display:flex;
    flex-direction:column;
}

.blog-grid .blog-card a{
    margin-top:auto;
    padding-top:15px;
}

/* Prev/Next arrows for the mobile blog slider (hidden on desktop grid) */
.blog-nav-arrows{
    display:none;
    position:relative;
    z-index:2;
    justify-content:center;
    gap:16px;
    margin-top:24px;
}

.blog-nav-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.6);
    background:transparent;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.blog-nav-btn:hover{
    background:#fff;
    color:#1f3a4a;
}

.blog-card a {
  color: #000;
}
.bg-overlay{
    position:absolute;
    inset:0;
    background:rgba(31,58,74,.45);
}

.blog-heading{
    position:relative;
    z-index:2;
    color:#fff;
    margin-bottom:50px;
}

.blog-heading span{
    display:block;
    font-size:18px;
    font-weight:400;
}

.blog-heading h2{
    font-size:57px;
    font-weight:300;
    margin:0;
}

.circle-btn{
    width:50px;
    height:50px;
    border:1px solid #fff;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    margin-top:20px;
}
.circle-btn i{
    font-size:23px;
    /* font-weight:500; */
    rotate: -30deg;
}

.blogSwiperUp,
.blogSwiperDown{
    height:100vh;
    overflow:hidden;
}

.swiper-slide{
    height:auto !important;
}

.blog-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    margin:15px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.blog-card h3{
    font-size:22px;
    margin-bottom:20px;
}

.blog-card p{
    color:#666;
}

.blog-card a{
    text-decoration:none;
    font-weight:600;
}
.swiper-wrapper{
    transition-timing-function: linear !important;
}
.blogSwiperUp .swiper-wrapper,
.blogSwiperDown .swiper-wrapper{
    transition-timing-function: linear !important;
}
.marquee-up .marquee-track{
    animation: scrollUp 40s linear infinite;
}

@keyframes scrollUp{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(-33.333%);
    }
}




/* ===================================
   contact Form
   =================================== */

    .reach-out {
  padding: 60px 0px;
}
.form-title h2 {
  font-size: 40;
  font-weight: 400;
  color: #004C4C;
  text-align: center;
  margin-bottom: 60px;
}
.form-control {
  margin: 15px 0px;
  border-radius: 5px !important;
  padding: 14px;
  background: transparent;
  border: solid 2px rgba(170, 170, 170, 1);
  width: 100%;
  display: block;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  color: #000 !important;
}


.reach-out ::placeholder {
  color: #000;
}
.reach-out option {
  color: #000 !important;
}
.select-option {
  margin: 15px 0px;
  border-radius: 5px !important;
  padding: 14px;
  background: transparent;
  border: solid 2px rgba(170, 170, 170, 1);
  width: 100%;
}
.form-submit.text-center input {
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(240, 90, 40, 1) !important;
  text-transform: capitalize;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 10px;
  border: navajowhite;
  color: #fff;
}
/* ===================================
   BASE RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .stat-item {
        padding: 15px 20px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
        max-width: 100px;
    }

    .stat-divider {
        height: 50px;
    }

    .navbar-brand {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    
    .stat-item {
        padding: 15px 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-heading-wrapper {
        margin-bottom: 40px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */


 .faq-section {
            /* background: #f8f9fa; */
            padding: 60px 0;
        }

        .faq-title {
            font-size: 40;
            font-weight: 400;
            color: #004C4C;
            text-align: center;
            margin-bottom: 60px;
        }

        .custom-accordion .accordion-item {
            border: none;
            border-radius: 0;
            background: #fff;
            margin-bottom: 25px;
            box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); */
            overflow: hidden;
        }

        .custom-accordion .accordion-button {
            background: #fff;
            padding: 28px 30px;
            font-size: 18px;
            font-weight: 500;
            color: #3F4947;
            box-shadow: none;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .custom-accordion .accordion-button:not(.collapsed) {
            background: #fff;
            color: #333;
            box-shadow: none;
        }

        .custom-accordion .accordion-button::after {
            display: none;
        }

        .faq-icon {
            color: #A88407;
            font-size: 22px;
            min-width: 24px;
            transition: .3s;
        }

        .accordion-button:not(.collapsed) .faq-icon {
            transform: rotate(180deg);
        }

        .custom-accordion .accordion-body {
            padding: 0 30px 30px 74px;
            color: #363049;
            line-height: 1.9;
            font-weight: 400;
            font-size: 14px;
        }

      
/* ===================================
   Footer
   =================================== */

   .footer-contact-section {
            position: relative;
            padding: 60px 0;
            /* background: url('assets/images/foote-bg.png') center center/cover no-repeat; */
        }

        .footer-contact-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(20, 50, 55, 0.35);
            backdrop-filter: blur(2px);
        }

        .footer-contact-section .container {
            position: relative;
            z-index: 2;
        }

        .glass-box {
            background: #004b68;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 12px;
            padding: 0;
            overflow: hidden;
        }

        .contact-text a{
            color: #fff;
            text-decoration: none;
        }
        .top-nav {
            margin-bottom: 20px;
        }

        .top-nav .row,
        .contact-row .row {
            min-height: 90px;
            align-items: center;
        }

        .logo-col,
        .nav-col,
        .info-col {
            padding: 10px 50px;
            margin: 15px 0px;
        }

        .divider-right {
            border-right: 1px solid rgba(255,255,255,0.4);
        }

        .logo-text {
            color: #fff;
            font-size: 20px;
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .logo-text span {
            display: block;
            font-size: 14px;
            opacity: .85;
            margin-top: 5px;
        }

        /* Footer logo image (Site Settings → Branding → Footer Logo) */
        .footer-contact-section .logo-text img {
            display: block;
            max-height: 60px;
            max-width: 100%;
            width: auto;
        }

        .footer-nav {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: .3s;
        }

        .footer-nav a:hover {
            opacity: .8;
        }

        .contact-text {
            color: #fff;
            font-size: 16px;
            line-height: 1.7;
            margin: 0;
        }

        .center-text {
            text-align: center;
        }

        @media (max-width: 991px) {

            .divider-right {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.35);
            }

            .logo-col,
            .nav-col,
            .info-col {
                padding: 22px;
                text-align: center;
            }

            .footer-nav {
                justify-content: center;
            }

            .contact-row .row,
            .top-nav .row {
                min-height: auto;
            }
        }

        @media (max-width: 576px) {

            .footer-nav {
                flex-direction: column;
                gap: 12px;
            }

            .logo-text {
                font-size: 22px;
            }

            .contact-text {
                font-size: 15px;
            }
        }



        /* Who We are  */

.chairman-section{
    /* background:#f5f5f5; */
    padding:100px 0;
}

.chairman-box{
    position:relative;
    /* background:url('assets/images/chairman-bg.png') center center/cover no-repeat; */
    min-height:420px;
    overflow:visible;
}

/* .chairman-box:before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(90,145,148,.82);
} */

.chairman-image{
    position:absolute;
    left:30px;
    bottom:0;
    z-index:2;
}

.chairman-image img{
    max-width:380px;
    display:block;
}

.chairman-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding:90px 80px 90px 420px;
}

.chairman-content h2{
    font-size:36px;
    line-height:1.15;
    font-weight:400;
    margin-bottom:25px;
    color:#fff;
}

.chairman-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:40px;
    max-width:700px;
    font-weight:400;
    color:#fff;
}

.chairman-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:58px;
    background:#fff;
    color:#4f8f94;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.chairman-btn:hover{
    background:#005b5d;
    color:#fff;
}

.offer-section{
    background:#1f2027;
    overflow:hidden;
}

.offer-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.offer-content{
    padding:80px 80px;
    color:#fff;
    height:100%;
}

.offer-tag{
    /* color#7E7E80; */
    font-size:16px;
    font-weight:500;
    margin-bottom:25px;
}

.offer-title{
    font-size:36px;
    line-height:1.15;
    font-weight:500;
    margin-bottom:30px;
    color:#fff;
}

.offer-desc{
    font-size:16px;
    line-height:1.8;
    color:#a5a5aa;
    margin-bottom:50px;
    font-weight:400;
    /* max-width:700px; */
}

.offer-item{
    display:flex;
    gap:18px;
    margin-bottom:40px;
}

.offer-icon{
    width:54px;
    height:54px;
    min-width:54px;
    border:1px solid #b79c3c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.offer-item h4{
    font-size:12px;
    margin:0 0 8px;
    color:#fff;
    font-weight:500;
}

.offer-item p{
    margin:0;
    color:#A6A6A8;
    font-weight:400;
    line-height:1.7;
    font-size:12px;
}

.offer-btn{
    margin-top:30px;
    display:inline-flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
    color:#fff;
    font-weight:500;
    font-size:12px;
}

.offer-btn span{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    color:#1f2027;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.values-section{
    /* background:#f5f5f5; */
    overflow:hidden;
}

.values-left{
    padding: 0 120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}

.values-tag{
    font-size:16px;
    color:#005b5d;
    font-weight:400;
    margin-bottom:20px;
}

.values-title{
    font-size:36px;
    line-height:1.15;
    color:#005b5d;
    font-weight:400;
    margin-bottom:50px;
}

.value-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:35px;
}

.value-number{
    width:54px;
    height:54px;
    min-width:54px;
    border:1px solid #c9b15f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#005b5d;
    font-size:15px;
    margin-right:20px;
}

.value-content h4{
    font-size:16px;
    color:#004C4C;
    margin:0 0 8px;
    font-weight:500;
}

.value-content p{
    margin:0;
    color:#3F4947;
    font-size:16px;
    font-weight:400;
    line-height:1.7;
}

.values-image{
    height:100%;
}

.values-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.counter-section{
    /* background:#f5f5f5; */
    padding:60px 0;
}

.counter-box{
    text-align:center;
    position:relative;
}

.counter-box::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    background:#c9b15f;
}

.counter-section .row > div:last-child .counter-box::after{
    display:none;
}

.counter-number{
    font-size:42px;
    line-height:1;
    font-weight:600;
    color:#004C4C;
    margin-bottom:15px;
}

.counter-text{
    font-size:16px;
    color:#3F4947;
    line-height:1.6;
   
    margin:0 auto;
}
.parent-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.parent-section h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #004C4C;
    font-weight: 400;
    margin-bottom: 50px;
      padding-left: 120px;
}

.parent-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #3F4947;
    font-weight: 400;
    margin-bottom: 30px;
}

.story-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.story-title img {
  width: 35px !important;
}

/* .story-title svg {
    width: 26px;
    height: 26px;
    stroke: #005b5d;
} */

.story-title h3 {
    font-size: 28px;
    color: #004C4C;
    margin: 0;
    font-weight: 400;
}

.parent-section img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.left-image {
    margin-top: 20px;
}

.right-image {
    margin-top: 30px;
}

.right-content {
  padding: 0px 120px 0px 60px;
}


/* our companies  */

  .industry-filter{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
    margin:40px 0;
}

.industry-filter button{
    border:none;
    background:none;
    padding:0;
    font-size:18px;
    color:#444;
    position:relative;
}

.industry-filter button.active{
    color:#005b5d;
}

.industry-filter button.active:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#005b5d;
}

.company-modal .modal-content{
    border:none;
    border-radius:0;
    padding:40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 15px;
}


.company-logo{
    max-width:220px;
    margin-left:15px;
}

.company-desc {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #3F4947;
}


/* .modal-close{
    position:absolute;
    top:20px;
    right:20px;
    z-index:10;
} */
    .flex-modal-btn-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.btn-close.modal-close {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #004b68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 9;
}
.view-more-btn{
   display: inline-block;
  padding: 12px 30px;
  background: #004b68;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  width: 150px;
  margin-left: auto;
}

.view-more-btn:hover{
    color:#fff;
}

.blog-section-page{
    padding:60px 0;
    background:#f5f5f5;
}

.blog-item{
    padding:40px 0;
    border-bottom:1px solid #dde3e5;
}

.blog-meta{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.blog-category{
    background:#004b68;
    color:#fff;
    font-size:12px;
    text-transform:uppercase;
    padding:8px 14px;
    line-height:1;
    border-radius: 8px 0px 0px 8px;
}

.blog-date{
    font-size:13px;
    font-weight:600;
    color:#2f3c4d;
    text-transform:uppercase;
}

.blog-title{
    font-size:28px;
    line-height:1.2;
    color:#004C4C;
    margin-bottom:20px;
    font-weight:400;
}

.blog-title a{
    color:#005b5d;
    text-decoration:none;
}

.blog-title a:hover{
    color:#007579;
}

.blog-desc{
    font-size:18px;
    line-height:1.7;
    color:#3F4947;
    margin:0;
    font-weight:400;
}

.blog-image{
    height:280px;
    overflow:hidden;
    border-radius:6px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.blog-item:hover .blog-image img{
    transform:scale(1.05);
}


/* contact us  */

.contact-section{
    padding:60px 0;
    background:#f5f5f5;
}

.contact-title{
    text-align:center;
    font-size:40px;
    line-height:1.2;
    color:#004C4C;
    margin-bottom:70px;
    font-weight:400;
}

.contact-left{
    padding-right:50px;
}

.lcontact-section .contact-text{
    font-size:20px;
    line-height:1.7;
    color:#3F4947;
    margin-bottom:50px;
    font-weight:400;
}

.contact-info{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.contact-info i{
    color:#005b5d;
    font-size:22px;
    margin-top:4px;
}

.contact-info p{
    margin:0;
    font-size:16px;
    line-height:1.8;
    color:#3F4947;
    font-weight:400;
}

.social-title{
    font-size:20px;
    font-weight:600;
    color:#005b5d;
    margin:70px 0 25px;
    text-transform:uppercase;
}

.social-links{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.social-links a{
    background:#004b68;
    color:#fff;
    text-decoration:none;
    padding:8px 18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    border-radius:3px;
    transition:.3s;
}

.social-links a:hover{
    background:#004b68;
    color:#fff;
}

.contact-form .form-group{
    margin-bottom:15px;
}

.contact-form .form-control,
.contact-form .form-select{
    border:none;
    border-bottom:1px solid #DCDCDC;
    border-radius:0;
    background:transparent;
    padding:12px 0;
    font-weight:400;
    font-size:14px;
    color:#333;
    box-shadow:none !important;
}

.contact-form textarea.form-control{
    resize:none;
    height:60px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus{
    border-color:#005b5d;
}

.submit-btn{
    margin-top:15px;
    border:none;
    background:#004b68;
    color:#fff;
    padding:14px 35px;
    font-size:16px;
    transition:.3s;
}
.contact-left .contact-text {
color: #000 !important;
}

.submit-btn:hover{
    background:#003f40;
}
.location-section{
    padding:30px 0;
    background:#f5f5f5;
}

.location-title{
    font-size:18px;
    font-weight:600;
    color:#005b5d;
    text-transform:uppercase;
    margin-bottom:30px;
}

.location-map{
    position:relative;
    overflow:hidden;
}

.location-map img{
    width:100%;
    display:block;
}

.map-contact{
    position:absolute;
    right:0;
    bottom:0px;
    background:#fff;
    padding:18px 25px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.map-contact i{
    color:#005b5d;
    font-size:18px;
}

.map-contact span{
    color:#555;
    font-size:16px;
}

.location-info{
    margin-top:35px;
}

.location-info h3{
    font-size:24px;
    line-height:1.2;
    color:#005b5d;
    margin-bottom:15px;
    font-weight:600;
}

.location-info p{
    margin:0;
    color:#3F4947;
    font-weight:400;    
    font-size:14px;
    line-height:1.8;
}
/* ===================================
   BLOG: single post + sidebar
   =================================== */
.single-post-section { padding: 70px 0; }
.single-post-section .post-meta { margin-bottom: 18px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.single-post-section .post-meta .blog-category { background: #eaf3f3; color: #3c7c7c; padding: 5px 14px; border-radius: 30px; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-decoration: none; }
.single-post-section .post-meta .blog-date { color: #888; font-size: 13px; font-weight: 500; letter-spacing: .5px; }
.single-post-title { font-size: 34px; font-weight: 700; color: #1f2a29; line-height: 1.25; margin-bottom: 25px; }
.single-post-section .post-thumb img { width: 100%; height: auto; border-radius: 14px; margin-bottom: 30px; }
.single-post-section .post-content { color: #3F4947; font-size: 16px; line-height: 1.9; }
.single-post-section .post-content p { margin-bottom: 18px; }
.single-post-section .back-link { display: inline-block; margin-top: 30px; color: #3c7c7c; font-weight: 600; text-decoration: none; }
.single-post-section .back-link:hover { color: #2f5f5f; }

.blog-sidebar { position: sticky; top: 30px; }
.blog-sidebar .sidebar-widget { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 25px; margin-bottom: 25px; box-shadow: 0 6px 24px rgba(0,0,0,.04); }
.blog-sidebar .sidebar-title { font-size: 18px; font-weight: 700; color: #1f2a29; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #eaf3f3; }
.blog-sidebar .recent-posts-list { list-style: none; margin: 0; padding: 0; }
.blog-sidebar .recent-post-item { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.blog-sidebar .recent-post-item:last-child { margin-bottom: 0; }
.blog-sidebar .recent-post-thumb { flex: 0 0 70px; }
.blog-sidebar .recent-post-thumb img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.blog-sidebar .recent-post-title { display: block; font-size: 14px; font-weight: 600; color: #1f2a29; text-decoration: none; line-height: 1.4; margin-bottom: 5px; }
.blog-sidebar .recent-post-title:hover { color: #3c7c7c; }
.blog-sidebar .recent-post-date { font-size: 12px; color: #999; }
.blog-sidebar .category-list { list-style: none; margin: 0; padding: 0; }
.blog-sidebar .category-item a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid #f0f0f0; color: #3F4947; text-decoration: none; font-weight: 500; transition: .2s; }
.blog-sidebar .category-item:last-child a { border-bottom: none; }
.blog-sidebar .category-item a:hover { color: #3c7c7c; padding-left: 6px; }
.blog-sidebar .category-count { background: #eaf3f3; color: #3c7c7c; min-width: 26px; text-align: center; border-radius: 20px; font-size: 12px; padding: 2px 8px; }

.pagination-area { margin-top: 40px; }
.pagination-area .nav-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pagination-area .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px; background: #f4f7f7; color: #3c7c7c; text-decoration: none; font-weight: 600; }
.pagination-area .page-numbers.current { background: #3c7c7c; color: #fff; }
.pagination-area .page-numbers:hover { background: #3c7c7c; color: #fff; }

@media (max-width: 991px) {
    .blog-sidebar { position: static; margin-top: 40px; }
    .single-post-title { font-size: 26px; }
}

/* ===================================
   Full-bleed hero: cancel the WP admin-bar 32px top gap.
   (Toolbar stays fixed/overlaying; only visible when logged in.)
   =================================== */
@media screen {
    html { margin-top: 0 !important; }
}
#wpadminbar { position: fixed; }
