* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.search-btn {
    background-color: #4a5a6b;
    border: none;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: #5a6a7b;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.main-header {
    background-color: #0000002a;
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.top-section {
    background-color: #01253d;
    padding: 8px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.top-section.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.top-section-content {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-section p {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
}

.top-section .col-sm-6:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.top-section .col-sm-6:last-child a:nth-last-child(1),
.top-section .col-sm-6:last-child a:nth-last-child(2) {
    margin-left: 2px;
}

.top-section .col-sm-6:last-child a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.top-section .col-sm-6:last-child a:hover {
    opacity: 0.8;
}

.top-section .col-sm-6:last-child a svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 2px;
}

/* Logo Styles */
.header-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
}

.logo-subtext {
    color: white;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Navigation Styles */
.header-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.header-nav ul li {
    position: relative;
    display: inline;
}

.header-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'montserrat', sans-serif;
    display: block;
    padding: 10px 0;
}

.header-nav ul li a:hover {
    color: #4CAF50;
}
.header-nav > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.header-nav > ul > li {
    position: relative;
    display: inline;
}

/* Dropdown Specific Styles - COMPLETE REPLACEMENT */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'montserrat', sans-serif;
    padding: 10px 0;
}

.dropdown-toggle:hover {
    color: #4CAF50;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* CRITICAL: Override flex inheritance for dropdown menu */
ul.dropdown-menu {
    /* Reset ALL inherited styles */
    display: none !important; /* Hidden by default */
    flex-direction: unset !important;
    gap: unset !important;
    
    /* Dropdown specific styles */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 99999;
    border: 1px solid #e0e0e0;
    margin: 5px 0 0 0 !important;
    padding: 8px 0 !important;
    list-style: none !important;
}

/* Show dropdown on hover */
.dropdown:hover ul.dropdown-menu {
    display: block !important;
}

/* Reset all list item styles for dropdown */
ul.dropdown-menu > li {
    /* Reset flex and inline properties */
    display: list-item !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    border: none !important;
    list-style: none !important;
}

/* Dropdown link styles */
ul.dropdown-menu > li > a {
    display: block !important;
    color: #333 !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid #f0f0f0;
}

ul.dropdown-menu > li:last-child > a {
    border-bottom: none;
}

ul.dropdown-menu > li > a:hover {
    background-color: #01253d !important;
    color: white !important;
    padding-left: 25px !important;
}

/* Add invisible bridge to prevent hover loss */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-nav > ul {
        flex-direction: column;
        gap: 10px;
    }
    
    ul.dropdown-menu {
        position: static !important;
        transform: none !important;
        display: none !important;
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 0 0 20px !important;
    }
    
    .dropdown.active ul.dropdown-menu {
        display: block !important;
    }
    
    ul.dropdown-menu > li > a {
        color: white !important;
        background: transparent !important;
        padding: 8px 15px !important;
        border-bottom: none !important;
    }
    
    ul.dropdown-menu > li > a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: #4CAF50 !important;
        padding-left: 20px !important;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: #4CAF50;
}

.talk-btn {
    background-color: #01253d;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    border: 1px solid #fff;
}

.talk-btn:hover {
    background-color: #45a049;
}

.btn-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Hero Slideshow Section - Remove spacing */
.hero-slideshow-section {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block;
    margin-top: 0 !important;
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block;
}

.mySlides {
    display: none;
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top;
}

.mySlides::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.555);
    z-index: 1;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.mySlides:first-child {
    display: block;
}

/* Slide content overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 2;
    background: transparent;
    padding: 0;
    max-width: 600px;
    
}

.slide-icon {
    margin-bottom: 2px;
}

.slide-icon img {
    height: 8px;
    width: auto;
    transform: scaleX(-1);
}

.slide-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'montserrat', sans-serif;
    line-height: 1.2;
    margin-top: 0px;
}

.slide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-list li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'montserrat', sans-serif;
    position: relative;
    padding-left: 35px;
}

.slide-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: white url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M530.8 134.1C545.1 144.5 548.3 164.5 537.9 178.8L281.9 530.8C276.4 538.4 267.9 543.1 258.5 543.9C249.1 544.7 240 541.2 233.4 534.6L105.4 406.6C92.9 394.1 92.9 373.8 105.4 361.3C117.9 348.8 138.2 348.8 150.7 361.3L252.2 462.8L486.2 141.1C496.6 126.8 516.6 123.6 530.9 134z" fill="%234CAF50"/></svg>') no-repeat center;
    background-size: 12px 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

/* Number text */
.numbertext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding: 8px 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 3;
}

/* Dots container */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    padding: 0;
    background: transparent;
    margin: 0;
}

/* Dots styling */
.dot {
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    background-color: #717171;
    transform: scale(1.1);
}

.dot.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

/* Fade animation */
.fade {
    animation-name: fadeIn;
    animation-duration: 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Force sections to connect */
.hero-slideshow-section + .featured-section {
    margin-top: 0 !important;
}

/* Featured Section - FIXED */
.featured-section {
    background-color: #01253d;
    margin-top: 0 !important;
    padding: 60px 0;
    margin: 0 !important;
    display: block;
}

.featured-content {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    box-sizing: border-box;
}

.featured-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
}

.featured-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
}
.featured-right p{
    font-size: 12px;
}
.featured-icon {
    margin-bottom: 20px;
}

.featured-icon img {
    height: 8px;
    width: auto;
    transform: scaleX(-1);
}

.featured-section h2 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-family: 'montserrat', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.featured-section p {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: 'montserrat', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#home.featured-section {
    margin-top: 0 !important;
}

/* Main content sections */
main {
    margin: 0;
    padding: 0;
}

main section {
    margin: 0 !important;
    padding: 0;
}

section {
    margin: 0 !important;
    padding: 0;
}

main section#home {
    margin-top: 0 !important;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Responsive design for featured section */
@media only screen and (max-width: 1024px) {
    .featured-content {
        gap: 40px;
        padding: 0 30px;
    }
    
    .featured-section h2 {
        font-size: 32px;
    }
    
    .featured-left,
    .featured-right {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 768px) {
    .featured-content {
        flex-direction: column;
        text-align: left;
        gap: 30px;
        padding: 0 20px;
    }
    
    .featured-left,
    .featured-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .featured-section h2 {
        font-size: 28px;
    }
    
    .featured-section {
        padding: 40px 0;
    }
    
    .mySlides {
        height: 350px;
    }
    
    .slide-content {
        left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-list li {
        font-size: 16px;
    }
    
    .slide-icon img {
        height: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .featured-section h2 {
        font-size: 24px;
    }
    
    .featured-section p {
        font-size: 14px;
    }
    
    .mySlides {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-list li {
        font-size: 14px;
    }
    
    .slide-icon img {
        height: 25px;
    }
}

/* Services Section Styles */
.services-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 40px;
    border-radius: 8px;
    
}

.services-header {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.services-title {
    color: #01253d;
    font-size: 35px;
    font-weight: 800;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: 'montserrat', sans-serif;
    margin: 0;
}

.services-description {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    padding-top: 8px;
    flex: 1;
    font-family: 'montserrat', sans-serif;
    margin: 0;
    font-weight: 700;
    padding-left: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
}

.service-title {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'montserrat', sans-serif;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.service-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 0 0 8px 8px;
    flex: 1;
}

.service-item:hover .service-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-item:hover .service-title {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-label {
    background-color: #01253d;
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'montserrat', sans-serif;
    line-height: 1.2;
}

/* Services Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-container {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .services-title {
        font-size: 32px;
        white-space: normal;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-description {
        padding-left: 0;
    }
    
    .title-label {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 24px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .services-container {
        margin: 0 10px;
        padding: 15px;
    }
}



/* Client-Focused Approach Section Styles */
.client-approach-section {
    background-color: #dff1fb83;
    padding: 70px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-outer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  
}

.approach-inner-container {
    background: linear-gradient(to right, #f8fcff 0%, #dff1fb 100%);
    border-radius: 20px;
    padding: 60px 40px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.approach-header-section h1 {
    font-size: 35px;
    font-weight: 800;
    color: #01253d;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-family: 'montserrat', sans-serif;
}

.approach-description {
    max-width: 860px;
    margin: 0 auto 35px;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.approach-industries-btn {
    background: #01253d;
    color: white;
    border: none;
    padding: 12px 45px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.approach-industries-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.approach-cards-section {
    position: relative;
    margin-top: 50px;
    padding-bottom: 50px;
}

.approach-cards-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -60px;
    padding: 0 40px;
}

.approach-cards-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.approach-card {
    min-width: 200px;
    height: 150px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.approach-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.approach-card:hover .approach-card-image {
    transform: scale(1.05);
}

.approach-card-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    z-index: 3;
}

.approach-card-title h2 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.approach-card:hover .approach-card-title {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.approach-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.approach-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 10;
    transition: all 0.3s;
    opacity: 0.9;
}

.approach-nav-arrow:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    opacity: 1;
}

.approach-nav-arrow.left {
    left: 20px;
}

.approach-nav-arrow.right {
    right: 20px;
}

.approach-nav-arrow svg {
    width: 20px;
    height: 20px;
    fill: #3498db;
}

.approach-see-more {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3498db;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}

.approach-see-more:hover {
    color: #2980b9;
}

.approach-see-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Auto-scroll animation for approach cards */
@keyframes approachScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 7));
    }
}

.approach-cards-container.auto-scroll {
    animation: approachScroll 25s linear infinite;
}

.approach-cards-container:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .approach-inner-container {
        padding: 40px 20px;
    }

    .approach-cards-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
    }

    .approach-header-section h1 {
        font-size: 32px;
    }

    .approach-card {
        min-width: 180px;
        height: 130px;
    }

    .approach-card-title h2 {
        font-size: 13px;
    }

    .approach-nav-arrow {
        width: 36px;
        height: 36px;
    }
}
/* Client Reviews Section - All classes prefixed to avoid conflicts */
.client-reviews-section {
    background-color: #f5f5f5;
    width: 100%;
    margin: 80px auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
   
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.reviews-main-title {
    color: #01253d;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.reviews-subtitle {
    color: #718096;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.review-showcase-container {
    position: relative;
    
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    overflow: hidden;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.review-items-wrapper {
    position: relative;
    height: 100%;
}

.single-review-item {
    display: none;
    animation: reviewSlideIn 0.5s ease-in-out;
    text-align: center;
}

.single-review-item.current-review {
    display: block;
}

.review-quote-symbol {
    font-size: 48px;
    color: #01253d;
    margin-bottom: 10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-content-text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.review-author-name {
    color: #01253d;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.review-author-position {
    color: #01253d;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.review-nav-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.review-nav-button {
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
}

.review-nav-button:hover {
    background: #01253d;
    color: white;
    transform: scale(1.1);
}

.review-nav-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.review-progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.review-dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.review-dot-indicator.active-review-dot {
    background: #01253d;
    width: 30px;
    border-radius: 5px;
}

.review-dot-indicator:hover {
    background: #718096;
}

.review-dot-indicator.active-review-dot:hover {
    background: #01253d;
}

@keyframes reviewSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .review-showcase-container {
        padding: 40px 30px;
    }
    
    .reviews-main-title {
        font-size: 28px;
    }

    .review-content-text {
        font-size: 18px;
    }

    .review-nav-controls {
        padding: 0 10px;
    }

    .review-nav-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .client-reviews-section {
        margin: 40px auto;
        padding: 20px 10px;
    }

    .reviews-main-title {
        font-size: 24px;
    }

    .review-showcase-container {
        padding: 30px 20px;
    }

    .review-content-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .review-quote-symbol {
        font-size: 36px;
        margin-bottom: 20px;
    }
}
.why-epe-section {
   padding-top: 60px;
   padding-bottom: 80px;
  background-color: #fff; 
   
}
.tar{
    margin: 0 auto;
    background-image: url('assets/img/industries/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 800px rgba(5, 96, 201, 0.342);
    width: 1200px;
    border-radius: 5px;
    padding: 30px 80px;
    margin: 0 auto;

    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.left-slides-container {
    flex: 0 0 35%;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.left-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.left-slide.active-left-slide {
    display: block;
    opacity: 1;
}

/* Background decoration circles */
.why-epe-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.why-epe-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
}


.big-number {
    font-size: 70px;
    font-weight: 500;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -5px;
}

.number-plus {
    color: #ffd700;
}

.clients-text {
    color: white;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.95;
}

.right-content {
    flex: 0 0 55%;
    z-index: 1;
    position: static;
}

.why-heading {
    color: white;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.why-description {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 500px;
    font-family: 'montserrat';
}

.learn-btn {
    background: white;
    color: #2e5f8a;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.learn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    background: #f0f8ff;
}

.slide-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: flex-start;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .why-epe-section {
        padding: 50px 60px;
    }

    .big-number {
        font-size: 100px;
    }

    .why-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .why-epe-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .left-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .right-content {
        text-align: center;
    }

    .why-description {
        margin-left: auto;
        margin-right: auto;
    }

    .big-number {
        font-size: 80px;
    }

    .why-heading {
        font-size: 36px;
    }

    .clients-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-epe-section {
        padding: 30px 20px;
    }

    .big-number {
        font-size: 60px;
    }

    .why-heading {
        font-size: 28px;
    }

    .why-description {
        font-size: 14px;
    }

    .learn-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

 /* Footer Styles - matching your design system */
 footer {
    background: #01253d;
    color: #e0e0e0;
    padding: 60px 0 20px;
    margin: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column li svg {
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-section {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.footer-copyright {
    font-size: 13px;
    color: #909090;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.footer-copyright a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #45a049;
}

.heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #4CAF50;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
}

.bottom-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: center;
}

.bottom-links a {
    color: #909090;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.bottom-links a::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.2);
}

.bottom-links a:last-child::after {
    display: none;
}

.bottom-links a:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .bottom-links a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-column a {
        font-size: 12px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .bottom-links {
        gap: 15px;
    }
    
    .bottom-links a {
        font-size: 12px;
    }
}

/* Overlay for feedback form */
.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Feedback Form Panel */
.feedback-form-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.feedback-form-panel.active {
    right: 0;
}

/* Form Header */
.feedback-header {
    background: linear-gradient(135deg, #01253d 0%, #01253d 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
}

.feedback-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.feedback-header p {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

.close-feedback {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-feedback:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-feedback svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Form Content */
.feedback-form-content {
    padding: 30px;
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #01253d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating Stars */
.rating-container {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.star {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
}

/* Feedback Type Radio Buttons */
.feedback-type-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.radio-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-btn {
    flex: 1;
    background: linear-gradient(135deg, #01253d 0%, #01253d 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cancel-btn {
    flex: 1;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cancel-btn:hover {
    background: #e0e0e0;
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Floating Feedback Button - Right Side */
.floating-feedback {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease;
}

.feedback-btn {
    background: linear-gradient(135deg, #01253d 0%, #01253d 100%);
    color: white;
    padding: 10px 13px;
    border: none;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px 0 0 8px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.feedback-btn:hover {
    padding-right: 25px;
    background: linear-gradient(135deg, #01253d 0%, #01253d 100%);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Floating WhatsApp Button - Bottom Right */
.floating-whatsapp {
    position: fixed;
    bottom: 210px;
    right: 5px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Pulse effect for WhatsApp button */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Additional Floating Buttons (Optional) */
.floating-call {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
}

.call-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.call-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Floating Contact Form Toggle */
.floating-contact {
    position: fixed;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000;
}

.contact-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 15px 18px;
    border: none;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0 8px 8px 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-btn:hover {
    padding-left: 25px;
    background: linear-gradient(135deg, #ee5a6f 0%, #e74c3c 100%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Floating Scroll to Top Button */
.floating-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feedback-form-panel {
        width: 100%;
        right: -100%;
    }
    
    .feedback-form-content {
        padding: 20px;
    }
    
    .feedback-header {
        padding: 20px;
    }
    
    .feedback-header h2 {
        font-size: 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .floating-call {
        bottom: 90px;
        right: 20px;
    }
    
    .call-btn {
        width: 45px;
        height: 45px;
    }
    
    .feedback-btn,
    .contact-btn {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .floating-scroll-top {
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-top-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .form-submit {
        flex-direction: column;
    }
    
    .submit-btn,
    .cancel-btn {
        width: 100%;
    }
}

.about-section{
    padding-top: 140px;
    padding-bottom: 140px;
}
.kanu{
    margin: 0 auto;
    justify-items: center;
    display: flex;
    align-items: center;
    max-width: 900px;

}
.about-img{
    width: 480px;
    padding-left: 50px;
}

.about-content{
    width: 500px;
}
.about-content p{
    font-size: 13px;
    font-family: 'montserrat',sans-serif;
}
.about-content h3{
    font-size: 30px;
}

.tabs-wrapper {
    background: #f5f7fa;
    border-radius: 30px;
    padding: 5px;
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.tab {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    outline: none;
}

.tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    color: #475569;
}

.tab.active {
    background: #01253d;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.tab-content {
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 18px;
}

.tab-panel p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 13px;
    font-family: 'montserrat',sans-serif;
}
.tab-panel li{
    font-size: 13px;
    font-family: 'montserrat',sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        min-width: unset;
        padding: 30px 20px;
    }
    
    .tab {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.about-tabs{
    margin: 0 auto;
    max-width: 900px;
    padding-top: 50px;
    padding-bottom: 60px;
}
.corporate{
    margin-bottom: 40px;
    font-size: 30px;
    text-align: center;
}
.breadcrumb{
    background-image: url(assets/img/slide/slide.jpg);
    background-position: center;
    height: 230px;
    background-size: cover;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
  background: #F9F9F9;
  padding: 25px;
  margin: 10px 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-bottom-color 0.3s ease-in-out;
  -moz-transition: border-bottom-color 0.3s ease-in-out;
  transition: border-bottom-color 0.3s ease-in-out;
  border-bottom: 2px solid #01253d;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #01253d;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #01253d;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border-bottom: 2px solid #01253d;
}

::-webkit-input-placeholder {
  color: #888;
  font-size: 13px;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}
.contact-section {
    padding: 90px 0;
    background-color: #fff;
}

.contact-section-row {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0 20px;
}

.contact-section .col-md-6 {
    flex: 1;
    min-width: 0;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
    margin-top: 10px;
}

.contact-info h3 {
    color: #01253d;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .contact-section-row {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    list-style: none;
    font-size: 13px;
    font-family: 'montserrat', sans-serif;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li svg {
    flex-shrink: 0;
    vertical-align: middle;
    fill: #01253d;
}
.map{
    padding-top: 15px;
}
.section-services{
    padding: 80px;
    background-color: #fff;
    
}
.section-services-container{
    max-width: 1000px;
    margin: 0 auto;
}
.section-services-header{
    margin-bottom: 25px;
}
.section-services-content p{
    font-size: 14px;
    font-family: 'montserrat',sans-serif;
    font-weight: 500;
    margin-bottom: 10px;

}
.section-services-content ul{
padding-left: 20px;
}
.section-services-content ul li{
    font-size: 14px;
    font-family: 'montserrat',sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}
.services-image{
    width: 300px;
    
}
.images-services{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.banner-name{
    background-color: #efefef;
    height:40px;
    border-top: 3px solid #01253d;
}
.banner-name-content{
    font-size: 14px;
    font-family: 'montserrat',sans-serif;
    font-weight: 600;
    padding-left:150px;
    padding-top: 8px;
    margin:0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.banner-name-content a{
    color: #000000;
    text-decoration: none;
}

.banner-name-content svg {
    flex-shrink: 0;
    vertical-align: middle;
    fill: #01253d;
}