/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fdfbff 0%, #f0f0f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Section */
.header-wrapper {
    position: sticky;
    top: 20px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

/* Fullscreen overlay menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1050;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.fullscreen-menu.active {
    display: flex;
}

.fullscreen-menu a {
    font-size: 1.5rem;
    margin: 15px 0;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.fullscreen-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.logo img {
    height: 45px;
}

header {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    width: 90%;
    max-width: 1150px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    height: 30px;
    width: auto;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    color: #222;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007da0;
}

.chat-button {
    background-color: #1e1b4b;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.chat-button:hover {
    background-color: #007da0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #f7e9ff 10%, #e6f1ff 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-in-out both;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2e2e50;
    line-height: 1.2;
}

.hero-section .highlight {
    color: #ffffff;
    position: relative;
}

.hero-section .underline {
    width: 160px;
    height: 5px;
    background: #007da0;
    margin: 10px auto 0;
    border-radius: 5px;
}

.subtext {
    margin-top: 20px;
    font-weight: 600;
    color: #555;
}

.desc {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: #1e1b4b;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #130b80;
}

/* Partner Logos */
.partners {
    margin-top: 50px;
}

.certified {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #e5e5f7 0%, #f8f7fb 60%, #ffffff 100%);
    display: flex;
    justify-content: center;
}

.services-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 30px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    padding: 50px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.services-header .new-tag {
    font-size: 16px;
    color: #007da0;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.services-header h2 {
    font-size: 40px;
    color: #007da0;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.service-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.service-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-box h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.service-box p {
    margin: 6px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.schedule-btn {
    margin-top: 40px;
    display: inline-block;
    background: #ffffff;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: #3b3b3b;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background: #f3f3f3;
    border-color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Fix */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    flex-shrink: 0;
}

/* Toggle Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #222;
    z-index: 1001;
    background: none;
    border: none;
}

/* Navigation Default */
nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
    }

    .logo {
        font-size: 22px;
    }

    /* Nav Fullscreen Slide-In */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .chat-button {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    nav {
        font-size: 16px;
    }

    .chat-button {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Main Section */
.marketing-section {
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    width: 100%;
}

/* Card Container */
.marketing-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1100px;
    width: 100%;
}

/* Graph Area */
.marketing-graph {
    background: linear-gradient(to bottom right, #ffe9f0, #dee6ff);
    border-radius: 30px;
    padding: 20px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.marketing-chart {
    width: 100%;
    height: 180px;
}

.marketing-line-chart {
    width: 100%;
    height: 100%;
}

/* Stats below graph */
.marketing-stats {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
}

.marketing-stats .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
}

.dot.red {
    background-color: red;
}

.dot.green {
    background-color: green;
}

.label {
    font-size: 12px;
    color: #666;
    margin-left: 4px;
}

/* Text Content */
.marketing-content {
    flex: 1;
    min-width: 250px;
}

.marketing-tag {
    background: linear-gradient(to right, #d2c2f0, #e8d0ff);
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.marketing-title {
    font-size: 32px;
    color: #007da0;
    margin-bottom: 15px;
}

.marketing-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

/* Buttons */
.marketing-buttons button {
    padding: 10px 18px;
    margin-right: 10px;
    background: #f8f8f8;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.marketing-buttons button:hover {
    background: #e0e0ff;
}

/* Responsive */
@media (max-width: 768px) {
    .marketing-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .marketing-graph {
        width: 100%;
        max-width: 320px;
    }

    .marketing-buttons button {
        margin-bottom: 10px;
    }
}

/* Section Wrapper */
.design-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Main Card */
.design-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
    padding: 40px;
    gap: 40px;
}

/* Left Content */
.design-content {
    flex: 1;
    min-width: 280px;
}

.design-tag {
    background: linear-gradient(to right, #d6c5f7, #e6d6ff);
    color: #555;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 14px;
}

.design-title {
    font-size: 32px;
    color: #007da0;
    margin-bottom: 16px;
}

.design-description {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Buttons */
.design-buttons button {
    background: #f3f3f3;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.design-buttons button:hover {
    background: #e4e4ff;
}

/* Image Side */
.design-image-box {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-image {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .design-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 20px;
    }

    .design-buttons button {
        margin: 5px 6px;
    }
}

/* Section Wrapper */
.service-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

/* Reverse Layout Modifier */
.service-section.reverse .service-card {
    flex-direction: row-reverse;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    align-items: center;
}

/* Left Content */
.service-content {
    flex: 1;
    min-width: 280px;
}

.service-tag {
    display: inline-block;
    background: #ebe2ff;
    color: #5a5a5a;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 18px;
    margin-bottom: 14px;
}

.service-title {
    font-size: 34px;
    color: #007da0;
    margin-bottom: 20px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

/* Buttons */
.service-buttons button {
    background: #f3f3f3;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-buttons button:hover {
    background: #e6e6ff;
}

/* Image */
.service-image-box {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.service-image {
    max-width: 400px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column !important;
        padding: 30px 20px;
        text-align: center;
    }

    .service-buttons button {
        margin: 6px;
    }
}

/* FAQ Section */


.faq-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-in-out;
}

.faq-tag {
    background: linear-gradient(to right, #c6b5f7, #e1d7ff);
    color: #555;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 32px;
    color: #007da0;
    margin-bottom: 30px;
}

/* Accordion Glassmorphism */
.glass-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: transparent;
    font-weight: 600;
    color: #333;
}

.accordion-button:not(.collapsed) {
    color: #007da0;
    background: transparent;
    box-shadow: none;
}

.accordion-body {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.accordion-button::after {
    filter: invert(40%);
}

.testimonial-swiper {
    padding: 10px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 300px;
}

.testimonial-card video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.testimonial-card h5 {
    margin: 10px 0 5px;
    color: #333;
}

.testimonial-card p {
    font-size: 14px;
    color: #555;
}

.horizontal-sidebar {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.industry-card {
    min-width: 150px;
    flex-shrink: 0;
    text-align: center;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.industry-icon {
    font-size: 3rem;
}

/* Hide native scrollbar on all browsers */
.industry-swiper {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.industry-swiper .swiper-scrollbar {
    display: none !important;
    /* Hides built-in scrollbar */
}

/* Also hide native scrollbars (just in case on overflow) */
.industry-swiper::-webkit-scrollbar {
    display: none;
}

.industry-swiper {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.heading {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #0081a8, #2cb67d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.why-adscripte-section {
    max-width: 1200px;
    margin: 60px auto;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    gap: 40px;
    flex-wrap: wrap;
}



.why-adscripte-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #007da0;
    margin-bottom: 24px;
}

.why-adscripte-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-adscripte-points li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-adscripte-points li::before {
    content: "✅";
    color: #28a745;
    font-size: 18px;
}

.why-adscripte-image {
    flex: 250px;
    text-align: center;
}

.why-adscripte-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .why-adscripte-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .why-adscripte-heading {
        font-size: 1.6rem;
        text-align: center;
    }

    .why-adscripte-text,
    .why-adscripte-image {
        text-align: center;
    }
}

.video-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.video-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #007da0;
    margin-bottom: 30px;
}

.video-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.video-scroller::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

.video-content {
    padding: 15px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.video-meta {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 260px;
    }

    .video-section h2 {
        font-size: 1.6rem;
        text-align: center;
    }
}

.tag-pill {
    display: inline-block;
    background-color: #f1eaff;
    color: #007da0;
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 999px;
    font-weight: 500;
    margin-bottom: 10px;
}

.step-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 2.8rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.15);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.step-desc {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .step-icon {
        font-size: 2.2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }
}

.cta-section {
    padding: 60px 0;
    color: white;
}

.cta-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}

.cta-left {
    background: linear-gradient(135deg, #007da0, #007da0);
    color: white;
    padding: 40px;
    border-radius: 20px 0 0 20px;
}

.cta-left h3 {
    font-size: 2rem;
    font-weight: 700;
}

.cta-left p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.cta-right {
    padding: 40px;
}

.form-floating {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007da0;
}

.cta-btn {
    background-color: #007da0;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #007da0;
}

@media (max-width: 768px) {

    .cta-left,
    .cta-right {
        border-radius: 0;
        padding: 30px;
    }

    .cta-card {
        flex-direction: column;
        border-radius: 20px;
    }
}

.footer a:hover {
    color: #0dcaf0 !important;
    /* Bootstrap info color */
    text-decoration: underline;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #ffffff, #00bbdd, #ffffff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

canvas#bubbles-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    animation: fadeInUp 1s ease forwards;
}

.highlight {
    color: #00e6e6;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.underline {
    display: inline-block;
    width: 80px;
    height: 4px;
    background: #00e6e6;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #00e6e6;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #00cccc;
    transform: scale(1.05);
}

.partner-logo {
    height: 40px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
