        /* ========================================
           BASE STYLES AND CSS VARIABLES
           ======================================== */
        :root {
            --primary-teal: #009688;
            --primary-gold: #FFD700;
            --secondary-dark: #2c3e50;
            --dark-blue: #1a252f;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--secondary-dark));
            --gradient-cta: linear-gradient(135deg, #009688 0%, #00695c 50%, #2c3e50 100%);
            --gradient-footer: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', Arial, sans-serif;
            padding-top: 80px;
            margin: 0;
            overflow-x: hidden;
            line-height: 1.6;
            background-color: #f8f9fa;
        }
     
       /* ========================================
           NAVBAR STYLES
           ======================================== */
        .navbar {
            background: var(--gradient-primary) !important;
            min-height: 80px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1030;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand, .navbar-nav .nav-link {
            color: white !important;
        }

        /* ========================================
           ENHANCED LOGO DESIGN
           ======================================== */
        
        .navbar-brand .logo-container {
            position: relative !important;
            display: flex !important;
            align-items: center !important;
            padding: 8px 15px !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border-radius: 50px !important;
            transition: all 0.4s ease !important;
            backdrop-filter: blur(15px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }
        
        .navbar-brand:hover .logo-container {
            background: rgba(0, 188, 212, 0.2) !important;
            box-shadow: 0 0 25px rgba(0, 188, 212, 0.4) !important;
            transform: translateY(-2px) !important;
            border-color: rgba(0, 229, 255, 0.3) !important;
        }
        
        .navbar-brand img,
        .navbar-brand .logo-main {
            height: 40px !important;
            width: auto !important;
            transition: all 0.3s ease !important;
            filter: brightness(1.1) saturate(1.2) !important;
            border-radius: 8px !important;
        }
        
        .navbar-brand:hover img,
        .navbar-brand:hover .logo-main {
            transform: scale(1.08) rotate(3deg) !important;
            filter: brightness(1.4) saturate(1.5) drop-shadow(0 0 12px rgba(0, 229, 255, 0.7)) !important;
        }
        
        .navbar-brand .brand-text {
            color: #ffffff !important;
            font-weight: 700 !important;
            font-size: 1.2rem !important;
            margin-left: 15px !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
            transition: all 0.3s ease !important;
            letter-spacing: 0.5px !important;
        }
        
        .navbar-brand:hover .brand-text {
            color: #00e5ff !important;
            text-shadow: 0 0 12px rgba(0, 229, 255, 0.6) !important;
            transform: translateX(5px) !important;
        }
        
        .logo-progress {
            position: absolute !important;
            top: -3px !important;
            left: -3px !important;
            right: -3px !important;
            bottom: -3px !important;
            border: 2px solid transparent !important;
            border-top: 2px solid rgba(0, 229, 255, 0.8) !important;
            border-right: 2px solid rgba(0, 188, 212, 0.6) !important;
            border-radius: 50px !important;
            animation: logoProgressSpin 2s linear infinite !important;
            opacity: 0 !important;
            transition: opacity 0.3s ease !important;
        }
        
        .navbar-brand:hover .logo-progress {
            opacity: 1 !important;
            animation-duration: 0.8s !important;
            border-top-color: rgba(255, 255, 255, 0.9) !important;
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.5) !important;
        }
        
        @keyframes logoProgressSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ========================================
           ENHANCED HERO SECTION
           ======================================== */
        .hero-section {
            background: linear-gradient(135deg, #00897b 0%, #004d40 50%, #1a252f 100%);
            color: white;
            padding: 140px 0;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Vibrant animated background */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
            animation: heroGlow 6s ease-in-out infinite;
            z-index: 1;
        }

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

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

        /* Striking Teal Title with Golden Highlights */
        .hero-title {
            color: #00e5ff !important;
            font-weight: 800 !important;
            text-shadow: 
                0 0 20px rgba(0, 229, 255, 0.4),
                2px 2px 4px rgba(0, 0, 0, 0.3) !important;
            position: relative;
            background: linear-gradient(
                45deg,
                #00e5ff 0%,
                #ffffff 30%,
                #ffd700 60%,
                #00e5ff 100%
            );
            background-size: 300% 300%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 4s ease-in-out infinite;
            letter-spacing: 1px;
        }

        @keyframes titleGlow {
            0%, 100% {
                background-position: 0% 50%;
                filter: brightness(1);
            }
            50% {
                background-position: 100% 50%;
                filter: brightness(1.2);
            }
        }

        /* Enhanced lead text */
        .hero-section .lead {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            line-height: 1.6;
        }

        /* Vibrant Gold Button */
        .btn-hero-gold {
            background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ff8f00 100%);
            border: 3px solid #ffd700;
            color: #1a252f;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 25px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 220px;
        }

        /* Button hover effects */
        .btn-hero-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: left 0.6s ease;
            z-index: 1;
        }

        .btn-hero-gold:hover::before {
            left: 100%;
        }

        .btn-hero-gold:hover {
            background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #ffb300 100%);
            border-color: #fff;
            color: #00695c;
            transform: translateY(-8px) scale(1.05);
            box-shadow: 
                0 15px 40px rgba(255, 215, 0, 0.5),
                0 5px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .btn-hero-gold:active {
            transform: translateY(-6px) scale(1.02);
        }

        /* Button icon styling */
        .btn-hero-gold i {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .btn-hero-gold:hover i {
            transform: rotate(15deg) scale(1.1);
            color: #00695c;
        }

        /* Pulsing glow effect */
        .btn-hero-gold {
            animation: buttonPulse 3s ease-in-out infinite;
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 
                    0 8px 25px rgba(255, 215, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
            50% {
                box-shadow: 
                    0 12px 35px rgba(255, 215, 0, 0.5),
                    0 0 20px rgba(255, 215, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

/* Enhanced Navigation Hover Effects */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.8rem 1.2rem !important;
    border-radius: 25px;
    transition: all 0.4s ease;
    overflow: hidden;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Hover background animation */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 215, 0, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

/* Hover effects for each navigation item */
.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #00e5ff !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 229, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

/* Icon animation on hover */
.navbar-nav .nav-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: rotate(15deg) scale(1.2);
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Specific hover colors for each nav item */
.navbar-nav .nav-item:nth-child(1) .nav-link:hover {
    /* Home */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 229, 255, 0.1));
    border-color: rgba(255, 215, 0, 0.4);
}

.navbar-nav .nav-item:nth-child(2) .nav-link:hover {
    /* About Us */
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.2), rgba(0, 229, 255, 0.1));
    border-color: rgba(0, 150, 136, 0.4);
}

.navbar-nav .nav-item:nth-child(3) .nav-link:hover {
    /* Services */
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(0, 150, 136, 0.1));
    border-color: rgba(255, 193, 7, 0.4);
}

.navbar-nav .nav-item:nth-child(4) .nav-link:hover {
    /* Blog */
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(0, 229, 255, 0.1));
    border-color: rgba(156, 39, 176, 0.4);
}

.navbar-nav .nav-item:nth-child(5) .nav-link:hover {
    /* Contact */
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(0, 229, 255, 0.1));
    border-color: rgba(76, 175, 80, 0.4);
}

/* Active state styling */
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(0, 229, 255, 0.2));
    color: #ffd700 !important;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.navbar-nav .nav-link.active i {
    color: #ffd700;
    transform: scale(1.1);
}

/* Ripple effect on click */
.navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
    transition: all 0.6s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.navbar-nav .nav-link:active::after {
    width: 300px;
    height: 300px;
}

/* Main Icon (Cogs) */
.arrow-icon > i {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    animation: rotate 4s linear infinite;
    position: relative;
    z-index: 1;
}

/* Chevron Down Icon */
.chevron-down {
    position: relative;
    z-index: 1;
}

.chevron-down i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

.scroll-arrow-link:hover .arrow-icon > i {
    color: var(--primary-gold);
    animation: rotateHover 2s linear infinite;
}

.scroll-arrow-link:hover .chevron-down i {
    color: var(--primary-gold);
    animation: bounceHover 1s infinite;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes bounceHover {
    0%, 50%, 100% {
        transform: translateY(0) scale(1.2);
    }
    25% {
        transform: translateY(-4px) scale(1.2);
    }
    75% {
        transform: translateY(-1px) scale(1.2);
    }
}

/* Pulse Effect */
.arrow-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
    opacity: 0;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 30px;
    }
    
    .scroll-arrow span {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .arrow-icon {
        width: 60px;
        height: 60px;
    }
    
    .arrow-icon > i {
        font-size: 1.5rem;
    }
    
    .chevron-down i {
        font-size: 0.9rem;
    }
}

/* Optional: Breathing Effect */
.scroll-arrow-link:not(:hover) .arrow-icon {
    animation: breathe 3s ease-in-out infinite;
}

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


.scroll-down-arrow {
    position: absolute !important;
    bottom: 15px !important; /* Moved from 40px to 15px */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
}

/* Mobile - move even closer to bottom */
@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 10px !important; /* Moved from 30px to 10px */
    }
}

.scroll-down-arrow {
    position: absolute !important;
    bottom: 5px !important; /* Almost at the very bottom */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
}
/* Clickable Service Card Styles */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-link:hover,
.service-card-link:focus {
    text-decoration: none;
    color: inherit;
    transform: translateY(-10px);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover effects for the entire card */
.service-card-link:hover .service-card {
    box-shadow: 0 25px 50px rgba(0, 150, 136, 0.15);
    background: linear-gradient(135deg, white 0%, rgba(0, 150, 136, 0.02) 100%);
}

.service-card-link:hover .service-card::before {
    opacity: 1;
    transform: translateX(100%);
}

/* Shimmer effect on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Icon hover effects */
.service-card-link:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-teal));
}

.service-card-link:hover .service-icon i {
    transform: scale(1.1);
}

/* Text hover effects */
.service-card-link:hover h4 {
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Footer link styling */
.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 150, 136, 0.1);
}

.service-link-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-link-text {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.service-card-link:hover .service-link-text i {
    transform: translateX(8px) scale(1.2);
    color: var(--primary-gold);
}

/* Active/Focus states for accessibility */
.service-card-link:focus .service-card {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
}

.service-card-link:active .service-card {
    transform: translateY(-5px) scale(0.98);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .service-card-link:hover {
        transform: none;
    }
    
    .service-card-link:hover .service-card {
        transform: none;
        box-shadow: 0 15px 35px rgba(0, 150, 136, 0.15);
    }
}

/* Loading state (optional) */
.service-card-link:active .service-card {
    transition: all 0.1s ease;
    transform: translateY(-8px) scale(0.98);
}

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 30%, #00897b 100%);
}

.service-icon-large {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 5rem;
    color: var(--primary-gold);
    animation: pulse 2s ease-in-out infinite alternate;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.service-features li i {
    color: var(--primary-teal);
    margin-right: 0.5rem;
}

/* Support Tiers */
.support-tier {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.support-tier.critical { border-top-color: #dc3545; }
.support-tier.high { border-top-color: #fd7e14; }
.support-tier.medium { border-top-color: #ffc107; }
.support-tier.low { border-top-color: #28a745; }

.support-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tier-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.critical .tier-header i { color: #dc3545; }
.high .tier-header i { color: #fd7e14; }
.medium .tier-header i { color: #ffc107; }
.low .tier-header i { color: #28a745; }

.response-time .time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    display: block;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
}

@keyframes tooltipFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-5px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Enhanced mobile navigation */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 1rem 1.5rem !important;
        border-radius: 15px;
    }
    
    .navbar-nav .nav-link:hover {
        transform: translateX(10px) scale(1.02);
        margin-left: 0.5rem;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Pulse animation for active page */
@keyframes navPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    }
}

.navbar-nav .nav-link.active {
    animation: navPulse 2s ease-in-out infinite;
}

/* Smooth transitions for all states */
.navbar-nav .nav-link,
.navbar-nav .nav-link i,
.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

        /* ========================================
           CONTENT SECTIONS
           ======================================== */
        .content-section {
            padding: 80px 0;
            background: white;
        }

        .content-section.bg-light {
            background: #f8f9fa !important;
        }

        .content-section h2 {
            color: var(--primary-teal);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .content-section h3 {
            color: var(--primary-teal);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .content-section p {
            color: var(--medium-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .content-section .lead {
            font-size: 1.1rem;
            color: var(--secondary-dark);
            font-weight: 500;
        }

        
        /* Blog Page Styles */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.blog-category .badge {
    background: var(--primary-gold);
    color: var(--secondary-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.blog-title a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--secondary-dark);
}

.blog-excerpt {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 150, 136, 0.1);
    color: var(--primary-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-teal);
    color: white;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

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

.category-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--medium-gray);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-teal);
}

.category-list span {
    background: rgba(0, 150, 136, 0.1);
    color: var(--primary-teal);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.recent-post-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-content h6 a {
    color: var(--secondary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--primary-teal);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Contact Page Styles */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    color: var(--secondary-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.1);
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.contact-details h5 {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-teal);
}

.contact-social .social-links {
    display: flex;
    gap: 0.5rem;
}

/* FAQ Accordion Styles */
.accordion-item {
    background: white;
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    color: var(--secondary-dark);
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-teal);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Pagination Styles */
.pagination .page-link {
    color: var(--primary-teal);
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
}

.pagination .page-link:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-info {
        position: static;
        margin-top: 3rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
          /* ========================================
           CARD STYLES
           ======================================== */
        .service-card, .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }

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

        .service-card .card-icon, .feature-card .card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .service-card h4, .feature-card h4 {
            color: var(--primary-teal);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-card h6, .feature-card h6 {
            color: var(--primary-teal);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* ========================================
           STATS SECTION
           ======================================== */
        .stat-item {
            padding: 2rem 1rem;
            transition: all 0.3s ease;
        }

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

        .stat-item i {
            transition: all 0.3s ease;
        }

        .stat-item:hover i {
            transform: scale(1.1);
            color: var(--primary-gold) !important;
        }

        .stat-item h3 {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: var(--medium-gray);
            font-weight: 500;
            margin-bottom: 0;
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .cta-section {
            background: var(--gradient-cta);
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

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

        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-section .lead {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2rem;
        }

        /* ========================================
           BUTTON STYLES
           ======================================== */
        .btn {
            padding: 15px 35px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            min-width: 180px;
            text-align: center;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

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

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

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

        .btn-primary {
            background: var(--primary-teal);
            border-color: var(--primary-teal);
            color: white;
        }

        .btn-primary:hover {
            background: var(--secondary-dark);
            border-color: var(--secondary-dark);
            color: white;
        }

        .btn-outline-primary {
            background: transparent;
            border-color: var(--primary-teal);
            color: var(--primary-teal);
        }

        .btn-outline-primary:hover {
            background: var(--primary-teal);
            border-color: var(--primary-teal);
            color: white;
        }

        .cta-section .btn-light {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: var(--secondary-dark);
            font-weight: 700;
        }

        .cta-section .btn-light:hover {
            background: white;
            border-color: white;
            color: var(--primary-teal);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        }

        .cta-section .btn-outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.8);
            color: white;
            font-weight: 600;
        }

        .cta-section .btn-outline-light:hover {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: var(--secondary-dark);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
        }

        /* ========================================
           FOOTER STYLES
           ======================================== */
        .footer {
            background: var(--gradient-footer);
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-teal), var(--primary-gold), var(--primary-teal));
        }

        .footer-main {
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer h5 {
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
        }

        .footer h6 {
            color: var(--primary-gold);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer Logo Styling */
        .footer-logo-container {
            margin-bottom: 1rem;
        }

        .footer-logo-wrapper {
            position: relative;
            display: inline-block;
        }

        .footer-logo-img {
            height: 30px;
            width: auto;
            transition: all 0.3s ease;
            filter: brightness(1.1);
        }

        .footer-logo-progress {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 1px solid transparent;
            border-top: 1px solid var(--primary-gold);
            border-radius: 50%;
            animation: footerLogoSpin 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-logo-container:hover .footer-logo-progress {
            opacity: 1;
            animation-duration: 1s;
        }

        .footer-logo-container:hover .footer-logo-img {
            transform: scale(1.1);
            filter: brightness(1.3);
        }

        .footer-brand-text {
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 1.3rem;
        }

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

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

        .footer-links li {
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

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

        .footer-links a:hover {
            color: var(--primary-gold);
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        /* Enhanced Social Links */
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-teal), var(--secondary-dark));
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-right: 0.8rem;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, var(--primary-gold), transparent);
            transition: all 0.4s ease;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .social-links a:hover::before {
            width: 100px;
            height: 100px;
        }

        .social-links a:hover {
            color: var(--secondary-dark);
            transform: translateY(-5px) rotate(5deg) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

        .social-links a i {
            position: relative;
            z-index: 2;
            font-size: 1.1rem;
        }

        /* Company Description */
        .company-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Contact Info Styles */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(3px);
        }

        .contact-info-item i {
            width: 20px;
            color: var(--primary-gold);
            margin-right: 0.8rem;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.9rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
        }

        .newsletter-form button {
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            background: var(--primary-gold);
            color: var(--secondary-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: white;
            transform: scale(1.05);
        }

        /* Copyright and Links */
        .footer-bottom .text-muted {
            color: rgba(255, 255, 255, 0.6) !important;
        }

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

        .footer-bottom a:hover {
            color: var(--primary-gold);
        }

        /* ========================================
           UTILITY CLASSES
           ======================================== */
        .text-teal { color: var(--primary-teal) !important; }
        .text-gold { color: var(--primary-gold) !important; }
        .bg-teal { background: var(--primary-teal) !important; }
        .bg-gradient-primary { background: var(--gradient-primary) !important; }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation for buttons */
        .btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .btn.loading::after {
            content: '';
            width: 16px;
            height: 16px;
            margin-left: 10px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            display: inline-block;
            animation: spin 1s linear infinite;
        }

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

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
                min-height: 500px;
            }
            
            .hero-title {
                font-size: 2.2rem !important;
            }
            
            .hero-section .lead {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .btn-hero-gold {
                font-size: 1rem;
                padding: 15px 35px;
                min-width: 200px;
            }

            .content-section {
                padding: 60px 0;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .cta-section .btn {
                width: 100%;
                margin-bottom: 1rem;
                min-width: auto;
            }

            .footer-main {
                padding: 40px 0 30px;
            }

            .footer .col-lg-4,
            .footer .col-lg-2,
            .footer .col-lg-3 {
                margin-bottom: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form button {
                align-self: stretch;
            }

            .social-links {
                text-align: center;
                margin-top: 1.5rem;
            }
            
            /* Logo Mobile Responsive */
            .navbar-brand .logo-container {
                padding: 6px 12px !important;
            }
            
            .navbar-brand img,
            .navbar-brand .logo-main {
                height: 32px !important;
            }
            
            .navbar-brand .brand-text {
                font-size: 1.1rem !important;
                margin-left: 12px !important;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem !important;
            }
            
            .btn-hero-gold {
                width: 100%;
                min-width: auto;
            }

            .footer h5 {
                font-size: 1.1rem;
            }

            .footer h6 {
                font-size: 1rem;
            }

            .company-description {
                font-size: 0.9rem;
            }
            
            /* Logo Small Mobile */
            .navbar-brand .logo-container {
                padding: 5px 10px !important;
            }
            
            .navbar-brand img,
            .navbar-brand .logo-main {
                height: 28px !important;
            }
            
            .navbar-brand .brand-text {
                font-size: 1rem !important;
                margin-left: 10px !important;
            }
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    margin-top: 1.5rem;
    font-size: 0.97rem;
    background: transparent;
}
