/* Enhanced Styles with Brand Colors */
:root {
    --primary-color: #10008B;
    --secondary-color: #ffc107;
    --primary-light: rgba(16, 0, 139, 0.1);
    --primary-dark: rgba(16, 0, 139, 0.7);
}

/* Hero Section Enhancements */
.hero-section {
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Custom Blocks */
.custom-block {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 0, 139, 0.1);
}

/* Service Cards Enhancement */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(16, 0, 139, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 0, 139, 0.1);
    border-color: var(--secondary-color);
}

/* Case Study Cards */
.case-study-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-study-card img {
    transition: transform 0.5s ease;
}

.case-study-card:hover img {
    transform: scale(1.1);
}

/* Enhanced Buttons */
.custom-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.custom-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.custom-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Badges */
.badge {
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 0, 139, 0.2);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Social Links */
.social-links {
    z-index: 3;
}

.social-links a {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}

/* Stats Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Progress Bars */
.progress {
    height: 4px;
    background-color: rgba(16, 0, 139, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--secondary-color);
    transition: width 1s ease-in-out;
}

/* Case Study Filters */
.case-study-filters .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.case-study-filters .btn.active,
.case-study-filters .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Results Highlight */
.results-highlight {
    background: linear-gradient(45deg, var(--primary-light), rgba(255, 193, 7, 0.1));
    border-left: 4px solid var(--secondary-color);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .custom-block {
        margin-bottom: 20px;
    }
    
    .social-links {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 20px 0;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Typography */
.display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.lead {
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Custom Shape Divider Enhancement */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
} 