/* Custom CSS for Vijaya Soft Solution Website */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --light-bg: #f8f9fa;
    /* Theming additions */
    --nav-bg: #0b3d2e; /* dark green */
    --nav-bg-scrolled: rgba(11, 61, 46, 0.95);
    --nav-link: #ffffff;
    --nav-link-active: #38ef7d;
    --footer-bg: #093425; /* darker green */
    --brand-green: #38ef7d; /* menu active/hover */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation Styles */
.navbar {
    transition: all 0.4s ease;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.98) 0%, rgba(17, 153, 142, 0.98) 100%) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Themed navbar (non-black) */
.navbar-theme {
    background: linear-gradient(135deg, #0b3d2e 0%, #11998e 50%, #0e5a49 100%);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.navbar-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.navbar-theme .navbar-brand,
.navbar-theme .nav-link {
    color: var(--nav-link) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.navbar-theme .nav-link.active,
.navbar-theme .nav-link:hover {
    color: var(--nav-link-active) !important;
    text-shadow: 0 0 10px rgba(56, 239, 125, 0.5);
}

/* Override scrolled state for themed navbar */
.navbar-theme.scrolled {
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.98) 0%, rgba(17, 153, 142, 0.98) 50%, rgba(14, 90, 73, 0.98) 100%) !important;
    box-shadow: 
        0 6px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38ef7d, #11998e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38ef7d, #11998e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #38ef7d !important;
    background: rgba(56, 239, 125, 0.1);
}

/* Override navbar active/hover to green for themed header */
.navbar-theme .navbar-nav .nav-link:hover,
.navbar-theme .navbar-nav .nav-link.active {
    color: #38ef7d !important;
    background: rgba(56, 239, 125, 0.15);
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.2);
}

.navbar-theme .navbar-nav .nav-link::after {
    background: linear-gradient(90deg, #38ef7d, #ffffff);
}

/* Unified dark green header theme (no per-slide tint) */

/* Mega Menu Styles */
.mega-menu {
    position: static !important;
}

.mega-menu .nav-link {
    padding: 0.5rem 1rem !important; /* match navbar link padding */
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    position: relative;
}

.mega-dropdown {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin-top: -15px !important; /* raise dropdown 10px more to close hover gap */
    border: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: white;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) !important;
    transition: all 0.3s ease;
    z-index: 1050;
    top: 100% !important;
    pointer-events: none;
    max-height: 80vh;
    overflow-y: auto;
    display: block !important;
}

.mega-menu:hover .mega-dropdown,
.mega-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
    display: block !important;
}

/* Force show all dropdown items */
.mega-dropdown .dropdown-item,
.mega-dropdown .dropdown-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure container and rows are visible */
.mega-dropdown .container,
.mega-dropdown .row,
.mega-dropdown .col-md-3 {
    display: block !important;
    visibility: visible !important;
}

/* Fix Bootstrap column display */
.mega-dropdown .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.mega-dropdown .col-md-3 {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

/* Keep dropdown visible when hovering over it */
.mega-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

/* Ensure navbar has proper stacking context */
.navbar {
    z-index: 1040;
}

/* Full width container for mega menu */
.mega-dropdown .container {
    max-width: 1400px !important;
    width: 100% !important;
}

/* Promotional Banner Styles */
.promotion-banner {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3, #54a0ff);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

/* Mobile navigation fixes */
@media (max-width: 991.98px) {
    /* Reduce hover underline noise on mobile */
    .navbar-theme .navbar-nav .nav-link::after {
        display: none !important;
    }

    .mega-menu {
        position: static !important;
        width: 100%;
    }
    .mega-dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0.5rem 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: all !important;
        display: none !important; /* hidden until opened */
        max-height: none !important;
        overflow: visible !important;
    }
    /* open state controlled by JS via .open class on li.mega-menu */
    .mega-menu.open .mega-dropdown {
        display: block !important;
    }
    .mega-dropdown .row {
        display: block !important;
    }
    .mega-dropdown .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 0.75rem !important;
    }
    .promotion-banner {
        padding: 1rem !important;
        border-radius: 10px !important;
    }
}

.promotion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

.promotion-content {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.promotion-text {
    background: linear-gradient(45deg, #fff, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

.promotion-subtitle {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.95;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.mega-dropdown .dropdown-header {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.mega-dropdown .dropdown-item {
    padding: 0.75rem 0;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mega-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
    padding-left: 1rem;
    text-decoration: none;
}

.mega-dropdown .dropdown-item i {
    width: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin-right: 0.5rem;
}

.mega-dropdown .dropdown-item:hover i {
    opacity: 1;
}

/* Dropdown Arrow Animation */
.nav-link .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    line-height: 1;
    vertical-align: middle;
}

.mega-menu:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

/* Additional Products Animation */
#additional-products {
    transition: opacity 0.3s ease;
}

#view-more-btn {
    transition: all 0.3s ease;
}

#view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile Mega Menu */
@media (max-width: 991px) {
    .mega-dropdown {
        position: static !important;
        width: 100% !important;
        box-shadow: none;
        background: var(--light-bg);
        padding: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 10px;
        margin-top: 0.5rem;
    }
    
    .mega-dropdown .container {
        padding: 0;
    }
    
    .mega-dropdown .row {
        margin: 0;
    }
    
    .mega-dropdown .col-md-3 {
        margin-bottom: 1rem;
    }
    
    .mega-dropdown .dropdown-header {
        background: var(--primary-color);
        color: white;
        padding: 0.75rem;
        border-radius: 8px;
        margin-bottom: 0.75rem;
        border: none;
    }
    
    .mega-dropdown .dropdown-item {
        background: white;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        padding: 0.75rem;
        border: 1px solid #e9ecef;
    }
}

/* Mega Menu Background Overlay */
.navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.navbar:has(.mega-menu:hover)::after {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.feature-icon i {
    transition: transform 0.3s ease;
}

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

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color) !important;
}

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

.service-detail-card:hover {
    transform: translateY(-3px);
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
}

/* Portfolio */
.portfolio-item {
    transition: transform 0.3s ease;
}

.portfolio-card {
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-image {
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.portfolio-overlay {
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Portfolio filter functionality */
.filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
}

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

/* Product Filter */
.product-filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 500;
}

.product-filter-btn.active,
.product-filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    background: white;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.product-icon i {
    transition: all 0.3s ease;
}

.product-card:hover .product-icon i {
    transform: scale(1.2);
    color: var(--secondary-color) !important;
}

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

.product-category {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Product Card Button */
.product-card .btn {
    transition: all 0.3s ease;
}

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

/* Enhanced Product Category Headers */
.product-category h2 {
    position: relative;
    padding-bottom: 1rem;
}

.product-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Team Members */
.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.1);
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    border: none;
    color: #0b2b1f;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0fb08c, #5ff097);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 239, 125, 0.35);
}

.btn-outline-primary {
    border: 2px solid #38ef7d;
    color: #38ef7d;
}

.btn-outline-primary:hover {
    background-color: #38ef7d;
    border-color: #38ef7d;
    color: #0b2b1f;
    transform: translateY(-2px);
}

/* Stats Section */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease;
}

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

/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, var(--footer-bg), #07271d);
    color: #ffffff;
}

/* Footer Top Section */
.footer-top {
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.footer-brand .brand-icon-footer {
    transition: all 0.3s ease;
}

.footer-brand:hover .brand-icon-footer {
    transform: scale(1.1) rotate(5deg);
}

/* Social Icons Footer */
.social-icon-footer {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-3px);
}

.social-icon-footer i {
    transition: all 0.3s ease;
}

.social-icon-footer:hover i {
    color: #d4af37 !important;
}

/* Footer Links */
.footer-links a:hover {
    opacity: 1 !important;
    padding-left: 8px;
    color: #d4af37 !important;
    text-decoration: none !important;
}

.footer-links a:hover i {
    color: #d4af37 !important;
}

/* Footer Contact Icons */
.contact-icon-footer {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon-footer {
    background: rgba(212, 175, 55, 0.2) !important;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    backdrop-filter: blur(10px);
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* Reuse footer green gradient for CTA sections */
.cta-footer-green {
    background: linear-gradient(180deg, var(--footer-bg), #07271d);
}

footer {
    margin-top: auto;
    color: #ffffff;
}

/* Make all footer text and links readable on dark background */
footer, footer * {
    color: #ffffff !important;
}

footer a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.9;
}

footer a:hover, footer a:focus {
    color: #d4af37 !important;
    text-decoration: none !important;
    opacity: 1;
}

/* Muted text inside footer should still be visible */
footer .text-muted { 
    color: rgba(255,255,255,0.75) !important; 
}

.social-links a {
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #d4af37 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 0 !important;
    }
    
    .footer-bottom {
        padding: 1.5rem 0 !important;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .footer-contact .contact-icon-footer {
        width: 30px !important;
        height: 30px !important;
    }
    
    .footer-contact .contact-icon-footer i {
        font-size: 0.8rem !important;
    }
}

/* Accordion */
.accordion-button {
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .counter {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* Contact Info Styles */
.contact-item {
    transition: transform 0.3s ease;
}

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

/* Value Items */
.value-item {
    transition: transform 0.3s ease;
}

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

/* Map Container */
.map-container {
    position: relative;
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
}

/* Tech Stack Badges */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Project Tags */
.project-tags .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

/* ================================
   HERO CAROUSEL STYLES 
   ================================ */

/* Carousel Container */
#heroCarousel {
    position: relative;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#heroCarousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

#heroCarousel .carousel-item,
#heroCarousel .hero-slide {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
}

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.8s;
}

/* Hero Slide Layouts */
.hero-slide {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    background-attachment: fixed;
}

.hero-slide::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% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

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

/* Hero content spacing */
.hero-content {
    padding: 1rem 0;
    animation: fadeInUp 0.8s ease-out;
}

/* Animated background patterns */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Slide Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-slide-in {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.animate-slide-in-delay {
    animation: slideInLeft 1s ease-out 0.6s both;
}

.animate-slide-in-delay-2 {
    animation: slideInLeft 1s ease-out 0.9s both;
}

/* Company Logo Showcase (Slide 1) */
.company-logo-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.9;
    animation: float 4s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.float-element-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.float-element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

/* Service Showcase (Slide 2) */
.service-showcase {
    padding: 0;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.service-icon-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.service-icon-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

.pricing-card {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    position: relative;
    overflow: hidden;
}

.pricing-card::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.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
    border: 2px solid #ffc107;
}

/* Product Showcase (Slide 3) */
.product-showcase {
    padding: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.product-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.category-item {
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Stats */
.hero-stats {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    padding: 1.2rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats::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;
}

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

.hero-stats:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-content h1 {
    text-shadow: 3px 5px 10px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

/* Offer Highlight */
.offer-highlight {
    border: 3px dashed #dc3545;
    animation: pulse 2s infinite;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #fff5f5) !important;
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.3);
}

.offer-highlight::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #dc3545, #ffc107, #dc3545);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    animation: rotateBorder 3s linear infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

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

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 0;
    justify-content: flex-start;
    padding-left: 25px;
}

.carousel-control-next {
    right: 0;
    justify-content: flex-end;
    padding-right: 25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 55%, 55%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    width: 55px;
    height: 55px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 193, 7, 0.95);
    border-color: #ffc107;
    transform: scale(1.15);
    box-shadow: 
        0 10px 30px rgba(255, 193, 7, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.carousel-control-prev-icon:hover::before,
.carousel-control-next-icon:hover::before {
    border-color: rgba(255, 255, 255, 0.5);
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 25px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.carousel-indicators .active {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-color: #ffc107;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    width: 14px;
    height: 14px;
}

/* Badge Animations */
.company-badge, .service-badge, .product-badge {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.company-badge .badge,
.service-badge .badge,
.product-badge .badge {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.company-badge .badge::before,
.service-badge .badge::before,
.product-badge .badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.company-badge .badge:hover::before,
.service-badge .badge:hover::before,
.product-badge .badge:hover::before {
    width: 200px;
    height: 200px;
}

.company-badge .badge:hover,
.service-badge .badge:hover,
.product-badge .badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Button Styles */
.btn-white {
    background: linear-gradient(135deg, #ffffff, #f1f3f5);
    color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

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

.btn-white::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-white:hover::after {
    width: 350px;
    height: 350px;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    letter-spacing: 0.8px;
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-buttons .btn:hover {
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-color: #ffc107;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffcd38, #ffa726);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #heroCarousel {
        max-height: none;
    }
    
    .hero-slide {
        min-height: 500px !important;
        height: auto !important;
        padding: 2rem 0 !important;
    }
    
    /* Hero content text sizing for tablets */
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
    }
    
    .hero-stats h4 {
        font-size: 1.5rem !important;
    }
    
    .hero-stats small {
        font-size: 0.75rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .product-item {
        padding: 0.6rem !important;
    }
    
    .product-item i {
        font-size: 1.8rem !important;
    }
    
    .product-item h6 {
        font-size: 0.75rem !important;
    }
    
    .service-icons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card {
        padding: 0.8rem !important;
    }
    
    .service-card i {
        font-size: 2rem !important;
    }
    
    .service-card h5 {
        font-size: 0.9rem !important;
    }
    
    .hero-slide .display-3 {
        font-size: 2rem !important;
    }
    
    .hero-slide .display-4 {
        font-size: 1.5rem !important;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem !important;
    }
    
    .pricing-card .price {
        font-size: 1.8rem !important;
    }
    
    .category-item {
        flex-direction: column;
        text-align: center;
    }
    
    .category-item i {
        margin-bottom: 1rem;
        margin-right: 0 !important;
        font-size: 2rem !important;
    }
    
    .category-item h5 {
        font-size: 0.85rem !important;
    }
    
    .company-logo-showcase {
        height: 200px;
        display: none;
    }
    
    /* Hide right side on tablets to show only text */
    .hero-slide .col-lg-6:last-child {
        display: none;
    }
    
    .hero-slide .col-lg-6:first-child {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 600px !important;
        height: auto !important;
        padding: 2rem 0 !important;
        overflow-y: auto;
    }
    
    /* Mobile text sizing - larger and more visible */
    .hero-content h1 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-content p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-stats {
        margin-bottom: 1rem !important;
    }
    
    .hero-stats h4 {
        font-size: 1.2rem !important;
    }
    
    .hero-stats small {
        font-size: 0.65rem !important;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .company-badge .badge,
    .service-badge .badge,
    .product-badge .badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.7rem !important;
    }
    
    /* Slide 2 - Service Pricing Cards */
    .service-pricing {
        margin-bottom: 1rem !important;
    }
    
    .service-pricing .row {
        gap: 0.5rem;
    }
    
    .service-pricing .col-md-4 {
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .pricing-card {
        padding: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    
    .pricing-card h6 {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .pricing-card .price-tag span,
    .pricing-card .fw-bold {
        font-size: 1.2rem !important;
    }
    
    .pricing-card small {
        font-size: 0.7rem !important;
    }
    
    /* Slide 3 - Product Categories */
    .product-categories {
        margin-bottom: 0.8rem !important;
    }
    
    .product-categories .col-6 {
        padding: 0 0.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .category-item {
        padding: 0.4rem !important;
        margin-bottom: 0 !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    .category-item i {
        font-size: 1.2rem !important;
        margin-right: 0.5rem !important;
    }
    
    .category-item h6 {
        font-size: 0.7rem !important;
        margin-bottom: 0 !important;
        line-height: 1.2;
    }
    
    .category-item small {
        font-size: 0.6rem !important;
        display: block;
        line-height: 1.1;
    }
    
    .product-offer {
        margin-bottom: 1rem !important;
    }
    
    .offer-highlight {
        padding: 0.4rem 0.7rem !important;
    }
    
    .offer-highlight span {
        font-size: 0.8rem !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.6rem;
    }
    
    .product-item {
        padding: 0.5rem !important;
    }
    
    .product-item i {
        font-size: 1.5rem !important;
    }
    
    .product-item h6 {
        font-size: 0.7rem !important;
        margin-bottom: 0 !important;
    }
    
    .service-card {
        padding: 0.6rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .service-card i {
        font-size: 1.8rem !important;
    }
    
    .service-card h5 {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
    
    .hero-stats .col-4 {
        margin-bottom: 0.8rem;
    }
    
    .float-element {
        font-size: 1.5rem;
        display: none;
    }
    
    /* Ensure content is centered and visible */
    .hero-content {
        text-align: center;
        padding: 0.5rem;
    }
    
    /* Hide decorative elements on mobile */
    .company-logo-showcase,
    .floating-elements,
    .service-showcase,
    .product-showcase {
        display: none;
    }
    
    /* Ensure all carousel content fits */
    .carousel-item {
        overflow: visible;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Feature Card Hover Effects */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

/* Stat Card Hover Effects */
.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
}

/* Progress Bar Animation */
@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

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

.stat-card-glass {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-icon i {
    font-size: 3rem;
    color: #fff;
    opacity: 0.9;
}

.stat-card-featured .stat-icon i {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
}

.stat-card-featured .stat-label {
    opacity: 1;
}

.stat-bar {
    margin-top: 1rem;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 100%;
    animation: progressBar 2s ease-out;
}

.stat-bar-green {
    background: linear-gradient(90deg, #38ef7d, #11998e);
}

.stat-bar-pink {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.stat-bar-orange {
    background: linear-gradient(90deg, #ffd89b, #19547b);
}

.satisfaction-badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* ================================
   SERVICE PAGE STYLES 
   ================================ */

/* Service Pricing Cards */
.service-pricing-card {
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-pricing-card:hover::before {
    opacity: 1;
}

.service-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #11998e;
}

.service-icon-circle {
    transition: all 0.4s ease;
}

.service-pricing-card:hover .service-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.price-badge {
    position: relative;
    z-index: 1;
}

.features-list .feature-item {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.features-list .feature-item:hover {
    background: rgba(17, 153, 142, 0.05);
    transform: translateX(5px);
}

/* Additional Services Cards */
.additional-service-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #11998e;
}

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

.additional-service-card:hover .service-icon i {
    transform: scale(1.2);
}

/* Why Choose Cards */
.why-choose-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 1.5rem;
}

.why-choose-card:hover {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.05), rgba(56, 239, 125, 0.05));
    transform: translateY(-5px);
}

.why-choose-card .icon-wrapper i {
    transition: all 0.3s ease;
}

.why-choose-card:hover .icon-wrapper i {
    transform: scale(1.15) rotate(-5deg);
}

/* Process Cards */
.process-card {
    transition: all 0.3s ease;
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.05), rgba(56, 239, 125, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.process-number {
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    transform: scale(1.15) rotate(360deg);
}

/* Technology Badges */
.tech-badge {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.tech-badge:hover {
    background: white !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: #11998e;
}

.tech-badge i {
    transition: all 0.3s ease;
}

.tech-badge:hover i {
    transform: scale(1.2);
}

/* Service Page Header */
.page-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header .breadcrumb-item a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive adjustments for service page */
@media (max-width: 768px) {
    .service-pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon-circle {
        width: 80px !important;
        height: 80px !important;
    }
    
    .service-icon-circle i {
        font-size: 2.5rem !important;
    }
    
    .price-badge .display-5 {
        font-size: 2rem !important;
    }
    
    .tech-badge {
        margin-bottom: 1rem;
    }
}

/* ================================
   HOME PAGE SERVICE SECTION STYLES 
   ================================ */

/* Home Service Cards */
.home-service-card {
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 153, 142, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-service-card:hover::before {
    opacity: 1;
}

.home-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #11998e;
}

/* Featured Service Card */
.home-service-featured {
    border: 2px solid #ffc107 !important;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2) !important;
}

.home-service-featured:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.3) !important;
}

/* Service Icon Circle */
.service-icon-circle-home {
    transition: all 0.4s ease;
}

.home-service-card:hover .service-icon-circle-home {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Price Badge */
.price-badge-home {
    position: relative;
    z-index: 1;
    padding: 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.03), rgba(56, 239, 125, 0.03));
    transition: all 0.3s ease;
}

.home-service-card:hover .price-badge-home {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.08), rgba(56, 239, 125, 0.08));
}

/* Features Compact */
.features-compact {
    margin: 0 auto;
    max-width: 280px;
}

.feature-item-compact {
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.feature-item-compact:hover {
    background: rgba(17, 153, 142, 0.05);
    transform: translateX(5px);
}

.feature-item-compact i {
    flex-shrink: 0;
}

.feature-item-compact span {
    color: #6c757d;
}

/* Additional Service Items */
.additional-service-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.additional-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #11998e;
}

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

.additional-service-item:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* Responsive adjustments for home services */
@media (max-width: 768px) {
    .home-service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon-circle-home {
        width: 75px !important;
        height: 75px !important;
    }
    
    .service-icon-circle-home i {
        font-size: 2.3rem !important;
    }
    
    .price-badge-home .display-6 {
        font-size: 1.8rem !important;
    }
    
    .additional-service-item {
        margin-bottom: 1rem;
    }
}

/* ================================
   ABOUT US SECTION STYLES 
   ================================ */

.about-content {
    padding-right: 2rem;
}

.feature-icon-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* ================================
   PRODUCTS SECTION STYLES 
   ================================ */

.product-card-home {
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.05) 0%, rgba(45, 90, 61, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card-home:hover::before {
    opacity: 1;
}

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

.product-pricing-tooltip {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    min-width: 200px;
    animation: slideInRight 0.3s ease;
}

.product-card-home:hover .product-pricing-tooltip {
    display: block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-row i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.pricing-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.8rem;
    margin-right: 5px;
}

.pricing-label {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 6px;
}

.pricing-divider {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 8px;
    margin-top: 8px;
}

.product-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #11998e;
}

.product-icon-circle {
    transition: all 0.4s ease;
}

.product-card-home:hover .product-icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card-home .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.product-card-home:hover .badge {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-card-home {
        margin-bottom: 1.5rem;
    }
    
    .product-icon-circle {
        width: 70px !important;
        height: 70px !important;
    }
    
    .product-icon-circle i {
        font-size: 2rem !important;
    }
}

/* Testimonial Cards Styles */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    min-height: 100px;
}

.testimonial-author .author-avatar {
    flex-shrink: 0;
}

.testimonial-author h6 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author small {
    font-size: 0.8rem;
}

.testimonial-author .rating {
    font-size: 0.75rem;
}

.testimonial-quote {
    position: relative;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        min-height: auto;
        font-size: 0.9rem;
    }
    
    .testimonial-author .author-avatar {
        width: 45px !important;
        height: 45px !important;
    }
    
    .testimonial-author .author-avatar i {
        font-size: 1.3rem !important;
    }
}

/* Products Promotional Banner Styles */
.products-promotion-banner {
    animation: bannerGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.products-promotion-banner:hover {
    transform: scale(1.02);
    border-color: rgba(244, 164, 96, 0.8) !important;
}

@keyframes bannerGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 164, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(244, 164, 96, 0.6);
    }
}

.promotion-text-products {
    animation: textPulse 1.5s ease-in-out infinite;
}

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

.pricing-info-banner .badge {
    transition: all 0.3s ease;
}

.pricing-info-banner .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3) !important;
}

@media (max-width: 768px) {
    .products-promotion-banner {
        padding: 1rem !important;
    }
    
    .promotion-text-products {
        font-size: 1.3rem !important;
    }
    
    .promotion-subtitle-products {
        font-size: 0.9rem !important;
    }
    
    .pricing-info-banner {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .pricing-info-banner .badge {
        width: 100%;
    }
}


