:root {
    --primary-color: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    padding-top: 80px;
    background: var(--bg-white);
    font-weight: 400;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px;
        margin: 4px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        transform: translateX(8px);
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 12px;
    font-weight: 900;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 8px;
    padding: 12px 16px !important;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

/* Modern Buttons */
.btn {
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.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.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Hero Section - Complete Redesign */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #0891b2 0%, 
        #0e7490 25%, 
        #059669 50%, 
        #047857 75%, 
        #065f46 100%);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.hero-section h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section h1 .text-primary {
    color: #ffffff !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 2px 15px rgba(0,0,0,0.5);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #22d3ee;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 15px rgba(0,0,0,0.4), 0 1px 5px rgba(0,0,0,0.2);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-buttons {
    margin-bottom: 4rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.1);
    margin: 0;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #065f46 100%);
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 50%, #0e7490 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25), 0 6px 15px rgba(0,0,0,0.15);
}

.hero-buttons .btn-outline-primary {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-primary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.hero-stats {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-stats h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.6), 0 1px 5px rgba(0,0,0,0.4);
}

.hero-stats p {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

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

/* Enhanced Cards */
.card {
    border: none;
    border-radius: 20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-body {
    padding: 2.5rem;
    position: relative;
}

.card h4, .card h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Sections */
.bg-light {
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #f1f5f9 50%, 
        #e2e8f0 100%) !important;
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236366f1' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='m0 40l40-40h-40z'/%3E%3C/g%3E%3C/svg%3E");
}

.text-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.display-4, .display-5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Navbar Brand Logo Hover Effects */
.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: brightness(1.1);
}

.brand-text {
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text {
    color: var(--secondary-color);
}

/* Enhanced Icons */
.fas, .fab {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .fas {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Feature Lists Enhancement */
.list-unstyled li {
    padding: 12px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 4px 0;
    padding-left: 12px;
}

.list-unstyled li:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(8px);
}

/* Gallery Styles */
.gallery-container {
    margin: 2rem 0;
}

.gallery-thumb {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 120px;
    object-fit: cover;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.case-study-card {
    border-radius: 15px;
    overflow: hidden;
}

.case-study-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

#galleryModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#galleryModal .modal-body img {
    max-height: 70vh;
    object-fit: contain;
}

#galleryModal .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge.bg-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.list-unstyled li .fas.fa-check {
    background: linear-gradient(135deg, var(--success-color), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Privacy Policy Styling */
.privacy-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content ul {
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59,130,246,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99,102,241,0.05) 0%, transparent 50%);
}

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

footer h5, footer h6 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

footer a:hover::before {
    width: 100%;
}

footer a:hover {
    color: var(--primary-light) !important;
    transform: translateX(4px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Form Enhancements */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid var(--border-light);
    padding: 16px 20px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    background: var(--bg-white);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Alert Enhancements */
.alert {
    border-radius: 16px;
    border: none;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* CTA Section Enhancement */
.bg-primary {
    background: linear-gradient(135deg, 
        #0891b2 0%, 
        #059669 50%, 
        #0e7490 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 60px 0;
        min-height: 90vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 0 12px 0;
        min-width: auto;
        max-width: none;
    }

    .hero-stats {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .hero-stats h3 {
        font-size: 1.8rem;
    }

    .card-body {
        padding: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .social-links a {
        margin-right: 12px;
        width: 40px;
        height: 40px;
    }

    .hero-logo-container {
        padding: 2rem 1.5rem;
        max-width: 320px;
    }

    .hero-company-logo {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-logo-icons i {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .hero-stats {
        padding: 1.2rem;
    }
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Clean hero image styling */
.hero-section img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.15);
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

/* Hero logo container styling */
.hero-logo-container {
    transition: all 0.4s ease;
    margin: 0 auto;
}

.hero-logo {
    width: 100%;
    height: auto;
}

.hero-logo-container:hover {
    transform: translateY(-10px) scale(1.05);
}

.hero-company-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.hero-logo-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-logo-icons i {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-logo-icons i:hover {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Solar Energy text styling for better visibility */
.solar-energy-text {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 50%, #065f46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 900;
}

.hero-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.25);
}

.hero-section .col-lg-6:last-child {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    perspective: 1000px;
}

/* Why Choose Us section enhancement */
.d-flex .fas {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 4px;
}

/* Enhanced section spacing */
section {
    padding: 5rem 0;
    position: relative;
}

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

/* Image hover effects */
img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img:hover {
    transform: scale(1.02);
}

/* Additional button styles for CTAs */
.btn-light {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

/* Case Studies Styling */
.case-study-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card .card {
    border: none;
    overflow: hidden;
}

.case-study-card .card-header {
    background: linear-gradient(135deg, #0891b2 0%, #059669 100%);
    border-bottom: none;
}

.case-study-card .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.case-study-card ul li {
    margin-bottom: 0.5rem;
}

.case-study-card blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 0;
}

.case-study-card .bg-light {
    background-color: #f8f9fa !important;
}

.case-study-card .text-primary {
    color: #0891b2 !important;
}

.btn-light:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

/* Hero logo specific styling */
.hero-section .hero-logo {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.hero-section .hero-logo:hover {
    transform: scale(1.05) translateY(-10px);
}