/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Redesign */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a202c;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: all 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Unified Pill Button Styling */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #3498db;
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 73, 109, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 73, 109, 0.4);
    background-color: #2980b9;
}

.btn-pill-white {
    width: fit-content;
    background-color: white;
    color: #3498db !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-pill-white:hover {
    background-color: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-pill-white .arrow-up-right {
    background-color: #3498db;
    color: white;
}

.arrow-up-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #3498db;
    border-radius: 50%;
    font-size: 0.7rem;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.btn-pill:hover .arrow-up-right {
    transform: rotate(45deg) scale(1.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hero Banner Section */
.hero-banner-section {
    padding: 20px;
    padding-top: 100px;
    background-color: white;
}

.hero-container {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: #1a202c;
    border-radius: 40px;
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 40px;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-main-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-hero-start {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: white;
    color: #1a202c !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-start .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Hero Bottom Elements */
.hero-bottom-nav {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    text-align: left;
}

.nav-text-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.nav-text-box .small-tag {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-text-box .main-tag {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-nav-arrows {
    display: flex;
    gap: 1rem;
}

.hero-nav-arrows:hover {
    cursor: pointer;
}


.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow.active {
    background: white;
    color: #1a202c;
    border-color: white;
}

/* Customers Card */
.customers-card-glass {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    min-width: 320px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.customers-info .card-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-align: left;
    color: white;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.revenue-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.slide-content h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.slide-content .btn {
    animation: fadeInUp 1.2s ease-out;
}

/* Navigation Arrows */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: white;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.underline {
    width: 100px;
    height: 4px;
    background-color: #3498db;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form-container h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #3498db;
    margin-right: 1rem;
    width: 20px;
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn {
    background-color: #3498db;
    color: white !important;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover,
.btn-primary:hover {
    background-color: #2980b9;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
    transform: translateY(-3px);
}

/* Flash Messages */
.flash-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }
}

@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .feature-checklist {
        display: inline-block;
        text-align: left;
    }
}

/* Feature Sections (About Us & Services) */
.feature-section {
    padding: 6rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text span {
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.feature-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.feature-checklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-checklist i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.feature-img-wrapper {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-img-wrapper:hover .feature-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
}

.video-overlay i {
    color: #3498db;
    font-size: 1.5rem;
}

/* Video Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    animation: modalScale 0.3s ease-out;
}

@keyframes modalScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #3498db;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* About Section Refinements */
/* Heading size synchronized via .section-title h2 */

#about .underline {
    width: 150px !important;
    height: 6px !important;
    border-radius: 3px;

}

/* Utility: Left Aligned Section Titles */
.section-title.left-aligned {
    text-align: left;
    margin-bottom: 2rem;
    margin-left: 0 !important;
}

.section-title.left-aligned .underline {
    margin: 0;
}

/* Homepage Services Redesign */
.services-feature {
    background-color: #f0f7ff !important;
    /* Extremely subtle blue tint for background as in image */
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.service-card-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    text-align: left;
}

.service-tagline {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.service-card-content h3 {
    font-size: 2.2rem;
    color: #1a4a7a;
    /* Darker blue heading as in image */
    margin-bottom: 1rem;
}

.service-card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-item-card .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .services-card-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Services Redesign Section */
.services-redesign {
    background-color: #ffffff;
    padding: 50px 0 0 0;
    overflow: hidden;
    position: relative;
    min-height: 1000px;
}

.underline {
    width: 100px;
    height: 4px;
    background-color: #3498db;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}


.services-tag-pill {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 3.5rem;
    color: #101828;
    margin-bottom: 15px;
    font-weight: 800;
}

.services-header p {
    font-size: 1.25rem;
    color: #667085;
    max-width: 800px;
    margin: 0 auto;
}

.services-redesign-container {
    display: flex;
    max-width: 100%;
    height: 650px;
    flex-direction: row;
}

.services-sidebar {
    width: 350px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    z-index: 10;
}


.services-sidebar::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.services-sidebar::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 4px;
}

.service-nav-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #2a2a2a;
    opacity: 0.8;
}

.service-nav-item:hover,
.service-nav-item.active {
    background-color: #3498db;
    /* Red accent as in image */
    opacity: 1;
}

.service-nav-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.service-nav-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

.services-content-area {
    flex: 1;
    position: relative;
    display: flex;
    background: #000;
}

.service-info-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #3498db;
    z-index: 5;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    transition: transform 0.5s ease;
}

.service-info-panel h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.service-info-panel p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.service-info-panel .btn-white {
    background: white !important;
    color: #3498db !important;
    font-weight: 700;
    padding: 0.8rem 2rem;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.service-info-panel .btn-white:hover {
    background: #f1f1f1 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-image-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    /* Overlap slightly with the info panel */
    height: 100%;
    z-index: 1;
}

.service-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tab animations */
.service-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-pane.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsiveness for Redesign */
@media (max-width: 992px) {
    .services-redesign-container {
        flex-direction: column;
        height: auto;
    }

    .services-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        /* Hide scrollbar for cleaner look */
    }

    .services-sidebar::-webkit-scrollbar {
        display: none;
    }

    .service-nav-item {
        flex: 0 0 auto;
        padding: 1rem;
        border-bottom: none;
        border-right: 1px solid #333;
    }

    .services-content-area {
        height: 600px;
    }

    .service-info-panel {
        width: 100%;
        padding: 2rem;
        clip-path: none;
        background: rgba(192, 57, 43, 0.95);
        height: auto;
        bottom: 0;
        top: auto;
    }

    .service-info-panel h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-info-panel p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-image-panel {
        width: 100%;
    }
}

/* Testimonials Redesign Section */
.testimonials-redesign {
    padding: 8rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonials-redesign .container {
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
    margin-bottom: 4rem;
    position: relative;
    min-height: 450px;
}

.leader-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #f0f0f0;
    /* Placeholder color */
}

.leader-card:hover {
    transform: scale(1.05) rotate(1deg);
    z-index: 10;
}

.leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Specific item placement for the staggered look */
.leader-1 {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    width: 150px;
    height: 180px;
    margin-top: 50px;
}

.leader-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 160px;
    height: 160px;
}

.leader-3 {
    grid-column: 2 / 3;
    grid-row: 3 / 5;
    width: 155px;
    height: 170px;
    margin-top: 10px;
}

.leader-4 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
    width: 170px;
    height: 190px;
}

.leader-5 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    width: 140px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
}

.leader-6 {
    grid-column: 5 / 6;
    grid-row: 1 / 3;
    width: 160px;
    height: 180px;
    margin-top: 20px;
}

.leader-7 {
    grid-column: 6 / 7;
    grid-row: 1 / 3;
    width: 150px;
    height: 190px;
}

.leader-8 {
    grid-column: 7 / 8;
    grid-row: 2 / 4;
    width: 140px;
    height: 170px;
    margin-top: 40px;
}

.leader-9 {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
    width: 130px;
    height: 150px;
    margin-left: 20px;
}

.leader-10 {
    grid-column: 6 / 7;
    grid-row: 3 / 5;
    width: 170px;
    height: 180px;
    margin-top: 20px;
}

.leader-11 {
    grid-column: 7 / 8;
    grid-row: 4 / 6;
    width: 150px;
    height: 160px;
}

.testimonials-content-block {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin-top: -170px;
    /* Pull it into the grid area slightly */
}

.testimonial-tag {
    display: inline-block;
    background: #3498db;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.testimonial-highlight {
    color: #1e4158;
    display: block;
}

.testimonial-subtext {
    font-size: 1.2rem;
    color: #313538;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-black {
    background-color: #000;
    color: #fff !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-black:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-black i {
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .testimonial-heading {
        font-size: 2.5rem;
    }

    .leaders-grid {
        grid-template-columns: repeat(4, 1fr);
        min-height: auto;
    }

    .leader-card {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 1/1;
    }

    .testimonials-content-block {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .leaders-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Redesign Section */

.btn-wrapper {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    margin-top: 50px;
}

.blog-redesign-section {
    padding: 80px 0;
    background-color: rgb(238, 247, 255);
    position: relative;
    overflow: hidden;
}

.blog-redesign-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, #ffffff 40.1%, #ffffff 60%, transparent 60.1%);
    z-index: 1;
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.4;
}

.blog-redesign-section .container {
    position: relative;
    z-index: 2;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-tag-pill {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-header h2 {
    font-size: 3.5rem;
    color: #101828;
    margin-bottom: 15px;
    font-weight: 800;
}

.blog-header p {
    font-size: 1.25rem;
    color: #667085;
    max-width: 800px;
    margin: 0 auto 30px;
}

.blog-search-container {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.blog-search-container i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 1.1rem;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    outline: none;
    transition: all 0.2s;
    background: #fff;
}

.blog-search-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(94, 141, 202, 0.1);
}

.blog-slider-outer {
    position: relative;
    padding: 0 60px;
    margin-top: 60px;
}

.blog-slider-container {
    overflow: hidden;
    width: 100%;
}

.blog-grid-modern {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: max-content;
}

.blog-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 380px;
    /* Fixed width for slider items */
    flex-shrink: 0;
}

.blog-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    color: #101828;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-slider-btn:hover {
    background: #3498db;
    color: #ffffff;
    border-color: #3498db;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.blog-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f2f4f7;
}

@media (max-width: 1200px) {
    .blog-slider-outer {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .blog-slider-outer {
        padding: 0;
    }

    .blog-slider-btn {
        display: none;
        /* Hide arrows on mobile, rely on touch/scroll */
    }

    .blog-slider-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .blog-grid-modern {
        gap: 20px;
    }

    .blog-card-modern {
        width: 300px;
        scroll-snap-align: center;
    }
}

.blog-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-card-img-wrapper img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-category {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-post-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.blog-post-title-row h3 {
    font-size: 1.5rem;
    color: #101828;
    line-height: 1.4;
    flex-grow: 1;
    margin-right: 15px;
    font-weight: 700;
}

.blog-post-title-row i {
    font-size: 1.2rem;
    color: #3498db;
    margin-top: 5px;
    transition: transform 0.2s;
}

.blog-card-modern:hover .blog-post-title-row i {
    transform: translate(3px, -3px);
}

.blog-post-excerpt {
    color: #667085;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details span {
    display: block;
}

.author-name {
    color: #101828;
    font-weight: 600;
    font-size: 0.95rem;
}

.post-date {
    color: #667085;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .blog-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 2.2rem;
    }

    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}


.blog-footer {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

.blog-footer .btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3498db;
    color: #fff;
    transition: all 0.3s ease;
}

.blog-footer .btn:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.2);
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
    position: sticky;
    top: 100px;
}

.faq-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #667085;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e4158;
    line-height: 1.1;
    margin-bottom: 40px;
}

.faq-title .text-gray {
    color: #98a2b3;
}

.faq-cta-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eaecf0;
}

.faq-cta-box p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 20px;
}

.faq-right {
    flex: 1.5;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #eaecf0;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #2f4f4f;
    /* Darker border for the active/first item as in reference */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #101828;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    color: #101828;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 20px;
    opacity: 1;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475467;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 60px;
    }

    .faq-left {
        position: static;
        text-align: center;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-cta-box {
        margin-top: 40px;
    }
}

.cta-green-eco-section {
    padding: 80px 20px;
    background-color: white;
}

.cta-eco-container {
    background: linear-gradient(135deg, #3498db 0%, #090e0a 100%);
    border-radius: 20px;
    padding: 100px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
}


/* Remove leaf icon */
.cta-eco-container::after {
    display: none;
}

.cta-worker-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    height: 120%;
    width: auto;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-5deg);
    filter: grayscale(100%) brightness(1.5);
}

.cta-eco-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-eco-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-eco-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.btn-pill-eco {
    background-color: white;
    color: #3498db !important;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-pill-eco:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

.eco-arrow-icon {
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cta-eco-content h2 {
        font-size: 2.5rem;
    }

    .cta-eco-container {
        padding: 60px 20px;
        border-radius: 30px;
    }
}

/* Modern Redesigned Footer Styles */
.footer-modern {
    background-color: #ffffff;
    padding-top: 80px;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-main-container {
    grid-template-columns: 0.99fr 1fr;
    gap: 20px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links-column ul li a:hover {
    color: #3498db;
}

/* Signup Box with Curve */
.signup-curve-box {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.signup-curve-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #3498db;
    border-radius: 0 10px 10px 0;
}

.signup-content {
    width: 100%;
}

.signup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.signup-header i {
    font-size: 2rem;
    color: #3498db;
}

.signup-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.signup-input-row {
    display: flex;
    gap: 10px;
}

.signup-input-row input {
    flex-grow: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.signup-input-row button {
    background-color: #ffffff;
    border: 1px solid #ddd;
    width: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.signup-input-row button:hover {
    background-color: #eee;
    color: #3498db;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #eee;
    padding: 30px 0;
}

.bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-left p {
    font-size: 0.9rem;
    color: #888;
}

.bottom-left a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}

.bottom-left a:hover {
    color: #333;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
    color: #3498db;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        margin: 0 auto;
    }

    .cta-diagonal-bg {
        width: 100%;
        clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    }

    .footer-main-container {
        grid-template-columns: 1fr;
    }

    .bottom-bar-container {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* About Us Redesign Styles */
.about-redesign-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-grid-3-col {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-col {
    padding-right: 20px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #3498db;
    /* Dark Green */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-label i {
    color: #1a2e4d;
}

.about-text-col h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text-col p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-pill-green {
    background-color: #1a4d2e;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-pill-green:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

.about-main-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* visible to allow floating card */
}

.about-main-img-wrapper img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.happy-client-card {
    position: absolute;
    top: 40px;
    left: -40px;
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 5;
    min-width: 140px;
}

.happy-client-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 5px;
    line-height: 1;
}

.happy-client-card span {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
}

.about-cards-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-info-card {
    background-color: #f4f7f8;
    /* Very light green tint */
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-5px);
}

.icon-circle.icon-green {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.about-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-grid-3-col {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .happy-client-card {
        left: 20px;
        top: -30px;
    }

    .about-text-col h2 {
        font-size: 2.5rem;
    }

    .about-main-img-wrapper img {
        height: auto;
        aspect-ratio: 16/9;
    }
}