:root {
    --primary: #0a2c5e;
    --primary-light: #1e4a8f;
    --secondary: #f8b739;
    --accent: #00b4d8;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #2ecc71;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    transition: var(--transition);
}

header.scrolled nav {
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transition: var(--transition);
    border-radius: 3px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(10, 44, 94, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 44, 94, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(10, 44, 94, 0.05);
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 44, 94, 0.85) 0%, rgba(10, 44, 94, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 0 30px;
    text-align: center;
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.swiper-slide-active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.swiper-slide-active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.swiper-slide-active .slide-btns {
    opacity: 1;
    transform: translateY(0);
}

.btn-slide {
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

.btn-accent {
    background: linear-gradient(to right, var(--secondary), #ff9e16);
    color: var(--dark);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(248, 183, 57, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.swiper-pagination {
    bottom: 50px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary);
    width: 40px;
    border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Services Section */
.section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 5px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 40px auto 0;
    font-size: 20px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(10, 44, 94, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 42px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 25px;
}

.service-features li {
    padding: 10px 0;
    color: var(--gray);
    position: relative;
    padding-left: 35px;
    font-weight: 500;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    width: 25px;
    height: 25px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Solutions Section */
.ai-solutions {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.ai-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 44, 94, 0.05) 0%, rgba(10, 44, 94, 0) 70%);
    border-radius: 50%;
}

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

.solution-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 44, 94, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary);
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary);
}

.solution-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    background-color: var(--gray-light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(10, 44, 94, 0.8), transparent);
    padding: 30px;
    color: var(--white);
}

.team-content {
    padding: 35px;
}

.team-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 800;
    color: var(--primary);
}

.team-content .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-content .bio {
    color: var(--gray);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background-color: var(--light);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 20px;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
}

.testimonial-text::before, .testimonial-text::after {
    content: '"';
    font-size: 60px;
    color: var(--secondary);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
}

.author-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 16px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 240px;
    background-color: var(--gray-light);
    background-size: cover;
    background-position: center;
    transition: transform 5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category {
    background-color: rgba(10, 44, 94, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

.blog-date {
    color: var(--gray);
    font-size: 15px;
}

.blog-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM32 63c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm57-13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-21c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 35px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-right: 20px;
    color: var(--accent);
    margin-top: 5px;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 56px;
    }
    
    .section-title h2 {
        font-size: 42px;
    }
    
    .cta-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider {
        min-height: 700px;
    }
    
    .slide-content h1 {
        font-size: 48px;
    }
    
    .slide-content p {
        font-size: 20px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-slider {
        min-height: 600px;
        margin-top: 70px;
    }
    
    .slide-content h1 {
        font-size: 40px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .slide-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-slide {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .services-grid, .solutions-container, .team-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 40px;
    }
    
    .cta-content p {
        font-size: 20px;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .service-card, .solution-card, .testimonial-card {
        padding: 40px 25px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Partners Section */
.partners-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 44, 94, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%);
}

.partners-slider-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
}

.partnersSwiper {
    padding: 40px 0;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    transition: var(--transition);
}

.partner-logo {
    width: 200px;
    height: 140px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.partner-slide:hover .partner-logo {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.partner-logo i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary);
    transition: var(--transition);
}

.partner-slide:hover .partner-logo i {
    color: var(--accent);
    transform: scale(1.1);
}

.partner-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

/* Partners slider navigation */
.partner-next, .partner-prev {
    color: var(--primary);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.partner-next:after, .partner-prev:after {
    font-size: 20px;
}

.partner-next:hover, .partner-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.partner-pagination {
    position: relative;
    margin-top: 30px;
}

.partner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray-light);
    opacity: 1;
}

.partner-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* Partner stats */
.partner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.partner-stats .stat-item {
    text-align: center;
}

.partner-stats .stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.partner-stats .stat-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

/* Responsive styles for partners section */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-slide {
        height: 160px;
    }
    
    .partner-logo {
        width: 180px;
        height: 120px;
    }
    
    .partner-logo i {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .partner-slide {
        height: 140px;
    }
    
    .partner-logo {
        width: 160px;
        height: 100px;
        padding: 20px;
    }
    
    .partner-logo i {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .partner-logo span {
        font-size: 16px;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .partner-stats .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .partners-slider-container {
        padding: 0 10px;
    }
    
    .partner-slide {
        height: 120px;
    }
    
    .partner-logo {
        width: 140px;
        height: 90px;
        padding: 15px;
    }
    
    .partner-logo i {
        font-size: 32px;
    }
    
    .partner-logo span {
        font-size: 14px;
    }

    
}


/* Modern Why Choose Us Section */
.why-choose-section {
background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
position: relative;
overflow: hidden;
}

.why-choose-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(10, 44, 94, 0.05) 0%, rgba(10, 44, 94, 0) 70%);
border-radius: 50%;
z-index: 0;
}

.why-choose-section .section-title {
position: relative;
z-index: 1;
}

.title-decoration {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
}

.title-icon {
color: var(--secondary);
font-size: 24px;
animation: pulse 2s infinite;
}

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

.why-choose-section .section-title h2 {
font-size: 56px;
font-weight: 900;
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
position: relative;
padding: 0 10px;
}

.why-choose-section .subtitle {
font-size: 20px;
color: var(--gray);
max-width: 700px;
margin: 20px auto 0;
font-weight: 500;
}

/* Highlight Card */
.highlight-card {
background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
border-radius: 25px;
padding: 50px;
margin: 60px 0;
box-shadow: 0 20px 60px rgba(10, 44, 94, 0.1);
border: 1px solid rgba(10, 44, 94, 0.1);
position: relative;
overflow: hidden;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: center;
}

.highlight-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.highlight-badge {
position: absolute;
top: 25px;
right: 25px;
background: linear-gradient(135deg, var(--secondary), #ff9e16);
color: var(--dark);
padding: 10px 25px;
border-radius: 30px;
font-weight: 700;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
box-shadow: 0 5px 15px rgba(248, 183, 57, 0.3);
}

.highlight-content h3 {
font-size: 36px;
font-weight: 800;
color: var(--primary);
margin-bottom: 20px;
line-height: 1.2;
}

.highlight-content p {
font-size: 18px;
color: var(--gray);
line-height: 1.6;
margin-bottom: 30px;
}

.highlight-stats {
display: flex;
gap: 40px;
margin-top: 40px;
}

.highlight-stats .stat {
text-align: center;
padding: 0 15px;
position: relative;
}

.highlight-stats .stat:not(:last-child)::after {
content: '';
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 40px;
background: var(--gray-light);
}

.highlight-stats .number {
display: block;
font-size: 42px;
font-weight: 900;
color: var(--primary);
line-height: 1;
margin-bottom: 5px;
}

.highlight-stats .label {
font-size: 14px;
font-weight: 600;
color: var(--gray);
text-transform: uppercase;
letter-spacing: 1px;
}

.highlight-visual {
display: flex;
justify-content: center;
align-items: center;
}

.visual-element {
width: 180px;
height: 180px;
background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 70px;
animation: rotate 20s linear infinite;
box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
}

@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Value Propositions */
.value-propositions {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 60px 0;
}

.proposition-card {
background: var(--white);
border-radius: 20px;
padding: 40px 35px;
position: relative;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
transition: var(--transition);
border: 1px solid transparent;
}

.proposition-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
border-color: var(--accent);
}

.proposition-icon {
margin-bottom: 25px;
}

.icon-ring {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(10, 44, 94, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
color: var(--primary);
position: relative;
}

.icon-ring::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border-radius: 50%;
border: 2px solid rgba(0, 180, 216, 0.2);
animation: ringPulse 3s infinite;
}

@keyframes ringPulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.05); opacity: 0.8; }
}

.proposition-content h4 {
font-size: 24px;
font-weight: 800;
color: var(--primary);
margin-bottom: 15px;
}

.proposition-content p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.6;
}

.proposition-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.proposition-tags .tag {
background: rgba(10, 44, 94, 0.1);
color: var(--primary);
padding: 6px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}

.proposition-number {
position: absolute;
top: 20px;
right: 20px;
font-size: 48px;
font-weight: 900;
color: rgba(10, 44, 94, 0.1);
line-height: 1;
}

/* Differentiators Grid */
.differentiators-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin: 60px 0;
}

.differentiator-card {
background: var(--white);
border-radius: 20px;
padding: 35px 30px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
transition: var(--transition);
position: relative;
overflow: hidden;
}

.differentiator-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.differentiator-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.differentiator-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}

.diff-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
}

.diff-badge {
background: rgba(46, 204, 113, 0.1);
color: var(--success);
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}

.differentiator-card h4 {
font-size: 22px;
font-weight: 700;
color: var(--primary);
margin-bottom: 15px;
}

.differentiator-card p {
color: var(--gray);
margin-bottom: 25px;
line-height: 1.6;
}

.diff-progress {
margin-top: 20px;
}

.progress-bar {
width: 100%;
height: 8px;
background: var(--gray-light);
border-radius: 4px;
overflow: hidden;
margin-bottom: 10px;
}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--secondary), var(--accent));
border-radius: 4px;
transition: width 1.5s ease-in-out;
}

.progress-text {
font-size: 12px;
font-weight: 600;
color: var(--gray);
display: block;
text-align: right;
}

/* Process Timeline */
.process-timeline {
background: var(--white);
border-radius: 25px;
padding: 50px;
margin: 60px 0;
box-shadow: 0 20px 60px rgba(10, 44, 94, 0.1);
}

.process-timeline h3 {
font-size: 32px;
font-weight: 800;
color: var(--primary);
text-align: center;
margin-bottom: 50px;
}

.timeline {
display: flex;
justify-content: space-between;
position: relative;
}

.timeline::before {
content: '';
position: absolute;
top: 40px;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent));
z-index: 1;
}

.timeline-step {
text-align: center;
position: relative;
z-index: 2;
flex: 1;
padding: 0 15px;
}

.step-number {
width: 80px;
height: 80px;
background: var(--white);
border: 4px solid var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
font-weight: 900;
color: var(--primary);
margin: 0 auto 25px;
position: relative;
transition: var(--transition);
}

.timeline-step:hover .step-number {
background: var(--primary);
color: var(--white);
transform: scale(1.1);
}

.step-content h5 {
font-size: 18px;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.step-content p {
color: var(--gray);
font-size: 14px;
line-height: 1.4;
}

/* CTA Button */
.why-choose-cta {
text-align: center;
margin-top: 60px;
}

.why-choose-cta .btn {
padding: 22px 50px;
font-size: 20px;
border-radius: 15px;
display: inline-flex;
align-items: center;
gap: 15px;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
color: white;
text-decoration: none;
transition: var(--transition);
box-shadow: 0 10px 30px rgba(10, 44, 94, 0.2);
}

.why-choose-cta .btn:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(10, 44, 94, 0.3);
background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

/* Responsive Styles */
@media (max-width: 1200px) {
.highlight-card {
grid-template-columns: 1fr;
gap: 40px;
}

.highlight-content h3 {
font-size: 32px;
}

.why-choose-section .section-title h2 {
font-size: 48px;
}
}

@media (max-width: 992px) {
.timeline {
flex-direction: column;
gap: 40px;
}

.timeline::before {
display: none;
}

.timeline-step {
display: flex;
align-items: flex-start;
gap: 25px;
text-align: left;
padding: 0;
}

.step-number {
margin: 0;
flex-shrink: 0;
width: 60px;
height: 60px;
font-size: 24px;
}

.process-timeline {
padding: 40px 30px;
}

.value-propositions {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
}

@media (max-width: 768px) {
.highlight-card {
padding: 40px 30px;
}

.highlight-content h3 {
font-size: 28px;
}

.highlight-stats {
flex-direction: column;
gap: 30px;
}

.highlight-stats .stat:not(:last-child)::after {
display: none;
}

.visual-element {
width: 140px;
height: 140px;
font-size: 50px;
}

.why-choose-section .section-title h2 {
font-size: 36px;
}

.title-decoration {
flex-direction: column;
gap: 10px;
}

.differentiators-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}

@media (max-width: 576px) {
.highlight-card {
padding: 30px 25px;
}

.proposition-card,
.differentiator-card {
padding: 30px 25px;
}

.why-choose-cta .btn {
padding: 18px 30px;
font-size: 16px;
flex-direction: column;
gap: 10px;
}

.value-propositions {
grid-template-columns: 1fr;
}

.differentiators-grid {
grid-template-columns: 1fr;
}
}

/*main hero */
/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 44, 94, 0.85) 0%, rgba(10, 44, 94, 0.7) 100%);
    z-index: 2;
}

.hero-banner .banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.hero-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-banner .btn-accent {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    background: #ff4c60;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-banner .btn-accent:hover {
    background: #e63c50;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-banner h1 {
        font-size: 40px;
    }
    .hero-banner p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 65vh;
    }
    .hero-banner h1 {
        font-size: 32px;
    }
    .hero-banner p {
        font-size: 16px;
    }
    .hero-banner .btn-accent {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh;
    }
    .hero-banner h1 {
        font-size: 24px;
    }
    .hero-banner p {
        font-size: 14px;
    }
    .hero-banner .btn-accent {
        padding: 8px 20px;
        font-size: 12px;
    }
}

