/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 10px 35px;
    border: 1px solid #fff;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background-color: #fff;
    color: #333;
}

/* Header styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0 0 0;
    background-color: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.logo img {
    height: 50px;
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #e0e0e0;
}

.nav-underline {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

/* Language dropdown styles */
.language-dropdown {
    position: relative;
}

.current-lang {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 50px;
}

.current-lang i {
    margin-right: 5px;
}

.current-lang .fa-chevron-down {
    margin-left: 5px;
    font-size: 12px;
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 100px;
}

.lang-options.show {
    display: block;
}

.lang-options li {
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.lang-options li:last-child {
    border-bottom: none;
}

.lang-options li:hover {
    background-color: #f5f5f5;
}

.lang-options a {
    color: #333;
    display: block;
}

/* Hero section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Page Hero Section */
.page-hero {
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: 60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.page-header {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 20px 0;
}

.page-title {
    margin-bottom: 20px;
}

.page-title h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0.9;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 700;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f2f2f2;
    padding: 15px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb a, .breadcrumb span {
    font-size: 14px;
    color: #666;
    position: relative;
    margin: 0 15px;
}

.breadcrumb a:first-child {
    margin-left: 0;
}

.breadcrumb a:after {
    content: '/';
    position: absolute;
    right: -15px;
    top: 0;
    color: #999;
}

.breadcrumb span.current {
    color: #333;
    font-weight: 600;
}

.breadcrumb .home-link {
    color: #00A651;
}

/* Vision Section */
.vision-section {
    padding: 80px 0 40px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title.text-center {
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #00A651;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title .subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision Content */
.vision-content, .mission-content, .values-content {
    padding: 60px 0;
    position: relative;
}

.vision-row, .mission-row, .values-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.vision-image, .mission-image, .values-image {
    flex: 0 0 55%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
    position: relative;
}

.vision-image img, .mission-image img, .values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.vision-image:hover img, .mission-image:hover img, .values-image:hover img {
    transform: scale(1.05);
}

.vision-text, .mission-text, .values-text {
    flex: 0 0 55%;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 2;
    margin-left: -10%;
}

.mission-row {
    flex-direction: row-reverse;
}

.mission-text {
    margin-left: 0;
    margin-right: -10%;
}

.vision-text h4, .mission-text h4, .values-text h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #00A651;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vision-text h3, .mission-text h3, .values-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.vision-text p, .mission-text p, .values-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.values-list {
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 5px;
    color: #666;
}

.values-list li strong {
    color: #333;
    font-weight: 600;
}

/* Business section */
.business-section {
    background-image: url('../img/2.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: #fff;
    position: relative;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.business-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.business-text {
    flex: 0 0 55%;
    padding-right: 60px;
}

.business-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
}

.business-text p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.business-carousel {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-item {
    background: transparent;
    padding: 25px 30px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.carousel-item:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-item h3 {
    font-size: 18px;
    font-weight: 500;
}

.carousel-link span {
    font-size: 20px;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-link:hover span {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Media section */
.media-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.media-header h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

.media-nav {
    display: flex;
    align-items: center;
}

.media-nav button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    color: #333;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.media-nav button:hover {
    color: #000;
    background-color: #eee;
}

.media-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 600px;
}

.media-cards {
    display: flex;
    gap: 1px;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
}

.media-card {
    flex: 0 0 calc(33.333% - 1px);
    min-width: calc(33.333% - 1px);
    background-color: #fff;
    border-right: 1px solid #eee;
    padding: 40px 30px;
    position: relative;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card:last-child {
    border-right: none;
}

.card-link {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: #333;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-link i {
    transform: rotate(45deg);
}

.card-date {
    margin-bottom: 20px;
}

.card-date h3 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.card-date p {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.card-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Info section */
.info-section {
    padding: 0;
    width: 100%;
}

.info-row {
    display: flex;
    width: 100%;
}

.info-col {
    flex: 1;
    height: 600px;
    position: relative;
}

.info-col:first-child {
    background-image: url('../img/3.jpg');
    background-size: cover;
    background-position: center;
}

.info-col:last-child {
    background-image: url('../img/4.jpg');
    background-size: cover;
    background-position: center;
}

.info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.info-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 80px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 350px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
}

.social-links a {
    margin-left: 15px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ccc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: #aaa;
}

.contact-info {
    max-width: 70%;
}

.copyright {
    text-align: left;
    margin-top: 10px;
}

.powered-by {
    font-size: 12px;
    text-align: right;
}

/* Mobile menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: #333;
    z-index: 200;
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-sidebar.active {
    right: 0;
    visibility: visible;
}

.close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 20px;
}

.mobile-menu li {
    margin: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: #00A651;
}

.mobile-language {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-language h4 {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.mobile-language ul {
    display: flex;
    gap: 15px;
}

.mobile-language li {
    margin: 0;
    border: none;
    padding: 0;
}

.mobile-language a {
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    font-size: 14px;
}

.mobile-language a.active {
    background-color: #00A651;
    color: #fff;
}

.sidebar-logo img {
    height: 40px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 15px 0;
        position: relative;
        background-color: #fff;
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-underline {
        display: none;
    }
    
    .logo {
        flex: 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-dropdown {
        margin-right: 15px;
    }
    
    .burger-menu {
        display: block;
    }
    
    .business-content {
        flex-direction: column;
    }
    
    .business-text {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .business-carousel {
        flex: 0 0 100%;
    }
    
    .carousel-item {
        margin-left: 0;
    }
    
    .media-cards {
        flex-direction: column;
    }
    
    .media-nav {
        flex-wrap: wrap;
    }
    
    .media-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-col {
        width: 100%;
        padding: 30px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info {
        margin-bottom: 20px;
        font-size: 14px;
    }
    
    .copyright {
        margin-bottom: 10px;
    }
    
    .powered-by {
        display: inline-block;
    }
    
    .social-links {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .social-links a {
        margin: 0 10px;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    body.sidebar-open {
        overflow: hidden;
    }
    
    .sidebar-logo img {
        height: 35px;
    }
    
    /* Vision and mission sections responsive styles */
    .vision-row, .mission-row, .values-row {
        flex-direction: column;
    }
    
    .vision-image, .mission-image, .values-image,
    .vision-text, .mission-text, .values-text {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .vision-text, .mission-text, .values-text {
        margin-left: 0;
        margin-right: 0;
        margin-top: -50px;
    }
    
    .mission-row {
        flex-direction: column;
    }
    
    .mission-image {
        order: 1;
    }
    
    .mission-text {
        order: 2;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

/* Page navigation styles */
.page-navigation {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.page-navigation .container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-navigation a {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.page-navigation a.home-icon {
    padding: 15px 20px;
}

.page-navigation a.active {
    background: linear-gradient(to right, #4FDBA3, #008E44);
    color: #fff;
}

.page-navigation .dropdown-toggle.active {
    background: linear-gradient(to right, #4FDBA3, #008E44);
    color: #fff;
}

.page-navigation a i {
    margin-right: 0;
}

.page-navigation .dropdown {
    position: relative;
}

.page-navigation .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.page-navigation .dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.page-navigation .dropdown-content a:hover {
    background-color: #f9f9f9;
}

.page-navigation .dropdown-content a.active {
    color: #fff;
    background-color: #00A651;
}

.page-navigation .dropdown:hover .dropdown-content {
    display: block;
}

.page-navigation a.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
}

/* Business Page Styles */
.business-intro {
    padding: 80px 0;
}

.business-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-intro h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.business-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

/* Business Areas */
.business-areas {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.business-area-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333;
    background-size: cover;
    background-position: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.business-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.business-area-card:hover {
    transform: translateY(-5px);
}

.area-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.area-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.area-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.area-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.read-more {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Business Solutions */
.business-solutions {
    padding: 80px 0;
}

.solutions-container {
    margin-top: 50px;
}

.solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.solution-item:nth-child(even) {
    flex-direction: row-reverse;
}

.solution-image {
    flex: 0 0 40%;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-content {
    flex: 0 0 60%;
    padding: 40px;
}

.solution-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-description {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.solution-features {
    margin-bottom: 30px;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.solution-features li i {
    color: #00A651;
    margin-right: 10px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    color: #fff;
    padding: 0 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00A651;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.testimonials-slider {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    text-align: center;
}

.testimonial-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
}

.quote-icon {
    font-size: 24px;
    color: #00A651;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    margin-top: 50px;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn {
    background-color: #00A651;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
}

.cta-content .btn:hover {
    background-color: #008c44;
}

/* Media Queries for Business Page */
@media screen and (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-item {
        flex-direction: column;
    }
    
    .solution-item:nth-child(even) {
        flex-direction: column;
    }
    
    .solution-image, .solution-content {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 768px) {
    .business-intro h2, .section-title h2, .cta-content h2 {
        font-size: 28px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 