/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: white !important;
}

.navbar-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.brand-text {
    margin-left: 0.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    font-weight: 800;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.2rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Custom Burger Menu (3-line hamburger) */
.custom-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1050;
    position: relative;
}

.custom-toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    outline: none;
}

.custom-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-toggler .navbar-toggler-icon {
    background-image: none;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    display: block;
    background-color: white;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    left: 0;
}

.custom-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.custom-toggler .navbar-toggler-icon::after {
    top: 8px;
}

.custom-toggler .navbar-toggler-icon {
    top: 0;
    background-color: white;
}

/* Burger menu animation when clicked */
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Desktop Header Improvements */
@media (min-width: 992px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.3rem;
        margin-left: 0.8rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.2rem;
    }
    
    .nav-contact-item,
    .nav-whatsapp-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-contact-item {
        margin-right: 0.5rem;
    }
    
    .nav-whatsapp-btn {
        margin-right: 0.5rem;
    }
}

/* Ensure mobile menu is visible */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
    }
    
    .custom-toggler {
        display: block !important;
        visibility: visible !important;
    }
}

/* Navbar Contact Items */
.nav-contact-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-contact-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-whatsapp-btn {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid #25D366;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp-btn:hover {
    color: white;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-color: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-medium);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-contact-item,
    .nav-whatsapp-btn {
        display: none;
    }
    
    /* Ensure mobile menu button is visible */
    .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .custom-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    overflow: hidden;
    padding: 120px 0 2rem 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 2rem;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Desktop Slider - Professional Design */
@media (min-width: 992px) {
    .hero-section {
        padding: 80px 0 2rem 0;
        min-height: 400px;
        position: relative;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .hero-slider {
        height: 320px;
        margin-top: 2rem;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-slide {
        height: 320px;
        background: transparent;
    }
    
    .hero-slide .container {
        height: 320px;
        max-width: 1200px;
        padding: 0 3rem;
    }
    
    .hero-slide .row,
    .hero-slide-row {
        height: 320px !important;
        align-items: center;
    }
    
    .hero-content {
        padding: 0;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        font-weight: 800;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content h1 .text-gradient {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        max-width: 500px;
    }
    
    .hero-content .btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 50px;
        font-weight: 700;
        margin-right: 1rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .btn-gradient {
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
        border: none;
        color: white;
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
    
    .btn-gradient:hover {
        background: linear-gradient(135deg, #FF5252 0%, #FF7979 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
        color: white;
    }
    
    .btn-outline-light:hover {
        background: white;
        color: #667eea;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
    
    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        z-index: 2;
    }
    
    .hero-visual img {
        max-height: 200px;
        width: auto;
        object-fit: contain;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        filter: brightness(1.1) contrast(1.1);
    }
    
    /* Slider Navigation Arrows */
    .slider-navigation {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        pointer-events: none;
        z-index: 10;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        pointer-events: all;
        backdrop-filter: blur(10px);
    }
    
    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    /* Slider Dots */
    .slider-dots {
        position: absolute;
        bottom: 15px;
        right: 20px;
        display: flex;
        gap: 8px;
        z-index: 10;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: #007bff;
        transform: scale(1.2);
    }
    
    .dot:hover {
        background: rgba(255, 255, 255, 0.7);
    }
}

/* Large Desktop Slider - Professional Design */
@media (min-width: 1200px) {
    .hero-section {
        padding: 100px 0 2.5rem 0;
        min-height: 450px;
        position: relative;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .hero-slider {
        height: 380px;
        margin-top: 2.5rem;
        width: 100%;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-slide {
        height: 380px;
        background: transparent;
    }
    
    .hero-slide .container {
        height: 380px;
        max-width: 1400px;
        padding: 0 4rem;
    }
    
    .hero-slide .row,
    .hero-slide-row {
        height: 380px !important;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        font-weight: 800;
        color: white;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }
    
    .hero-content h1 .text-gradient {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        max-width: 600px;
    }
    
    .hero-content .btn {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
        border-radius: 60px;
        font-weight: 700;
        margin-right: 1.5rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .hero-visual img {
        max-height: 250px;
        width: auto;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        filter: brightness(1.1) contrast(1.1);
    }
    
    /* Enhanced Navigation for Large Desktop */
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
        right: 25px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Extra Large Desktop - Professional Design */
@media (min-width: 1400px) {
    .hero-section {
        padding: 120px 0 3rem 0;
        min-height: 500px;
        position: relative;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .hero-slider {
        height: 420px;
        margin-top: 3rem;
        border-radius: 30px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(30px);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-slide {
        height: 420px;
        background: transparent;
    }
    
    .hero-slide .container {
        height: 420px;
        padding: 0 5rem;
    }
    
    .hero-slide .row,
    .hero-slide-row {
        height: 420px !important;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        font-weight: 800;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-content h1 .text-gradient {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }
    
    .hero-content p {
        font-size: 1.7rem;
        margin-bottom: 3rem;
        opacity: 0.95;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        max-width: 700px;
    }
    
    .hero-content .btn {
        padding: 1.5rem 3.5rem;
        font-size: 1.3rem;
        border-radius: 70px;
        font-weight: 700;
        margin-right: 2rem;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
    }
    
    .hero-visual img {
        max-height: 300px;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        filter: brightness(1.1) contrast(1.1);
    }
    
    /* Enhanced Navigation for Extra Large Desktop */
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .slider-btn i {
        font-size: 1.1rem;
    }
    
    .slider-dots {
        bottom: 25px;
        right: 30px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    outline: none;
    position: relative;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.dot.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.3);
}

.dot.active:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.hero-visual {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    font-size: 1.3rem;
    color: #4A90E2;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 2%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    right: 8%;
    animation-delay: 4s;
}

/* Desktop Floating Cards */
@media (min-width: 992px) {
    .floating-card {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border-radius: 18px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 1rem;
        font-weight: 700;
    }
}

.hero-main-image {
    position: relative;
    z-index: 3;
    margin-top: 2rem;
}

.floating-star {
    position: absolute;
    top: 20px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: twinkle 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 4;
}

.floating-star i {
    color: white;
    font-size: 1.2rem;
}

@keyframes twinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-main-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.service-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-text p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.features-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.project-tabs {
    margin-bottom: 3rem;
}

.project-tabs .btn {
    margin: 0 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.project-tabs .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card .card-body {
    padding: 1.5rem;
}

.project-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.project-card p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-card .category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--light-color);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 2rem auto 1rem;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.team-card .card-body {
    padding: 0 2rem 2rem;
}

.team-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-card .position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-card .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.team-card .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Expert Section */
.expert-section {
    padding: 5rem 0;
    background: white;
}

.expert-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.expert-designation {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.expert-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expert-skills {
    margin-bottom: 2rem;
}

.expert-skills h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.expert-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.expert-stats .stat-item {
    text-align: center;
}

.expert-stats .stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.expert-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

.expert-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.expert-image {
    position: relative;
    text-align: center;
}

.expert-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    max-width: 100%;
    height: auto;
}

.expert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.expert-badge i {
    margin-right: 0.5rem;
}

/* Consultation Section */
.consultation-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.consultation-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.review-form-container {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.review-form-container h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.review-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    border: none;
}

.review-card .stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card .reviewer {
    font-weight: 600;
    color: var(--dark-color);
}

/* My Services Section */
.my-services-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.service-status-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.service-status-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: var(--warning-color);
    color: white;
}

.status-in-progress {
    background: var(--info-color);
    color: white;
}

.status-completed {
    background: var(--success-color);
    color: white;
}

/* Book Meeting Section */
.book-meeting-section {
    padding: 5rem 0;
    background: white;
}

.meeting-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.meeting-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.meeting-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 600;
    color: var(--dark-color);
}

.meeting-form-container {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

.team-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-card .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-card .social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-services h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Blogs Section */
.blogs-section {
    padding: 5rem 0;
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.blog-card p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.blog-card .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card .read-more:hover {
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    border-radius: 15px;
}

/* Footer */
.footer-section {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.footer-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-section .text-center p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-heavy);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
}

.modal-title {
    color: var(--dark-color);
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .floating-card {
        padding: 0.8rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.2rem;
    }
    
    .floating-card {
        padding: 0.6rem;
    }
    
    .floating-card i {
        font-size: 1.3rem;
    }
    
    .floating-card span {
        font-size: 0.75rem;
    }
    
    .card-1 {
        top: 15%;
        left: 5%;
    }
    
    .card-2 {
        top: 25%;
        right: 10%;
    }
    
    .card-3 {
        bottom: 25%;
        left: 15%;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .project-card {
        margin-bottom: 2rem;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .project-tabs .btn {
        margin: 0.25rem;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .service-tags {
        justify-content: center;
        gap: 0.4rem;
    }
    
    /* About Section Mobile Styles */
    .about-section .row {
        flex-direction: column-reverse;
    }
    
    .about-content {
        text-align: center;
        margin-top: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-services h5 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .service-tags {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-image {
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile Logo Styles */
    .navbar-logo {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 30px;
    }
    
    /* Mobile Slider - Complete Redesign */
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-slider {
        height: 200px;
        min-height: 200px;
    }
    
    .hero-slide {
        padding: 2rem 0;
    }
    
    .hero-slide .container {
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-slide .row {
        margin: 0;
        height: 200px;
    }
    
    .hero-slide .col-lg-6 {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-slide .hero-content {
        text-align: center;
        padding: 1.5rem 0;
        order: 2;
    }
    
    .hero-slide .hero-visual {
        order: 1;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-slide .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-slide .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-slide .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
    }
    
    .hero-slide .hero-stats {
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-slide .stat-item {
        text-align: center;
        flex: 1;
        min-width: 100px;
    }
    
    .hero-slide .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-slide .stat-item p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Mobile Navigation */
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .slider-dots {
        bottom: 2rem;
        gap: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .dot.active {
        background: white;
        transform: scale(1.2);
    }
    
    /* Hide floating cards on mobile */
    .hero-slide .floating-card {
        display: none;
    }
    
    .hero-slide .hero-main-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-card .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Projects Section Mobile */
    .projects-section {
        padding: 3rem 0;
    }
    
    .project-tabs {
        margin-bottom: 2rem;
    }
    
    .project-tabs .btn-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .project-tabs .btn {
        margin: 0.2rem;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h5 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-section .col-lg-4,
    .footer-section .col-lg-2 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        margin-top: 1rem;
    }
    
    /* Expert Section Mobile */
    .expert-section {
        padding: 3rem 0;
    }
    
    .expert-content h3 {
        font-size: 2rem;
    }
    
    .expert-designation {
        font-size: 1.1rem;
    }
    
    .expert-description {
        font-size: 1rem;
    }
    
    .expert-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .expert-actions {
        justify-content: center;
    }
    
    .expert-actions .btn {
        flex: 1;
        min-width: 150px;
    }
    
    /* Consultation Section Mobile */
    .consultation-section {
        padding: 3rem 0;
    }
    
    .consultation-form-container {
        padding: 2rem;
    }
    
    /* Reviews Section Mobile */
    .reviews-section {
        padding: 3rem 0;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 3rem 0;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
    
    .team-card img {
        width: 150px;
        height: 150px;
    }
    
    .team-card h5 {
        font-size: 1.2rem;
    }
    
    .team-card .position {
        font-size: 1rem;
    }
    
    .team-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    /* Slider Mobile Small Screen Styles */
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Small Mobile Slider - Better Design */
    .hero-section {
        padding-top: 60px;
    }
    
    .hero-slider {
        height: 200px;
        min-height: 200px;
    }
    
    .hero-slide .hero-content {
        padding: 1rem 0;
    }
    
    .hero-slide .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }
    
    .hero-slide .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-slide .hero-buttons .btn {
        max-width: 260px;
        font-size: 0.95rem;
        padding: 0.7rem 1.3rem;
    }
    
    .hero-slide .hero-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .hero-slide .stat-item {
        min-width: 90px;
    }
    
    .hero-slide .stat-item h3 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-slide .stat-item p {
        font-size: 0.85rem;
    }
    
    /* Mobile Navigation - Smaller */
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 0.8rem;
    }
    
    .next-btn {
        right: 0.8rem;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* About Section Small Mobile Styles */
    .about-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-stats .stat-item {
        margin-bottom: 0.5rem;
    }
    
    .about-stats .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .about-stats .stat-item p {
        font-size: 0.9rem;
    }
    
    .service-tags {
        gap: 0.3rem;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Services Section Small Mobile */
    .services-section {
        padding: 2rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card h5 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Projects Section Small Mobile */
    .projects-section {
        padding: 2rem 0;
    }
    
    .project-tabs .btn {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        margin: 0.1rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-card img {
        height: 150px;
    }
    
    .project-card .card-body {
        padding: 1rem;
    }
    
    .project-card h5 {
        font-size: 1rem;
    }
    
    .project-card p {
        font-size: 0.85rem;
    }
    
    /* Contact Section Small Mobile */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-details h5 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    /* Footer Small Mobile */
    .footer-section {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section h5 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .newsletter-form .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-slide .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .prev-btn {
        left: 0.25rem;
    }
    
    .next-btn {
        right: 0.25rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* About Section Extra Small Mobile Styles */
    .about-content h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-stats .stat-item h3 {
        font-size: 1.6rem;
    }
    
    .about-stats .stat-item p {
        font-size: 0.8rem;
    }
    
    .about-services h5 {
        font-size: 1.1rem;
    }
    
    .service-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Extra Small Mobile Logo Styles */
    .navbar-logo {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 25px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    /* Extra Small Mobile Slider - Professional Design */
    .hero-section {
        padding-top: 50px;
    }
    
    .hero-slider {
        height: 200px;
        min-height: 200px;
    }
    
    .hero-slide .hero-content {
        padding: 0.8rem 0;
    }
    
    .hero-slide .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .hero-slide .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 0.3rem;
    }
    
    .hero-slide .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide .hero-buttons .btn {
        max-width: 240px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-slide .hero-stats {
        gap: 1.2rem;
        margin-top: 0.8rem;
    }
    
    .hero-slide .stat-item {
        min-width: 80px;
    }
    
    .hero-slide .stat-item h3 {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-slide .stat-item p {
        font-size: 0.8rem;
    }
    
    /* Mobile Navigation - Extra Small */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 0.6rem;
    }
    
    .next-btn {
        right: 0.6rem;
    }
    
    .slider-dots {
        bottom: 1.2rem;
        gap: 0.6rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Better mobile image sizing */
    .hero-slide .hero-main-image {
        margin: 0 auto;
        max-width: 90%;
    }
    
    .hero-slide .hero-main-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    /* Services Section Extra Small Mobile */
    .services-section {
        padding: 1.5rem 0;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .service-card h5 {
        font-size: 0.95rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-card .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Projects Section Extra Small Mobile */
    .projects-section {
        padding: 1.5rem 0;
    }
    
    .project-tabs .btn {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        margin: 0.05rem;
    }
    
    .project-card {
        margin-bottom: 0.8rem;
    }
    
    .project-card img {
        height: 120px;
    }
    
    .project-card .card-body {
        padding: 0.8rem;
    }
    
    .project-card h5 {
        font-size: 0.95rem;
    }
    
    .project-card p {
        font-size: 0.8rem;
    }
    
    .project-card .category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Contact Section Extra Small Mobile */
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-item {
        margin-bottom: 0.8rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .contact-details h5 {
        font-size: 0.85rem;
    }
    
    .contact-details p {
        font-size: 0.75rem;
    }
    
    .form-control, .form-select {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    /* Footer Extra Small Mobile */
    .footer-section {
        padding: 1rem 0 0.5rem;
    }
    
    .footer-section h5 {
        font-size: 0.95rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .newsletter-form .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .newsletter-form .form-control {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
    }
    
    /* Team Section Small Mobile */
    .team-section {
        padding: 2rem 0;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
    
    .team-card h5 {
        font-size: 1.1rem;
    }
    
    .team-card .position {
        font-size: 0.9rem;
    }
    
    .team-card p {
        font-size: 0.85rem;
    }
    
    .team-card .social-links {
        gap: 0.5rem;
    }
    
    .team-card .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Floating Call Button Extra Small */
    .floating-call-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 0.8rem;
        right: 0.8rem;
    }
}

/* Smooth transitions for better UX */
.hero-slide .hero-content {
    transition: all 0.6s ease-in-out;
}

.hero-slide .hero-visual {
    transition: all 0.6s ease-in-out;
}

/* Loading animation for slides */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide.active .hero-content {
    animation: slideInFromRight 0.8s ease-out;
}

.hero-slide.active .hero-visual {
    animation: slideInFromLeft 0.8s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

/* Additional Responsive Utilities */
@media (max-width: 768px) {
    .d-mobile-none {
        display: none !important;
    }
    
    .d-mobile-block {
        display: block !important;
    }
    
    .text-mobile-center {
        text-align: center !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }
    
    .mt-mobile-3 {
        margin-top: 1rem !important;
    }
}

@media (max-width: 576px) {
    .d-mobile-sm-none {
        display: none !important;
    }
    
    .d-mobile-sm-block {
        display: block !important;
    }
    
    .text-mobile-sm-center {
        text-align: center !important;
    }
    
    .mb-mobile-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .mt-mobile-sm-2 {
        margin-top: 0.5rem !important;
    }
}

/* Performance Optimizations */
.hero-slide {
    will-change: transform, opacity;
}

.floating-card {
    will-change: transform;
}

.service-card,
.project-card,
.blog-card,
.team-card {
    will-change: transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slide {
        transition: none !important;
    }
    
    .floating-card {
        animation: none !important;
    }
    
    .scroll-arrow {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
    }
    
    .navbar {
        background: #000 !important;
    }
    
    .btn-outline-light {
        border-color: #fff !important;
        color: #fff !important;
    }
    
    .dot {
        border: 2px solid #fff !important;
    }
}
