@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    margin: 0;
    padding: 0;
    background: linear-gradient(#0a192f, #112240);
    color: #ccd6f6;
}

a {
    color: #47C2E1;
    text-decoration: none;
}

a:hover {
    color: #8892b0;
}

/* Navigation Bar */
nav {
    background: linear-gradient(#0a192f, #112240);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Aligns items vertically */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.logo-img {
    height: 60px;
    width: auto;
	padding-left: 35%;
    transition: height 0.5s ease, opacity 0.5s ease;
		
}

.logo-compact {
    display: none; /* Hidden by default */
}

.logo-img:hover {
  opacity: 0.8;
}

.logo-link {
	margin-right: auto;
  	display: inline-block;
  	text-decoration: none;
}

.shrunk {
    padding: 10px 20px !important;
    height: 50px !important;
}

.shrunk .logo-img {
    height: 40px !important;
	
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
	padding-right:15%;
    gap: 20px; /* Adds space between menu items */
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: bold;
}

.navbar-title {
    position: absolute;
	padding-right: 30px;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #ccd6f6;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    white-space: nowrap;
    margin: 0;
    pointer-events: none;
}

nav.shrunk .navbar-title {
    opacity: 1;
    transform: translateX(0);
	font-size: 2rem;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(#112240, #0a192f);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
	display: flex;
    flex-direction: column; /* Makes the dropdown vertical */
    padding: 8px 0; /* Add some padding */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ccd6f6;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(71, 194, 225, 0.1);
    color: #47C2E1;
    padding-left: 25px;
}

/* Make sure the dropdown doesn't disappear when moving to it */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}


/* Header */
header {
    text-align: center;
	padding-top: 7rem !important;
	padding-bottom: 0.2rem;
    background: linear-gradient(135deg, #0a192f, #112240);
    color: #ccd6f6;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.hidden {
    opacity: 0 !important;
    transform: translateY(-100%) !important;
}

.visible {
    opacity: 1 !important;
    transform: translateY(-100%) !important;
}



header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

header h2 {
    text-align: center;
}

header p {
    font-size: 1.2rem;
    color: #8892b0;
}

main {
    gap: 20px;
    padding: 20px;
    padding-bottom: 60px;
}

section {
    padding: 1px;
}

section p {
    font-size: 1rem;
    line-height: 1.6;
}

section li {
    font-size: 1rem;
    line-height: 1.6;
}

section h2 {
    text-align: center;
}

section2 h2 {
    text-align: center;
}

section2 p {
	line-height: 1.5rem;
	margin-left: 40px;
	text-align: left;
	font-size: 1rem;
}

section2 li {
    font-size: 1rem;
    line-height: 1.6;
	margin-left: 40px;
}

section3 {
    text-align: center;
}

section3 li {
    text-align: left;
}

table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ccd6f6;
}

table th {
    background-color: #112240;
}

table .expandable {
    display: none;
    background-color: #112240;
}

/* Footer */
footer {
    height: 60px;
    background: #112240;
    text-align: center;
    padding: 1rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0;
    padding-top: 10px;
    font-size: 1rem;
    color: #8892b0;
}

/* Table Row Hover Effect */
table tr.clickable:hover {
    background-color: #1a2a4f; /* Slightly lighter background on hover */
    transition: background-color 0.3s ease;
}

/* Pointer Cursor for Clickable Rows */
table tr.clickable {
    cursor: pointer;
}

/* Arrow Icon for Clickable Rows */
table tr.clickable td:first-child::after {
    content: "▶"; /* Unicode arrow */
    float: right;
    color: #47C2E1;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

/* Rotate Chevron When Expanded */
table tr.clickable.expanded td:first-child::after {
    transform: rotate(90deg); /* Rotate arrow when expanded */
}

/* Expandable Row Styling */
table tr.expandable {
    background-color: linear-gradient(135deg, #0a192f, #112240);
    display: none;
    transition: opacity 0.3s ease;
}

/* Highlight Expanded Row */
table tr.clickable.expanded {
    background-color: #1a2a4f; /* Highlight the expanded row */
}

/* Smooth Transition for Expandable Rows */
table tr.expandable td {
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

table tr.expandable.show td {
    opacity: 1;
}

.expandable-section {
    margin-bottom: 1rem;
}

.expandable-section h4 {
	position: relative;
	pading-left: 25px;
    cursor: pointer;
    padding: 10px;
    background-color: #112240;
    border-radius: 5px;
    margin: 0;
}
.expandable-section h2 {
	position: relative;
	pading-left: 25px;
    cursor: pointer;
    padding: 10px;
    background-color: #112240;
    border-radius: 5px;
    margin: 0;
}

.expandable-section h4::after {
    content: "▶"; /* Unicode arrow */
    float: right;
    color: #47C2E1;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.expandable-section h2::after {
    content: "▶"; /* Unicode arrow */
    float: right;
    color: #47C2E1;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.expandable-section[data-expanded="true"] h4::after {
	transform: rotate(90deg);
}

.expandable-section[data-expanded="true"] h2::after {
	transform: rotate(90deg);
}

.expandable-section h4:hover {
    background-color: #1a2a4f;
}

.expandable-section h2:hover {
    background-color: #1a2a4f;
}

.expandable-section .content {
    padding: 10px;
    background-color: #0C1F3A;
    border-radius: 5px;
    margin-top: 5px;
    display: none; /* Initially hidden */
}

.expandable-section[data-expanded="true"] .content {
    display: block; /* Show content when expanded */
}

/* Container for the two sections */
.sections-container {
    display: flex;
    gap: 20px; /* Adds space between the two sections */
    padding: 20px;
}

.sections-container-b {
    display: flex;
	position: relative;
	z-index: 2;
	margin-top: -85px;
	padding-left: 5%;
	padding-right: 5%;
}

.blurb {
	flex: 1; /* Makes each section take up equal space */
    background: linear-gradient(135deg, #0F284C, #112240);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Styles for each section */
.consulting-services,.carrier-representation,.other,.summary,.features,.reports,.additional,.images {
    flex: 1; /* Makes each section take up equal space */
    background: linear-gradient(135deg, #0F284C, #112240);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    background-image: url('../images/home-background.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7); /* Dark overlay with transparency */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
	line-height: 1.2;
	word-wrap: break-word;
	text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccd6f6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #47C2E1;
    color: #0a192f;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #47C2E1;
}

.btn:hover {
    background-color: transparent;
    color: #47C2E1;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: #47C2E1;
}

.btn-outline:hover {
    background-color: #47C2E1;
    color: #0a192f;
}

/* Adjust header spacing */
header {
    padding: 60px 2rem;
}

/* About Us Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F284C, #112240);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ccd6f6;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    max-width: 800px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8892b0;
    margin-bottom: 20px;
    text-align: center;
}

/* Partners Section */
.partners-section {
    padding: 80px 20px;
    background-color: #0a192f;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ccd6f6;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 50px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 180px;
    padding: 20px;
    background-color: rgba(54,68,92,0.70);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(0%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(75%);
}

.client-lists {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.client-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}

.client-list li {
    font-size: 1.2rem;
    padding: 8px 0;
    color: #ccd6f6;
    border-bottom: 1px solid rgba(204, 214, 246, 0.1);
    transition: all 0.3s ease;
	justify-content: center;
}

.client-list li:hover {
    color: #47C2E1;
    transform: translateX(5px);
}

.client-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.client-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ccd6f6;
}

.client-header p {
    font-size: 1.1rem;
    color: #8892b0;
    max-width: 800px;
    margin: 0 auto;
}

.hamburger {
    display: none; /* Hidden by default on desktop */
    padding: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: #ccd6f6;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ccd6f6;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

/* Active state for hamburger */
.hamburger.active .hamburger-inner {
    background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

.contact-form {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: rgba(16, 42, 87, 0.5);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.form-response.success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-response.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px; /* Adjust the width as needed */
    margin: 0 auto; /* Center the form horizontally */
    padding: 20px;
    box-sizing: border-box;
}

/* Style for labels */
form label {
    width: 100%;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Style for text inputs and textareas */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Style for the submit button */
form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #47C2E1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

/* Hover effect for the submit button */
form button[type="submit"]:hover {
    background-color: #8892b0; /* Darker shade for hover */
}

form textarea {
    width: 100%;
    min-height: 150px; /* Minimum height */
    max-height: 300px; /* Maximum height before scrolling */
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    resize: none; /* Disables manual resizing */
    overflow-y: auto; /* Adds vertical scrollbar when needed */
    transition: all 0.3s ease;
}

.success-message {
            text-align: center;
            padding: 40px;
            background: rgba(16, 42, 87, 0.5);
            border-radius: 8px;
            margin: 20px auto;
            max-width: 90%;
            display: none;
        }

        .success-message h2 {
            color: #47C2E1;
            margin-bottom: 20px;
        }

        .success-message p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ccd6f6;
        }

/* Focus state for better UX 
form textarea:focus {
    outline: none;
    border: 5px solid #47C2E1;
    box-shadow: 0 0 0 2px rgba(71, 194, 225, 0.3);
}*/

.carousel-section {
    padding: 80px 0;
    background: #0a192f;
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-left {
    flex: 1;
    text-align: left;
}

.carousel-right {
    flex: 1;
    text-align: left;
}

.carousel-left h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #ccd6f6;
}

.carousel-right p {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 10px;
}


.carousel-content {
    display: flex;
    width: 90%;
    max-width: 1000px;
    gap: 40px;
    align-items: center;
}

.carousel-text {
    text-align: center;
    color: #ccd6f6;
    max-width: 800px;
    padding: 20px;
}

.carousel-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-text p {
    font-size: 1.2rem;
    color: #8892b0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(71, 194, 225, 0.2);
    color: #47C2E1;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(71, 194, 225, 0.4);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(204, 214, 246, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #47C2E1;
}

.hamburger {
    display: none; /* Hidden by default */
}

.nav-links {
    display: flex; /* Visible by default on desktop */
}

@media (max-width: 1500px) {
	.logo-full {
		padding-left: 0px;
	}
	
	.nav-links {
		padding-right: 0px;
	}
	.sections-container-b {
        margin-top: -60px;
    }
}

@media (max-width: 900px) {
    .logo-full {
        display: none;
    }
    
    .logo-compact {
        display: block;
    }
    
    /* Adjust logo size for smaller screens */
    .logo-img {
        height: 50px !important;
    }
    
    .shrunk .logo-img {
        height: 40px !important;
    }
}

@media (max-width: 768px) {
	.sections-container-b {
        margin-top: -40px;
    }
	.client-lists {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-list li {
        font-size: 1.1rem;
    }
    
    .client-header h1 {
        font-size: 2rem;
    }
	.hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    table {
        width: 100%;
    }
	
	.sections-container {
        flex-direction: column; /* Stack sections vertically on smaller screens */
    }
	 .partner-logos {
        gap: 20px;
    }
    
    .partner-logo {
        height: 80px;
        width: 140px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .about-section h2,
    .partners-section h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
	.dropdown > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px;
    }
	.hamburger {
        display: block;
        position: absolute;
        right: 20px;
    }
	.nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(#0a192f, #112240);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: flex !important; /* Force display with transform */
    }
	
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
	.dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding-left: 20px;
    }
	.dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
	nav.shrunk {
        height: 60px !important;
    }
    
    nav.shrunk .nav-links {
        top: 60px;
    }
	.navbar-title {
        /* Center between logo and hamburger */
        left: calc(50% + 30px); /* Adjust this value based on your logo size */
        transform: translateX(-50%);
        font-size: 1.5rem; /* Slightly smaller on mobile */
        top: 50%;
		padding-right: 0;
    }
    
    /* When navbar is shrunk on mobile */
    nav.shrunk .navbar-title {
        left: 50%;
        transform: translate(-50%, -50%);
    }
	
    
    /* Adjust logo positioning to make space for title */
    .logo-link {
        padding-left: 0;
        margin-right: 0;
    }
    
    .logo-img {
        height: 45px !important;
        padding-left: 0 !important;
    }
    
    .shrunk .logo-img {
        height: 35px !important;
    }
    
	.carousel-text h2 {
        font-size: 2rem;
    }
    .carousel-text p {
        font-size: 1rem;
    }
    .carousel-container {
        height: 400px;
    }
    
    .carousel-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .carousel-left, .carousel-right {
        text-align: center;
    }
    
    .carousel-left h2 {
        font-size: 2rem;
    }
    
    .carousel-right p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
	.sections-container-b {
        margin-top: -20px;
    }
	.carousel-container {
        height: 350px;
    }
    
    .carousel-left h2 {
        font-size: 1.8rem;
    }
	.client-list li {
        font-size: 1rem;
    }
    
    .client-header h1 {
        font-size: 1.8rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 500px;
    }
	.partner-logos {
        gap: 15px;
    }
    
    .partner-logo {
        height: 70px;
        width: 120px;
        padding: 10px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
}