@import url('https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&family=Tenor+Sans&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #0b8088;
    --dark-red: #0b8088;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-gray: #e0e0e0;
}

body {
    font-family: "SN Pro", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.top-banner a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    width: 200px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.contact-btn {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: var(--dark-red);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



/* Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    color: #fff;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Active Slide */
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background Images */
.slide1 {
    background-image: url("./images/banner.jpeg");
}

.slide2 {
    background-image: url("./images/banner1.jpeg");
}

.slide3 {
    background-image: url("./images/banner3.jpg");
}

/* Dark Overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.left,
.right {
    flex: 1;
}

.left h1 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.left h1 span {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #00bcd4;
}

.right p {
    font-size: 20px;
    max-width: 500px;
    line-height: 1.7;
}

.btn-white {
    background-color: white;
    color: #006D6F;
    border: none;
    border-radius: 0px !important;
}

/* Buttons */
.buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #0b8088;
    color: #fff;
    border-radius: 0px !important;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover,
.btn-primary:hover {
    opacity: 0.85;
}

/* Controls */
.controls {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 99;
}

.controls button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 8px 14px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
    }

    .left h1 {
        font-size: 30px;
        margin-top: 60px;
    }

    .left h1 span {
        font-size: 30px;
    }

    .buttons a {
        margin-bottom: 18px;
    }

    .right p {
        font-size: 18px;
    }
}




/* Hero Section */
.hero {
    padding: 120px 20px;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 15px 30px;
    background-color: #0b8088;
    color: white;
    font-size: 16px;
    border: 1px solid #0b8088;
    outline: none;
    cursor: pointer;
    transition: ease 0.3s;
    font-family: "SN Pro", sans-serif;
}

.btn-main a {
    color: white;
    text-decoration: none;
}



.btn-outline a {
    color: black;
    text-decoration: none;
}


.btn-outline {
    padding: 10px 24px;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-content .bannerIcon {
    margin: 20px 0px !important;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 60px 20px;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stats .statHeading {
    text-align: center;
    font-size: 40px;

}

.stats .statHeading span {
    color: #0b8088 !important;
}

.stats .statPara1 {
    /* margin-bottom: 50px; */
    text-align: center;
    font-size: 20px;
}

.stats .statPara2 {
    /* margin-bottom: 50px; */
    text-align: center;
    font-size: 18px;
    margin: 10px 0px;
}

.stats .statPara {
    margin-bottom: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-gray);
    max-width: 230px;
    margin: 0 auto;
}

.accessibility-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(227, 24, 55, 0.3);
}

/* Supporting Section */
.supporting {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/cta.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    text-align: center;
}

.supporting-content {
    color: var(--white);
    max-width: 1250px;
    text-align: center;
}

.supporting-content h2 {
    font-size: 45px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.supporting-content p {

    margin-bottom: 20px;

}

.supporting-content h2 span {
    color: #00bcd4;
}

/* AI Section */
.ai-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.ai-header h2 {
    font-size: 36px;
    line-height: 1.3;
}

.ai-header h2 span {
    color: var(--primary-red);
}

.ai-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: var(--primary-red);
    font-size: 24px;
    margin-left: 5px;
}

.video-content h2 {
    font-size: 36px;
    line-height: 1.3;
}

.video-content h2 span {
    color: var(--primary-red);
}

.video-content p {
    color: var(--text-gray);
    font-size: 16px;
}

.video-content h3 {
    font-size: 28px;
    margin-top: 10px;
    font-weight: 600;
}

.video-content h3 span {
    color: var(--primary-red);
}

.video-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Results Cards */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.result-card {
    padding: 30px;
    border-top: 3px solid var(--primary-red);
    transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tag {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.result-card h4 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.result-card h5 {
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
}

.result-card h6 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
}


.result-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.download-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.download-link:hover {
    gap: 10px;
    transition: gap 0.3s;
}

/* Trending Topics */
.trending {
    background: var(--light-gray);
    padding: 80px 20px;
}

.trending-header {
    /* background: var(--primary-red); */
    color: black;
    /* padding: 40px; */
    display: inline-block;
    /* margin-bottom: 40px; */
}

.trending-header h2 {
    font-size: 36px;
    /* writing-mode: vertical-rl; */
    text-orientation: mixed;
    /* transform: rotate(180deg); */
    text-align: center;
}

.trending-header h2 span {
    font-size: 36px;
    /* writing-mode: vertical-rl; */
    text-orientation: mixed;
    /* transform: rotate(180deg); */
    text-align: center;
    color: #0097a7;
}

.trending-header .trendPara {
    font-size: 20px;
    text-align: center;
}

.trending-header .trendOrignalPara {
    text-align: center;
    margin-top: 10px;
}

.trending-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: auto 1fr; */
    gap: 40px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trending-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s;
    height: 360px;
}

.trending-card:hover {
    transform: translateY(-5px);
}

.trending-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trending-card-content {
    padding: 20px;
}

.trending-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.trending-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


/* -------------------Why omniCaid----------- */
/* ===== Why OmniCaid Section ===== */
.why-omnicaid {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b8088, #006D6F);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header1 {
    text-align: center;
    margin-bottom: 50px;
}

.section-header1 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;

}

.section-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Box */
.feature-box {
    background: #ffffff;
    color: #333;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.feature-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 30px!important;
    }

    .section-header h2 span{
        font-size: 30!important;
    }

    .feature-box {
        padding: 25px 20px;
    }
}


/* ---------------------------Compliance & Standards */
.compliance-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: black;
}

.section-header h2 span {
    font-size: 36px;
    font-weight: 700;
    color: #006D6F;
}

.section-header p {
    color: #6B7280;
    font-size: 16px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.compliance-box {
    background: #f9fafb;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;
}

.compliance-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.compliance-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b8088;
    color: #ffffff;
    border-radius: 50%;
}

.compliance-box .icon svg {
    width: 28px;
    height: 28px;
}

.compliance-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.compliance-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
}



/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-header h2 {
    font-size: 32px;
    line-height: 1.3;
}

.testimonials-header h2 span {
    color: var(--primary-red);
}

.testimonial-slider {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800') center/cover;
    padding: 60px;
    border-radius: 10px;
    color: var(--white);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    max-width: 600px;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.9;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--white);
}

.arrows {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 15px;
}

.arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Certifications */
.certifications {
    padding: 40px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.cert-item {
    opacity: 0.6;
    transition: opacity 0.3s;
    font-weight: 700;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-item:hover {
    opacity: 1;
}

/* CTA Section */
.cta {
    background: #0f172a;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 45px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-container h2 span {
    color: #00bcd4 !important;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
}

.form-row textarea {
    resize: none;
}

.cta-btn {
    background: #00bcd4;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #0097a7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/contact.jpeg') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 4
    5px;
    margin-bottom: 5px;
    font-weight: 500;
}


.cta p {
    font-size: 17px;
    margin-bottom: 25px;
    font-weight: 400;
}

.cta h2 span {
    color: var(--primary-red);
    font-weight: 700;
}

.cta-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: var(--dark-red);
}

/* Footer */
footer {
    background: var(--white);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--border-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo {
    width: 200px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-brand h3 span {
    color: var(--primary-red);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;

}

.footer-contact p a {
    color: var(--text-gray);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-red);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.newsletter h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gray);
    margin-bottom: 15px;
    border-radius: 4px;
}

.newsletter label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.newsletter label input {
    width: auto;
    margin-top: 3px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--dark-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 15px;
        z-index: 999;
    }

    /* YEH ADD KAREIN - Missing tha */
    .nav-links.active {
        display: flex !important;
    }

    /* Yeh already hai - change mat karein */
    .mobile-menu {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-section,
    .ai-header,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .trending-container {
        grid-template-columns: 1fr;
    }

    .trending-header h2 {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .trending h3 {
        font-size: 36px !important;
        line-height: 1.3;
        text-align: center;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .supporting {
        height: 600px;
    }
}

@media (max-width: 600px) {
    .supporting {
        padding: 10px;
    }

    .cta h2{
        font-size: 30px!important;
    }

    .supporting-content h2 {
        font-size: 30px;
    }

    .ai-header h2{
        font-size: 30px;
    }

    .trending-header h2{
        font-size: 30px;
        line-height: 1.2;
    }

    .trending-header h2 span{
        font-size: 30px;
        line-height: 1.2;
    }

    .testimonials-header h2{
        text-align: center;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .supporting-content {
        text-align: center;
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}