﻿/* Core Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    top: -1px;
}

.separator::before {
    left: -2px;
}

.separator::after {
    right: -2px;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}   

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 2rem); /* Adjust based on padding */
}

.nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle overlay pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Optional: Add animated particles effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    animation: particleFloat 15s linear infinite;
    pointer-events: none;
}

/* Ensure content stays above overlays */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero Text Styles */
.hero-text {
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: capitalize;
    background: linear-gradient(45deg, #ffffff, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text > p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-description {
    margin: 2.5rem 0;
    padding: 0 15px;
}

.hero-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #3498db;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.hero-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: var(--secondary-color);
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(255,255,255,0.1));
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.95), 
        rgba(255,255,255,0.9), 
        rgba(255,255,255,0.95)
    );
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--light-text);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

/* Address and Contact Info */
.location-info,
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.location-info i,
.contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.quick-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.quick-links a:hover {
    color: var(--secondary-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basis-logo {
    display: flex;
    align-items: center;
}

.basis-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the SVG white */
    transition: opacity 0.3s ease;
}

.basis-logo-img:hover {
    opacity: 0.8;
}

/* Footer Bottom Links */
.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: var(--secondary-color);
}

/* Add these animation keyframes at the end of the file */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="%232196F3" opacity="0.2"/></svg>');
    opacity: 0.5;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
}

/* Stats Styles */
.about-stats {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Content Styles */
.highlight-box {
    background: rgba(52, 152, 219, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.highlight-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.highlight-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.about-text {
    padding: 0 10px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Animation for text */
.animated-text {
    animation-delay: calc(var(--animation-order) * 0.2s);
}

/* Team Section Styles */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    position: relative;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

/* Row Styles */
.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Single Item Row */
.row-single {
    max-width: 400px;
    margin: 0 auto;
}

.row-single .team-member {
    width: 100%;
}

/* Double Item Row */
.row-double {
    max-width: 800px;
    margin: 0 auto;
}

.row-double .team-member {
    width: calc(50% - 15px);
}

/* Triple Item Row */
.row-triple {
    max-width: 1200px;
    margin: 0 auto;
}

.row-triple .team-member {
    width: calc(33.333% - 20px);
}

/* Featured Member Style */
.team-member.featured {
    transform: scale(1.05);
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(52, 152, 219, 0.9);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

/* Member Info Styles */
.member-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.member-info .position {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info .sub-position {
    display: block;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
    line-height: 1.4;
}

/* Hover effects */
.team-member:hover .member-info h3 {
    color: var(--secondary-color);
}

.team-member:hover .member-info {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* Featured member styles */
.team-member.featured .member-info {
    background: linear-gradient(to bottom, #ffffff, #e3f2fd);
    padding: 30px;
}

.team-member.featured .member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member.featured .member-info .position {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* Add decorative elements */
.member-info::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.team-member:hover .member-info::before {
    width: 80px;
}

/* Projects Section Styles */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
}

.project-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Large Project Showcase */
.project-showcase {
    margin-bottom: 50px;
}

.project-showcase .project-item.large {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-images {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.project-images:hover .secondary-image {
    transform: translateY(-10px);
}

.project-image {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.project-images .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-images .secondary-image {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-info p {
    color: #666;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #2980b9;
    transform: translateX(5px);
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Slideshow Styles */
.swiper {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EDC Project Swiper Customization */
.edc-swiper {
    height: 400px;
}

.edc-swiper .swiper-button-next,
.edc-swiper .swiper-button-prev {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.edc-swiper .swiper-button-next:after,
.edc-swiper .swiper-button-prev:after {
    font-size: 20px;
}

/* Project Grid Swipers */
.project-image .swiper {
    height: 250px;
}   

.swiper-pagination-bullet {
    background: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* Partners Section Styles */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
    position: relative;
}

.partners::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><circle cx="25" cy="25" r="1" fill="%239C27B0" opacity="0.2"/></svg>');
    opacity: 0.4;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.95), 
        rgba(255,255,255,0.9), 
        rgba(255,255,255,0.95)
    );
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.partner-image {
    height: 200px;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-info {
    padding: 20px;
    text-align: center;
}

.partner-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.partner-info p {
    color: var(--dark-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor:pointer;
}

.partner-link i {
    margin-left: 5px;
    font-size: 0.85rem;
}

.partner-link:hover {
    color: #2980b9;
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

[data-aos="fade-left"] {
    animation: slideInFromRight 1s ease forwards;
}

[data-aos="fade-right"] {
    animation: slideInFromLeft 1s ease forwards;
}

.animated-text {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
