:root {
    --primary-color: #0088ff;
    /* Bright blue from logo */
    --secondary-color: #00cc66;
    /* Green from logo */
    --accent-color: #005fb3;
    /* Darker blue for contrast */
    --highlight-color: #00b359;
    /* Darker green for contrast */
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --section-padding: 60px 0;
    --border-radius: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: var(--dark-color);
    line-height: 1.7;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%230095ff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, rgba(230, 245, 255, 0.3), rgba(255, 255, 255, 0.8));
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Enhanced page title with animation */
.page-title {
    text-align: center;
    margin: 30px 0 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-size: 2.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.page-title:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
        white-space: nowrap;
    }
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Enhanced info section with gradient border */
.info-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1 1 50%;
    text-align: justify;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-image {
    flex: 1 1 40%;
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease;
    min-width: 280px;
}

.img-fluid:hover {
    transform: scale(1.05) rotate(1deg);
}

/* Enhanced feature grid with floating effect */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 10px 0;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 136, 255, 0.05), rgba(0, 204, 102, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 70%;
}

/* Enhanced benefits section with gradient cards */
.benefits-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    flex: 1 1 300px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px) translateX(5px);
    border-left: 5px solid transparent;
}

.benefit-card:hover::before {
    opacity: 1;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 136, 255, 0.1), transparent);
}

.benefit-title {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

/* Enhanced process steps with animation */
.process-steps {
    margin: 50px 0;
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 20px;
    transition: var(--transition);
    padding-bottom: 5px;
    border-left: 2px dashed transparent;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(0, 136, 255, 0.1));
}

.step:hover {
    transform: translateX(15px);
    border-left: 2px dashed var(--secondary-color);
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 136, 255, 0.3);
    z-index: 2;
}

.step:hover::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
    transform: scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.step:hover .step-title {
    color: var(--secondary-color);
}

/* Enhanced tech specs table */
.tech-specs {
    margin: 40px 0;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.specs-table th,
.specs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.specs-table tr:nth-child(even) {
    background-color: rgba(0, 136, 255, 0.05);
}

.specs-table tr:hover {
    background-color: rgba(0, 204, 102, 0.1);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Enhanced application grid with gradient hover */
.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.application-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.application-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 136, 255, 0.1), rgba(0, 204, 102, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.application-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--secondary-color);
}

.application-item:hover::before {
    opacity: 1;
}

.application-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.application-item:hover .application-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.application-content {
    position: relative;
    z-index: 1;
}

/* Enhanced CTA section with animated background */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
    color: white;
    border-radius: var(--border-radius);
    padding: 60px;
    margin: 5px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 204, 102, 0.2);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M0,500 C200,400 300,600 500,500 C700,400 800,600 1000,500 L1000,1000 L0,1000 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    animation: waveBg 15s linear infinite;
}

@keyframes waveBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.cta-title {
    font-size: 2.3rem;
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 136, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn:hover::before {
    left: 0;
}

/* Enhanced banner heading */
.banner-heading {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 25px;
    margin-bottom: 0px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.banner-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced odor benefits section */
.odor-benefits-info-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.odor-benefits-section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 2.3rem;
    position: relative;
    padding-bottom: 15px;
}

.odor-benefits-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.odor-benefits-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2.5rem;
}

.odor-benefit-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 5px solid transparent;
}

.odor-benefit-card:hover {
    transform: translateY(-10px);
    border-top: 5px solid var(--secondary-color);
}

.odor-icon-container {
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.odor-benefit-card:hover .odor-icon-container {
    background: linear-gradient(145deg, var(--primary-color), var(--accent-color));
    transform: scale(1.1);
}

.odor-icon-container i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.odor-benefit-card:hover .odor-icon-container i {
    color: white;
}

.odor-benefit-title {
    color: var(--dark-color);
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.odor-benefit-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.odor-benefit-card:hover .odor-benefit-title::after {
    width: 70%;
}

.odor-benefit-description {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

/* Media Queries with enhanced responsive design */
@media only screen and (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .application-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-section {
        padding: 50px 30px;
    }

    .odor-benefits-info-section {
        padding: 2rem;
    }

    .odor-benefits-section-title {
        font-size: 2.1rem;
    }

    .odor-benefit-title {
        font-size: 1.4rem;
    }

    .odor-icon-container {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .page-title {
        font-size: 2rem;
        margin: 20px 0 30px;
    }

    .info-section {
        padding: 25px;
    }

    .intro-content {
        flex-direction: column;
        gap: 30px;
    }

    .banner-heading {
        font-size: 1.8rem;
        padding: 15px;
    }

    .intro-image {
        flex: 1 1 100%;
        order: -1;
    }

    .intro-text {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-section {
        flex-direction: column;
        gap: 25px;
    }

    .step {
        padding-left: 70px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.9rem;
    }

    .btn {
        padding: 12px 30px;
    }

    .odor-benefits-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .odor-benefit-card {
        max-width: 100%;
        margin-bottom: 0;
    }

    .odor-benefits-section-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-title::after {
        width: 80px;
    }

    .cloud-logo img {
        max-width: 250px;
    }

    .info-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card,
    .benefit-card,
    .application-item {
        padding: 20px;
    }

    .step {
        padding-left: 60px;
    }

    .step::before {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .banner-heading {
        font-size: 1.6rem;
        padding: 12px;
    }

    .odor-benefits-info-section {
        padding: 1.5rem;
    }

    .odor-benefits-section-title {
        font-size: 1.7rem;
    }

    .odor-benefit-title {
        font-size: 1.3rem;
    }

    .odor-icon-container {
        width: 65px;
        height: 65px;
    }

    .odor-benefit-card {
        padding: 1.5rem;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Update the intro-content to use flexbox layout */
.intro-content {
    display: flex;
    flex-direction: row-reverse;
    /* Places image on right */
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.intro-text {
    flex: 1;
    /* Takes available space */
}

.intro-image-carousel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsive layout - image above text */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        /* Stacks vertically */
    }

    /* Ensure image appears first in mobile view */
    .intro-image-carousel {
        order: -1;
        /* Places image above text */
        margin-bottom: 20px;
    }
}

/* Image Carousel Styles */
.intro-image-carousel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.main-image img,
.main-image video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thumbnail-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    max-width: calc(100% - 70px);
    scrollbar-width: thin;
}

.thumbnail {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #0066cc;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.carousel-nav {
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-nav:hover {
    background-color: #e0e0e0;
}

/* Tabbed Section Styles */
.tabbed-info-section {
    margin: 40px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tab-container {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.tab-header {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-header:hover {
    background-color: #f0f0f0;
}

.tab-header.active {
    border-bottom-color: #0066cc;
    background-color: #fff;
}

.tab-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.tab-content {
    display: none;
    padding: 25px;
    background-color: #fff;
}

.tab-content.active {
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-header {
        border-bottom: 1px solid #e0e0e0;
        border-left: 3px solid transparent;
    }

    .tab-header.active {
        border-bottom-color: #e0e0e0;
        border-left-color: #0066cc;
    }

    .thumbnails {
        max-width: calc(100% - 70px);
    }

    .thumbnail {
        flex: 0 0 60px;
        height: 45px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background-color: rgba(248, 248, 248, 0.8);
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(5px);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    max-width: 100%;
    /* Ensure content doesn't overflow */
    padding: 0 15px;
    /* Add some padding on all screen sizes */
}

.breadcrumb-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    font-size: 16px;
    /* Base font size */
}

.breadcrumb-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-green);
    transition: width 0.3s;
}

.breadcrumb-content a:hover {
    color: var(--accent-blue);
}

.breadcrumb-content a:hover::after {
    width: 100%;
}

.breadcrumb-content span {
    margin: 0 10px;
    color: #999;
}

/* Media Queries for Responsive Design */

/* Large devices (desktops, less than 1024px) */
@media (max-width: 1024px) {
    .breadcrumb {
        padding: 8px 0;
    }

    .breadcrumb-content {
        padding: 0 12px;
    }
}

/* Medium devices (tablets, less than 768px) */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 0;
    }

    .breadcrumb-content {
        padding: 0 10px;
    }

    .breadcrumb-content a {
        font-size: 15px;
        /* Slightly smaller font size */
    }

    .breadcrumb-content span {
        margin: 0 8px;
        /* Reduce margin between items */
    }
}

/* Small devices (mobile phones, less than 480px) */
@media (max-width: 480px) {
    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-content {
        padding: 0 8px;
        line-height: 1.6;
        /* Improve readability on small screens */
    }

    .breadcrumb-content a {
        font-size: 14px;
        /* Even smaller font size for mobile */
    }

    .breadcrumb-content span {
        margin: 0 6px;
        /* Further reduce margin between items */
    }

    /* Optional: Add this if you want breadcrumbs to look better on very small screens */
    .breadcrumb-content {
        justify-content: center;
        /* Center items on very small screens */
    }
}




/* all seo product styling */
.main {
    padding: 60px 20px;
    /* background-color: #f8f9fa; */
    /* min-height: 60vh; */
}

.main .section {
    max-width: 1500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.main .section:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.main h1 {
    font-size: 2.4rem;
    color: #0099FF;
    font-weight: 700;
    margin-bottom: 20px;
}

.main h4 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraph */
.main p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* HR Style */
.main .blog-solutions {
    border: 0;
    height: 3px;
    width: 100px;
    background: linear-gradient(to right, #0099FF, transparent);
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out forwards;
}

/* Animations */
@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100px;
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main .section {
        padding: 30px 20px;
    }

    .main h1 {
        font-size: 1.8rem;
    }

    .main p {
        font-size: 1rem;
    }
}