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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
    position: relative;
}

/* Layout & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background & Overlays */
.bg-light {
    background-color: #f8fafc;
}

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

/* Typography */
p, li, a, span, button, input {
    font-family: var(--font-secondary);
}

.fa-brands, .fab {
    text-decoration: none !important;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.lead p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Cards & Boxes */
.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

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

/* Grid System Fix */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.row > [class*="col-"] {
    padding: 15px;
}

/* Animation Fixes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .row {
        margin: -10px;
    }
    
    .row > [class*="col-"] {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .lead p {
        font-size: 1rem;
    }
}

/* Fix for Bootstrap Conflicts */
.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
}

.col, [class*="col-"] {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* Fix for Swiper Slider */
.swiper-container {
    width: 100%;
    height: 100%;
    margin: 0;
}

.swiper-slide {
    height: auto;
}

/* Fix for Forms */
.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Fix for Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Fix for Spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* ==========================================================================
   1. ROOT VARIABLES & GLOBAL STYLES
   ========================================================================== */
:root {
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
    --color-primary: #2563eb;
    --color-secondary: #3b82f6;
    --color-dark: #1e293b;
    --color-light: #f8fafc;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.lead p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: var(--color-dark);
}

/* Scrolled Navigation */
.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Brand/Logo */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-dark);
}

.navbar-brand span {
    color: var(--color-primary);
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 8px 15px !important;
    margin: 0 5px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Contact Button in Nav */
.nav-contact-btn {
    padding: 8px 24px;
    background: transparent;
    color: #fff !important;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-contact-btn:hover {
    background: #1d4ed8;
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-contact-btn::after {
    display: none;
}

/* Mobile Toggle Button */
.navbar-toggler {
    padding: 0;
    border: none;
    outline: none !important;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon .middle-bar {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler-icon .middle-bar {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
    opacity: 0;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-link {
        padding: 12px 20px !important;
        color: var(--color-primary);
        margin: 5px 0;
    }

    .nav-contact-btn {
        margin: 10px 0;
        display: inline-block;
    }
}

/* Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-primary);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    margin-top: 15px;
}

.dropdown-item {
    padding: 8px 25px;
    color: var(--color-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    padding-left: 30px;
}

/* ==========================================================================
   4. HERO SLIDER
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider,
.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 76px;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlays */
.gradient-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Slide Content Styles */
.slide-content-wrapper {
    position: relative;
    height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-content {
    padding: 0 15px;
    margin-top: -76px;
    color: #fff;
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px);
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease 0.5s;
}

.slide-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    color: var(--color-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

/* Custom Navigation */
.custom-nav {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-nav::after {
    display: none;
}

.custom-nav i {
    color: #fff;
    font-size: 1.2rem;
}

.custom-nav:hover {
    background: var(--color-primary) !important;
    transform: scale(1.1);
}

/* Custom Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

/* Slide Progress */
.slide-progress {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-primary);
    width: 0;
    transition: width 0.3s linear;
}

/* Particle Effect */
.slide-particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 8%);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slide-inner {
        padding-top: 70px;
    }
    
    .slide-content-wrapper {
        height: calc(100vh - 70px);
    }
    
    .slide-content {
        margin-top: -70px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description p {
        font-size: 1.1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .slide-description p {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slide-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .custom-nav {
        display: none !important;
    }
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-primary);
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.footer-section {
    background-color: var(--color-dark);
    color: #fff;
    margin-top: 0;
    padding: 0;
    width: 100%;
    clear: both;
}

/* Footer Layout Fix */
.footer-top {
    padding: 60px 0 30px;
    width: 100%;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Widget Spacing Fix */
.footer-widget {
    margin-bottom: 30px;
    padding-right: 15px;
}

/* Logo Fix */
.footer-logo {
    /* max-height: 40px; */
    width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Links List Fix */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-links li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

/* Newsletter Form Fix */
.footer-newsletter {
    position: relative;
    margin-top: 15px;
}

.footer-newsletter .input-group {
    display: flex;
    align-items: center;
}

.footer-newsletter .form-control {
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0 15px;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.footer-newsletter .btn {
    height: 45px;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    background: var(--color-primary);
    border: none;
}

/* Social Icons Fix */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}

/* Copyright Section Fix */
.copyright {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        padding-right: 0;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   7. RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        margin-top: -72px;
    }

    .slide-title {
        font-size: 2.5rem;
        letter-spacing: -0.3px;
    }
    
    p, .navbar-nav .nav-link {
        font-size: 1rem;
    }
    
    .slide-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description p {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* ==========================================================================
   8. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6, 
.navbar-brand, 
.slide-title, 
.section-heading {
    font-family: var(--font-primary);
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Hero Slider */
.slide-title {
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.slide-description p {
    font-family: var(--font-secondary);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.slide-btn {
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Section Headings */
.section-heading {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.lead p {
    font-family: var(--font-secondary);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9)),
                url('path/to/your/background-image.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.counter-box {
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box i {
    color: #fff;
    margin-bottom: 20px;
}

.counter-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-box p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

@media (max-width: 768px) {
    .counter-box h2 {
        font-size: 2.5rem;
    }
    
    .counter-box p {
        font-size: 1rem;
    }
}

/* Footer */
.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.widget-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.social-link:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-3px);
}

.widget-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.widget-links a i {
    margin-right: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.widget-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.widget-links a:hover i {
    transform: translateX(5px);
}

.widget-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.widget-contact li i {
    margin-right: 15px;
    margin-top: 5px;
}

.widget-contact li p {
    margin: 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Enhanced Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

/* Improved Responsive Design */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .about-image::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .slide-content h2 {
        font-size: 3rem;
    }
    
    .counter-box {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .counter-box h2 {
        font-size: 2.5rem;
    }

    .service-box {
        padding: 30px 20px;
    }
}

/* Additional Enhancements */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 40px;
    position: relative;
}

.section-heading::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

/* Keyframe Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Animated Background Styles */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.3;
    animation: shapeAnimation 20s infinite;
}

.shape-1 {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.shape-2 {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}

.shape-3 {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Animation Keyframes */
@keyframes shapeAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, 50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, -50px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Section Position Fix */
.section-padding {
    position: relative;
    overflow: hidden;
}

/* Content Z-index Fix */
.container {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shape {
        filter: blur(70px);
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .shape {
        filter: blur(50px);
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -75px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Animations */
@media (max-width: 768px) {
    .fade-up,
    .fade-right,
    .fade-left {
        transform: translate(0);
    }
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

/* FAQ Accordion Styles */
.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-button::after {
    display: none;
}

.faq-icon {
    margin-right: 1rem;
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-icon i {
    position: absolute;
    transition: all 0.3s ease;
}

.faq-icon .fa-plus {
    opacity: 1;
}

.faq-icon .fa-minus {
    opacity: 0;
}

.accordion-button:not(.collapsed) .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) .faq-icon .fa-minus {
    opacity: 1;
}

.accordion-body {
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FAQ Contact Box */
.faq-contact {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.faq-contact h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Animated Shapes */
.faq-shapes .shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    top: -75px;
    right: -75px;
    opacity: 0.1;
    animation: floatAnimation 6s infinite ease-in-out;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    border-radius: 20px;
    bottom: 50px;
    left: -50px;
    transform: rotate(45deg);
    opacity: 0.1;
    animation: rotateAnimation 10s infinite linear;
}

.shape-3 {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    top: 50%;
    right: 50px;
    opacity: 0.1;
    animation: floatAnimation 8s infinite ease-in-out reverse;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hover Effects */
.accordion-button:hover {
    transform: translateX(5px);
}

.faq-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .faq-contact {
        padding: 2rem;
    }
}

/* Features Section Styles */
.features-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Feature Card */
.feature-card {
    position: relative;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

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

/* Feature Icon */
.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    position: relative;
    font-size: 2rem;
    color: var(--color-primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.1;
    border-radius: 15px;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

/* Feature Content */
.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.feature-content p {
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

/* Hover Effects */
.feature-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hover-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .hover-circle {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.05;
}

.feature-card:hover .feature-icon i {
    color: var(--color-primary);
    transform: scale(1.1);
}

.feature-card:hover .icon-bg {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.2;
}

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

/* Background Shapes */
.features-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0.05;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    bottom: -100px;
    left: -100px;
    transform: rotate(45deg);
    animation: rotateAnimation 15s infinite linear;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation: floatAnimation 6s infinite ease-in-out reverse;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top i {
    font-size: 20px;
    line-height: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top.active {
        bottom: 20px;
    }

    .back-to-top i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top.active {
        bottom: 15px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    background: #fff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Form Elements */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    height: auto;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    background: #f8fafc;
}

.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Contact Info Box */
.contact-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

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

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.contact-info-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Submit Button */
.contact-form .btn-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form .btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-info {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info {
        padding: 30px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper,
    .contact-info {
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-info-content h4 {
        font-size: 16px;
    }

    .contact-social a {
        width: 35px;
        height: 35px;
    }
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    background: #fff;
    padding: 80px 0;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #f8fafc;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f1f5f9;
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-info {
    text-align: center;
    color: #fff;
}

.portfolio-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.portfolio-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #fff;
    color: var(--color-primary);
}

/* Hover Effects */
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Portfolio Modal */
.portfolio-modal.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: scale(0.95) translateY(-30px);
    opacity: 0;
}

.portfolio-modal.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.portfolio-modal .modal-content {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.portfolio-modal .modal-header {
    padding: 1.5rem;
    border: none;
    position: relative;
    z-index: 3;
    background: transparent;
}

.portfolio-modal .btn-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.portfolio-modal .btn-close:hover {
    background-color: var(--color-primary);
    transform: rotate(90deg);
    opacity: 1;
}

.portfolio-modal .btn-close:hover::before {
    color: #fff;
}

.portfolio-modal .modal-body {
    padding: 2rem;
}

.portfolio-modal .portfolio-modal-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-modal #modalImage {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-modal .portfolio-info {
    padding: 0 1rem;
}

.portfolio-modal .portfolio-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.portfolio-modal .portfolio-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.portfolio-modal .portfolio-info ul li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-modal .portfolio-info ul li:last-child {
    border-bottom: none;
}

.portfolio-modal .portfolio-info ul li strong {
    min-width: 120px;
    color: var(--color-dark);
    font-weight: 600;
}

.portfolio-modal .portfolio-info ul li span {
    color: var(--color-dark);
}

.portfolio-modal .portfolio-description {
    margin-top: 2rem;
}

.portfolio-modal .portfolio-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.portfolio-modal .portfolio-description p {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Portfolio Modal Responsive Styles */
@media (max-width: 991.98px) {
    .portfolio-modal .modal-dialog {
        max-width: 90%;
        margin: 1.75rem auto;
    }
    
    .portfolio-modal .portfolio-info {
        margin-top: 2rem;
        padding: 0;
    }
    
    .portfolio-modal .portfolio-info h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .portfolio-modal .modal-body {
        padding: 1.5rem;
    }
    
    .portfolio-modal .portfolio-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-modal .portfolio-description h3 {
        font-size: 1.25rem;
    }
    
    .portfolio-modal .btn-close {
        right: 1rem;
        top: 1rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575.98px) {
    .portfolio-modal .modal-dialog {
        margin: 1rem;
    }
    
    .portfolio-modal .modal-body {
        padding: 1rem;
    }
    
    .portfolio-modal .portfolio-info ul li {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }
    
    .portfolio-modal .portfolio-info ul li strong {
        margin-bottom: 0.25rem;
    }
}

/* Animation for Modal Content */
.portfolio-modal.show .modal-content {
    animation: modalFadeIn 0.4s ease-out forwards;
}

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

/* Hover Effects */
.portfolio-modal .portfolio-modal-image:hover #modalImage {
    transform: scale(1.02);
}

.portfolio-modal .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.25);
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .portfolio-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-img {
        height: 200px;
    }

    .portfolio-info h4 {
        font-size: 1.1rem;
    }

    .portfolio-link {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    position: relative;
    background: #fff;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.03;
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon i {
    font-size: 30px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

/* Service Content */
.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #64748b;
}

.service-features li i {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 14px;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--color-secondary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service CTA */
.service-cta {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.service-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

.service-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .service-cta {
        padding: 30px;
        margin-top: 30px;
    }

    .service-cta h3 {
        font-size: 22px;
    }
}

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

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-cta {
        padding: 25px;
    }
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    background: #fff;
}

/* Testimonial Slider */
.testimonial-slider {
    padding: 30px 15px;
    margin: -30px -15px 0;
}

.testimonial-slider .swiper-slide {
    height: auto;
    padding: 15px;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/* Testimonial Rating */
.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 2px;
}

/* Testimonial Content */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: '"';
    font-size: 50px;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: -15px;
    font-family: serif;
    opacity: 0.3;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-info h5 {
    font-size: 18px;
    margin: 0 0 5px;
    color: var(--color-dark);
}

.author-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Swiper Navigation */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
    font-size: 16px;
}

.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Swiper Pagination */
.testimonial-slider .swiper-pagination {
    bottom: 0;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        padding: 20px 10px;
        margin: -20px -10px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }

    .author-info h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
        padding-left: 20px;
    }

    .testimonial-text::before {
        font-size: 40px;
    }
}

/* Clients Section */
.clients-section {
    position: relative;
    background: #fff;
}

/* Client Slider */
.client-slider {
    padding: 30px 0;
}

.client-slider .swiper-wrapper {
    align-items: center;
}

/* Client Logo */
.client-logo {
    height: 100px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Client Stats */
.client-stats {
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    margin-top: 50px;
}

.client-stats h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #fff;
}

.client-stats .btn {
    background: #fff;
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.client-stats .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.client-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.client-item img {
    max-width: 120px;
    margin: 0 auto 15px;
}

.client-item h5 {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.client-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Swiper Navigation */
.client-slider .swiper-button-next,
.client-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
}

.client-slider .swiper-button-next:after,
.client-slider .swiper-button-prev:after {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .client-logo {
        height: 80px;
        padding: 15px;
    }

    .client-logo img {
        max-width: 120px;
        max-height: 50px;
    }

    .client-stats {
        padding: 30px;
        margin-top: 40px;
    }

    .client-stats h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .client-item {
        padding: 20px;
    }

    .client-item img {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .client-logo {
        height: 70px;
        padding: 10px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 40px;
    }

    .client-stats {
        padding: 25px;
        margin-top: 30px;
    }

    .client-stats h4 {
        font-size: 18px;
    }
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Apply Animations */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

.service-icon {
    animation: pulse 2s ease-in-out infinite;
}

.cta-button:hover {
    animation: shake 0.8s ease-in-out;
}

/* Hover Animations */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-card {
    transition: all 0.3s ease;
}

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

/* Loading Animation */
.loading-animation {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Button Hover Effect */
.btn {
    overflow: hidden;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-primary);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* About Section */
.about-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* About Container */
.about-container {
    position: relative;
    z-index: 2;
}

/* About Content */
.about-content {
    padding-right: 50px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* About Features */
.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--color-primary);
    color: #fff;
}

.feature-icon i {
    font-size: 24px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: #fff;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* About Image */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Stats Section Styling */
.stats-section {
    padding: 40px 0;
    position: relative;
    background: #fff;
}

.stats-container {
    position: relative;
    z-index: 2;
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    padding: 0;
}

/* Individual Stat Item */
.stat-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Stat Item Hover Effect */
.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Stat Icon */
.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-icon i {
    font-size: 28px;
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: var(--color-primary);
    transform: rotateY(180deg);
}

.stat-item:hover .stat-icon i {
    color: #ffffff;
    transform: rotateY(180deg);
}

/* Stat Number */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-number .counter {
    display: inline-block;
    color: var(--color-primary) !important;
}

.stat-number .suffix {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Stat Label */
.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Animation for Counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter.animate {
    animation: countUp 0.5s ease forwards;
}

/* Gradient Background Effect */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    opacity: 0.03;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number .suffix {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-number .suffix {
        font-size: 1.3rem;
    }

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

/* About Section Animations */
.about-section {
    position: relative;
    overflow: hidden;
}

/* Floating Animation for About Image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.about-image {
    animation: float 6s ease-in-out infinite;
}

/* Shine Effect for About Image */
@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: shine 3s infinite;
}

/* Feature Item Hover Animation */
@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item:hover .feature-icon {
    animation: pulseIcon 1.5s ease-in-out infinite;
    background: var(--color-primary);
}

.feature-item:hover .feature-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

/* Text Reveal Animation */
@keyframes revealText {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-content [data-aos] {
    /* opacity: 0; */
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-content [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Background Shape Animation */
@keyframes morphShape {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}

.about-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.1));
    top: -250px;
    right: -250px;
    z-index: 0;
    animation: morphShape 15s ease-in-out infinite;
}

/* Counter Animation Enhancement */
@keyframes countUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number.animate {
    animation: countUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Feature Icon Rotation */
@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-icon i {
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon i {
    animation: rotateIcon 1s ease-in-out;
}

/* Text Gradient Animation */
@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.about-title {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: textGradient 5s ease infinite;
}

/* Hover Effect for Stats */
.stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Responsive Animations */
@media (max-width: 768px) {
    .about-shape {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }

    .about-image {
        animation: float 4s ease-in-out infinite;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-image,
    .feature-item,
    .stat-item,
    .about-shape,
    .about-title {
        animation: none;
        transition: none;
    }

    .feature-item:hover,
    .stat-item:hover {
        transform: none;
    }
}

/* Service Section Animations */
.services-section {
    position: relative;
    overflow: hidden;
}

/* Service Card Animations */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    }
}

/* Service Card Hover Effects */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    background: #fff;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    animation: glowPulse 2s infinite;
}

.service-card:hover::before {
    opacity: 0.05;
}

/* Service Icon Animation */
.service-icon {
    transition: all 0.5s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    border-radius: inherit;
    z-index: -1;
    transition: all 0.5s ease;
    transform: scale(0.8);
    opacity: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--color-primary);
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
    animation: iconSpin 1s ease-out;
}

.service-card:hover .service-icon::after {
    transform: scale(1.2);
    opacity: 1;
}

/* Service Features Animation */
.service-features li {
    transition: all 0.3s ease;
    transform-origin: left;
    position: relative;
    padding-left: 25px;
}

.service-features li:hover {
    transform: translateX(10px);
    color: var(--color-primary);
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.service-features li:hover i {
    transform: translateY(-50%) scale(1.2);
    color: var(--color-primary);
}

/* Service Link Animation */
@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.service-link {
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.service-link:hover::before {
    transform: translateX(0);
}

.service-link i {
    transition: all 0.3s ease;
}

.service-link:hover i {
    animation: arrowMove 1s infinite;
}

/* Service Grid Layout Animation */
.service-grid {
    display: grid;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-grid.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Hover States */
.service-card .service-content {
    transition: all 0.3s ease;
}

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

/* Background Particles */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.service-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(37, 99, 235, 1);
    border-radius: 50%;
    pointer-events: none;
}

.service-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation: particleFloat 4s infinite;
}

.service-particle:nth-child(2) {
    top: 20%;
    right: 10%;
    animation: particleFloat 6s infinite;
}

.service-particle:nth-child(3) {
    bottom: 10%;
    left: 15%;
    animation: particleFloat 5s infinite;
}

/* Responsive Animations */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-features li:hover {
        transform: translateX(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-icon,
    .service-features li,
    .service-link,
    .service-particle {
        animation: none;
        transition: none;
    }

    .service-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    }
}

/* Map Section */
.map-section {
    position: relative;
    background: #fff;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Map Info Card */
.map-card {
    position: absolute;
    top: 50px;
    right: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 1;
}

.map-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.map-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #64748b;
}

.map-card i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.map-card .btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .map-card {
        right: 30px;
        padding: 25px;
        max-width: 300px;
    }

    .map-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }

    .map-card {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin: -50px 15px 0;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }

    .map-card {
        margin: -50px 15px 0;
        padding: 20px;
    }

    .map-card h4 {
        font-size: 1.2rem;
    }
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

/* Articles Grid */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.regular-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Article Card */
.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Article Image */
.article-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Category */
.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Article Content */
.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.article-meta i {
    color: var(--color-primary);
}

.article-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a {
    color: var(--color-dark);
    text-decoration: none;
}

.article-excerpt {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    /* color: var(--color-primary); */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Featured Article */
.featured-article {
    margin-bottom: 40px;
}

.article-card.featured {
    position: relative;
    height: 400px;
}

.article-card.featured .article-image-wrapper {
    height: 100%;
    padding-top: 0;
}

.article-card.featured .article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.article-card.featured .article-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.article-card.featured .article-title a {
    color: #fff;
}

.article-card.featured .article-excerpt {
    color: rgba(255, 255, 255, 0.8);
}

/* View All Button */
.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .regular-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .article-card.featured {
        height: 300px;
    }

    .article-card.featured .article-title {
        font-size: 1.5rem;
    }

    .regular-articles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .article-card.featured {
        height: 250px;
    }

    .article-card.featured .article-overlay {
        padding: 20px;
    }

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

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    color: #fff;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
}

.content-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--color-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-block p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-block ul li {
    color: #64748b;
    margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 30px;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .content-wrapper {
        padding: 20px;
    }
}

/* Articles Page Styles */
.articles-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Pagination */
.pagination {
    gap: 5px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: #64748b;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #f1f5f9;
    color: var(--color-primary);
}

.page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
}

.page-item.disabled .page-link {
    background: #f1f5f9;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: center;
    }
}

/* Articles Page */
.articles-page {
    padding: 80px 0;
    background: #f8fafc;
}

/* Filter Section */
.articles-filter {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Article Card */
.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.article-image {
    width: 100%;
    height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.article-meta i {
    color: var(--color-primary);
}

.article-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a {
    color: var(--color-dark);
    text-decoration: none;
}

.article-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Pagination */
.pagination {
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #64748b;
}

.page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .article-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .articles-filter {
        padding: 15px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* Article Content Section */
.articles-detail-page .article-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.articles-detail-page .article-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Article Header */
.articles-detail-page .article-header {
    margin-bottom: 30px;
}

.articles-detail-page h1.article-title {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.articles-detail-page .article-body h1 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.articles-detail-page .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.articles-detail-page .meta-item {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.articles-detail-page .meta-item i {
    color: #007bff;
    margin-right: 8px;
}

/* Article Body */
.articles-detail-page .article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.articles-detail-page .article-body h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 35px 0 20px;
}

.articles-detail-page .article-body p {
    margin-bottom: 20px;
}

.articles-detail-page .article-quote {
    background: #f8f9fa;
    padding: 30px 40px;
    border-left: 4px solid #007bff;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 18px;
}

/* Tags and Share */
.articles-detail-page .article-tags,
.articles-detail-page .article-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.articles-detail-page .tag-label,
.articles-detail-page .share-label {
    font-weight: 600;
    color: #333;
    margin-right: 15px;
    display: inline-block;
}

.articles-detail-page .tag-link {
    display: inline-block;
    padding: 6px 18px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    margin: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.articles-detail-page .tag-link:hover {
    background: #007bff;
    color: #fff;
}

.articles-detail-page .share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #666;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.articles-detail-page .share-link:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Author Box */
.articles-detail-page .author-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.articles-detail-page .author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 25px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.articles-detail-page .author-info {
    flex: 1;
}

.articles-detail-page .author-name {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.articles-detail-page .author-bio {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Related Articles */
.articles-detail-page .related-articles {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.articles-detail-page .section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.articles-detail-page .related-article-card {
    margin-bottom: 25px;
}

.articles-detail-page .related-article-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.articles-detail-page .related-article-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.articles-detail-page .related-article-card h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.articles-detail-page .related-article-card h4 a:hover {
    color: #007bff;
}

/* Sidebar Widgets */
.articles-detail-page .sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* Search Widget */
.articles-detail-page .search-widget .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.articles-detail-page .search-widget input {
    border: 1px solid #eee;
    padding: 12px 20px;
    font-size: 14px;
}

.articles-detail-page .search-widget button {
    padding: 0 25px;
    background: #007bff;
    border: none;
}

/* Categories Widget */
.articles-detail-page .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.articles-detail-page .category-list li {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.articles-detail-page .category-list li:last-child {
    border: none;
}

.articles-detail-page .category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.articles-detail-page .category-list a:hover {
    color: #007bff;
}

/* Recent Posts Widget */
.articles-detail-page .recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.articles-detail-page .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.articles-detail-page .recent-post img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.articles-detail-page .recent-post-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.articles-detail-page .recent-post-info h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.articles-detail-page .recent-post-info h5 a:hover {
    color: #007bff;
}

/* Tags Widget */
.articles-detail-page .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.articles-detail-page .tag {
    padding: 6px 18px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.articles-detail-page .tag:hover {
    background: #007bff;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .articles-detail-page .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .articles-detail-page .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .articles-detail-page .author-image {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 767px) {
    .articles-detail-page .page-header {
        padding: 40px 0;
    }
    
    .articles-detail-page .article-title {
        font-size: 28px;
    }
    
    .articles-detail-page .article-quote {
        padding: 20px 25px;
        font-size: 16px;
    }
}

.error-page {
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 120px;
    font-weight: bold;
    color: #dc3545;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0;
    line-height: 1;
}

.error-text {
    font-size: 24px;
    color: #6c757d;
    margin: 20px 0 30px;
}

.error-image {
    max-width: 400px;
    margin: 30px auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.back-home {
    background: #dc3545;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.3);
}

.back-home:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.4);
}

/* Service Content Section */
.service-content {
    padding: 80px 0;
    background: #fff;
}

.service-content-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-content-wrapper img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* Service Content Typography */
.service-content-wrapper h1 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.service-content-wrapper h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-content-wrapper h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin: 30px 0 20px;
    font-weight: 600;
}

.service-content-wrapper p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content-wrapper ul,
.service-content-wrapper ol {
    color: #64748b;
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.service-sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.service-sidebar-widget .list-group {
    border-radius: 10px;
    overflow: hidden;
}

.service-sidebar-widget .list-group-item {
    border: none;
    padding: 12px 20px;
    background: transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-sidebar-widget .list-group-item:last-child {
    border-bottom: none;
}

.service-sidebar-widget .list-group-item a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.service-sidebar-widget .list-group-item:hover {
    background: rgba(37, 99, 235, 0.05);
}

.service-sidebar-widget .list-group-item:hover a {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 60px 0;
    }
    
    .service-content-wrapper {
        padding: 20px;
    }
    
    .service-content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .service-content-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .service-sidebar-widget {
        padding: 20px;
    }
}
