/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bootstrap Overrides and Enhancements */
:root {
    --bs-primary: #667eea;
    --bs-secondary: #764ba2;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #343a40;
}

/* RTL Support for Bootstrap */
[dir="rtl"] .dropdown-menu {
    text-align: right;
}

[dir="rtl"] .navbar-nav .dropdown-menu {
    right: 0;
    left: auto;
}

/* Custom Bootstrap Classes */
.btn-custom-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    color: white;
}

.btn-custom-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Enhanced Header with Bootstrap */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-brand h2 {
    margin: 0;
    font-size: 1.8rem;
}

.navbar-brand span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffd700 !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-icons i {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    animation: float 3s ease-in-out infinite;
}

.tech-icons i:nth-child(2) { animation-delay: 0.5s; }
.tech-icons i:nth-child(3) { animation-delay: 1s; }
.tech-icons i:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #667eea;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-right: 1.5rem;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.why-choose-us .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Enhanced Features Grid */
.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.vision-icon i {
    font-size: 4rem;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Clients Section */
.clients {
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.client-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-category:hover {
    transform: translateY(-5px);
}

.client-category i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.client-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

/* Enhanced Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Enhanced Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Navbar Mobile */
    .navbar-brand h2 {
        font-size: 1.5rem;
    }
    
    .navbar-brand span {
        font-size: 0.8rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    /* Hero Mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-icons i {
        font-size: 3rem;
    }
    
    /* Sections Mobile */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    /* Clients Mobile */
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .client-category {
        padding: 1.5rem;
    }
    
    .client-category i {
        font-size: 2.5rem;
    }
    
    /* Contact Mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-custom-primary,
    .btn-custom-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .vision-icon {
        width: 150px;
        height: 150px;
    }
    
    .vision-icon i {
        font-size: 3rem;
    }
    
    .tech-icons i {
        font-size: 2.5rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        left: 20px;
    }
    
    .services-hero .hero-title {
        font-size: 1.5rem;
    }
}

/* Bootstrap Grid Enhancements */
.row {
    margin: 0;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding: 0 15px;
}

/* Animation Enhancements */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* إزالة جميع ستايلات السليدر */
.clients-slider-wrapper,
.clients-slider,
.slider-btn,
.clients-slider-dots,
.clients-slider-dot {
    display: none !important;
}

/* إزالة القواعد المتعارضة للعناصر */
.client-category { 
    opacity: 1 !important; 
    filter: none !important; 
    transform: none !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important; 
    z-index: auto !important; 
    transition: transform 0.3s ease !important; 
}

/* إزالة الحواف الشفافة */
.clients-slider::before, .clients-slider::after { 
    display: none !important; 
    content: none !important; 
}

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: white;
}

.services-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.services-icons i {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    animation: float 3s ease-in-out infinite;
}

.services-icons i:nth-child(2) { animation-delay: 0.5s; }
.services-icons i:nth-child(3) { animation-delay: 1s; }
.services-icons i:nth-child(4) { animation-delay: 1.5s; }
.services-icons i:nth-child(5) { animation-delay: 2s; }

/* Services Detailed Section */
.services-detailed {
    background: white;
    padding: 80px 0;
}

.services-detailed .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.service-category {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-category:last-child {
    border-bottom: none;
}

.service-content h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-features li i {
    color: #667eea;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.service-image i {
    font-size: 8rem;
    color: #667eea;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-section .contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design for Services Page */
@media (max-width: 992px) {
    .service-category {
        padding: 2rem 0;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .service-image {
        height: 200px;
        margin-top: 2rem;
    }
    
    .service-image i {
        font-size: 6rem;
    }
    
    .process-step {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-section .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .service-category {
        padding: 1.5rem 0;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .service-content p {
        text-align: center;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-image i {
        font-size: 4rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    .contact-section .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-category {
        padding: 1rem 0;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-image i {
        font-size: 3rem;
    }
    
    .process-step {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .contact-section .contact-form {
        padding: 1rem;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Featured Article */
.featured-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-content {
    padding: 2rem;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: #667eea;
}

.article-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    transition: opacity 0.3s ease;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card .article-image {
    height: 200px;
}

.article-card .article-image img {
    height: 200px;
    transition: transform 0.3s ease;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card .article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.article-card .article-meta {
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-card .article-excerpt {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease forwards;
}

.widget-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form .form-control {
    border-radius: 25px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
}

.search-form .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 1rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.categories-list span {
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Active states for categories */
.categories-list a.active {
    background: #667eea;
    color: white;
}

.categories-list a.active span {
    background: rgba(255,255,255,0.2);
}

/* Popular Articles */
.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-article {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-article:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 -1rem;
}

.popular-article:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-info h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info h5 a:hover {
    color: #667eea;
}

.article-info .date {
    color: #666;
    font-size: 0.8rem;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

.tag:hover {
    background: #667eea;
    color: white;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination .page-link {
    color: #667eea;
    border: 2px solid #e9ecef;
    margin: 0 0.25rem;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination .page-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.pagination .page-link:hover::before {
    width: 100%;
    height: 100%;
}

.pagination .page-item.active .page-link {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #999;
    border-color: #e9ecef;
}

/* Responsive Design for Blog */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-card .article-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form .btn {
        width: 100%;
        border-radius: 8px;
    }
    
    .popular-article {
        flex-direction: column;
        text-align: center;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 120px;
    }
    
    .tags-cloud {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        min-height: 40vh;
        padding-top: 60px;
    }
    
    .blog-section {
        padding: 30px 0;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .article-card .article-content {
        padding: 1rem;
    }
    
    .article-card .article-title {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-image img {
        height: 200px;
    }
    
    .article-card .article-image {
        height: 150px;
    }
    
    .article-card .article-image img {
        height: 150px;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Interactive Elements and Visual Feedback */
.articles-grid {
    transition: opacity 0.3s ease;
}

/* Active states for categories */
.categories-list a.active {
    background: #667eea;
    color: white;
}

.categories-list a.active span {
    background: rgba(255,255,255,0.2);
}

/* Enhanced hover effects */
.article-card {
    cursor: pointer;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.read-more {
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

/* Enhanced pagination */
.pagination .page-link {
    position: relative;
    overflow: hidden;
}

.pagination .page-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.pagination .page-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Search form enhancements */
.search-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.search-form .btn:hover {
    transform: scale(1.05);
}

/* Tag hover effects */
.tag {
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

/* Newsletter form enhancements */
.newsletter-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Popular articles enhancements */
.popular-article {
    cursor: pointer;
    transition: all 0.3s ease;
}

.popular-article:hover {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 -1rem;
}

.popular-article:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-thumbnail img {
    transition: transform 0.3s ease;
}

/* Featured article enhancements */
.featured-article .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }

/* Sidebar widget animations */
.sidebar-widget {
    animation: fadeInUp 0.6s ease forwards;
}

.sidebar-widget:nth-child(1) { animation-delay: 0.2s; }
.sidebar-widget:nth-child(2) { animation-delay: 0.3s; }
.sidebar-widget:nth-child(3) { animation-delay: 0.4s; }
.sidebar-widget:nth-child(4) { animation-delay: 0.5s; }
.sidebar-widget:nth-child(5) { animation-delay: 0.6s; }

/* Enhanced notification styles */
.notification {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive enhancements for interactive elements */
@media (max-width: 768px) {
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form .btn {
        width: 100%;
        border-radius: 8px;
        height: auto;
        padding: 0.75rem;
    }
    
    .popular-article:hover {
        padding: 0.5rem;
        margin: 0 -0.5rem;
    }
}

@media (max-width: 576px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin: 0 0.1rem;
    }
}

/* About Us Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    padding-right: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-card,
.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3,
.mission-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.9);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-position {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 2rem;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 2rem;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -60px;
}

.timeline-year {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.award-card p {
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 60px;
        padding: 1.5rem;
        text-align: right;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -60px;
        left: auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .company-story,
    .vision-mission,
    .our-values,
    .team-section,
    .timeline-section,
    .awards-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .member-image img {
        height: 200px;
    }
    
    .timeline::before {
        right: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 40px;
        padding: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -40px;
        width: 15px;
        height: 15px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 40vh;
        padding-top: 60px;
    }
    
    .company-story,
    .vision-mission,
    .our-values,
    .team-section,
    .timeline-section,
    .awards-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.3rem;
    }
    
    .member-image img {
        height: 180px;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 30px;
        padding: 1rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -30px;
        width: 12px;
        height: 12px;
    }
    
    .award-card {
        padding: 1.5rem;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
    }
    
    .award-icon i {
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
}

/* Contact Us Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.availability {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    margin-bottom: 1rem;
}

.contact-form .form-check-label {
    font-weight: normal;
    color: #666;
}

.contact-form .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Quick Contact */
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.quick-contact-item h5 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quick-contact-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Office Hours */
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #333;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #667eea;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h5 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-info h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.social-link i {
    font-size: 2rem;
    color: #667eea;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    display: block;
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading State */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-loading .btn {
    position: relative;
}

.form-loading .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .social-links-large {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .social-media-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
    }
    
    .location-item i {
        margin: 0 auto 1rem;
    }
    
    .social-links-large {
        justify-content: center;
    }
    
    .social-link {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: 40vh;
        padding-top: 60px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .social-media-section {
        padding: 40px 0;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .quick-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .quick-contact-item i {
        margin: 0 auto;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-links-large {
        gap: 0.5rem;
    }
    
    .social-link {
        min-width: 70px;
        padding: 0.75rem 0.25rem;
    }
    
    .social-link i {
        font-size: 1.2rem;
    }
    
    .social-link span {
        font-size: 0.7rem;
    }
}

/* Projects Section Responsive Styles */
.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 40px 0;
}

.projects-list .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.projects-list .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.projects-list .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.projects-list .btn {
    margin-top: 1rem;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .projects-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-list {
        grid-template-columns: 1fr;
    }
    .projects-list .card img {
        height: 150px;
    }
}

.projects-home {
    padding: 60px 0;
    background: #f8f9fa;
}

.projects-home h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Projects Page Specific Styles */
.projects-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: white;
}

.projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 1.5rem;
}

.project-card .card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.project-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-card .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card .btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for Projects Page */
@media (max-width: 992px) {
    .projects-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        min-height: 40vh;
        padding-top: 60px;
    }
    
    .projects-hero .hero-title {
        font-size: 2rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .projects-section {
        padding: 40px 0;
    }
    
    .project-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .projects-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .project-card .card-img-top {
        height: 150px;
    }
    
    .project-card .card-body {
        padding: 1rem;
    }
    
    .project-card .card-title {
        font-size: 1.1rem;
    }
}

/* Project Details Page Styles */
.project-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: white;
}

.project-meta {
    margin-top: 2rem;
}

.project-meta .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
}

.project-overview {
    padding: 80px 0;
    background: white;
}

.project-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-sidebar {
    position: sticky;
    top: 120px;
}

.project-info-card,
.project-tech-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-info-card h4,
.project-tech-card h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #333;
}

.info-item span {
    color: #666;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-caption p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.development-process {
    padding: 80px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.project-results {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.project-results .section-title {
    color: white;
}

.result-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon i {
    font-size: 1.8rem;
    color: #ffd700;
}

.result-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.result-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.related-projects {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Project Details */
@media (max-width: 992px) {
    .project-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .project-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .project-overview,
    .project-gallery,
    .development-process,
    .project-results,
    .related-projects,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .project-hero {
        min-height: 40vh;
        padding-top: 60px;
    }
    
    .project-hero .hero-title {
        font-size: 2rem;
    }
    
    .project-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .project-overview,
    .project-gallery,
    .development-process,
    .project-results,
    .related-projects,
    .cta-section {
        padding: 40px 0;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .project-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .project-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .project-overview,
    .project-gallery,
    .development-process,
    .project-results,
    .related-projects,
    .cta-section {
        padding: 30px 0;
    }
    
    .project-info-card,
    .project-tech-card {
        padding: 1.5rem;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .result-card h3 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
}

/* Testimonials Swiper Styles */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(102,126,234,0.08);
  transition: box-shadow 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(102,126,234,0.15);
}
.stars i {
  font-size: 1.1rem;
}
.testimonials-section .swiper {
  padding-bottom: 40px;
}
.testimonials-section .swiper-pagination {
  bottom: 0;
}
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
  color: #667eea;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: #667eea;
  color: #fff;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.2rem !important;
  }
  .testimonials-section .swiper-button-next,
  .testimonials-section .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}

