:root {
    --primary: #1D3458;
    --secondary: #E63B18;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}


.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 15px;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.d-flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-4 {
    margin-bottom: 1.5rem; /* ~24px */
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}


.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

.sub-title {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline {
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-outline-dark {
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-dark:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Header */
.header {
   
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    background: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list > li > a {
    font-weight: 500;
    font-size: 0.9rem; /* Slightly smaller to fit */
    color: var(--primary);
    text-transform: capitalize;
    white-space: nowrap; /* Prevent wrapping */
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--secondary);
}

.mobile-contact-link {
    display: none;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a > i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--secondary);
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown li a:hover {
    background: var(--light-bg);
    color: var(--secondary);
}

/* Multilevel Dropdown */
.submenu-parent {
    position: relative;
}

.submenu-parent > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown .submenu {
    top: 0;
    left: 100%;
    margin-top: -10px; /* Align slightly better */
    display: block; /* Use transitions from parent styling logic */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.submenu-parent:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Updated to 100vh */
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
}

.slide-content {
    background: rgba(29, 52, 88, 0.95); /* Richer blue */
    padding: 40px 25px;
    max-width: 650px;
    width: 100%;
    text-align: left;
    color: var(--white);
    border-left: 5px solid var(--secondary); /* Brand accent */
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.slide-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.6;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(30px);
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
}

.slide-content .btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider-dots {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary);
    border: 2px solid var(--white);
    transform: scale(1.2);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.marquee-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
}

.marquee-content span {
    font-size: 15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    /* -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);  */
    padding-right: 50px;
    line-height: 1;
    font-family: 'Work Sans', sans-serif;
    color: #d0d0d0;
    opacity: 0.1;
}

.trust-section .container {
    position: relative;
    z-index: 1; /* Ensure content is above marquee */
}

.trust-section h2 {
    margin-bottom: 0;
}

.counter {
    color: var(--secondary);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to right, #FFF1EE,#FAFFFF, #FFFFFF, #F0EEF4, #EBF1FA );
}
.welcome-section:before {
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    content:"";
    background-image: url(../images/gcc-pic.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0px;
}

.rich-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.welcome-image {
    height: 400px;
    width: 100%;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f4f7f9; /* Slightly darker/blueish bg from image? Or keep light-bg */
}

.services-grid {
    display: grid;
    /* 3 columns: First two wider, last one narrower */
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: repeat(2, auto); */
    gap: 30px;
}

/* Row 1, Col 1 is Service 1 (takes 1 slot of 2fr) */
/* Row 1, Col 2-3 is Image (takes 2fr + 1fr + gap) */
.service-image-large {
    grid-column: 2 / 4; /* Span from line 2 to 4 (cols 2 and 3) */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.service-image-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Very subtle shadow */
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 70%;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
}

.service-icon {
    font-size: 3.5rem;
    /* Outline style hack: transparent fill, stroke color */
    color: transparent;
    -webkit-text-stroke: 1px #ddd;
    /* Or just light gray color if stroke not ideal */
    color: #e5e5e5;
}

.giant-number {
    position: absolute;
    bottom: -20px; /* Slight offset */
    left: 20px;
    font-size: 8rem;
    font-weight: 300;
    color: #f0f0f0; /* Very light gray */
    z-index: 1;
    line-height: 1;
}

/* See More Card */
.see-more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.see-more-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.see-more-card span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.arrow-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    border-radius: 4px; /* Square with slight radius */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.see-more-card:hover .arrow-box {
    background: var(--primary);
    color: var(--white);
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
    background: #fdfdfd; 
}

.sectors-container {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden; /* Hide scrollbar */
}

.sectors-nav {
    display: flex;
    gap: 15px;
    flex-shrink: 0; 
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ccc; /* Light border */
    background: transparent;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.nav-btn:hover {
    border-color: var(--text-dark);
    background: var(--white);
    color: var(--text-dark);
}

.nav-btn[disabled], .nav-btn.disabled {
    color: #848484;
    border-color: #848484;
    cursor: not-allowed;
    background: transparent;
    opacity: 0.5;
}

.sectors-slider {
    flex-grow: 1;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    scroll-behavior: smooth;
}

.sectors-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.sectors-track {
    display: flex;
    gap: 20px;
}

.sector-card {
    min-width: 280px;
    height: 320px;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.08);
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-card.gray-card {
    background: #CED6E0; /* Light grayish blue approximate from image */
}

.sector-card.white-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.sector-icon-wrapper {
    text-align: right;
    margin-bottom: 20px;
}
.sector-icon-wrapper img {
   display:inline-block;
}

.sector-icon {
    font-size: 3rem; 
    color: transparent;
    -webkit-text-stroke: 1px var(--secondary); /* Outline style icon effect */
    /* Alternatively just use color if outline not supported well */
    color: var(--white);
    text-shadow: 0 0 1px var(--secondary); /* Fallback to make it look outlined or just use secondary color */
}
/* Better approach for outline icons if using FontAwesome regular/solid: */
.sector-icon {
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
} 

.sector-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.sector-card:hover {
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: transparent;
}

.footer-top-bar {
    background: var(--primary);
    padding: 40px 0 85px 0;
    position: relative;
    z-index: 1;
    border-radius: 80px 80px 0 0;
    margin: 0 0vw; /* Pull outward to counteract 95% container */
    padding-left: 2.5vw; /* Add padding to keep content centered */
    padding-right: 2.5vw;
}

.contact-bar {
    display: flex;
    justify-content: space-around;
    color: var(--white);
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Vertical Separator Lines between items */
.contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.contact-item i {
    font-size: 2.2rem;
    opacity: 1;
    font-weight: 300; /* Lighter icon stroke perception */
}

.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2px;
    font-weight: 400;
    font-family: 'Work Sans', sans-serif;
}

.contact-item strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-main {
    background: var(--white);
    padding: 80px 0 60px;
    border-radius: 60px 60px 0 0; /* Deep curve as per image */
    margin-top: -60px; /* Pull up to overlap */
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.footer-logo-img {
    max-height: 70px;
}

.footer-links {
    padding-left: 20px;
}

.footer-links.two-cols {
    columns: 2;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-links a:before {
    content: '›';
    margin-right: 8px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 0;
    margin-top: -3px;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-address {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-address p {
    margin-bottom: 3px;
    font-weight: 500;
}

.footer-address i {
    margin-right: 5px;
    margin-left: 0;
    width: 20px; /* fixed width for alignment */
    text-align: center;
}

/* Footer contact links styling */
.footer-address a,
.contact-bar a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-address a:hover,
.contact-bar a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Contact page detail items links */
.detail-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.detail-item a:hover {
    color: var(--secondary);
}

.social-links a {
    font-size: 1.5rem;

    color: var(--primary);
    transition: var(--transition);
}

.social-links a:not(:first-child) {
    margin-left: 25px;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #ffffff;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    border-top:solid 1px #ddd
}
.logo img {height: 60px;}
@media(min-width: 1700px)  {
    .logo img {height: 80px;}
    .nav-list > li > a {
        font-size: 1.1rem;
    }
    .contact-head {
        font-size: 1.1rem;
    }
    .page-banner {
        margin-top: 99px;
    }
}
@media (max-width: 1300px) {
    .contact-head {
        display: none;
    }
    .mobile-contact-link {
        display: block;
    }
    .nav-list {
        gap: 15px;
    }
    .container {
        max-width: 98%;
    }
    
}
/* Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 20px 100px 20px; /* Extra bottom padding for scrolling */
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .nav-list.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
        max-height: 80vh; /* Safer height limit */
        overflow-y: scroll; /* Force scroll capability */
        -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
        overscroll-behavior: contain; /* Prevent body scroll */
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-list li {
        margin: 0;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        border-top: none;
    }

    /* Fix specificity issue for nested submenu */
    .dropdown .submenu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
        margin-top: 0;
    }
    
    .has-dropdown.active > .dropdown {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    /* Better mobile dropdown behavior could be click-based, but hover works for simple verify */
    
    .hamburger {
        display: block;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--primary);
        margin: 6px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .col-4, .col-6 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    /* grid-template-rows: repeat(4, auto); */
        gap: 20px;
    }
    
    .service-card.landscape {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .contact-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
    }
    
    .footer-links.two-cols {
        columns: 1;
    }
    
    /* Mobile Fixes for Services & Sectors */
    .services-grid .service-card, .service-image-large {
        width: 100%; 
        max-width: 100%;
    }

    .sectors-container {
        flex-direction: column; /* Stack nav and slider */
        align-items: stretch; /* Full width */
    }
    
    .sector-card {
        min-width: 100%; /* Single slide view */
        margin-right: 0;
    }
    
    .sectors-track {
        gap: 0; /* No gap needed if 100% width sliders */
    }
    
    .sectors-nav {
        width: 100%;
        justify-content: flex-end; /* Keep original align, or center? Let's stick to flex-end or space-between */
        margin-bottom: 15px; /* Add space between nav and slider */
        margin-top: 0;
    }
    
    .nav-btn {
        z-index: 10;
        background: var(--white);
    }
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-image-large {
        grid-column: 1 / -1;
        min-height: 250px;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .slide-content {
        padding:30px 20px
    }
    .slide-content p {
        font-size: 1rem;
    }
    .trust-section h2 {
        line-height: 1.1;
    }
    .section-title {
        line-height: 1.1;
    }
    .services-section h2 {
        line-height: 1.1;
    }
    .sectors-section h2 {
        line-height: 1.1;
    }
}



@media (max-width: 475px) {
    .contact-head {
        display: none;
    }
    .mobile-contact-link {
        display: block;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.page-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Offset for fixed header */
    background-color: #1D3458; /* Fallback */
    background-image: url('../images/banner_1.png'); /* Placeholder default */
    text-align: center;
}
@media (min-width:1700px) {
    .page-banner {
        margin-top: 99px;
        height: 350px;
    }
}

@media (max-width: 366px) {
    .page-banner h1 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.page-banner h1 {
    position: relative;
    color: var(--white);
    font-size: 3rem;
    z-index: 1;
    margin-bottom: 10px;
}

.breadcrumbs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: var(--white);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 450px) {
    .breadcrumbs {
        flex-wrap: wrap;
        font-size: 0.85rem;
        gap: 5px;
    }
    
    .breadcrumbs li:not(:last-child)::after {
        margin-left: 5px;
    }
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa; /* Light gray background for contrast */
}

.info-box, .contact-form-wrapper {
    background: var(--white);
    padding: 40px; /* Added card padding */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Mild shadow */
    height: 100%;
}

.info-box h3, .contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-details-list {
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item .icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee; /* Lighter border for card */
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: #fdfdfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    background: var(--white);
}

/* Map Section */
.map-section {
    line-height: 0; /* Remove gap */
}

/* Responsive Contact */
@media (max-width: 992px) {
    .page-banner {
        height: 200px;
    }
}
/* Media Center Styles */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.album-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.album-cover {
    height: 220px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.album-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transition: var(--transition);
}

.album-card:hover .album-cover::after {
    background: rgba(0,0,0,0.2);
}

.album-info {
    padding: 20px;
}

.album-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.album-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Album Page Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    background: rgba(0,0,0,0.7);
    padding: 15px 25px;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(230, 59, 24, 0.9);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(230, 59, 24, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Responsive Media */
@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .page-banner h1 {
        line-height: 1;
        font-size: 2rem;
    }
    .service-content-box {
       padding-left: 30px;
       padding-right: 30px;
    }
}
@media (max-width: 475px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Service About Section with Slider */
.service-about-section {
    padding: 40px 0;
    background: var(--white);
}

.service-about-section h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-about-section p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-about-section strong {
    color: var(--secondary);
}

/* Services Detail Section */
.services-detail-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-card-content {
    background: none !important;
    position: relative !important;
    z-index: 2 !important;
    max-width: 70% !important;
    padding: 0px !important;
}
.service-card-content h3 {
    color:var(--text-dark) !important
}

/* Service Row */
/* Service Row - Standard Layout (Removed Sticky Stacking for Readability) */
.service-row {
    position: relative;
    /* top: 120px; */
    padding: 60px 40px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: linear-gradient(to right, #FFF1EE, #FAFFFF, #FFFFFF, #F0EEF4, #EBF1FA);
}

/* Ensure subsequent rows sit on top - Removed z-index stacking as it is no longer sticky */
/* .service-row:nth-child(1) { z-index: 1; }
.service-row:nth-child(2) { z-index: 2; }
.service-row:nth-child(3) { z-index: 3; }
.service-row:nth-child(4) { z-index: 4; }
.service-row:nth-child(5) { z-index: 5; } */

.service-content-col {
    padding-right: 40px;
}

.service-row.reverse .service-content-col {
    padding-right: 0;
    padding-left: 40px;
}

.service-content-box h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-content-box h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.service-content-box h4 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-content-box p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 350px;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Service Image Slider */
.service-image-slider {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.slider-dots-service {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0,0,0,0.05);
}

.slider-dots-service .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-service .dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Responsive Styles for Service Page */
@media (max-width: 992px) {
    .col-4, .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-content-col,
    .service-row.reverse .service-content-col {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    /* Disable sticky stacking on mobile for better flow */
    .service-row {
        position: relative !important;
        top: 0 !important;
        padding: 30px 20px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Lighter shadow */
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .slider-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-about-section,
    .services-detail-section {
        padding: 40px 0;
    }
    
    .service-about-section h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-content-box h3 {
        font-size: 1.6rem;
    }
    
    .service-content-box h4 {
        font-size: 1.2rem;
    }
    
    .service-row {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-image {
        min-height: 250px;
    }

    /* Pest Stats Section */
    .pest-stats-section h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .pest-stat-number, 
    .pest-stat-suffix {
        font-size: 3.5rem;
        -webkit-text-stroke: 1.5px #b0c4de;
    }
    
    .pest-stats-grid {
        gap: 40px;
    }
}

/* Pest Stats Section */
.pest-stats-section {
    padding: 80px 0;
    background: linear-gradient(to right, #fdf2ef, #ffffff);
    overflow: hidden;
        box-shadow: inset 0px 0px 19px 4px #ddd;
}

.pest-stats-section h2 {
    margin-bottom: 60px;
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pest-stats-grid {
    display: flex;
    justify-content: center; /* Center the 3 items */
    flex-wrap: wrap;
    gap: 60px; /* Generous gap */
}

.pest-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 250px;
}

.pest-stat-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 10px;
}

.pest-stat-number, 
.pest-stat-suffix {
    font-family: 'Work Sans', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: transparent; /* Makes the fill transparent */
    -webkit-text-stroke: 2px rgba(230, 59, 24, 0.9); /* Light blue outline */
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Clients Page Styles */
.clients-section {
    background-color: #fff;
    padding: 80px 0;
}

.client-column {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.column-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.client-list li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-size: 1rem;
    color: #444;
    transition: all 0.2s ease;
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px; /* Adjust based on padding */
    color: var(--secondary);
    font-size: 0.9rem;
}

.client-list li:hover {
    background-color: #f9f9f9;
    padding-left: 35px; /* Slight nudge on hover */
}

@media (max-width: 768px) {
    .client-column {
        margin-bottom: 40px;
    }
}

/* Non-webkit fallback for text-stroke support if needed, though modern browsers handle it well. 
   Fallback: just use light color */
@supports not (-webkit-text-stroke: 2px red) {
    .pest-stat-number, .pest-stat-suffix {
        color: #b0c4de;
    }
}

.pest-stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 5px;
}

/* QA Page Styles */
.qa-section {
    padding: 80px 0;
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 0.9rem;
}

.highlight-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.highlight-box p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.footer-address i {
    margin-right: 5px;
    color: var(--secondary);
}

.qa-process-full {
    background: #f9f9f9;
    padding: 60px 0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: -80px; /* Offset bottom padding of qa-section if needed, or just let it be */
}

/* Adjust qa-section padding if needed, or just allow the extra space. 
   qa-section has 80px padding. container closed early. 
   The new section is strictly inside qa-section but container is closed. 
   Actually, if I want it to be full width, I need to make sure qa-process-full breaks out if qa-section has padding?
   qa-section has padding: 80px 0. That means top/bottom padding. The Left/Right is 0. 
   So a div inside it will be full width. Correct. 
*/

.highlight-box-content {
    /* Similar style to highlight-box but transparency handled by parent */
    padding: 0 30px; /* Keep side padding if needed, or removal */
    border-left: 4px solid var(--secondary);
}

.highlight-box-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.highlight-box-content p {
    color: var(--text-dark);
}

/* Accordion Styles */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accordion-item.active {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.accordion-header {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #fdfdfd;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary);
}

.accordion-header i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.content-inner {
    padding: 0 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
}

.content-inner p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.committee-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
    margin-bottom: 20px;
}

.committee-box h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.simple-list {
    list-style: none;
    padding-left: 0;
}

.simple-list li {
    padding: 5px 0;
    color: var(--text-dark);
    border-bottom: 1px dashed #eee;
}

.simple-list li:last-child {
    border-bottom: none;
}

.small-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
}

/* Board of Directors Styles (Redesign) */
.director-card {
    background: var(--secondary); /* Red background */
    border-top-left-radius: 60px; /* Distinctive curve */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    height: 480px; /* Fixed height */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px; /* Explicit user request */
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 59, 24, 0.3);
}

.vertical-text {
    position: absolute;
    top: auto;
    bottom: -50px; /* Positioned mid-bottom */
    left: -10px;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Work Sans', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.card-image {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.botanica-card .card-image {
    align-items: flex-start;
}

.card-image img {
    max-height: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: grayscale(0%);
}

.director-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%; /* Force full width */
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(230, 59, 24, 0.8) 50%, transparent 100%);
    color: #fff;
    z-index: 3;
    text-align: left;
}

.card-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #fff;
}

/* Why Choose Us Section */
.wcu-section {
    position: relative;
    overflow: hidden;
        background: linear-gradient(to right, #FFF1EE, #FAFFFF, #FFFFFF, #F0EEF4, #EBF1FA);
}

.wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* Custom Underline Style matching design */
.wcu-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px; /* Slightly thinner for elegance */
    background: var(--secondary);
    border-radius: 2px;
}
/* Adding the little stars/sparkles if possible would require svg, skipping for CSS-only speed unless requested */


.wcu-container {
    padding-top: 10px;
}

.wcu-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px; /* Spacing for separator */
    position: relative;
    padding-bottom: 25px; /* Space above separator */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Faint separator line */
}

/* Remove border from last items */
.wcu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* LEFT COLUMN: Icon Left, Text Right (as per new visual check) */
/* WAIT, re-verifying image: Left side -> Icon is BEFORE Text. */
.wcu-left .wcu-item {
    flex-direction: row; /* Icon - Content */
    text-align: left; /* Text aligns left */
    justify-content: flex-start;
}

.wcu-left .wcu-icon-box {
    margin-right: 20px;
    margin-left: 0;
}


/* RIGHT COLUMN: Text Left, Icon Right (as per new visual check) */
/* WAIT, re-verifying image: Right side -> Text is BEFORE Icon. */
.wcu-right .wcu-item {
    flex-direction: row; /* Content - Icon */
    text-align: right;
    justify-content: flex-end;
}

.wcu-right .wcu-icon-box {
    margin-left: 20px;
    margin-right: 0;
}

.wcu-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 800; /* Bold title */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wcu-content span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

.wcu-icon-box {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-icon-box i {
    font-size: 2.5rem;
    color: var(--secondary); /* Theme Color */
}

.wcu-center-image {
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-center-image img {
    max-width: 100%;
    /* max-height: 500px; */
    width: 100%; 
    object-fit: contain;
}

/* Responsive */

@media (max-width: 991px) {
    .wcu-left .wcu-item,
    .wcu-right .wcu-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row; /* Standard Icon - Text on mobile */
    }
    
    .wcu-right .wcu-icon-box {
        order: -1; /* Move icon to start */
        margin-right: 20px;
        margin-left: 0;
    }
    
    .wcu-right .wcu-item {
        text-align: left;
    }

    .wcu-center-image {
        margin: 40px 0;
    }
    
    .wcu-item {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
}

/* Utility Class (Missing) */
.justify-content-center {
    justify-content: center !important;
}

/* Overview Split Section - EXACT DESIGN */
.overview-split {
    padding: 60px 0;
    background: #f5f5f5;
}

.overview-image-container {
    position: relative;
    height: 450px;
    overflow: visible;
}

/* Background Layer (Blurred Person) */
.overview-bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overview-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    opacity: 0.7;
}

/* Foreground Slider (Team Photos) */
.overview-slider {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 70%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.overview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.overview-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.overview-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cyan Dots Navigation */
.overview-dots {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: auto;
    background: #00bcd4; /* Cyan color from design */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    box-shadow: 0 5px 15px rgba(0,188,212,0.3);
    z-index: 3;
}

.overview-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overview-dots .dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
}

.overview-dots .dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* Text Content with Cyan Accents */
.overview-content {
    padding-left: 40px;
}

.overview-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.overview-separator {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.overview-separator span {
    display: block;
    height: 4px;
    background: #00bcd4; /* Cyan color */
    border-radius: 2px;
}

.overview-separator span:nth-child(1) { width: 35px; }
.overview-separator span:nth-child(2) { width: 5px; }

.overview-highlight-box {
    border-left: 4px solid #00bcd4; /* Cyan vertical line */
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.overview-text-secondary {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .overview-image-container {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .overview-slider {
        left: 10%;
        width: 70%;
        height: 65%;
    }
    
    .overview-dots {
        right: 10px;
        bottom: 10px;
    }
    
    .overview-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .overview-slider {
        left: 5%;
        width: 80%;
    }
}

/* Strategic Goals Cards (Agricultural Services) */
.strategic-goal-card {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    margin: 5px;
}

.strategic-goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.strategic-goal-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.strategic-goal-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.strategic-goal-card .read-more {
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.strategic-goal-card .bg-icon {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 7rem;
    color: #f7f7f7;
    z-index: 1;
    transition: all 0.3s ease;
    line-height: 1;
}

/* Specific color tweaks for the agricultural theme if needed */
#botanica-nursery .strategic-goal-card .bg-icon {
    color: rgba(76, 175, 80, 0.1); /* Subtle green tint */
}


/* Botanica Nursery Section */
#botanica-nursery {
    background-color: #f1f8e9;
    padding: 80px 0;
}

#botanica-nursery h2 {
    color: #2e7d32;
    margin-bottom: 10px;
}

#botanica-nursery .subtitle {
    color: #4caf50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* Botanica Cards */
.botanica-card {
    background: #fff;
    height: 100%;
    padding: 0; /* Reset padding for full bleed image */
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.botanica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.botanica-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.botanica-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.botanica-card:hover .card-image img {
    transform: scale(1.1);
}

.botanica-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    padding-top:0px
}

.botanica-card .card-tag {
    display: inline-block;
    padding: 5px 14px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Variation for tags if needed, can add classes later */

.botanica-card h4 {
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
}

.botanica-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Botanica Text Column Spacing */
.botanica-text-col {
    padding-left: 3rem;
}

@media (max-width: 991px) {
    .botanica-text-col {
        padding-left: 15px;
        margin-top: 2rem;
    }
}


/* Global Grid Padding Fix */
[class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
}


/* Botanica Gap Override */
.botanica-gap {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* App Feature Cards */
.app-feature-card {
    background-color: #ffffff;
    padding: 1.5rem;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.app-feature-card i {
    color: var(--primary);
}


/* App Feature Cards - Updated Design */
.app-feature-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.app-feature-card h4, 
.app-feature-card p {
    position: relative;
    z-index: 2;
}

.app-feature-card .bg-icon {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 6rem;
    color: rgba(29, 52, 88, 0.05);
    z-index: 1;
    transition: all 0.3s ease;
}

.app-feature-card:hover .bg-icon {
    transform: scale(1.1);
    color: rgba(29, 52, 88, 0.1);
}


/* Expansion Plans Section */
.expansion-section {
    padding: 80px 0;
    background: #fff;
}

.expansion-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.expansion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    background: #fff;
    border-color: var(--primary);
}

.expansion-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.expansion-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.expansion-card p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
}


/* Dictionary / Datatable Styles */
.datatable-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}

.datatable-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text);
}

.datatable-controls select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
}

.ncc-datatable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ncc-datatable th {
    background: var(--primary); /* Dark Blue */
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
    border-bottom: 3px solid var(--secondary);
}

.ncc-datatable th.text-right {
    text-align: right;
}

.ncc-datatable td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: var(--text);
    vertical-align: middle;
}

.ncc-datatable tbody tr:hover {
    background-color: #f9f9f9;
}

.ncc-datatable .date-cell {
    white-space: nowrap;
    width: 20%;
    font-family: 'Work Sans', sans-serif;
    text-align: right;
    direction: rtl;
}

.ncc-datatable .desc-cell {
    text-align: right;
    direction: rtl;
}

.ncc-datatable .desc-cell a:hover {
    color: var(--secondary) !important;
    text-decoration: underline !important;
}

.datatable-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.datatable-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 20px;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid #eee;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.page-btn:hover {
    background: #f0f0f0;
}

.page-btn.active {
    background: var(--secondary); /* Orange */
    color: #fff;
    border-color: var(--secondary);
}

.page-btn.disabled {
    color: #ccc;
    cursor: not-allowed;
}


/* DataTables Custom Overrides to match theme */
/* DataTables Custom Overrides to match theme */
.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 14px;
    margin-left: 5px;
    border: 1px solid #ddd !important;
    background: #fff !important; /* Start with white background */
    background-image: none !important;
    color: var(--text-dark) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    cursor: pointer;
}

.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f0f0f0 !important;
    background-image: none !important;
    border: 1px solid #ccc !important;
    color: var(--secondary) !important;
}

.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--secondary) !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid var(--secondary) !important;
    opacity: 1 !important;
}

.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.custom-theme-pagination .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: not-allowed;
    color: #ccc !important;
    background: #f9f9f9 !important;
    background-image: none !important;
    border: 1px solid #eee !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 10px;
    outline: none;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--secondary);
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
    outline: none;
    margin: 0 5px;
}

.dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--secondary);
}


/* Financial Statements Page Styles */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .finance-grid {
        grid-template-columns: 1fr;
    }
}

.finance-card {
    background: #fff;
    border: 1px solid #eee;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
}

.finance-header {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}



.finance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.3s;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    gap: 10px;
    /* Space between wrapped items */
}

/* Mobile Adjustments */
@media (max-width: 366px) {
    /* Critical layout fixes for small screens */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .logo img {
        height: 40px; /* Prevent header overflow */
        width: auto;
    }

    .page-banner h1 {
        font-size: 1.6rem !important;
        padding: 0 5px;
    }

    .finance-row {
        padding: 15px 10px;
        flex-direction: column; /* Stack items to save width */
        align-items: flex-start;
        gap: 5px;
    }

    .finance-label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .finance-download {
        font-size: 0.9rem;
        align-self: flex-start; /* Align left */
    }
    
    /* Ensure footer fits */
    .footer-top-bar {
        padding-left: 15px;
        padding-right: 15px;
        border-radius: 40px 40px 0 0; /* Reduce radius scale */
    }
}

.finance-row:last-child {
    border-bottom: none;
}

/* Zebra striping to match the image (Assuming even rows are gray) */
.finance-row:nth-child(even) {
    background-color: #f2f2f2;
}

.finance-label {
    color: #333;
    font-weight: 400;
}

.finance-download {
    color: #5b8bd8;
    /* Lighter blue for download link */
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.finance-download:hover {
    text-decoration: underline;
    color: #004289;
}

/* Fix for Footer Email Overflow on Mobile (320px - 440px) */
@media (max-width: 440px) {
    .contact-item strong {
        font-size: 0.95rem; /* Force reduction */
        word-break: break-all; /* Ensure email breaks if absolutely necessary */
    }
    
    .contact-item strong a {
        font-size: 0.95rem;
    }
    
    .contact-item {
        gap: 10px; /* Reduce gap to give more space to text */
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Why Choose Us Section - Custom Layout */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}
.why-choose-header h2 {
    text-transform: uppercase;
    font-weight: 800;
}
.why-choose-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-wrapper {
    display: flex;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.why-choose-image-box {
    width: 45%;
    position: relative;
    min-height: 400px;
}

.why-choose-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-content-box {
    width: 55%;
    display: flex;
    flex-direction: column;
    /* Create the blue column effect */
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 100px, #fff 100px, #fff 100%);
}

.why-choose-row {
    display: flex;
    /* Ensure equal height behavior */
}

.why-choose-num {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Center Vertically */
    justify-content: center; /* Center Horizontally */
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding: 20px 0;
}

/* Divider line for numbers */
.why-choose-num::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.why-choose-row:last-child .why-choose-num::after {
    display: none;
}

.why-choose-text {
    flex: 1;
    padding: 25px 40px;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically relative to the row height if needed */
}

.why-choose-row:last-child .why-choose-text {
    border-bottom: none;
}

.why-choose-text h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.why-choose-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .why-choose-wrapper {
        flex-direction: column;
    }
    .why-choose-image-box {
        width: 100%;
        height: 250px;
        min-height: auto;
    }
    .why-choose-content-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Adjust blue column width for smaller screens */
     .why-choose-content-box {
        background: linear-gradient(to right, var(--primary) 0%, var(--primary) 80px, #fff 80px, #fff 100%);
    }
    .why-choose-num {
        width: 80px;
        font-size: 1.5rem;
    }
    .why-choose-text {
        padding: 20px;
    }
}

 /* Page-specific override for centered gallery */
        .gallery-grid.centered-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            grid-template-columns: none;
            /* Reset grid */
        }

        .gallery-grid.centered-gallery .gallery-item {
            flex: 0 0 350px;
            /* Fixed nice width for cards */
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .gallery-grid.centered-gallery .gallery-item {
                flex-basis: 100%;
                /* Stack on mobile */
            }
        }

/* Company Profile Button in Footer */
.company-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
    white-space: nowrap;
}

.company-profile-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.company-profile-btn i {
    margin-right: 10px;
}

/* Remove common arrow from company profile button */
.footer-links .company-profile-btn:before {
    content: none;
}