/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #952ecc6e;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #27ae60;
    --gray-color: #95a5a6;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 110px;  /* Adjust this value based on your header height */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background: #bdc3c7;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0;
}

/* Logo size control */
.logo img {
    max-height: 80px; /* Adjust this value to make the logo smaller */
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: var(--transition);
}

/* Add burger menu toggle animation */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 40px;

}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease 0.5s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeIn 1.5s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Products Section */
.featured-products {
    background-color: var(--light-color);
    text-align: center;
}

.featured-products h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Mission Section */
.mission {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: #fff;
    color: var(--primary-color);
}

.cta .btn:hover {
    background: var(--light-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story {
    text-align: center;
}

.about-story p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.values {
    background-color: var(--light-color);
}

.values h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach {
    text-align: center;
}

.approach h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Products Page Styles */
.product-showcase {
    padding: 80px 0;
}

.product-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.product-details.reverse {
    flex-direction: row-reverse;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-image {
    flex: 1;
    min-width: 30px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    width: 30%;
    height: auto;
    border-radius: 50%;
}

.feature-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list i {
    color: var(--success-color);
    margin-top: 5px;
}

.product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.alt-bg {
    background-color: var(--light-color);
}

.integration-showcase {
    text-align: center;
    background-color: #fff;
}

.integration-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.integration-showcase > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.integration-diagram {
    margin: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-options {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form-section {
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form-section > p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px; /* Add padding to accommodate error message */
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    background-color: var(--light-color);
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-section {
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section.about p {
    margin-bottom: 20px;
}

.social {
    display: flex;
    gap: 15px;
}

.social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links a {
    color: #fff;
}

.footer-section.links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section.contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        height: calc(100vh - 110px); /* Adjusted to match header height */
        top: 110px; /* Adjusted to match header height */
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-details, 
    .product-details.reverse {
        flex-direction: column;
    }
    
    .product-image {
        order: -1;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        width: 70%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .product-card,
    .value-card,
    .benefit-card,
    .contact-card,
    .info-card {
        min-width: 100%;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Contact Form Section Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%; /* Add this */
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-content {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #fff;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-details p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.social-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    padding: 60px 40px;
    height: 100%; /* Add this */
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1; /* Add this */
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px; /* Add padding to accommodate error message */
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

.input-group {
    position: relative;
    z-index: 2; /* Ensure input stays above error message */
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    font-size: 16px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.input-group textarea {
    padding-top: 15px;
    resize: vertical;
    min-height: 120px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
    background: #fff;
}

.input-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    appearance: none;
    cursor: pointer;
    color: #495057;
}

.input-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
    background: #fff;
}

.input-group select:required:invalid {
    color: #6c757d;
}

.input-group select option[value=""][disabled] {
    display: none;
}

.input-group select option {
    color: #495057;
    padding: 10px;
}

/* Add a custom dropdown arrow */
.input-group:has(select)::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-color);
    pointer-events: none;
    font-size: 12px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Contact Form */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px;
    }
    
    .contact-form {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Section Header and Divider */
.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto 25px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    max-width: 200px;
    margin: 0 auto;
}

.section-divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-divider i {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-wrapper {
    margin-top: 40px;
}

span {
    color: #fff;
}

/* Floating AI Button */
.ai-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.ai-float:hover {
    background-color: #2980b9;  
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
}

.ai-float i {
    font-size: 1.5rem; /* Making the icon bigger */
}

/* ai_frame Popup Styles */
.ai_frame-popup {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
    
.ai_frame-popup.active {
    display: block;
}

.ai_frame-popup iframe {
    width: 95%;
    height: 95%;
    border: none;
}

.close-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: #2980b9;
    transform: rotate(90deg);
}

@keyframes floatIn {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Make AI button pulse occasionally */
.ai-pulse {
    animation: pulse 2s infinite;
}

/* Enhanced Products Hero Section */
.products-hero {
    position: relative;
    
    background: url('../images/background.png') no-repeat center center/cover; /* Ensure image exists */
    color: #fff;
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
}

.products-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

.products-hero h1,
.products-hero p,
.products-hero .btn {
    animation: fadeInUp 1s ease;
}

.product-row {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap; /* prevent wrapping */
    padding: 0 2rem; /* add some padding on the sides */
}

.product-detail {
    flex: 1; /* make each product take equal width */
    min-width: 0; /* allow products to shrink if needed */
}

/* Update responsive design for smaller screens */
@media screen and (max-width: 992px) {
    .product-row {
        flex-wrap: wrap; /* allow wrapping on smaller screens */
    }
    
    .product-detail {
        flex: 1 1 100%; /* take full width on smaller screens */
    }
}

.product-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Download Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 8px 0;
    z-index: 1;
}

.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-content li:hover {
    background-color: #ddd;
}

.sub-dropdown {
    margin-top: 8px;
}

/* Enhanced Platform Button Styles */
.sub-dropdown button.platform-option {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    width: 100%;
    text-align: left;
    display: block;
    margin: 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.sub-dropdown button.platform-option i {
    margin-right: 8px;
}
.sub-dropdown button.platform-option:hover {
    background-color: #ddd;
}
/* Highlight selected download option */
.download-option.selected {
    background-color: #f0f0f0;
}

/* Store Downloads Section */
.store-downloads {
    background-color: var(--light-color);
    padding: 40px 0;
    text-align: center;
}
.store-downloads h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--dark-color);
}
.store-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.store-group {
    text-align: center;
}
.store-group h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--dark-color);
}
.store-group .store-btn {
    margin: 5px;
}
.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.store-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
}
.store-btn i {
    margin-right: 8px;
}
.store-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Form Validation Styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 20px; /* Add padding to accommodate error message */
}

.error-text {
    color: #dc3545;
    font-size: 0.875rem;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none; /* Ensure error message doesn't interfere with input */
    z-index: 1;
    animation: fadeIn 0.2s ease-in;
}

.input-group {
    position: relative;
    z-index: 2; /* Ensure input stays above error message */
}

.input-group input.error,
.input-group textarea.error,
.input-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.input-group input.error + i,
.input-group textarea.error + i,
.input-group select.error + i {
    color: #dc3545;
}

.consent-checkbox input[type="checkbox"].error + label {
    color: #dc3545;
}

/* Valid state styles */
.input-group input:valid:not(.error),
.input-group textarea:valid:not(.error),
.input-group select:valid:not(.error) {
    border-color: #28a745;
}

.input-group input:valid:not(.error) + i,
.input-group textarea:valid:not(.error) + i,
.input-group select:valid:not(.error) + i {
    color: #28a745;
}

/* Focusing effects */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.notification {
    padding: 15px 30px;
    margin: 20px auto;
    border-radius: 5px;
    display: none;
    animation: fadeIn 0.5s ease;
    max-width: 600px;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* AI Generalist Program Styles */
.quick-nav {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.nav-item {
    background-color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.ai-generalist-highlight {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.highlight-text {
    flex: 1;
}

.highlight-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.program-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: #666;
}

.highlight-image {
    flex: 0 0 200px;
    text-align: center;
}

.program-mission {
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* DeezTalk AI Styles */
.deez-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: #fff;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.trial-note {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-stat {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.benefit-stat .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.benefit-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    margin: 20px 0;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: #666;
}

.price-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 8px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-feature {
    text-align: center;
    max-width: 200px;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-feature span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.cta-feature p {
    font-size: 0.9rem;
    color: #666;
}

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-type-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.business-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.business-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.business-type-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.business-type-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.business-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.9rem;
}

.business-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.success-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid var(--success-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.success-highlight h4 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.success-story {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.achievements {
    margin-top: 25px;
}

.achievements h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.achievements ul {
    margin-left: 0;
}

.achievements li {
    margin-bottom: 8px;
    padding-left: 0;
}

.achievements li i {
    color: var(--success-color);
    margin-right: 10px;
}

.session-gallery {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.session-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.session-image {
    text-align: center;
}

.session-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.session-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.session-mentor {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.session-mentor h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.session-mentor p {
    margin-bottom: 15px;
    color: #666;
}

.mentor-link {
    display: inline-block;
    background-color: #0077b5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.mentor-link:hover {
    background-color: #005885;
    transform: translateY(-2px);
}

.mentor-link i {
    margin-right: 8px;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mvp-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.mvp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mvp-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mvp-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mvp-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-small:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.impact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat p {
    color: #666;
    font-size: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for AI Generalist */
@media (max-width: 768px) {
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-image {
        flex: none;
        margin-bottom: 20px;
    }
    
    .program-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
    }
    
    .nav-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-item {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .mvp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        min-width: auto;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    .success-story {
        padding: 20px;
    }
    
    /* DeezTalk AI Responsive Styles */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .deez-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .business-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Partners Section Styles */
.partners-section {
    background-color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 50px;
}

/* Featured Partner - Microsoft for Startups */
.featured-partner {
    margin-bottom: 60px;
}

.featured-partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 70px 60px; /* increased padding */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 900px; /* increased max-width */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid #0078d4;
}

.featured-partner-card img {
    width: 100%;
    max-width: 500px; /* increased max-width */
    height: 180px;    /* increased height */
    object-fit: contain;
    margin-bottom: 35px; /* more space below */
    background: #ffffff;
    border-radius: 12px;
    padding: 30px; /* increased padding */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 120, 212, 0.05) 0%, rgba(16, 110, 190, 0.05) 100%);
    pointer-events: none;
}

.featured-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 120, 212, 0.2);
    border-color: #106ebe;
}

.featured-partner-card a {
    text-decoration: none;
    color: var(--dark-color);
    display: block;
    position: relative;
    z-index: 1;
}

.featured-partner-card img {
    width: 100%;
    max-width: 500px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 35px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-partner-card h3 {
    font-size: 2rem;
    color: #0078d4;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: none;
}

.featured-partner-card p {
    font-size: 1.2rem;
    color: var(--dark-color);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.1) 0%, 
        rgba(155, 89, 182, 0.1) 50%, 
        rgba(52, 152, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.partner-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.partner-card img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-card:hover img {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.partner-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.partner-card:hover h3 {
    color: var(--primary-color);
}

.partners-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .featured-partner-card {
        padding: 40px 25px;
        margin: 0 20px;
        max-width: none;
    }
    
    .featured-partner-card img {
        max-width: 280px;
        height: 100px;
        padding: 15px;
    }
    
    .featured-partner-card h3 {
        font-size: 1.7rem;
    }
    
    .featured-partner-card p {
        font-size: 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 20px 40px;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .partner-card img {
        max-width: 160px;
        height: 100px;
        padding: 15px;
    }
    
    .partner-card h3 {
        font-size: 1.1rem;
    }
    
    .partner-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media screen and (max-width: 480px) {
    .featured-partner-card {
        padding: 30px 20px;
    }
    
    .featured-partner-card img {
        max-width: 250px;
        height: 80px;
    }
    
    .featured-partner-card h3 {
        font-size: 1.5rem;
    }
    
    .featured-partner-card p {
        font-size: 1rem;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-card img {
        max-width: 140px;
        height: 80px;
        padding: 12px;
    }
    
    .partner-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
}