* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */
body {
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    color: #F4A22F;
}

p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    padding: 10px 0;
}

/* ================================================
   FLEX ROW
   ================================================ */
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 5%;
}

@media(max-width: 700px){
    .row {
        flex-direction: column;
        gap: 15px;
    }
    h1 {
        font-size: 28px;
    }
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #F4A22F;
    border: 1px solid #F4A22F;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
}

.hero-btn:hover {
    border: 1px solid #F4A22F;
    background: #F4A22F;
    color: #fff;
}

/* ================================================
   STICKY TOP BAR & NAVIGATION
   ================================================ */
.top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background-color: #1b4d3e !important;
    width: 100% !important;
    padding: 10px 0 !important;
}

nav {
    position: fixed !important;
    top: 45px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9998 !important;
    background: rgb(0,100,0) !important;
    width: 100% !important;
    padding: 1% 2% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

body {
    padding-top: 150px !important;
}

.page-sub-header {
    min-height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.nav-links ul li .sub-menu-1 {
    z-index: 10000 !important;
}

/* ================================================
   ✅ FIX: BODY SCROLL LOCK WHEN MOBILE MENU IS OPEN
   ================================================ */
body.no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Mobile */
@media(max-width: 700px) {
    nav {
        top: 38px !important;
        padding: 0.5% 2% !important;
        z-index: 9998 !important;
    }
    body {
        padding-top: 90px !important; /* ✅ FIX: increased from 70px */
    }
    .nav-links {
        z-index: 99999 !important;
        padding-top: 80px !important;
    }
}

@media(max-width: 480px) {
    nav {
        top: 35px !important;
    }
    body {
        padding-top: 85px !important; /* ✅ FIX: increased from 65px */
    }
}

/* ================================================
   TOP UTILITY BAR
   ================================================ */
.top-bar {
    background-color: #1b4d3e;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: #ff7a00;
    margin-right: 5px;
}

.top-bar-right a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: #ff7a00;
}

.top-bar .dropdown-toggle {
    color: #fff;
    text-decoration: none;
}

.top-bar .dropdown-menu {
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
}

.top-bar .dropdown-menu .dropdown-item {
    color: #F4A22F;
    transition: all 0.3s ease;
}

.top-bar .dropdown-menu .dropdown-item:hover {
    background: rgba(244, 162, 47, 0.1);
    color: #fff;
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
    display: flex;
    padding: 1% 2%;
    justify-content: space-between;
    align-items: center;
    background: rgb(0,100,0);
    position: relative;
    z-index: 100;
}

nav img {
    width: 100px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 5px 8px;
    position: relative;
}

.nav-links ul li a {
    color: #F4A22F;
    text-decoration: none;
    font-size: 14px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: #fff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.active, .nav-links ul li:hover{
    background: #fff;
    border-radius: 3px;
}

/* Dropdown Menu */
.nav-links ul li .sub-menu-1 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F4A22F;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    min-width: 200px;
    z-index: 999;
}

.nav-links ul li .sub-menu-1 ul {
    display: block;
    padding: 0;
    margin: 0;
}

.nav-links ul li .sub-menu-1 ul li {
    width: 180px;
    padding: 5px 15px;
    text-align: left;
    display: block;
    background: transparent;
}

.nav-links ul li .sub-menu-1 ul li a {
    color: #050505;
    font-size: 12px;
    display: block;
    text-decoration: none;
}

.nav-links ul li .sub-menu-1 ul li:hover {
    background: rgba(255,255,255,0.3);
    border-radius: 0;
}

.nav-links ul li .sub-menu-1 ul li:hover::after {
    display: none;
}

.nav-links ul li:hover .sub-menu-1 {
    display: block;
}

/* Mobile Navigation */
nav .fa {
    display: none;
}

/* ================================================
   ✅ FIX: MOBILE MENU - COMPLETE ACCESSIBILITY
   ================================================ */
@media(max-width: 700px){
    /* Slide-in menu panel */
    .nav-links {
        position: fixed;
        background: #1a1a2e;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        top: 0;
        right: -280px;               /* Hidden off-screen by default */
        text-align: left;
        z-index: 99999;
        transition: right 0.4s ease;
        padding-top: 80px;
        overflow-y: auto;            /* Allow scrolling inside menu if long */
        box-shadow: -5px 0 25px rgba(0,0,0,0.4);
    }

    /* ✅ FIX: Slide menu in when .active class is added via JS */
    .nav-links.active {
        right: 0 !important;
    }

    /* ✅ FIX: Ensure ul has proper padding and full width */
    .nav-links ul {
        padding: 10px 0;
        width: 100%;
    }

    /* ✅ FIX: Full-width tappable menu items */
    .nav-links ul li {
        display: block;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        background: transparent;
        border-radius: 0;
    }

    .nav-links ul li:hover {
        background: rgba(255,255,255,0.05);
        border-radius: 0;
    }

    .nav-links ul li:hover::after {
        width: 0;
        display: none;
    }

    .nav-links ul li a {
        display: block;
        padding: 14px 22px;
        font-size: 15px;
        color: #F4A22F;
        width: 100%;
    }

    /* ✅ FIX: Hamburger + close icons */
    nav .fa-bars,
    nav .fa-times {
        display: block !important;
        color: #fff !important;
        font-size: 24px !important;
        cursor: pointer;
        z-index: 100000;
        position: relative;
        padding: 6px;
        line-height: 1;
    }

    nav .fa-times {
        position: absolute;
        top: 18px;
        right: 18px;
        margin: 0;
        font-size: 28px !important;
        z-index: 100001;
    }

    /* ✅ FIX: Sub-menu - click-based on mobile (not hover) */
    .nav-links ul li .sub-menu-1 {
        display: none;
        position: static;
        background: rgba(255,255,255,0.04);
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        padding: 0;
        width: 100%;
    }

    /* ✅ FIX: Show sub-menu when parent li has .open class (added via JS) */
    .nav-links ul li.open .sub-menu-1 {
        display: block !important;
    }

    /* ✅ FIX: Dropdown arrow indicator for items with sub-menus */
    .nav-links ul li.has-submenu > a::after {
        content: '\f107'; /* Font Awesome chevron-down */
        font-family: 'FontAwesome', 'Font Awesome 5 Free', 'Font Awesome 6 Free';
        font-weight: 900;
        float: right;
        font-size: 14px;
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    .nav-links ul li.has-submenu.open > a::after {
        transform: rotate(180deg);
    }

    .nav-links ul li .sub-menu-1 ul {
        padding: 0;
        margin: 0;
    }

    .nav-links ul li .sub-menu-1 ul li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        background: transparent;
    }

    .nav-links ul li .sub-menu-1 ul li a {
        color: #F4A22F;
        font-size: 13px;
        padding: 11px 22px 11px 40px;
        display: block;
    }

    .nav-links ul li .sub-menu-1 ul li:hover {
        background: rgba(244, 162, 47, 0.1);
    }

    /* ✅ FIX: Keep search button visible but below menu overlay */
    nav .btn-search {
        z-index: 9997;
    }
}

/* ================================================
   SEARCH ICON IN NAVIGATION - COMPLETE FIX
   ================================================ */
nav .btn-search {
    background: #F4A22F !important;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    margin-left: 10px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none !important;
    box-shadow: 0 2px 10px rgba(244, 162, 47, 0.3) !important;
    padding: 0 !important;
    position: relative;
    z-index: 100;
}

nav .btn-search:hover {
    background: #e8921a !important;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.4) !important;
}

nav .btn-search i,
nav .btn-search .fa,
nav .btn-search .fas {
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
}

nav .btn-search .fa-search::before,
nav .btn-search .fas.fa-search::before {
    color: #ffffff !important;
}

/* Mobile */
@media (max-width: 700px) {
    nav .btn-search {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }
    nav .btn-search i,
    nav .btn-search .fa,
    nav .btn-search .fas {
        font-size: 14px !important;
    }
}

/* Search Modal */
#searchModal .modal-content {
    background: none;
}

#searchModal .modal-header {
    background: #0a1628;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#searchModal .modal-title {
    color: #fff;
}

#searchModal .btn-close {
    filter: brightness(0) invert(1);
}

#searchModal .modal-body {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    padding: 60px 20px;
    min-height: 50vh;
}

#searchModal .form-control {
    border-radius: 50px 0 0 50px;
    padding: 15px 25px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
}

#searchModal .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

#searchModal .form-control:focus {
    border-color: #F4A22F;
    box-shadow: 0 0 0 0.25rem rgba(244, 162, 47, 0.25);
    background: rgba(255,255,255,0.08);
}

#searchModal .input-group span {
    background: #F4A22F;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

#searchModal .input-group span:hover {
    background: #e8921a;
}

@media (max-width: 700px) {
    nav .btn-search {
        width: 35px;
        height: 35px;
        margin-left: 5px;
    }
    nav .btn-search i {
        font-size: 14px;
    }
}

/* ================================================
   KEYFRAMES
   ================================================ */
@keyframes zoomMotion {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

/* ================================================
   HOMEPAGE
   ================================================ */
/* ================================================
   HEADER BACKGROUND WITH OVERLAPPING CROSSFADE
   ================================================ */

.header {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url('pics/h2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: crossfade1 20s ease-in-out infinite;
    z-index: 1;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url('pics/solar.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: crossfade2 20s ease-in-out infinite;
    z-index: 2;
}

.bg-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)),
    url('pics/bgc.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: crossfade3 20s ease-in-out infinite;
    z-index: 3;
}

nav,
.text-box {
    position: relative;
    z-index: 10;
}

/* ===== OVERLAPPING CROSSFADE - SMOOTH TRANSITIONS ===== */

/* Image 1: Visible from 0% to 37%, then fades out */
@keyframes crossfade1 {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        opacity: 1;
        transform: scale(1.05);
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    37% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* Image 2: Fades in while image 1 fades out, visible until 70% */
@keyframes crossfade2 {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    30% {
        opacity: 0;
        transform: scale(1.05);
    }
    37% {
        opacity: 1;
        transform: scale(1);
    }
    53% {
        opacity: 1;
        transform: scale(1.05);
    }
    66% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* Image 3: Fades in while image 2 fades out, visible until 100% */
@keyframes crossfade3 {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    63% {
        opacity: 0;
        transform: scale(1.05);
    }
    70% {
        opacity: 1;
        transform: scale(1);
    }
    86% {
        opacity: 1;
        transform: scale(1.05);
    }
    96% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 10;
}

.text-box h1 {
    font-size: 40px;
    color: #F4A22F;
    animation: bounce 10s 2 forwards;
    display: inline-block;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    animation: glowAndShrink 5s 2 forwards;
}
@keyframes glowAndShrink {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(244, 162, 47, 0.2), 0 0 10px rgba(244, 162, 47, 0.2);
    }
    50% {
        transform: scale(0.9);
        text-shadow: 0 0 15px rgba(244, 162, 47, 0.8), 0 0 25px rgba(244, 162, 47, 0.6);
    }
}
@media(max-width: 700px){
    .text-box h1 {
        font-size: 28px;
    }
}

/* ================================================
   PAGE SUB-HEADER
   ================================================ */
.page-sub-header {
    min-height: auto;
    width: 100%;
    background: #0a1628;
    text-align: center;
    color: #F4A22F;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

/* ================================================
   SERVICES SECTION (HOMEPAGE)
   ================================================ */
.services-home {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 50px;
}

.services-home h2 {
  color: #F4A22F;
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 10px;
  display: inline-block;
  animation: fadeSlide 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes fadeSlide {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-5px);
  }
}

.services-home .row {
    margin-top: 5%;
}

.services-col {
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 24px;
    box-sizing: border-box;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.services-col img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 5s ease;
}

.services-col:hover img {
    transform: scale(1.05);
}

.services-col h3 {
    text-align: center;
    color: #06355e;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 10px;
}

.services-col p {
    color: #070707;
    font-weight: 600;
    font-size: 16px;
    padding: 0 15px;
    margin: 0;
    text-align: left;
    line-height: 20px;
}

.services-col:hover {
    box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

@media(max-width: 700px) {
    .services-col {
        flex-basis: 100%;
    }
}

/* ================================================
   COMPANIES SECTION
   ================================================ */
.companies {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 10px;
}

.companies h2 {
    font-size: 30px;
    font-weight: 600;
    color: #f8ab04;
    margin-bottom: 10px;
}

.companies p {
    color: #000000;
    font-weight: 600;
    margin-bottom: 40px;
}

.companies .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.companies-col {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.companies-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.companies-col .layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    border-radius: 10px;
}

.companies-col .layer:hover {
    background: rgba(190, 141, 5, 0.7);
}

.companies-col .layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    text-align: center;
    opacity: 0;
    transition: 0.5s;
}

.companies-col .layer:hover h3 {
    bottom: 49%;
    opacity: 1;
}

@media(max-width: 700px) {
    .companies .row {
        flex-direction: column;
    }
    .companies-col {
        flex-basis: 100%;
    }
}

/* ================================================
   FACILITIES SECTION
   ================================================ */
.facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}

.facilities h2 {
    font-size: 30px;
    color: #F4A22F;
    font-weight: 700;
}

.facilities p {
    font-size: 14px;
    font-weight: 600;
    color: #1a1717;
}

.facilities .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.facilities-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.facilities-col img {
    width: 120%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    display: block;
    animation: autoSlideImage 6s ease-in-out infinite alternate;
}

@keyframes autoSlideImage {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-15%); }
}

.facilities-col:hover img {
    filter: grayscale(0%);
}

.facilities-col p {
    padding: 0;
    color: #242423;
}

.facilities-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
    color: #f59106;
}

@media(max-width: 700px){
    .facilities-col {
        flex-basis: 100%;
    }
}

/* ================================================
   TESTIMONIALS SECTION (FIXED)
   ================================================ */
.testimonials {
    width: 100%;
    padding: 10px 0;
    background: #f8f9fa;
    text-align: center;
}

.testimonials h2 {
    font-size: 30px;
    color: #F4A22F;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials > p {
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Carousel Container */
.testimonial-carousel {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual testimonial items */
.testimonial-carousel .testimonial-col {
    background: #ecde9f;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .testimonial-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.12);
}
.testimonial-carousel .testimonial-col img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #F4A22F !important;
    margin: 0 auto 20px !important;
}

.testimonial-carousel .testimonial-col div {
    flex: 1;
}

.testimonial-carousel .testimonial-col p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 15px 0;
    padding: 0;
}

.testimonial-carousel .testimonial-col h3 {
    color: #1a2a4a;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 5px 0;
}

.testimonial-carousel .testimonial-col .fa-star,
.testimonial-carousel .testimonial-col .fa-star-o,
.testimonial-carousel .testimonial-col .fa-star-half-o {
    color: #F4A22F;
    font-size: 16px;
    margin: 0 2px;
}

/* Owl Carousel Navigation - Testimonials */
.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    background: #F4A22F !important;
    color: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.testimonial-carousel .owl-nav button.owl-next {
    right: -20px;
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
    background: #e8921a !important;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-carousel .owl-dots {
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: #F4A22F !important;
    width: 30px;
}

.testimonial-carousel .owl-dots .owl-dot span {
    background: #ccc !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dots .owl-dot:hover span {
    background: #F4A22F !important;
}

/* Mobile Responsive - Testimonials */
@media (max-width: 768px) {
    .testimonial-carousel {
        width: 95%;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
    
    .testimonial-carousel .owl-nav button.owl-next {
        right: -10px;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 16px !important;
    }
    
    .testimonial-carousel .testimonial-col {
        padding: 20px;
    }
    
    .testimonial-carousel .testimonial-col img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel .testimonial-col p {
        font-size: 14px;
    }
    .testimonial-carousel .testimonial-col h3 {
        font-size: 16px;
    }
}

/* ================================================
   FAQ BODY STYLING
   ================================================ */
.accordion-body {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
    padding: 20px 25px;
}

/* Links */
.accordion-body a {
    color: #F4A22F;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.accordion-body a:hover {
    color: #e8921a;
    border-bottom-color: #F4A22F;
}

/* Phone numbers */
.accordion-body .phone-number {
    color: #1a2a4a;
    font-weight: 700;
    background: rgba(244, 162, 47, 0.08);
    padding: 2px 12px;
    border-radius: 6px;
    border: 1px solid rgba(244, 162, 47, 0.15);
    display: inline-block;
}

/* Lists in FAQ */
.accordion-body ul,
.accordion-body ol {
    padding-left: 20px;
    margin: 10px 0;
}

.accordion-body ul li,
.accordion-body ol li {
    color: #555;
    padding: 4px 0;
}

/* Icons in FAQ */
.accordion-body .faq-icon {
    color: #F4A22F;
    margin-right: 8px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-body {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .accordion-body .phone-number {
        font-size: 13px;
        padding: 2px 8px;
        display: inline-block;
    }
}

/* ================================================
   GALLERY SECTION STYLES
   ================================================ */

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header .subtitle {
    color: #F4A22F;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-header .title {
    color: #1a2a4a;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.gallery-header .title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #e8921a);
    border-radius: 2px;
}

.gallery-header .description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Gallery Grid - Improved Spacing */
.gallery-grid {
    --gallery-gap: 10px;
}

.gallery-grid .col-md-3,
.gallery-grid .col-6 {
    padding: 10px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(244, 162, 47, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 162, 47, 0.75);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
    transform: scale(0.6);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-header .title {
        font-size: 28px;
    }
    
    .gallery-header .subtitle {
        font-size: 15px;
    }
    
    .gallery-header .description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .gallery-grid .col-md-3,
    .gallery-grid .col-6 {
        padding: 3px;
    }
    
    .gallery-item {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid .col-md-3,
    .gallery-grid .col-6 {
        padding: 6px;
    }
    
    .gallery-header .title {
        font-size: 24px;
    }
    
    .gallery-overlay i {
        font-size: 24px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .gallery-header .title {
        font-size: 28px;
    }
    .gallery-header .subtitle {
        font-size: 15px;
    }
    .gallery-header .description {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* ================================================
   CALL TO ACTION
   ================================================ */
.cta {
    margin: 60px auto;
    width: 80%;
    max-width: 800px;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(pics/bgf.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 40px 0;
}

.cta h2 {
    color: #ffffff;
    margin-bottom: 30px;
    padding: 0;
}

@media(max-width: 700px){
    .cta {
        width: 90%;
        padding: 30px 0;
    }
    .cta h1 {
        font-size: 24px;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    width: 100%;
    text-align: center;
    padding: 0px 0;
    background: #d39641;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: #000;
}

.footer p {
    font-weight: 600;
    font-size: 14px;
}

.icons .fa {
    color: #ffffff;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o {
    color: #ffffff;
}

/* Newsletter */
.newsletter .form-control:focus {
    border-color: #F4A22F;
    box-shadow: 0 0 0 0.25rem rgba(244, 162, 47, 0.25);
}

.newsletter .form-control {
    border-radius: 30px 0 0 30px;
    padding: 10px 20px;
}

.newsletter .btn {
    background: #F4A22F;
    color: #fff;
    border-radius: 0 30px 30px 0;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s ease;
}

.newsletter .btn:hover {
    background: #e8921a;
}

/* ================================================
   SPINNER / LOADER - FIXED
   ================================================ */
#spinner {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#spinner:not(.show) {
    opacity: 0;
    visibility: hidden;
}

/* ================================================
   BACK TO TOP BUTTON
   ================================================ */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #020202;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.back-to-top:hover {
    background: #e8921a;
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 20px;
}

/* ================================================
   ABOUT US PAGE - CLEAN WHITE BACKGROUND
   ================================================ */

.about-us {
    width: 85%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 0;
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.04);
}

.about-us .row {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 0;
}

.about-col {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px 0;
}

.about-col h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.about-col h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.about-col h1 span {
    color: #F4A22F;
    display: inline-block;
}

.about-col p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    padding: 0;
    font-weight: 300;
}

.about-col p.highlight {
    font-size: 16px;
    color: #1a2a4a;
    font-weight: 500;
    border-left: 4px solid #F4A22F;
    padding-left: 20px;
    background: rgba(250, 249, 248, 0.05);
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
}

.about-col .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(244, 162, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.about-col .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(244, 162, 47, 0.4);
    background: linear-gradient(135deg, #e8921a, #d4810f);
}

.about-col .hero-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.about-col .hero-btn:hover::before {
    left: 100%;
}

.about-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    object-fit: cover;
}

.about-col img:hover {
    transform: scale(1.01) translateY(-5px);
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.10);
}

.about-col:last-child {
    position: relative;
}

.about-col:last-child::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(244, 162, 47, 0.1);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-col:last-child:hover::before {
    top: -10px;
    right: -10px;
    border-color: rgba(244, 162, 47, 0.2);
}

/* --- Stats - Clean Light Background --- */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 12px 24px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 80px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item .number {
    font-size: 28px;
    font-weight: 700;
    color: #F4A22F;
    display: block;
    line-height: 1.2;
}

.stat-item .label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
    .about-us {
        width: 92%;
        padding: 30px 0;
    }
    .about-us .row {
        gap: 35px;
    }
    .about-col h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .about-us {
        width: 95%;
        padding: 20px 0;
        margin: 20px auto;
        border-radius: 12px;
    }
    .about-us .row {
        flex-direction: column;
        gap: 30px;
    }
    .about-col {
        flex: 1 1 100%;
        min-width: unset;
        padding: 0;
        text-align: center;
    }
    .about-col h1 {
        font-size: 28px;
        text-align: center;
    }
    .about-col h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    .about-col p {
        text-align: center;
        font-size: 14px;
    }
    .about-col p.highlight {
        text-align: left;
        font-size: 14px;
    }
    .about-stats {
        justify-content: center;
        gap: 15px;
    }
    .stat-item {
        padding: 10px 18px;
    }
    .about-col img {
        max-height: 300px;
        object-fit: cover;
    }
    .about-col .hero-btn {
        display: inline-block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-us {
        width: 98%;
        padding: 15px 0;
        margin: 15px auto;
        border-radius: 10px;
    }
    .about-col h1 {
        font-size: 24px;
    }
    .about-col p {
        font-size: 13px;
        line-height: 1.7;
    }
    .about-col p.highlight {
        font-size: 13px;
        padding-left: 12px;
    }
    .stat-item .number {
        font-size: 22px;
    }
    .stat-item .label {
        font-size: 10px;
    }
    .stat-item {
        padding: 8px 14px;
    }
    .about-col img {
        max-height: 220px;
        border-radius: 12px;
    }
    .about-col .hero-btn {
        font-size: 13px;
        padding: 12px 30px;
    }
}
/* ================================================
   LARGEST SOLAR COMPANY SECTION
   ================================================ */
.largest-solar-section {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(135deg, #d4ebeb 0%, #f3f5f8 50%, #feffff 100%);
    position: relative;
    overflow: hidden;
}

.largest-solar-section::before {
    content: '☀️';
    position: absolute;
    font-size: 100px;
    opacity: 0.03;
    top: -80px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.largest-solar-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(252, 148, 4, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 150, 4, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.solar-headline {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.solar-headline h1 {
    font-size: 30px;
    font-weight: 400;
    color: #F4A22F;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.solar-headline h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F4A22F, #FFD700, #F4A22F, transparent);
    border-radius: 2px;
}

.solar-headline h1::before {
    content: '⚡';
    font-size: 30px;
    margin-right: 15px;
    display: inline-block;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); filter: drop-shadow(0 0 5px rgba(244, 162, 47, 0.3)); }
    50% { opacity: 2; transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(244, 162, 47, 0.6)); }
}

.solar-subtitle {
    text-align: center;
    color: rgba(2, 2, 2, 0.6);
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 25px;
    font-weight: 300;
}

.p-section {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.p-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.p-col {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background: rgba(252, 185, 2, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid rgba(244, 162, 47, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.p-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 162, 47, 0.08), transparent 50%);
    pointer-events: none;
    border-radius: 5px;
}

.p-col::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    height: calc(100% - 40px);
    width: 3px;
    background: linear-gradient(180deg, #F4A22F, #FFD700);
    border-radius: 0 2px 2px 0;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.p-col:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(244, 162, 47, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.p-col:hover::after {
    opacity: 1;
    width: 6px;
    box-shadow: 0 0 20px rgba(244, 162, 47, 0.3);
}

.p-col p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.85);
    margin: 0;
    padding: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.p-col:first-child p {
    font-size: 14px;
    font-weight: 400;
    color: #070707;
    line-height: 2;
}

.p-col p strong {
    color: #F4A22F;
    font-weight: 600;
}

.p-col:nth-child(1) p::before { content: '🏢'; }
.p-col:nth-child(2) p::before { content: '⚡'; }
.p-col:nth-child(3) p::before { content: '🤝'; }
.p-col:nth-child(4) p::before { content: '🌍'; }

.p-col p::before {
    font-size: 30px;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.p-col:nth-child(1) { animation-delay: 0.1s; }
.p-col:nth-child(2) { animation-delay: 0.2s; }
.p-col:nth-child(3) { animation-delay: 0.3s; }
.p-col:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .p-section {
        width: 95%;
    }
    .p-section .row {
        flex-direction: column;
    }
    .p-col {
        flex: 1 1 100%;
        padding: 24px 20px;
    }
}

/* ================================================
   PARTNERS PAGE
   ================================================ */
.partners-section {
    width: 100%;
    padding: 20px 0 40px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.partners-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 10px;
}

.partners-header h1 {
    font-size: 16px;
    font-weight: 400;
    color: #1a2a4a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}


@keyframes handshakePulse {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.partners-header p {
    font-size: 20px;
    color: #000000;
    margin: 0 auto;
    padding-top: 10px;
    font-weight: 300;
    line-height: 1.7;
    white-space: nowrap; /* Forces the text onto a single line */
    max-width: none;     /* Removes the 400px restriction so it doesn't wrap */
}

.partners-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-grid .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.partners-col {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.partners-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partners-col:hover::before {
    opacity: 1;
}

.partners-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.15);
}

.partner-logo {
    width: 100%;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 47, 0.04);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.partners-col:hover .partner-logo {
    background: rgba(244, 162, 47, 0.08);
    border-color: rgba(244, 162, 47, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(0%);
}

.partners-col:hover .partner-logo img {
    transform: scale(1.05);
}

.partners-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.partners-col:hover h3 {
    color: #F4A22F;
}

.partners-col .partner-type {
    font-size: 11px;
    color: #F4A22F;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(244, 162, 47, 0.08);
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.partners-col p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 15px 0;
    padding: 0;
    font-weight: 300;
}

.partners-col .hero-btn {
    display: inline-block;
    padding: 8px 26px;
    background: transparent;
    color: #F4A22F;
    border: 2px solid #F4A22F;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.partners-col .hero-btn:hover {
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 47, 0.3);
}

.partners-grid .row:nth-child(1) .partners-col:nth-child(1) { animation-delay: 0.04s; }
.partners-grid .row:nth-child(1) .partners-col:nth-child(2) { animation-delay: 0.08s; }
.partners-grid .row:nth-child(1) .partners-col:nth-child(3) { animation-delay: 0.12s; }
.partners-grid .row:nth-child(2) .partners-col:nth-child(1) { animation-delay: 0.16s; }
.partners-grid .row:nth-child(2) .partners-col:nth-child(2) { animation-delay: 0.20s; }
.partners-grid .row:nth-child(2) .partners-col:nth-child(3) { animation-delay: 0.24s; }
.partners-grid .row:nth-child(3) .partners-col:nth-child(1) { animation-delay: 0.28s; }
.partners-grid .row:nth-child(3) .partners-col:nth-child(2) { animation-delay: 0.32s; }
.partners-grid .row:nth-child(3) .partners-col:nth-child(3) { animation-delay: 0.36s; }

@media (max-width: 992px) {
    .partners-col {
        flex: 1 1 calc(50% - 18px);
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .partners-col {
        flex: 1 1 100%;
        min-width: unset;
    }
    /* ✅ FIX: Allow partners header text to wrap on mobile */
    .partners-header p {
        white-space: normal;
        font-size: 16px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
 /* ================================================
   PROJECTS PAGE - NAVIGATION ON LEFT
   ================================================ */

/* Main container - flex layout */
.projects-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    padding: 0 20px 40px;
    display: flex !important;
    gap: 30px;
    align-items: flex-start;
}

/* Left sidebar - navigation only */
.projects-left {
    flex: 0 0 220px;
    min-width: 180px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Right content area - everything else */
.projects-right {
    flex: 1;
    min-width: 0;
    padding-top: 0;
    margin-top: 0;
}

/* ===== VERTICAL NAVIGATION ===== */
.org-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    border-right: 2px solid #eee;
    padding-right: 20px;
    padding-top: 0;
    margin-top: 0;
}

.org-nav a {
    padding: 12px 18px;
    background: linear-gradient(135deg, #f0f2f5, #e8ebf0);
    border-radius: 10px;
    color: #1a2a4a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: flex-start;
}

.org-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.org-nav a:hover::before {
    left: 100%;
}

.org-nav a:hover {
    background: linear-gradient(135deg, #e8ebf0, #d5dce8);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    border-color: rgba(244, 162, 47, 0.2);
}

.org-nav a.active {
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(244, 162, 47, 0.35);
    border-color: #F4A22F;
}

.org-nav a.active::before {
    display: none;
}

.org-nav a i {
    font-size: 16px;
    width: 22px;
    text-align: center;
    transition: transform 0.3s ease;
}

.org-nav a:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.org-nav a.active i {
    transform: scale(1.1);
}

.org-nav .nav-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: auto;
}

.org-nav a:hover .nav-count {
    background: rgba(0, 0, 0, 0.12);
}

.org-nav a.active .nav-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Featured button */
.org-nav a.featured-link {
    background: linear-gradient(135deg, #FF6B35, #F4A22F);
    color: #fff;
    border-color: #FF6B35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.org-nav a.featured-link .nav-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.org-nav a.featured-link:hover {
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.org-nav a.featured-link i {
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}


/* ================================================
   PROJECTS PAGE
   ================================================ */

/* ================================================
   ORGANIZATION SECTIONS
   ================================================ */
.org-section {
    margin-bottom: 60px;
    padding: 0 10px;
    display: none;
    animation: fadeInSection 0.6s ease forwards;
    margin-top: 0;
    padding-top: 50px;
}

.org-section.active {
    display: block !important;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ORGANIZATION HEADER ===== */
.org-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F4A22F;
    position: relative;
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: 0;
}

.org-header .org-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.org-header .org-info {
    flex: 1;
    min-width: 200px;
}

.org-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.org-header h2 .featured-tag {
    font-size: 14px;
    color: #F4A22F;
    font-weight: 600;
    background: rgba(244, 162, 47, 0.12);
    padding: 2px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.org-header .org-description {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.org-header .org-count {
    background: #1a2a4a;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.org-header .org-count i {
    font-size: 12px;
    opacity: 0.7;
}

/* ===== PROJECT GRID ===== */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 0;
    padding-top: 0;
}

/* ================================================
   PROJECTS PAGE STYLES - SAFER POWER GROUP
   ================================================ */

/* Projects Header - Centered */
.projects-header {
    text-align: center;
    margin-bottom: 5px;
    padding: 50px 20px 20px 20px;
    margin-top: 0;
    width: 100%;
}

.projects-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #020202;
    margin-bottom: 5px;
    margin-top: 0;
    padding-top: 10px;
    position: relative;
    display: inline-block;
}

.projects-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.projects-header h1::before {
    content: '🏗️';
    font-size: 28px;
    margin-right: 10px;
    display: inline-block;
    animation: constructionPulse 2.5s ease-in-out infinite;
}

@keyframes constructionPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.projects-header p {
    font-size: 17px;
    color: #000000;
    max-width: 750px;
    margin: 5px auto 0;
    font-weight: 300;
    line-height: 1.6;
    padding-top: 0;
}

/* Organization Sections (Full Width & Visible by Default) */
.projects-section {
    display: block !important;
    padding: 20px 5% 60px 5%;
}

.projects-right {
    width: 100% !important;
}

.org-section {
    margin-bottom: 60px;
    padding: 0 10px;
    display: block !important;
    animation: fadeInSection 0.6s ease forwards;
    margin-top: 0;
    padding-top: 30px;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Organization Header */
.org-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F4A22F;
    position: relative;
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: 0;
}

.org-header .org-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.org-header .org-info {
    flex: 1;
    min-width: 200px;
}

.org-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.org-header h2 .featured-tag {
    font-size: 14px;
    color: #F4A22F;
    font-weight: 600;
    background: rgba(244, 162, 47, 0.12);
    padding: 2px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.org-header .org-description {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.org-header .org-count {
    background: #1a2a4a;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.org-header .org-count i {
    font-size: 12px;
    opacity: 0.7;
}

/* Project Grid */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 0;
    padding-top: 0;
}

/* Project Cards */
.org-grid .projects-col {
    flex: 0 0 100%;
    min-width: unset;
    max-width: unset;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 0 22px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.org-grid .projects-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.org-grid .projects-col:hover::before {
    opacity: 1;
}

.org-grid .projects-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.org-grid .projects-col .project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
    flex-shrink: 0;
}

.org-grid .projects-col .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.org-grid .projects-col:hover .project-image img {
    transform: scale(1.08);
}

.org-grid .projects-col .project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.org-grid .projects-col .project-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    pointer-events: none;
    z-index: 3;
    background: rgba(0, 0, 0, 0.35);
    padding: 4px 14px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.org-grid .projects-col:hover .project-number {
    background: rgba(244, 162, 47, 0.85);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(244, 162, 47, 0.3);
}

.org-grid .projects-col .project-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    z-index: 3;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.3);
    transition: all 0.3s ease;
}

.org-grid .projects-col:hover .project-tag {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 162, 47, 0.4);
}

.org-grid .projects-col .project-content {
    padding: 18px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.org-grid .projects-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.4;
    min-height: 50px;
}

.org-grid .projects-col:hover h3 {
    color: #F4A22F;
}

.org-grid .projects-col p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: 300;
    flex: 1;
}

.org-grid .projects-col p strong {
    color: #1a2a4a;
    font-weight: 600;
}

.org-grid .projects-col .project-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.org-grid .projects-col .project-details .detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    transition: color 0.3s ease;
}

.org-grid .projects-col .project-details .detail-item i {
    color: #F4A22F;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.org-grid .projects-col .project-details .detail-item span {
    font-weight: 600;
    color: #333;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35, #F4A22F);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.4);
    animation: pulseFeatured 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes pulseFeatured {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .projects-section {
        padding: 0 15px 40px;
    }
    .org-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 0 10px 30px;
    }
    .org-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .org-header .org-info {
        flex: 1 1 100%;
        order: 2;
    }
    .org-header .org-count {
        margin-left: 0;
        order: 3;
    }
    .org-header .org-icon {
        order: 1;
    }
    .org-header h2 {
        font-size: 22px;
    }
    .org-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .org-grid .projects-col .project-image {
        height: 180px;
    }
    .projects-header h1 {
        font-size: 24px;
    }
    .projects-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 0 5px 25px;
    }
    .org-header h2 {
        font-size: 19px;
    }
    .projects-header h1 {
        font-size: 20px;
    }
    .projects-header p {
        font-size: 14px;
    }
}
/* ================================================
   SERVICES PAGE
   ================================================ */
.services-page {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 20px 0 40px;
}

.services-page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
}

.services-page-header h5 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-top:20px;
}

.services-page-header h5::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.services-page-header h5::before {
    content: '⚡';
    font-size: 20px;
    margin-right: 12px;
    display: inline-block;
    animation: energyPulse 2s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-10deg); }
}

.services-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.services-grid .row:last-child {
    margin-bottom: 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 0 25px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.service-card .service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card .service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.service-card .service-icon {
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-size: 32px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.service-card .service-content {
    padding: 18px 20px 0;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.service-card:hover h3 {
    color: #F4A22F;
}

.service-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.services-grid .row:nth-child(1) .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .row:nth-child(1) .service-card:nth-child(2) { animation-delay: 0.10s; }
.services-grid .row:nth-child(1) .service-card:nth-child(3) { animation-delay: 0.15s; }
.services-grid .row:nth-child(1) .service-card:nth-child(4) { animation-delay: 0.20s; }
.services-grid .row:nth-child(1) .service-card:nth-child(5) { animation-delay: 0.25s; }
.services-grid .row:nth-child(1) .service-card:nth-child(6) { animation-delay: 0.30s; }

@media (max-width: 992px) {
    .service-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
        min-width: unset;
    }
}

/* ================================================
   AFRICA PRESENCE
   ================================================ */
.africa-presence-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
}

.africa-presence-section::before {
    content: '🌍';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(10deg);
    pointer-events: none;
}

.africa-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.africa-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.africa-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.africa-header h1::before {
    content: '🌍';
    font-size: 50px;
    margin-right: 12px;
    display: inline-block;
    animation: globeSpin 4s ease-in-out infinite;
}

@keyframes globeSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.05); }
    75% { transform: rotate(-10deg) scale(1.05); }
}

.africa-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.africa-content .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.africa-col {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px 0;
}

.africa-col h1 {
    font-size: 30px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
}

.africa-col h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.africa-col h1::before {
    content: '🚀';
    font-size: 28px;
    margin-right: 12px;
    display: inline-block;
}

.africa-col p {
    font-size: 16px;
    line-height: 1.9;
    color: #050505;
    margin-bottom: 18px;
    padding: 0;
    font-weight: 300;
}

.africa-col p strong {
    color: #F4A22F;
    font-weight: 600;
}

.africa-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    border: 3px solid rgba(244, 162, 47, 0.1);
}

.africa-col img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.2);
}

.countries-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 20px;
    position: relative;
    z-index: 2;
}

.countries-section h1 {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    width: 70%;
}

.countries-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.countries-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 15px auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.country-col {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 0 25px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.country-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.country-col:hover::before {
    opacity: 1;
}

.country-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.country-col .country-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
}

.country-col .country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.country-col:hover .country-image img {
    transform: scale(1.08);
}

.country-col .country-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.country-col .country-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 36px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.country-col:hover .country-flag {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.country-col .hq-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.country-col:hover .hq-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 162, 47, 0.4);
}

.country-col .country-content {
    padding: 18px 22px 0;
}

.country-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.country-col:hover h3 {
    color: #F4A22F;
}

.country-col p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.country-col p strong {
    color: #1a2a4a;
    font-weight: 600;
}

.country-col:nth-child(1) { animation-delay: 0.15s; }
.country-col:nth-child(2) { animation-delay: 0.20s; }
.country-col:nth-child(3) { animation-delay: 0.25s; }

@media (max-width: 992px) {
    .country-col {
        flex: 1 1 calc(50% - 25px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .africa-content .row {
        flex-direction: column;
    }
    .africa-col {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }
    .africa-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .country-col {
        flex: 1 1 100%;
        min-width: unset;
    }
}

/* ================================================
   VIRTUAL VISIT
   ================================================ */
.virtual-visit-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
}

.virtual-visit-section::before {
    content: '🎥';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(10deg);
    pointer-events: none;
}

.virtual-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.virtual-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #f8a203;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.virtual-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.virtual-header h1::before {
    content: '🎥';
    font-size: 30px;
    margin-right: 12px;
    display: inline-block;
    animation: cameraPulse 2.5s ease-in-out infinite;
}

@keyframes cameraPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.video-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.video-section .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.video-col {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px 0;
}

.video-col h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
}

.video-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.video-col p {
    font-size: 16px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 18px;
    padding: 0;
    font-weight: 300;
}

.video-col .feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.video-col .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.video-col .feature-list li:last-child {
    border-bottom: none;
}

.video-col .feature-list li i {
    color: #F4A22F;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 3px solid rgba(244, 162, 47, 0.1);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.management-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 20px;
    position: relative;
    z-index: 2;
}

.management-section h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.management-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.management-section > p {
    text-align: center;
    font-size: 17px;
    color: #000000;
    max-width: 700px;
    margin: 15px auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.management-col {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 0 25px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.management-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.management-col:hover::before {
    opacity: 1;
}

.management-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.management-col .member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
}

.management-col .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.management-col:hover .member-image img {
    transform: scale(1.05);
}

.management-col .member-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.3);
}

.management-col .member-content {
    padding: 18px 22px 0;
}

.management-col h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 5px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.management-col:hover h3 {
    color: #F4A22F;
}

.management-col .member-title {
    font-size: 14px;
    color: #F4A22F;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.management-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.management-col .social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.management-col .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(244, 162, 47, 0.08);
    color: #F4A22F;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.management-col .social-links a:hover {
    background: #F4A22F;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.3);
}

.management-col:nth-child(1) { animation-delay: 0.15s; }
.management-col:nth-child(2) { animation-delay: 0.20s; }
.management-col:nth-child(3) { animation-delay: 0.25s; }

@media (max-width: 992px) {
    .management-col {
        flex: 1 1 calc(50% - 25px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .video-section .row {
        flex-direction: column;
    }
    .video-col {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }
    .video-col h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .management-col {
        flex: 1 1 100%;
        min-width: unset;
    }
}

/* ================================================
   BLOG
   ================================================ */
.blog-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 40px 0 60px;
}

.blog-section::before {
    content: '📰';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    bottom: -30px;
    right: -30px;
    transform: rotate(15deg);
    pointer-events: none;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.blog-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.blog-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.blog-header h1::before {
    content: '📰';
    font-size: 30px;
    margin-right: 12px;
    display: inline-block;
    animation: newsPulse 2.5s ease-in-out infinite;
}
.blog-header p{
    color: #1a2a4a;
}
@keyframes newsPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.blog-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-grid .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* FIX: Ensure row uses flex with equal heights */
    align-items: stretch;
}

.blog-col {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0 0 22px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    /* FIX: Make all cards same height */
    display: flex;
    flex-direction: column;
}

.blog-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.blog-col:hover::before {
    opacity: 1;
}

.blog-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.blog-col .blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
    /* FIX: Prevent image from shrinking */
    flex-shrink: 0;
}

.blog-col .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.blog-col:hover .blog-image img {
    transform: scale(1.08);
}

.blog-col .blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.blog-col .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.blog-col:hover .category-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(244, 162, 47, 0.4);
}

.blog-col .date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-col .blog-content {
    padding: 18px 22px 0;
    /* FIX: Make content area flexible and push content down */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.4;
    /* FIX: Ensure consistent height for titles */
    min-height: 50px;
}

.blog-col:hover h3 {
    color: #F4A22F;
}

.blog-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 12px 0;
    padding: 0;
    font-weight: 300;
    /* FIX: Allow description to grow but not overflow */
    flex: 1;
}

.blog-col .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #F4A22F;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    /* FIX: Push read more to bottom */
    margin-top: auto;
}

.blog-col .read-more:hover {
    gap: 12px;
    border-bottom-color: #F4A22F;
}

.blog-col .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 10px;
    /* FIX: Keep meta at bottom */
    margin-top: auto;
}

.blog-col .blog-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.blog-col .blog-meta .meta-item i {
    color: #F4A22F;
    font-size: 14px;
}

/* FIX: Animation delays for all cards */
.blog-col:nth-child(1) { animation-delay: 0.05s; }
.blog-col:nth-child(2) { animation-delay: 0.10s; }
.blog-col:nth-child(3) { animation-delay: 0.15s; }
.blog-col:nth-child(4) { animation-delay: 0.20s; }
.blog-col:nth-child(5) { animation-delay: 0.25s; }
.blog-col:nth-child(6) { animation-delay: 0.30s; }

/* ===== LOAD MORE BUTTON ===== */
.load-more-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #1a2a4a, #2a3a5a);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 42, 74, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(26, 42, 74, 0.3);
    background: linear-gradient(135deg, #2a3a5a, #1a2a4a);
}

.load-more-btn:active {
    transform: translateY(0px);
}

.load-more-btn i {
    font-size: 18px;
}

/* FIX: No more posts message */
.no-more-msg {
    color: #888;
    margin-top: 20px;
    font-style: italic;
    font-size: 15px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .blog-col {
        flex: 0 0 calc(50% - 25px);
        min-width: 240px;
    }
    
    .blog-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blog-col {
        flex: 0 0 100%;
        min-width: unset;
        margin: 0 10px;
    }
    
    .blog-header h1 {
        font-size: 28px;
    }
    
    .blog-header h1::before {
        font-size: 24px;
    }
    
    .blog-col .blog-image {
        height: 180px;
    }
    
    .load-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 24px;
    }
    
    .blog-col h3 {
        font-size: 16px;
        min-height: 40px;
    }
    
    .blog-col p {
        font-size: 13px;
    }
}
/* ================================================
   QUALITY POLICIES
   ================================================ */
.quality-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.quality-section::before {
    content: '✅';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.quality-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.quality-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.quality-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.quality-header h1::before {
    content: '✅';
    font-size: 30px;
    margin-right: 12px;
    display: inline-block;
    animation: checkPulse 2.5s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.quality-header p {
    font-size: 17px;
    color: #666;
    max-width: 750px;
    margin: 15px auto 0;
    font-weight: 300;
    line-height: 1.8;
}

.quality-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quality-content .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: rgba(244, 162, 47, 0.04);
    border-radius: 12px;
    border-left: 4px solid #F4A22F;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quality-list li:hover {
    background: rgba(244, 162, 47, 0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(244, 162, 47, 0.08);
}

.quality-list li .list-icon {
    font-size: 22px;
    min-width: 36px;
    color: #F4A22F;
    margin-top: 2px;
}

.quality-list li .list-content {
    flex: 1;
}

.quality-list li .list-content strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a4a;
    display: block;
    margin-bottom: 2px;
}

.quality-list li .list-content span {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 25px 0 30px;
}

.quality-stats .stat-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(244, 162, 47, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(244, 162, 47, 0.06);
    transition: all 0.3s ease;
}

.quality-stats .stat-item:hover {
    background: rgba(244, 162, 47, 0.08);
    transform: translateY(-3px);
}

.quality-stats .stat-item .number {
    font-size: 28px;
    font-weight: 700;
    color: #F4A22F;
    display: block;
    line-height: 1.2;
}

.quality-stats .stat-item .label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-list li:nth-child(1) { animation-delay: 0.15s; }
.quality-list li:nth-child(2) { animation-delay: 0.20s; }
.quality-list li:nth-child(3) { animation-delay: 0.25s; }
.quality-list li:nth-child(4) { animation-delay: 0.30s; }
.quality-list li:nth-child(5) { animation-delay: 0.35s; }

.quality-stats .stat-item:nth-child(1) { animation-delay: 0.20s; }
.quality-stats .stat-item:nth-child(2) { animation-delay: 0.25s; }
.quality-stats .stat-item:nth-child(3) { animation-delay: 0.30s; }
.quality-stats .stat-item:nth-child(4) { animation-delay: 0.35s; }

@media (max-width: 768px) {
    .quality-content .row {
        flex-direction: column;
    }
    .about-col {
        flex: 1 1 100%;
        text-align: center;
    }
    .about-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .quality-list {
        text-align: left;
    }
    .quality-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .quality-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   ACCREDITATIONS
   ================================================ */
.accreditations-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.accreditations-section::before {
    content: '🏅';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.accreditations-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.accreditations-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.accreditations-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.accreditations-header h1::before {
    content: '🏅';
    font-size: 30px;
    margin-right: 12px;
    display: inline-block;
    animation: medalPulse 2.5s ease-in-out infinite;
}
.accreditations-header p{
    color: #1a2a4a;
}
@keyframes medalPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.accreditations-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.accreditations-content .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.accreditations-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.accreditations-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    margin-bottom: 14px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.accreditations-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F4A22F, #FFD700);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.accreditations-list li:hover::before {
    opacity: 1;
    width: 6px;
}

.accreditations-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.accreditations-list li .cert-icon {
    font-size: 28px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 162, 47, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.accreditations-list li:hover .cert-icon {
    background: linear-gradient(135deg, #F4A22F, #FFD700);
    color: #ffffff;
    transform: scale(1.05);
}

.accreditations-list li .cert-content {
    flex: 1;
}

.accreditations-list li .cert-content strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a4a;
    display: block;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.accreditations-list li:hover .cert-content strong {
    color: #F4A22F;
}

.accreditations-list li .cert-content span {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

.accreditations-list li .cert-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(244, 162, 47, 0.08);
    color: #F4A22F;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.accreditations-list li:hover .cert-badge {
    background: linear-gradient(135deg, #F4A22F, #FFD700);
    color: #ffffff;
}

.accreditations-list li:nth-child(1) { animation-delay: 0.15s; }
.accreditations-list li:nth-child(2) { animation-delay: 0.20s; }
.accreditations-list li:nth-child(3) { animation-delay: 0.25s; }
.accreditations-list li:nth-child(4) { animation-delay: 0.30s; }

@media (max-width: 768px) {
    .accreditations-content .row {
        flex-direction: column;
    }
    .about-col {
        flex: 1 1 100%;
        text-align: center;
    }
    .about-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .accreditations-list {
        text-align: left;
    }
}

/* ================================================
   MISSION & VISION
   ================================================ */
.mission-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.mission-section::before {
    content: '🎯';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.mission-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mission-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.mission-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.mission-header h1::before {
    content: '🎯';
    font-size: 30px;
    margin-right: 12px;
    display: inline-block;
    animation: targetPulse 2.5s ease-in-out infinite;
}

@keyframes targetPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.mission-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-content .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.vision-card,
.mission-card {
    padding: 25px 22px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.vision-card {
    background: linear-gradient(135deg, rgba(244, 162, 47, 0.05), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(244, 162, 47, 0.12);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 162, 47, 0.08);
    border-color: rgba(244, 162, 47, 0.25);
}

.mission-card {
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.04), rgba(26, 42, 74, 0.01));
    border: 1px solid rgba(26, 42, 74, 0.08);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 74, 0.06);
    border-color: rgba(26, 42, 74, 0.15);
}

.vision-card .card-icon,
.mission-card .card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mission-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    color: #F4A22F;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    color: #1a2a4a;
}

.vision-card p,
.mission-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.values-section {
    margin-top: 30px;
}

.values-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0 25px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(244, 162, 47, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(244, 162, 47, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover {
    background: rgba(244, 162, 47, 0.08);
    transform: translateX(5px);
    border-color: rgba(244, 162, 47, 0.15);
}

.value-item .value-icon {
    font-size: 22px;
    min-width: 36px;
    color: #F4A22F;
}

.value-item .value-content strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a4a;
    display: block;
    line-height: 1.2;
}

.value-item .value-content span {
    font-size: 13px;
    color: #666;
    font-weight: 300;
}

.vision-card { animation-delay: 0.15s; }
.mission-card { animation-delay: 0.20s; }
.value-item:nth-child(1) { animation-delay: 0.25s; }
.value-item:nth-child(2) { animation-delay: 0.30s; }
.value-item:nth-child(3) { animation-delay: 0.35s; }
.value-item:nth-child(4) { animation-delay: 0.40s; }
.value-item:nth-child(5) { animation-delay: 0.45s; }

@media (max-width: 768px) {
    .mission-content .row {
        flex-direction: column;
    }
    .about-col {
        flex: 1 1 100%;
        text-align: center;
    }
    .vision-mission-cards {
        grid-template-columns: 1fr;
    }
    .values-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   CAREERS
   ================================================ */
.careers-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
}

.careers-section::before {
    content: '💼';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    pointer-events: none;
}

.careers-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.careers-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.careers-header h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.careers-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.careers-content .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.careers-col {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 20px 0;
}

.careers-col h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
}

.careers-col h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.careers-col p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
    padding: 0;
    font-weight: 300;
}

.careers-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
    border: 3px solid rgba(244, 162, 47, 0.1);
}

.careers-col img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.2);
}

.vacancies-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 20px;
    position: relative;
    z-index: 2;
}

.vacancies-section h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.vacancies-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.vacancies-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 15px auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.vacancies-col {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 25px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.vacancies-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vacancies-col:hover::before {
    opacity: 1;
}

.vacancies-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.vacancies-col .job-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.vacancies-col:hover .job-icon {
    transform: scale(1.1) rotate(-5deg);
}

.vacancies-col .job-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 14px;
    border-radius: 20px;
    background: rgba(244, 162, 47, 0.08);
    color: #F4A22F;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.vacancies-col:hover .job-type {
    background: linear-gradient(135deg, #F4A22F, #FFD700);
    color: #ffffff;
}

.vacancies-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.vacancies-col:hover h3 {
    color: #F4A22F;
}

.vacancies-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.vacancies-col .job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.vacancies-col .job-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}

.vacancies-col .job-meta .meta-item i {
    color: #F4A22F;
    font-size: 14px;
}

.vacancies-col .apply-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 24px;
    background: transparent;
    color: #F4A22F;
    border: 2px solid #F4A22F;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.vacancies-col .apply-btn:hover {
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 47, 0.3);
}

.apply-section {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(244, 162, 47, 0.05), rgba(255, 215, 0, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(244, 162, 47, 0.08);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.apply-section:hover {
    border-color: rgba(244, 162, 47, 0.15);
    box-shadow: 0 10px 40px rgba(244, 162, 47, 0.05);
}

.apply-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.apply-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.apply-section > p {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 15px auto 30px;
    font-weight: 300;
    line-height: 1.8;
}

.apply-section .email-display {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(244, 162, 47, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(244, 162, 47, 0.12);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.apply-section .email-display:hover {
    background: rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.2);
}

.apply-section .email-display .label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.apply-section .email-display .email {
    font-size: 22px;
    font-weight: 700;
    color: #F4A22F;
    letter-spacing: 0.5px;
}

.vacancies-col:nth-child(1) { animation-delay: 0.15s; }
.vacancies-col:nth-child(2) { animation-delay: 0.20s; }
.vacancies-col:nth-child(3) { animation-delay: 0.25s; }
.apply-section { animation-delay: 0.30s; }

@media (max-width: 992px) {
    .vacancies-col {
        flex: 1 1 calc(50% - 25px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .careers-content .row {
        flex-direction: column;
    }
    .careers-col {
        flex: 1 1 100%;
        text-align: center;
    }
    .careers-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .vacancies-col {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }
    .vacancies-col .job-meta {
        justify-content: center;
    }
}

/* ================================================
   SEGMENTS
   ================================================ */
.segments-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1b33 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 40px 0 30px;
}

.segments-hero::before {
    content: '🏢';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -30px;
    bottom: -30px;
    transform: rotate(15deg);
}

.segments-hero h1 {
    font-size: 42px;
    color: #F4A22F;
    margin-bottom: 15px;
    position: relative;
}

.segments-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.segments-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 700px;
    margin: 45px auto 0; /* Increased the first value from 30px to 45px (or your preferred size) */
    font-weight: 300;
    line-height: 1.8;
}

.segments-grid {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.segment-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: block;
    color: inherit;
}

.segment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.12);
    border-color: rgba(244, 162, 47, 0.15);
}

.segment-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5, #d5dce8);
}

.segment-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.segment-card:hover .card-image img {
    transform: scale(1.08);
}

.segment-card .card-image .card-icon-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.segment-card .card-content {
    padding: 25px 22px 22px;
}

.segment-card .card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.segment-card:hover .card-content h3 {
    color: #F4A22F;
}

.segment-card .card-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 15px 0;
    padding: 0;
    font-weight: 300;
}

.segment-card .card-content .segment-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(244, 162, 47, 0.08);
    color: #F4A22F;
}

.segment-card .card-content .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #F4A22F;
    transition: all 0.3s ease;
}

.segment-card .card-content .learn-more i {
    transition: transform 0.3s ease;
}

.segment-card:hover .card-content .learn-more i {
    transform: translateX(5px);
}

/* ================================================
   SEGMENT DETAIL
   ================================================ */
.segment-detail {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 50px;
    padding-top: 20px;
}

.segment-detail .back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #F4A22F;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.segment-detail .back-link:hover {
    gap: 15px;
    color: #e8921a;
}

.segment-detail .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 0;
}

.segment-detail .detail-col {
    flex: 1 1 45%;
    min-width: 300px;
}

.segment-detail .detail-col h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 18px;
}

.segment-detail .detail-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.segment-detail .detail-col h2 .highlight {
    color: #F4A22F;
}

.segment-detail .detail-col p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    padding: 0;
}

.segment-detail .detail-col .service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.segment-detail .detail-col .service-list li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-weight: 300;
}

.segment-detail .detail-col .service-list li:last-child {
    border-bottom: none;
}

.segment-detail .detail-col .service-list li i {
    color: #F4A22F;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.segment-detail .detail-col img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    display: block;
    border: 3px solid rgba(244, 162, 47, 0.08);
}

.segment-detail .detail-col img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.15);
}

@media (max-width: 992px) {
    .segments-hero h1 { font-size: 34px; }
    .segments-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
}

@media (max-width: 768px) {
    .segments-hero { padding: 30px 0 40px; }
    .segments-hero h1 { font-size: 28px; }
    .segments-hero p { font-size: 15px; }
    .segments-grid { width: 95%; grid-template-columns: 1fr; gap: 20px; }
    .segment-card .card-image { height: 190px; }
    .segment-detail { width: 95%; margin: 30px auto 40px; }
    .segment-detail .row { flex-direction: column; gap: 25px; }
    .segment-detail .detail-col { flex: 1 1 100%; min-width: unset; text-align: center; }
    .segment-detail .detail-col h2 { font-size: 26px; text-align: center; }
    .segment-detail .detail-col h2::after { left: 50%; transform: translateX(-50%); }
    .segment-detail .detail-col .service-list { text-align: left; max-width: 400px; margin: 0 auto 20px; }
}

/* ================================================
   CONTACT US
   ================================================ */
.contact-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 30px 0 60px;
}

.contact-section::before {
    content: '📞';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    bottom: -30px;
    right: -30px;
    transform: rotate(15deg);
    pointer-events: none;
}

.location {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(244, 162, 47, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.location:hover {
    box-shadow: 0 30px 80px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.2);
    transform: translateY(-5px);
}

.location iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

.contact-us-page {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-us-page .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-col {
    flex: 1 1 45%;
    min-width: 300px;
}

.contact-col > div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-col > div:last-child {
    border-bottom: none;
}

.contact-col > div:hover {
    padding-left: 10px;
}

.contact-col > div .fa {
    font-size: 28px;
    color: #F4A22F;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(244, 162, 47, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-col > div:hover .fa {
    background: #F4A22F;
    color: #ffffff;
    transform: scale(1.05);
}

.contact-col > div span h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-col > div:hover span h5 {
    color: #F4A22F;
}

.contact-col > div span p {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.6;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.contact-col .hours {
    background: rgba(244, 162, 47, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 10px;
}

.contact-col .hours p {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    color: #555;
}

.contact-col .hours p span {
    font-weight: 600;
    color: #1a2a4a;
}

.contact-col:last-child {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.contact-col:last-child:hover {
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.06);
    border-color: rgba(244, 162, 47, 0.1);
}

.contact-col:last-child h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.contact-col:last-child p {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    padding: 0;
}

.contact-col input,
.contact-col textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.5);
    color: #333;
}

.contact-col input:focus,
.contact-col textarea:focus {
    border-color: #F4A22F;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(244, 162, 47, 0.08);
}

.contact-col textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-col .hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(244, 162, 47, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-col .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(244, 162, 47, 0.4);
    background: linear-gradient(135deg, #e8921a, #d4810f);
}

@media (max-width: 992px) {
    .contact-col {
        flex: 1 1 100%;
        min-width: unset;
    }
    .contact-col:last-child {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0 40px;
    }
    .location iframe {
        height: 280px;
    }
    .contact-us-page .row {
        flex-direction: column;
    }
    .contact-col {
        flex: 1 1 100%;
    }
    .contact-col:last-child {
        padding: 25px 20px;
    }
}

/* ================================================
   WHO WE ARE
   ================================================ */
.who-we-are-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 40px 0 60px;
}

.who-we-are-section::before {
    content: '🏢';
    position: absolute;
    font-size: 250px;
    opacity: 0.03;
    bottom: -30px;
    right: -30px;
    transform: rotate(15deg);
    pointer-events: none;
}

.who-we-are {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.who-we-are .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-cards {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0 20px;
    position: relative;
    z-index: 2;
}

.info-cards .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.info-cards .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700);
    border-radius: 2px;
}

.info-cards .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 15px auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.info-col {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4A22F, #FFD700, #F4A22F);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-col:hover::before {
    opacity: 1;
}

.info-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(244, 162, 47, 0.10);
    border-color: rgba(244, 162, 47, 0.12);
}

.info-col .card-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.info-col:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.info-col:hover h3 {
    color: #F4A22F;
}

.info-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.info-col .item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-col .item-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.info-col .item-list li:last-child {
    border-bottom: none;
}

.info-col .item-list li::before {
    content: '▸';
    color: #F4A22F;
    font-weight: 700;
    font-size: 16px;
}

.info-col:nth-child(1) { animation-delay: 0.15s; }
.info-col:nth-child(2) { animation-delay: 0.20s; }
.info-col:nth-child(3) { animation-delay: 0.25s; }

@media (max-width: 992px) {
    .info-col {
        flex: 1 1 calc(50% - 25px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .who-we-are .row {
        flex-direction: column;
    }
    .about-col {
        flex: 1 1 100%;
        text-align: center;
    }
    .about-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .info-col {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }
    .info-col .item-list {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ================================================
   WHATSAPP CHAT BUTTON
   ================================================ */
.whatsapp-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-chat .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.whatsapp-chat .whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-chat .whatsapp-btn .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f44336;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
}

.whatsapp-chat .chat-preview {
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #333;
    max-width: 220px;
    display: none;
    animation: fadeInUp 0.3s ease;
    border-left: 3px solid #25D366;
}

.whatsapp-chat .chat-preview.show {
    display: block;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 80px;
        right: 16px;
    }
    .whatsapp-chat .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
}

/* ================================================
   CHARTBOARD SECTION - Before Footer
   ================================================ */

.chartboard-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #fa9405;
    border-bottom: 1px solid #dee2e6;
}

.chartboard-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.chartboard-section .chartboard-wrapper {
    background: rgb(51,148,72);
    background: linear-gradient(90deg, rgba(51,148,72,1) 0%, rgba(100,181,72,1) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Header */
.chartboard-section .chartboard-header {
    background: linear-gradient(135deg, #1a2a4a, #2a4a7a);
    color: #fff;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chartboard-section .chartboard-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chartboard-section .chartboard-header h5 i {
    color: #fa9405;
}

.chartboard-section .chartboard-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body */
.chartboard-section .chartboard-body {
    padding: 24px 24px 28px 24px;
}

/* Statistics Grid - 4 columns */
.chartboard-section .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 16px;
}

.chartboard-section .stat-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.chartboard-section .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.chartboard-section .stat-card .icon {
    font-size: 24px;
    color: #fa9405;
    margin-bottom: 4px;
    display: block;
}

.chartboard-section .stat-card .number {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a4a;
    line-height: 1.2;
    display: block;
}

.chartboard-section .stat-card .label {
    font-size: 11px;
    color: #fa9405;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

/* Track Stats Row - 3 columns */
.chartboard-section .track-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.chartboard-section .track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.chartboard-section .track-item:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.chartboard-section .track-item .track-icon {
    font-size: 20px;
    color: #fa9405;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.chartboard-section .track-item .track-info {
    flex: 1;
}

.chartboard-section .track-item .track-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    display: block;
    line-height: 1.2;
}

.chartboard-section .track-item .track-label {
    font-size: 10px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Recent Activity */
.chartboard-section h6 {
    color: #1a2a4a;
    font-weight: 600;
    margin: 16px 0 12px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chartboard-section .recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.chartboard-section .recent-item:last-child {
    border-bottom: none;
}

.chartboard-section .recent-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chartboard-section .recent-item .dot.green {
    background: #4CAF50;
}
.chartboard-section .recent-item .dot.orange {
    background: #FF9800;
}
.chartboard-section .recent-item .dot.blue {
    background: #2196F3;
}

.chartboard-section .recent-item .info {
    flex: 1;
}

.chartboard-section .recent-item .info .title {
    font-size: 14px;
    font-weight: 500;
    color: #1a2a4a;
}

.chartboard-section .recent-item .info .sub {
    font-size: 12px;
    color: #1a2a4a;
}

.chartboard-section .recent-item .time {
    font-size: 11px;
    color: #1a2a4a;
    flex-shrink: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablets */
@media (max-width: 992px) {
    .chartboard-section .stat-grid {
        gap: 12px;
    }
    .chartboard-section .stat-card .number {
        font-size: 26px;
    }
    .chartboard-section .track-item .track-number {
        font-size: 18px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .chartboard-section {
        padding: 30px 0;
    }
    .chartboard-section .chartboard-body {
        padding: 16px 16px 20px 16px;
    }
    .chartboard-section .chartboard-header {
        padding: 12px 16px;
    }
    .chartboard-section .chartboard-header h5 {
        font-size: 14px;
    }
    .chartboard-section .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .chartboard-section .stat-card .number {
        font-size: 22px;
    }
    .chartboard-section .stat-card .label {
        font-size: 10px;
    }
    .chartboard-section .stat-card .icon {
        font-size: 20px;
    }
    .chartboard-section .track-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    .chartboard-section .track-item {
        padding: 8px 12px;
    }
    .chartboard-section .track-item .track-number {
        font-size: 16px;
    }
    .chartboard-section .track-item .track-label {
        font-size: 9px;
    }
    .chartboard-section .track-item .track-icon {
        font-size: 16px;
        width: 28px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .chartboard-section {
        padding: 20px 0;
    }
    .chartboard-section .chartboard-body {
        padding: 12px 12px 16px 12px;
    }
    .chartboard-section .chartboard-header {
        padding: 10px 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .chartboard-section .chartboard-header h5 {
        font-size: 12px;
    }
    .chartboard-section .chartboard-badge {
        font-size: 9px;
        padding: 3px 10px;
    }
    .chartboard-section .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .chartboard-section .stat-card {
        padding: 10px 8px;
    }
    .chartboard-section .stat-card .number {
        font-size: 18px;
    }
    .chartboard-section .stat-card .label {
        font-size: 8px;
        letter-spacing: 0;
    }
    .chartboard-section .stat-card .icon {
        font-size: 16px;
    }
    .chartboard-section .track-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
        padding-top: 12px;
    }
    .chartboard-section .track-item {
        padding: 6px 8px;
        gap: 6px;
    }
    .chartboard-section .track-item .track-number {
        font-size: 14px;
    }
    .chartboard-section .track-item .track-label {
        font-size: 7px;
    }
    .chartboard-section .track-item .track-icon {
        font-size: 14px;
        width: 22px;
    }
    .chartboard-section .recent-item .info .title {
        font-size: 12px;
    }
    .chartboard-section .recent-item .info .sub {
        font-size: 10px;
    }
    .chartboard-section .recent-item .time {
        font-size: 9px;
    }
    .chartboard-section h6 {
        font-size: 11px;
        margin: 12px 0 8px 0;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .chartboard-section .stat-grid {
        gap: 4px;
    }
    .chartboard-section .stat-card {
        padding: 8px 4px;
    }
    .chartboard-section .stat-card .number {
        font-size: 16px;
    }
    .chartboard-section .stat-card .label {
        font-size: 7px;
    }
    .chartboard-section .stat-card .icon {
        font-size: 14px;
    }
    .chartboard-section .track-stats {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    .chartboard-section .track-item .track-number {
        font-size: 13px;
    }
}
/* ================================================
   CAREERS APPLICATION FORM - NEW STYLES
   ================================================ */
.apply-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.apply-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.apply-form .form-group {
    flex: 1;
    min-width: 200px;
}

.apply-form .form-group label {
    display: block;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 6px;
    font-size: 14px;
}

.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #333;
}

.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    border-color: #F4A22F;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(244, 162, 47, 0.1);
}

.apply-form .form-group input[type="file"] {
    padding: 10px;
    background: #fafafa;
    border: 2px dashed #d0d0d0;
    cursor: pointer;
}

.apply-form .form-group input[type="file"]:hover {
    border-color: #F4A22F;
    background: #fef5f5;
}

.apply-form .form-group small {
    color: #888;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.apply-form .hero-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    border: none;
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(244, 162, 47, 0.3);
}

.apply-form .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(244, 162, 47, 0.4);
    background: linear-gradient(135deg, #e8921a, #d4810f);
}

.apply-form .alert {
    text-align: left;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.apply-form .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.apply-form .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.apply-form .alert i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .apply-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
    .apply-form .form-group {
        min-width: 100%;
    }
}

/* ================================================
   FLASH ALERT BANNERS - HIDDEN BY DEFAULT
   ================================================ */
.alert {
    display: none;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    animation: slideDown 0.5s ease forwards;
}

.alert.show {
    display: block;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert i {
    margin-right: 8px;
}

.alert .close-btn {
    float: right;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0 0 0 10px;
}

.alert .close-btn:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Auto-hide alert after 5 seconds */
.alert.auto-hide {
    animation: slideDown 0.5s ease forwards, fadeOut 0.5s ease 4.5s forwards;
}

/* ================================================
   FORM SUCCESS MESSAGE
   ================================================ */
.form-success {
    display: none;
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 20px;
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
    animation: slideDown 0.5s ease forwards;
}

.form-success.show {
    display: block;
}

/* ================================================
   CAREERS - TWO COLUMN APPLICATION METHODS
   ================================================ */
.apply-methods {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.apply-method {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.apply-method:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(244, 162, 47, 0.15);
}

.apply-method .method-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.apply-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.apply-method p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 0;
}

.email-method {
    background: #f0f7ff;
    border-color: rgba(26, 42, 74, 0.1);
}

.email-method:hover {
    border-color: rgba(26, 42, 74, 0.2);
}

.email-details {
    text-align: left;
}

.email-address {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.email-address .email-label {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    margin-bottom: 4px;
}

.email-address .email-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #F4A22F;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.email-instructions h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.email-instructions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.email-instructions ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 14px;
    color: #555;
}

.email-instructions ul li i {
    color: #F4A22F;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.subject-example {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    border: 1px dashed rgba(244, 162, 47, 0.3);
}

.subject-example strong {
    color: #1a2a4a;
    display: block;
    margin-bottom: 4px;
}

.subject-example span {
    color: #666;
    font-style: italic;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    background: linear-gradient(135deg, #1a2a4a, #2a3a5a);
    border-color: #1a2a4a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.email-btn:hover {
    background: linear-gradient(135deg, #F4A22F, #e8921a);
    border-color: #F4A22F;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 162, 47, 0.3);
    color: #fff;
}

.email-note {
    margin-top: 12px !important;
    font-size: 13px !important;
    color: #888 !important;
    text-align: center;
}

.email-note i {
    color: #F4A22F;
}

.apply-form {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

@media (max-width: 992px) {
    .apply-methods {
        flex-direction: column;
        gap: 30px;
    }
    .apply-method {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .apply-method {
        padding: 20px;
    }
    .email-address .email-value {
        font-size: 18px;
    }
}
  /* Additional leadership and management styles */
        .leadership-section {
            padding: 60px 0 80px;
            background: #f8faff;
        }
        .leadership-header {
            text-align: center;
            margin-bottom: 0px;
        }
        .leadership-header h1 {
            font-size: 30px;
            font-weight: 700;
            color: #1a2a4a;
            position: relative;
            display: inline-block;
        }
        .leadership-header h1::after {
            content: '';
            width: 40px;
            height: 4px;
            background: #f9b81b;
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .leadership-header p {
            color: #1a2a4a;
            font-size: 16px;
            max-width: 900px;
            margin: 20px auto 0;
            padding-top: 2px;
        }
        .team-category {
            margin-top: 40px;
        }
        .team-category h2 {
            font-size: 25px;
            font-weight: 600;
            color: #1a2a4a;
            border-left: 6px solid #f9b81b;
            padding-left: 10px;
            margin-bottom: 25px;
            width: 100%;
            box-sizing: border-box;
            display: block;
        }
        
        /* Owl Carousel Custom Styles - Restored with Nav Arrows */
        .leadership-carousel,
        .management-carousel {
            position: relative;
        }
        .leadership-carousel .owl-stage,
        .management-carousel .owl-stage {
            padding: 8px 0;
            display: flex; 
        }
        .leadership-carousel .owl-item,
        .management-carousel .owl-item {
            display: flex;
            height: auto;
        }
        .leadership-carousel .owl-nav,
        .management-carousel .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
        }
        .leadership-carousel .owl-nav button,
        .management-carousel .owl-nav button {
            pointer-events: auto;
            position: absolute;
            width: 48px;
            height: 48px;
            border-radius: 50% !important;
            background: #1a2a4a !important;
            color: #fff !important;
            font-size: 22px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid #f9b81b !important;
        }
        .leadership-carousel .owl-nav button:hover,
        .management-carousel .owl-nav button:hover {
            background: #f9b81b !important;
            color: #1a2a4a !important;
            transform: scale(1.1);
        }
        .leadership-carousel .owl-nav .owl-prev,
        .management-carousel .owl-nav .owl-prev {
            left: -25px;
        }
        .leadership-carousel .owl-nav .owl-next,
        .management-carousel .owl-nav .owl-next {
            right: -25px;
        }
        .leadership-carousel .owl-dots,
        .management-carousel .owl-dots {
            margin-top: 10px;
            text-align: center;
        }
        .leadership-carousel .owl-dots .owl-dot span,
        .management-carousel .owl-dots .owl-dot span {
            background: #ccc;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .leadership-carousel .owl-dots .owl-dot.active span,
        .management-carousel .owl-dots .owl-dot.active span {
            background: #f9b81b;
            width: 30px;
            border-radius: 6px;
        }
        .leadership-carousel .owl-dots .owl-dot:hover span,
        .management-carousel .owl-dots .owl-dot:hover span {
            background: #f9b81b;
        }

        .leader-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding: 25px 20px 25px;
            margin: 5px 10px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
        }
        .leader-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.12);
        }
        .leader-card .img-wrapper {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 18px;
            border: 4px solid #f9b81b;
            background: #eef3fc;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }
        .leader-card:hover .img-wrapper {
            border-color: #1a2a4a;
            transform: scale(1.05);
        }
        .leader-card .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .leader-card h4 {
            font-weight: 700;
            color: #1a2a4a;
            margin-bottom: 4px;
            font-size: 1.3rem;
        }
        .leader-card .title {
            color: #f9b81b;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            margin-bottom: 12px;
            text-transform: uppercase;
            min-height: 38px; 
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .leader-card .desc {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.6;
            padding: 0 5px;
            margin-bottom: 15px;
            flex-grow: 1; 
        }
        .leader-card .social-links {
            margin-top: auto;
        }
        .leader-card .social-links a {
            color: #1a2a4a;
            background: #f0f4fe;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            margin: 0 5px;
            transition: 0.3s ease;
            text-decoration: none;
        }
        .leader-card .social-links a:hover {
            background: #f9b81b;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .leadership-carousel .owl-nav .owl-prev,
            .management-carousel .owl-nav .owl-prev {
                left: -10px;
            }
            .leadership-carousel .owl-nav .owl-next,
            .management-carousel .owl-nav .owl-next {
                right: -10px;
            }
            .leadership-carousel .owl-nav button,
            .management-carousel .owl-nav button {
                width: 38px;
                height: 38px;
                font-size: 18px !important;
            }
        }
        @media (max-width: 768px) {
            .leadership-header h1 { font-size: 2.2rem; }
            .leader-card .img-wrapper { width: 120px; height: 120px; }
            .leadership-carousel .owl-nav,
            .management-carousel .owl-nav {
                display: none;
            }
        }
        @media (max-width: 576px) {
            .leader-card .img-wrapper { width: 100px; height: 100px; }
            .leader-card h4 { font-size: 1.1rem; }
            .leader-card .desc { font-size: 0.85rem; }
        }

        .search-container {
            position: relative;
            max-width: 300px;
        }

       

        .search-container {
            position: relative;
            max-width: 300px;
        }

#search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#search-results li {
  border-bottom: 1px solid #eee;
}

#search-results li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

#search-results li a:hover {
  background: #f8f9fa;
}
/* ==========================================================================
   SAFER POWER GROUP — RESPONSIVE OVERHAUL PATCH
   Append to the END of style.css
   This block overrides earlier rules and fixes mobile/tablet issues.
   ========================================================================== */

/* ------------------------------------------------------------------
   1. GLOBAL RESET & OVERFLOW PREVENTION
   ------------------------------------------------------------------ */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

img, iframe, video, svg, canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent iOS auto-zoom on form focus */
input, select, textarea, button {
    font-size: 16px;
}

/* Prevent flex/grid children from overflowing their parents */
.row > *, .col > *, [class*="-col"] {
    min-width: 0;
}

/* ------------------------------------------------------------------
   2. ROW SPACING — consistent across breakpoints
   ------------------------------------------------------------------ */
.row {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 700px) {
    .row {
        flex-direction: column;
        gap: 18px;
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------------
   3. NAVIGATION & TOP BAR — bulletproof stacking
   ------------------------------------------------------------------ */
.top-bar {
    padding: 8px 0 !important;
    font-size: 13px;
}

nav {
    padding: 8px 3% !important;
}

/* Body padding to clear the fixed bars */
body {
    padding-top: 130px !important;
}

/* Hide clutter in the top bar on small screens */
@media (max-width: 768px) {
    .top-bar-left span:first-child { display: none; }   /* email */
    .top-bar-right .dropdown { display: none; }          /* quick links */
    .top-bar-left span,
    .top-bar-right a { font-size: 12px; margin-right: 10px; }
    .top-bar-right a { margin-left: 0; }
}

@media (max-width: 700px) {
    nav { top: 38px !important; }
    body { padding-top: 108px !important; }
}

@media (max-width: 480px) {
    nav { top: 35px !important; }
    body { padding-top: 100px !important; }
    .top-bar-left span:last-child,
    .top-bar-right a { font-size: 11px; }
}

@media (max-width: 360px) {
    body { padding-top: 96px !important; }
}

/* Mobile slide-in menu — full-screen safety */
@media (max-width: 700px) {
    .nav-links {
        width: 290px;
        max-width: 88vw;
        padding-top: 70px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar { width: 6px; }
    .nav-links::-webkit-scrollbar-thumb {
        background: #F4A22F;
        border-radius: 3px;
    }

    .nav-links ul li a {
        padding: 14px 22px;
        font-size: 15px;
        min-height: 46px;
        display: flex;
        align-items: center;
    }

    .nav-links ul li .sub-menu-1 ul li a {
        font-size: 13px;
        padding: 11px 22px 11px 40px;
        min-height: 42px;
    }
}

/* ------------------------------------------------------------------
   4. HERO / TEXT BOX — mobile safe
   ------------------------------------------------------------------ */
.text-box {
    width: 92%;
    top: 45%;
    padding: 0 10px;
}

.text-box h1 {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.25;
}

.text-box p {
    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 1.7;
}

.hero-btn {
    padding: 14px 32px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50px;
}

/* ------------------------------------------------------------------
   5. SECTION HEADERS — consistent fluid typography
   ------------------------------------------------------------------ */
h1 { font-size: clamp(22px, 5.5vw, 36px); }

@media (max-width: 700px) {
    .services-home h2,
    .companies h2,
    .facilities h2,
    .testimonials h2,
    .quality-header h1,
    .accreditations-header h1,
    .mission-header h1,
    .careers-header h1,
    .blog-header h1,
    .gallery-header .title,
    .africa-header h1,
    .virtual-header h1,
    .who-we-are .about-col h1,
    .projects-header h1,
    .segments-hero h1 {
        font-size: clamp(22px, 6vw, 32px);
        line-height: 1.25;
    }

    .section-title {
        font-size: clamp(20px, 5.5vw, 28px);
    }
}

/* Remove decorative pseudo-icon on very small screens (they eat width) */
@media (max-width: 400px) {
    .solar-headline h1::before,
    .services-page-header h5::before,
    .blog-header h1::before,
    .quality-header h1::before,
    .accreditations-header h1::before,
    .mission-header h1::before,
    .africa-header h1::before,
    .virtual-header h1::before,
    .gallery-header .title::after {
        display: none;
    }
}

/* ------------------------------------------------------------------
   6. GRID FIXES — stop minmax() overflow on phones
   ------------------------------------------------------------------ */
.org-grid,
.segments-grid,
.services-grid .row,
.blog-grid .row,
.partners-grid .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

@media (max-width: 700px) {
    .org-grid,
    .segments-grid,
    .services-grid .row,
    .blog-grid .row,
    .partners-grid .row {
        grid-template-columns: 1fr;
        gap: 18px;
        display: grid;
    }
}

/* When these are flex rows, force full width on mobile */
@media (max-width: 700px) {
    .blog-grid .row,
    .services-grid .row,
    .partners-grid .row {
        display: flex;
        flex-direction: column;
    }

    .blog-col,
    .service-card,
    .partners-col,
    .vacancies-col,
    .info-col,
    .country-col,
    .segment-card {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* ------------------------------------------------------------------
   7. CARD MEDIA — consistent heights, no overflow
   ------------------------------------------------------------------ */
.project-image,
.blog-image,
.service-image,
.country-image,
.card-image,
.member-image,
.video-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
}

@media (max-width: 700px) {
    .org-grid .projects-col .project-image,
    .blog-col .blog-image,
    .service-card .service-image,
    .country-col .country-image,
    .segment-card .card-image,
    .management-col .member-image {
        height: 200px !important;
    }

    .project-number {
        font-size: 22px !important;
        padding: 3px 10px !important;
    }

    .project-tag {
        font-size: 10px !important;
        padding: 4px 12px !important;
    }

    .category-badge,
    .date-badge {
        font-size: 10px !important;
        padding: 3px 10px !important;
    }
}

@media (max-width: 400px) {
    .org-grid .projects-col .project-image,
    .blog-col .blog-image,
    .service-card .service-image,
    .country-col .country-image,
    .segment-card .card-image {
        height: 180px !important;
    }
}

/* ------------------------------------------------------------------
   8. FACILITIES IMAGE — fix 120% overflow
   ------------------------------------------------------------------ */
.facilities-col {
    overflow: hidden;
    border-radius: 10px;
}

.facilities-col img {
    width: 100% !important;
    height: 200px;
    object-fit: cover;
    transform-origin: center;
    animation: autoSlideImage 6s ease-in-out infinite alternate;
}

@keyframes autoSlideImage {
    0%   { transform: scale(1.12) translateX(0); }
    100% { transform: scale(1.12) translateX(-4%); }
}

@media (max-width: 700px) {
    .facilities-col img { height: 180px; }
}

/* ------------------------------------------------------------------
   9. WHO WE ARE / INFO CARDS
   ------------------------------------------------------------------ */
@media (max-width: 700px) {
    .info-cards {
        padding: 30px 0 10px;
    }
    .info-col {
        padding: 24px 20px 20px;
        text-align: left;
    }
    .info-col .item-list {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
}

/* ------------------------------------------------------------------
   10. ABOUT US / ABOUT COL
   ------------------------------------------------------------------ */
@media (max-width: 700px) {
    .about-us {
        width: 94%;
        padding: 22px 14px;
    }
    .about-col h1 {
        font-size: clamp(22px, 6vw, 30px);
        text-align: center;
    }
    .about-col h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-col p,
    .about-col p.highlight {
        text-align: left;
        font-size: 14px;
    }
    .about-col .hero-btn { margin: 0 auto; display: inline-flex; }
    .about-stats { justify-content: center; }
}

/* ------------------------------------------------------------------
   11. PROJECTS PAGE — left nav becomes scrollable chips
   ------------------------------------------------------------------ */
@media (max-width: 900px) {
    .projects-section {
        flex-direction: column;
        padding: 0 12px 40px;
        gap: 20px;
    }

    .projects-left {
        position: static;
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .org-nav {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding: 10px 0 14px;
        border-right: 0;
        border-bottom: 2px solid #eee;
        padding-right: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .org-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 13px;
        width: auto;
        scroll-snap-align: start;
    }

    .org-nav a:hover { transform: translateX(0); }
    .org-nav a.active { transform: translateX(0); }

    .org-nav .nav-count {
        font-size: 10px;
        padding: 2px 8px;
    }
}

@media (max-width: 700px) {
    .org-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .org-header .org-icon { width: 44px; height: 44px; font-size: 20px; }
    .org-header h2 { font-size: 20px; }
    .org-header .org-count { margin-left: 0; font-size: 12px; }
}

/* ------------------------------------------------------------------
   12. CONTACT PAGE
   ------------------------------------------------------------------ */
.location iframe {
    width: 100%;
    height: 300px;
}

@media (max-width: 700px) {
    .location iframe { height: 240px; }
    .location { width: 94%; }
    .contact-us-page { width: 94%; }
    .contact-col > div { gap: 14px; }
    .contact-col > div .fa {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 20px;
    }
    .contact-col > div span h5 { font-size: 15px; }
    .contact-info-title { font-size: 22px; text-align: center; }
    .contact-info-title::after { left: 50%; transform: translateX(-50%); }
    .contact-col:last-child { padding: 22px 18px; }
    .contact-col:last-child h3 { font-size: 20px; }
}

@media (max-width: 400px) {
    .contact-col > div { gap: 10px; }
    .contact-col > div .fa {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 17px;
    }
    .contact-col > div span h5 { font-size: 14px; }
    .contact-col > div span p { font-size: 12px; }
}

/* ------------------------------------------------------------------
   13. CAREERS / FORM
   ------------------------------------------------------------------ */
@media (max-width: 700px) {
    .apply-section { padding: 28px 18px; }
    .apply-method { padding: 20px 16px; }
    .apply-form .form-row { flex-direction: column; gap: 12px; }
    .apply-form .form-group { min-width: 100%; }
    .apply-form .form-group input,
    .apply-form .form-group select,
    .apply-form .form-group textarea {
        font-size: 16px;
        padding: 12px 14px;
    }
    .email-address .email-value {
        font-size: 16px;
        word-break: break-all;
    }
    .vacancies-col { text-align: left; }
    .vacancies-col .job-meta { justify-content: flex-start; }
}

/* File inputs — smaller font + visible button */
input[type="file"] {
    font-size: 13px;
    max-width: 100%;
    padding: 10px;
}

input[type="file"]::file-selector-button {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    background: #F4A22F;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    background: #F4A22F;
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
}

/* ------------------------------------------------------------------
   14. BLOG — cards + load more
   ------------------------------------------------------------------ */
.load-more-btn {
    padding: 14px 34px;
    font-size: 15px;
    min-height: 46px;
}

@media (max-width: 480px) {
    .load-more-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
    .blog-col h3 {
        font-size: 16px;
        min-height: 0;
    }
    .blog-col p { font-size: 13px; }
    .blog-col .blog-content { padding: 16px 18px 0; }
}

/* ------------------------------------------------------------------
   15. SEGMENTS GRID
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
    .segments-grid {
        width: 94%;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .segments-hero { padding: 30px 14px 36px; }
    .segments-hero p { margin-top: 28px; font-size: 14px; }
}

/* ------------------------------------------------------------------
   16. PARTNERS PAGE
   ------------------------------------------------------------------ */
.partners-header p {
    white-space: normal !important;
    max-width: 900px;
    margin: 10px auto 0;
    padding: 0 15px;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partners-header p {
        font-size: 15px;
        padding: 0 12px;
    }
    .partners-col {
        padding: 20px 16px 18px;
        text-align: center;
    }
    .partner-logo { height: 90px; }
}

/* ------------------------------------------------------------------
   17. LEADERSHIP CAROUSEL — hide nav on mobile, dots only
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
    .leadership-carousel .owl-nav,
    .management-carousel .owl-nav,
    .testimonial-carousel .owl-nav {
        display: none !important;
    }
    .leader-card {
        padding: 22px 16px;
        margin: 5px 6px;
    }
    .leader-card .img-wrapper { width: 110px; height: 110px; }
    .leader-card h4 { font-size: 1.1rem; }
    .leader-card .title { font-size: 0.75rem; min-height: 32px; }
    .leader-card .desc { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .leader-card .img-wrapper { width: 96px; height: 96px; }
    .leader-card h4 { font-size: 1rem; }
    .leader-card .desc { font-size: 0.8rem; }
}

/* ------------------------------------------------------------------
   18. TESTIMONIALS
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
    .testimonial-carousel .testimonial-col {
        padding: 18px 16px;
        margin: 6px;
    }
    .testimonial-carousel .testimonial-col img {
        width: 100px !important;
        height: 100px !important;
    }
    .testimonial-carousel .testimonial-col p { font-size: 13px; }
    .testimonial-carousel .testimonial-col h3 { font-size: 15px; }
}

/* ------------------------------------------------------------------
   19. CHARTBOARD SECTION
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
    .chartboard-section .stat-card .number { font-size: 18px; }
    .chartboard-section .stat-card .label { font-size: 8px; letter-spacing: 0; }
    .chartboard-section .track-item .track-number { font-size: 14px; }
    .chartboard-section .track-item .track-label { font-size: 7px; }
}

/* ------------------------------------------------------------------
   20. CTA SECTIONS
   ------------------------------------------------------------------ */
@media (max-width: 600px) {
    .cta {
        width: 92%;
        margin: 40px auto;
        padding: 28px 14px;
        border-radius: 10px;
    }
    .cta h1, .cta h2 {
        font-size: clamp(18px, 5vw, 24px);
        line-height: 1.3;
        padding: 0 6px;
    }
    .cta br { display: none; }   /* let text wrap naturally */
}

/* ------------------------------------------------------------------
   21. FOOTER
   ------------------------------------------------------------------ */
.footer {
    padding: 30px 16px 20px;
    text-align: center;
}

.footer .newsletter {
    max-width: 100% !important;
    padding: 0 6px;
}

.footer .newsletter .form-control {
    font-size: 15px;
}

@media (max-width: 480px) {
    .footer h4 { font-size: 18px; }
    .footer p { font-size: 13px; padding: 6px 10px; }
    .footer .icons .fa { margin: 0 8px; padding: 12px 0; font-size: 18px; }
    .newsletter .btn { padding: 10px 18px; font-size: 13px; }
}

/* ------------------------------------------------------------------
   22. FLOATING BUTTONS — safe area aware
   ------------------------------------------------------------------ */
.back-to-top {
    width: 44px;
    height: 44px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
}

.whatsapp-chat {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
}

.whatsapp-chat .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
}

.whatsapp-chat .chat-preview {
    max-width: 200px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .back-to-top { width: 40px; height: 40px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
    .whatsapp-chat { bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
    .whatsapp-chat .whatsapp-btn { width: 46px; height: 46px; font-size: 24px; }
}

/* ------------------------------------------------------------------
   23. SEARCH MODAL
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
    #searchModal .modal-body { padding: 40px 16px; }
    #searchModal .modal-body .input-group { width: 94% !important; }
    #searchModal .form-control { font-size: 16px; padding: 12px 18px; }
    #searchModal .input-group span { padding: 12px 22px; }
}

/* ------------------------------------------------------------------
   24. AFRICA PRESENCE MAP HOTSPOTS — keep usable on phones
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
    .interactive-map-wrapper { max-width: 100%; padding: 0 6px; }
    .map-hotspot {
        width: 24px;
        height: 24px;
        font-size: 8px;
        border-width: 1.5px;
    }
    .map-hotspot .tooltip-text {
        font-size: 9px;
        padding: 3px 6px;
        max-width: 80px;
        white-space: normal;
    }
}

/* ------------------------------------------------------------------
   25. MISC UTILITIES
   ------------------------------------------------------------------ */
/* Prevent long words / URLs from overflowing */
p, h1, h2, h3, h4, h5, h6, li, a, span {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Smooth scrolling for in-page anchors */
html { scroll-behavior: smooth; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print — hide floating junk */
@media print {
    .top-bar, nav, .whatsapp-chat, .back-to-top, #spinner {
        display: none !important;
    }
    body { padding-top: 0 !important; }
}
/* ================================================================
   MOBILE DROPDOWN ARROWS + SUBMENU TOGGLE
   ================================================================ */

/* Add chevron next to About Us / Projects on mobile */
@media (max-width: 700px) {

    /* The <a> needs to be a flex row so the arrow sits on the right */
    .nav-links ul li.has-submenu > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-right: 48px;  /* leave room for the arrow */
    }

    /* The chevron itself */
    .nav-links ul li.has-submenu > a::after {
        content: '\f107';                 /* FontAwesome chevron-down */
        font-family: 'FontAwesome';
        font-weight: normal;
        font-size: 16px;
        color: #F4A22F;
        transition: transform 0.3s ease;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1;
    }

    /* Rotate the arrow when the menu is open */
    .nav-links ul li.has-submenu.open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Highlight the parent when open */
    .nav-links ul li.has-submenu.open > a {
        background: rgba(244, 162, 47, 0.08);
        color: #fff;
    }

    /* Submenu container — collapsed by default on mobile */
    .nav-links ul li .sub-menu-1 {
        display: none;
        position: static;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 0;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        width: 100%;
    }

    /* Slide-down animation when opened */
    .nav-links ul li.has-submenu.open .sub-menu-1 {
        display: block !important;
        animation: slideDown 0.25s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* Submenu list items */
    .nav-links ul li .sub-menu-1 ul {
        padding: 0;
        margin: 0;
    }

    .nav-links ul li .sub-menu-1 ul li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: transparent;
    }

    .nav-links ul li .sub-menu-1 ul li:last-child {
        border-bottom: none;
    }

    .nav-links ul li .sub-menu-1 ul li a {
        color: #F4A22F;
        font-size: 13px;
        padding: 12px 22px 12px 42px;
        display: block;
        min-height: 44px;
        position: relative;
    }

    /* Small bullet before each submenu item */
    .nav-links ul li .sub-menu-1 ul li a::before {
        content: '▸';
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        color: #F4A22F;
        opacity: 0.6;
        font-size: 11px;
    }

    .nav-links ul li .sub-menu-1 ul li:hover {
        background: rgba(244, 162, 47, 0.08);
    }
}

/* Desktop: keep the hover behaviour but also add a chevron */
@media (min-width: 701px) {
    .nav-links ul li.has-submenu > a::after {
        content: '\f107';
        font-family: 'FontAwesome';
        font-size: 11px;
        margin-left: 5px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .nav-links ul li.has-submenu:hover > a::after {
        transform: rotate(180deg);
    }
}