/* 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;
    --color-bg-beige: #fdf6ee;
    --color-primary-orange: #3498db;
    --color-text-dark: #1a202c;
    --color-border-light: rgba(0, 0, 0, 0.08);

    /* Marketing Theme Variables */
    --mkt-dark: #0d293b;
    --mkt-lime: #3498db;
    --mkt-gray: #F4F7F6;
    --mkt-white: #FFFFFF;
    --mkt-text: #2C3E50;
    --mkt-text-light: #666666;
}

.mkt-bg-dark {
    background-color: var(--mkt-dark);
    color: var(--mkt-white);
}

.mkt-bg-lime {
    background-color: var(--mkt-lime);
    color: var(--mkt-dark);
}

.mkt-bg-gray {
    background-color: var(--mkt-gray);
}

.mkt-text-lime {
    color: var(--mkt-lime);
}

.mkt-text-dark {
    color: var(--mkt-dark);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Redesign */
.navbar {
    background-color: #ffffff;
    padding: 0.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: 70px;
    width: 200px;
    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-item {
    position: relative;
}

.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%;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 520px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 8px 14px;
    background: #ffffff;
    border: 1px solid rgba(52, 152, 219, 0.15);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(17, 34, 68, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1200;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-top: 1px solid rgba(52, 152, 219, 0.15);
    border-left: 1px solid rgba(52, 152, 219, 0.15);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: #1a202c;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus {
    background-color: #f0f7ff;
    color: #3498db;
    transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown:focus-within .nav-dropdown-icon {
    transform: rotate(180deg);
}

/* 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);
    padding: 1rem 0;
    position: fixed;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 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;
}

/* 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: 0rem;
}

.section-title h2 {
    display: flex;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: left !important;
    align-items: center;
}

.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-primary {
    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: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);
        gap: 0;
        padding: 1.5rem 0 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        width: min(92vw, 420px);
        margin: 0.85rem auto 0;
        padding: 14px;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 16px;
        background: #f8fbfe;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-icon {
        transform: rotate(180deg);
    }
}

@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;
    }
}

/* About Us Specific Styles */
.about-page {
    background-color: var(--color-bg-beige);
    color: var(--color-text-dark);
}

.about-hero {
    padding: 100px 20px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-orange {
    background-color: var(--color-primary-orange);
    color: white !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #333 !important;
}

.about-hero-img {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin: 4rem 0;
}

.stat-col {
    text-align: center;
    border-right: 1px solid var(--color-border-light);
}

.stat-col:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-orange);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.about-feature-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image-side {
    flex: 1;
}

.feature-image-side img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-text-side {
    flex: 1;
}

.feature-tag {
    color: var(--color-primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.feature-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list i {
    color: var(--color-primary-orange);
    margin-top: 5px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.mv-icon {
    font-size: 2rem;
    color: var(--color-primary-orange);
    margin-bottom: 1.5rem;
    display: block;
}

.welcome-section {
    background: white;
    padding: 5rem 3rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 6rem 0;
}

.welcome-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.signature-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-primary-orange);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--color-primary-orange);
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    margin-bottom: 0.2rem;
}

.team-info p {
    color: var(--color-primary-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.crew-item {
    text-align: center;
}

.crew-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.cta-banner {
    background: white;
    padding: 3rem 4rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
}

@media (max-width: 992px) {

    .about-feature-block,
    .about-feature-block.reverse {
        flex-direction: column;
    }

    .mission-vision-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .welcome-section {
        flex-direction: column;
        text-align: center;
    }

    .crew-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

.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;
    max-width: 800px;
    margin: 0 auto 30px;
}


.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: #2c3e50;
    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%;
    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: 3rem 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: 777px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 26px;
    margin-top: -168px;
    /* Raised from -170px */

}

.testimonial-tag {
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #389bff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    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;
}

/* Scrolling Text Banner Styles */
.scrolling-text-banner {
    white-space: nowrap;
    padding: 60px 0;
    margin-top: -75px;
    position: relative;
    z-index: 1;
    margin-bottom: -45px;
}


.scrolling-text-container {
    display: inline-block;
    animation: scrollText 40s linear infinite;
}

.scrolling-text-item {
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    font-weight: 900;
    color: #07283e29;
    /* Light gray/silver look with low opacity */
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 150px;
    user-select: none;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    /* vertical center */
    gap: 20px;
}

.scrolling-text-item i {
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 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: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #389bff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.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 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding-bottom: 60px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    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: 40px;
}

.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;
    position: relative;
    z-index: 10001;
}

.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;
    position: relative;
    z-index: 10002;
}

.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;
    }
}

/* ==========================================================================
   Services Page Redesign Styles (Based on Reference Image)
   ========================================================================== */

:root {
    --services-orange: #3498db;
    --services-white: #ffffff;
    --services-dark-bg: #111111;
    --services-gray-text: #666666;
    --services-light-gray: #f8f8f8;
}

/* Services Hero Section */
.services-hero {
    background-color: var(--services-white);
    color: #182e52;
    padding: 140px 0 80px;
    background-image: linear-gradient(rgba(231, 246, 255, 0.7), rgba(209, 232, 247, 0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19480c5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.services-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.services-hero-content {
    flex: 1;
    min-width: 300px;
}

.trades-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

.services-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.services-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 550px;
}

/* Hero Form Styling */
.services-hero-form {
    flex: 0 0 450px;
    max-width: 100%;
}

.form-card {
    background-color: var(--services-orange);
    padding: 45px;
    border-radius: 5px;
}

.form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.form-card .form-group {
    margin-bottom: 15px;
}

.form-card input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-get-pricing {
    width: 100%;
    background-color: black;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-get-pricing:hover {
    background-color: #333;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 280px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 30px;
    text-align: center;
}

.card-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.card-info p {
    font-size: 0.95rem;
    color: #808080;
    font-weight: 600;
    text-transform: capitalize;
}

/* Service Card Corner Arrow */
.service-card {
    position: relative;
    display: block;
}

.card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 45px;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100% 0 0 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.card-arrow i {
    font-size: 1.2rem;
    transform: translate(8px, 8px);
    /* Offset towards the corner */
    transition: transform 0.3s ease;
}

.service-card:hover .card-arrow {
    background-color: #2c3e50;
    width: 70px;
    height: 70px;
}

.service-card:hover .card-arrow i {
    transform: translate(12px, 12px);
}


/* Services CTA Banner */
.services-cta-banner {
    display: flex;
    background-color: var(--services-orange);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
}

.cta-banner-img {
    flex: 0 0 500px;
    height: 350px;
}

.cta-banner-img img {
    width: 67%;
    height: 137%;
    object-fit: cover;
}

.cta-banner-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.cta-banner-content h2 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 35px;
}

.btn-banner-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-banner-link span {
    text-decoration: underline;
    margin-left: 5px;
}

/* All Trades Section */
.all-trades-section {
    padding: 100px 0;
    background-color: white;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trades-column {
    list-style: none;
}

.trades-column li {
    font-size: 0.95rem;
    margin-bottom: 12px;



    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.trades-column li i {
    color: #3498db;
    font-size: 0.8rem;
}

/* FAQ Section New */
.faq-section-new {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.faq-new-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.faq-new-left {
    flex: 1;
}

.faq-new-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.faq-accordion-new {
    margin-top: 40px;
}

.faq-item-new {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-question-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-question-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    transition: color 0.3s;
}

.faq-question-new i {
    font-size: 0.9rem;
    color: var(--services-orange);
    transition: transform 0.3s;
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
}

.faq-answer-new p {
    padding-top: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--services-gray-text);
}

.faq-item-new.active .faq-question-new h3 {
    color: #3498db;
}

.faq-item-new.active .faq-question-new i {
    transform: rotate(90deg);
}

.faq-item-new.active .faq-answer-new {
    max-height: 200px;
}

.laptop-illustration {
    position: relative;
    max-width: 600px;
}

.laptop-illustration img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Responsive Overrides for Services Page */
@media (max-width: 1200px) {
    .faq-new-container {
        flex-direction: column;
        gap: 60px;
    }

    .faq-new-right {
        justify-content: center;
    }

    .trades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .services-hero-content h1 {
        font-size: 3.5rem;
    }

    .services-hero-form {
        flex: 1 1 100%;
    }

    .services-cta-banner {
        flex-direction: column;
    }

    .cta-banner-img {
        flex: 1 1 100%;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .services-hero-content h1 {
        font-size: 2.8rem;
    }

    .trades-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-content {
        padding: 40px 20px;
    }

    .form-card {
        padding: 25px;
    }
}

/* Contact Us Redesign (matching provided image) */
.contact-redesign-section {
    padding: 150px 0 0;
    background-color: #fcfcfc;
    text-align: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 35px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 36px;
}

.contact-header .orange-text {
    color: #3498db;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.4);
    color: #177ee6;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-form-card {
    background: white;
    max-width: 1080px;
    margin: -15px auto 100px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 20%);
    border: 1px solid #eee;
    text-align: left;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-row input,
.contact-form-card textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #fafafa;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form-card textarea {
    margin-bottom: 30px;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Service Row & Postcode Card Styling */
.service-row {
    grid-template-columns: 1fr 2fr !important;
}

.postcode-area-card {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.postcode-area-card:focus-within {
    border-color: #1e4158;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
}

.postcode-area-card input {
    border: none !important;
    background: #fafafa !important;
}

.service-dropdown {
    width: 100%;
    padding: 15px 20px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    transition: all 0.3s ease;
}

.service-dropdown:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.service-dropdown option {
    background: white;
    color: #333;
}

.btn-contact-submit {
    background-color: #3498db;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-contact-submit:hover {
    background-color: #3498db;
}

.contact-info-banner {
    background-color: #3498db;
    padding: 80px 0;
    color: white;
    margin-top: 50px;
}

.contact-info-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-banner-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info-banner-content .banner-subtext {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 1;
}

.contact-info-banner-content .banner-cta {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info-item .icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info-item p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }
}

/* Schedule Call Page Styles */
.schedule-call-page {
    padding-top: 151px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.booking-hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.booking-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: #1a202c;
    font-weight: 600;
}

.booking-interface {
    padding-bottom: 80px;
}

/* Redesigned Schedule Section */
.schedule-section {
    padding: 185px 0;
    background-color: #ffffff;
    min-height: 100vh;
}

.schedule-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    text-align: center;

}

.schedule-header p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 36px;
    text-align: center;
}

.booking-card.redesign {
    max-width: 1100px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    border: 1px solid #e2e8f0;
    min-height: 600px;
    overflow: visible;
}

/* Left Panel: Profile Side */
.booking-profile-side {
    flex: 1;
    padding: 40px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-header {
    text-align: left;
}

.profile-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 4px;
}

.profile-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.meeting-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 700;
    font-size: 0.95rem;
}

.info-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.profile-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
}

/* Middle Panel: Calendar Wrapper */
.booking-calendar-wrapper {
    flex: 1.4;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.calendar-header-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
}

.month-selector-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.month-selector-new .current-month {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
}

.month-selector-new .cal-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.month-selector-new .cal-nav:hover {
    background: #f1f5f9;
}

.month-selector-new .next-month {
    background: #eff6ff;
    color: #3b82f6;
}

.calendar-grid-new {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-grid-new .day-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-align: center;
    padding-bottom: 12px;
}

.calendar-grid-new .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #475569;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    font-weight: 500;
}

.calendar-grid-new .day.disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.calendar-grid-new .day.available {
    background: #eff6ff;
    color: #1d4ed8;
}

.calendar-grid-new .day.available:hover {
    background: #dbeafe;
}

.calendar-grid-new .day.selected {
    background: #0065ff !important;
    color: white !important;
    font-weight: 700;
}

.date-dot {
    width: 4px;
    height: 4px;
    background: #475569;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
}

.timezone-selector-new {
    margin-top: 40px;
    padding-top: 20px;
    position: relative;
}

.timezone-selector-new .tz-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.timezone-selector-new .tz-display {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    padding: 8px 0;
}

/* Timezone Dropdown Styles */
.tz-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid #e2e8f0;
    display: none;
    flex-direction: column;
    z-index: 1000;
    margin-bottom: 20px;
    overflow: hidden;
}

.tz-dropdown.active {
    display: flex;
}

.tz-dropdown-header {
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    border: 3px solid #3b82f6;
    border-radius: 10px;
    font-size: 1.1rem;
    outline: none;
    color: #1e293b;
    font-weight: 500;
}

.format-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.format-toggle .label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.toggle-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 700;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #3b82f6;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.tz-list {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px 0;
}

/* Custom Scrollbar */
.tz-list::-webkit-scrollbar {
    width: 16px;
}

.tz-list::-webkit-scrollbar-track {
    background: transparent;
}

.tz-list::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
    border: 5px solid white;
}

.tz-list::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

.tz-group-heading {
    padding: 20px 24px 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.tz-item {
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.tz-item:hover {
    background: #f8fafc;
}

.tz-item.active {
    background: #0065ff;
    color: white;
}

.tz-item .tz-name {
    font-size: 1rem;
    font-weight: 500;
}

.tz-item .tz-time {
    font-size: 1rem;
    font-weight: 700;
}

.tz-item.active .tz-time {
    color: white;
}

.tz-item:not(.active) .tz-time {
    color: #1e293b;
}

/* Right Panel: Time Slots */
.time-slots-panel {
    flex: 1;
    padding: 40px;
    display: none;
    flex-direction: column;
    max-height: 550px;
    overflow-y: auto;
}

.time-slots-panel.active {
    display: flex;
}

.time-slots-panel h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 30px;
}

.time-slots-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-slot {
    width: 100%;
    padding: 16px;
    background: white;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    color: #0065ff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot:hover {
    background: #eff6ff;
    border-color: #004ecc;
    border-width: 2px;
    transform: translateY(-1px);
}

.time-slot-wrapper {
    display: flex;
    gap: 12px;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.time-slot.selected {
    background: #6b7280 !important;
    color: white !important;
    border-color: #6b7280 !important;
    flex: 1;
    transform: none !important;
}

.btn-next {
    background: #0065ff;
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    flex: 1;
    text-align: center;
    transition: all 0.2s;
}

.btn-next:hover {
    background: #004ecc;
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .booking-card.redesign {
        flex-direction: column;
    }

    .booking-profile-new {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

/* --- New Blog Redesign --- */

.blog-hero {
    text-align: center;
    padding: 100px 20px 60px;
    background: radial-gradient(circle at top right, #0065ff1a, transparent),
        radial-gradient(circle at top left, #0065ff00, transparent);
}

.blog-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 50px;
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.highlight-card {
    border-radius: 24px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card.purple {
    background: linear-gradient(135deg, #a259ff, #6c35de);
}

.highlight-card.pink {
    background: linear-gradient(135deg, #ff729f, #d6407a);
}

.highlight-card.orange {
    background: linear-gradient(135deg, #ff6b3d, #e64a19);
}

.highlight-card .category {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    width: fit-content;
    margin-bottom: 12px;
}

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.highlight-card .btn-small {
    background: white;
    color: #1a202c;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    text-align: center;
}

/* Blog Grid */
.blog-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.span-2 {
    grid-column: span 2;
    flex-direction: row;
}

.blog-card .card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.blog-card.span-2 .card-image {
    width: 50%;
    aspect-ratio: auto;
    min-height: 300px;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card.span-2 .card-content {
    width: 50%;
    padding: 20px;
    justify-content: center;
}

.blog-card .meta {
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    gap: 12px;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Card */
.cta-card {
    background: #ffc107;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    text-decoration: none;
}

.cta-card.span-1 {
    grid-column: span 1;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
}

.cta-card .btn-dark {
    background: #1a202c;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .blog-hero h1 {
        font-size: 3rem;
    }

    .featured-highlights {
        grid-template-columns: 1fr;
    }

    .blog-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.span-2 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.span-2 {
        grid-column: span 1;
        flex-direction: column;
    }

    .blog-card.span-2 .card-image,
    .blog-card.span-2 .card-content {
        width: 100%;
    }
}