/* INDSOFT24.COM - OPTIMIZED CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #2ecc71 100%);
    color: #fff;
    padding: 6px 0;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100000;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
    min-height: 36px;
    max-height: 36px;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 150px
}

.top-bar-welcome {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #fff
}

.top-bar-welcome i {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
}

.top-bar-center {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1)
}

.top-bar-link:hover {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
}

.top-bar-link i {
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
}

.top-bar-text {
    font-weight: 400
}

.top-bar-text.mobile-text {
    display: none
}

.top-bar-text.desktop-text {
    display: inline
}

.top-bar-consultation .mobile-text {
    display: none
}

.top-bar-consultation .desktop-text {
    display: inline
}

.top-bar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.top-bar-consultation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    backdrop-filter: blur(10px)
}

.top-bar-consultation:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
}

.top-bar-consultation i {
    font-size: 0.85rem;
    color: #fff;
    transition: color 0.3s ease;
    flex-shrink: 0
}

.top-bar-consultation:hover i {
    color: #fff
}

/* Top Bar Responsive */
@media (max-width: 991px) {
    .top-bar {
        padding: 5px 0;
        font-size: 0.8rem;
        min-height: 34px
    }

    .top-bar-container {
        padding: 0 15px;
        gap: 10px
    }

    .top-bar-left {
        min-width: auto;
        flex: 0 0 auto
    }

    .top-bar-welcome {
        font-size: 0.75rem;
        gap: 4px
    }

    .top-bar-welcome i {
        font-size: 0.8rem
    }

    .top-bar-center {
        gap: 12px
    }

    .top-bar-link {
        font-size: 0.75rem;
        gap: 4px
    }

    .top-bar-link i {
        font-size: 0.75rem
    }

    .top-bar-text {
        display: inline
    }

    .top-bar-consultation {
        font-size: 0.8rem;
        padding: 2px 0;
        gap: 4px
    }

    .top-bar-consultation span {
        font-size: 0.8rem;
        display: inline
    }

    .top-bar-consultation i {
        font-size: 0.75rem
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 4px 0;
        font-size: 0.7rem;
        height: 32px;
        max-height: 32px;
        line-height: 1.2;
        overflow: hidden
    }

    .top-bar-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 10px;
        gap: 8px;
        height: 100%
    }

    .top-bar-left {
        display: none
    }

    .top-bar-center {
        gap: 8px;
        flex: 1;
        justify-content: center;
        min-width: 0;
        align-items: center
    }

    .top-bar-link {
        font-size: 0.7rem;
        gap: 4px;
        white-space: nowrap;
        display: flex;
        align-items: center
    }

    .top-bar-link i {
        font-size: 0.7rem;
        flex-shrink: 0
    }

    .top-bar-text.desktop-text {
        display: inline;
        font-size: 0.7rem
    }

    .top-bar-text.mobile-text {
        display: none
    }

    .top-bar-right {
        flex-shrink: 0;
        display: flex;
        align-items: center
    }

    .top-bar-consultation {
        font-size: 0.7rem;
        padding: 2px 0;
        gap: 4px;
        white-space: nowrap;
        display: flex;
        align-items: center
    }

    .top-bar-consultation .desktop-text {
        display: inline;
        font-size: 0.7rem
    }

    .top-bar-consultation .mobile-text {
        display: none
    }

    .top-bar-consultation i {
        font-size: 0.7rem
    }

    .navbar {
        margin: 0 !important;
        padding: 0 !important;
        border-top: none !important
    }

    .navbar.top-bar-visible {
        top: 32px !important
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 4px 0;
        font-size: 0.65rem;
        height: 32px;
        max-height: 32px;
        line-height: 1.2;
        overflow: hidden
    }

    .top-bar-container {
        padding: 0 8px;
        gap: 6px;
        height: 100%
    }

    .top-bar-center {
        gap: 6px;
        flex: 1;
        justify-content: center;
        align-items: center
    }

    .top-bar-link {
        font-size: 0.65rem;
        gap: 3px;
        white-space: nowrap;
        display: flex;
        align-items: center
    }

    .top-bar-link i {
        font-size: 0.65rem;
        flex-shrink: 0
    }

    .top-bar-text.desktop-text {
        display: inline;
        font-size: 0.65rem
    }

    .top-bar-text.mobile-text {
        display: none
    }

    .top-bar-consultation {
        font-size: 0.65rem;
        padding: 2px 0;
        gap: 3px;
        white-space: nowrap;
        display: flex;
        align-items: center
    }

    .top-bar-consultation .desktop-text {
        display: inline;
        font-size: 0.65rem
    }

    .top-bar-consultation .mobile-text {
        display: none
    }

    .top-bar-consultation i {
        font-size: 0.65rem
    }

    .navbar {
        margin: 0 !important;
        padding: 0 !important;
        border-top: none !important
    }

    .navbar.top-bar-visible {
        top: 32px !important
    }
}

/* NAVIGATION */
.navbar {
    position: sticky;
    top: 36px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 99999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 70px;
    margin: 0;
    padding: 0
}

.navbar.top-zero {
    top: 36px !important
}

/* Ensure navbar sticks correctly below top bar on mobile */
@media (max-width: 768px) {
    .navbar {
        top: 32px;
    }
}

.navbar.top-bar-visible {
    top: 36px !important
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 40px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
    margin-top: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    margin-bottom: 12px
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15))
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: 20px
}

.nav-auth {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0
}

/* Desktop/Mobile Visibility */
.desktop-only {
    display: block
}

.mobile-only {
    display: none
}

/* Hide mobile sidebar on desktop */
.mobile-sidebar {
    display: none;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0
}

.auth-login {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #e9ecef;
}

.auth-login:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.auth-signup {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.auth-signup:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.auth-user {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.auth-logout {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.auth-logout:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.auth-blog {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.auth-blog:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    color: white;
    text-decoration: none;
}

.auth-link i {
    font-size: 0.9rem;
}

.mt-5 {
    margin-top: 4rem !important;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0px 5px;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.08);
}

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

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

/* Active state for current page */
.nav-link.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

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

/* ========================================
   MEGA MENU STYLES
   ======================================== */
.nav-item.mega-dropdown {
    position: static !important;
}

.dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: none;
    /* Changed from block to none for hover effect logic */
    animation: slideDown 0.3s ease forwards;
}

.nav-item.mega-dropdown:hover .dropdown-menu.mega-menu {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-column {
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.2);
    display: flex;
    align-items: center;
}

.mega-menu-list li {
    margin-bottom: 8px;
}

.mega-menu-list .dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
}

.mega-menu-list .dropdown-item:hover {
    background-color: rgba(52, 152, 219, 0.08);
    color: #3498db;
    transform: translateX(5px);
}

.mega-menu-list .dropdown-item i {
    width: 20px;
    text-align: center;
    color: #95a5a6;
    transition: color 0.2s ease;
}

.mega-menu-list .dropdown-item:hover i {
    color: #3498db;
}

/* Mobile Sidebar Group Labels */
.sidebar-group-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #95a5a6;
}

/* Mobile Toggle - Right Side */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   3. HERO SECTION - OPTIMIZED (NO ANIMATIONS)
   NOTE: Hero styles are overridden by home.css for the home page
   ======================================== */
/* Hero base styles - overridden by home.css on home page */
.hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Static color overlay - disabled on home page via home.css */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 0%, transparent 60%);
    opacity: 0.9;
}

.hero-particles {
    display: none;
    /* Hidden for performance */
}




.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0.9;
}

/* Floating Geometric Shapes - Hidden for Performance */
.floating-shapes {
    display: none;
    /* Hidden for performance */
}

.shape {
    display: none;
    /* Hidden for performance */
}

/* Shape classes - all hidden for performance */


/* Static Grid Pattern */
.animated-grid {
    display: none;
    /* Hidden for performance */
}


/* Enhanced Mobile Responsiveness - Animations removed */
@media (max-width: 768px) {
    /* All animated elements hidden for performance */
}

/* Performance optimization for low-end devices */
/* Animations removed for performance optimization */

/* ========================================
   SECTION BACKGROUND ANIMATIONS
   ======================================== */

.section-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ========================================
   SERVICES SECTION ANIMATIONS - Colorful Geometric Shapes
   ======================================== */

.services {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
}

.services-bg {
    background: transparent;
}

.services-particles {
    display: none;
    /* Hidden for performance */
}

.services-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-shape {
    display: none;
    /* Hidden for performance */
}

.shape-circle-1,
.shape-triangle-1,
.shape-square-1,
.shape-circle-2 {
    display: none;
    /* Hidden for performance */
}

/* ========================================
   PROJECTS SECTION ANIMATIONS - Waves & Stars
   ======================================== */

.featured-projects {
    position: relative;
    overflow: hidden;
}

.projects-bg {
    background: transparent;
}

.projects-particles {
    display: none;
    /* Hidden for performance */
}

.projects-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wave {
    display: none;
    /* Hidden for performance */
}

.wave-1,
.wave-2,
.wave-3 {
    display: none;
    /* Hidden for performance */
}

.projects-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.star {
    display: none;
    /* Hidden for performance */
}

.star-1,
.star-2,
.star-3,
.star-4,
.star-5 {
    display: none;
    /* Hidden for performance */
}

/* ========================================
   ABOUT SECTION ANIMATIONS - Grid & Orbits
   ======================================== */

.about {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-bg {
    background: transparent;
}

.about-grid-pattern {
    display: none;
    /* Hidden for performance */
}

.about-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.orbit {
    display: none;
    /* Hidden for performance */
}

.orbit-1,
.orbit-2,
.orbit-3 {
    display: none;
    /* Hidden for performance */
}

.about-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dot {
    display: none;
    /* Hidden for performance */
}

.dot-1,
.dot-2,
.dot-3,
.dot-4,
.dot-5,
.dot-6 {
    display: none;
    /* Hidden for performance */
}

/* ========================================
   CONTACT SECTION ANIMATIONS - Gradient Mesh & Bubbles
   ======================================== */

.contact {
    position: relative;
    overflow: hidden;
}

.contact-bg {
    background: transparent;
}

.contact-gradient-mesh {
    display: none;
    /* Hidden for performance */
}

.contact-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bubble {
    display: none;
    /* Hidden for performance */
}

/* Bubble classes - all hidden for performance */


.contact-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    display: none;
    /* Hidden for performance */
}

/* Line classes - all hidden for performance */


/* Ensure content is above animations */
.services .container,
.featured-projects .container,
.about .container,
.contact .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVE ANIMATIONS FOR MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* All animated elements hidden for performance on mobile */
}

@media (max-width: 480px) {
    /* All animations removed for performance */
}

@media (max-width: 480px) {
    /* All animated elements hidden for performance */
}

/* Floating animated circles */
.hero-background::before,
.hero-background::after {
    display: none;
    /* Hidden for performance */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 4;
}

/* Responsive Hero Container */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 30px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }

    .hero-container {
        padding: 30px 15px 20px 15px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-title-line {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 15px;
        margin: 20px 0;
    }

    .stat-item {
        flex: 1 1 100%;
        padding: 12px 15px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* All animations removed for performance */
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-title-line {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #2ecc71;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
    display: block;
    opacity: 1;
}

.gradient-text {
    background: linear-gradient(90deg, #2ecc71, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    opacity: 1;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    text-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================================
   4. BUTTONS
   ======================================== */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5), 0 0 30px rgba(46, 204, 113, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

/* Icon animation removed */

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

/* Icon animation removed */

/* FLOATING CARDS */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
    opacity: 1;
    margin-top: 1rem;
}

.floating-cards {
    position: relative;
    width: 500px;
    height: 400px;
    margin: 0 auto
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 180px;
    min-height: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1)
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2)
}

.floating-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ecc71, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3)
}

.floating-card-icon i {
    font-size: 1.5rem;
    color: white
}

.floating-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white
}

.floating-card-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4
}

.floating-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

.floating-card-2 {
    bottom: 0;
    left: 0
}

.floating-card-3 {
    bottom: 0;
    right: 0
}


/* ========================================
   6. SECTIONS & BADGES
   ======================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2ecc71, #3498db);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   7. SERVICES SECTION
   ======================================== */
.services {
    padding: 40px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
    position: relative;
    opacity: 1;
}

.service-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Service icon animation removed */

.service-icon i {
    font-size: 2rem;
    color: white;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(46, 204, 113, 0.2));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-bg {
    opacity: 1;
}

.service-content {
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #2ecc71;
    font-size: 0.9rem;
}

.service-footer {
    text-align: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2ecc71;
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

/* Icon animation removed */

.services-cta {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    border-radius: 20px;
    padding: 50px 30px;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ========================================
   8. ABOUT SECTION
   ======================================== */
.about {
    padding: 40px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.achievement-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ecc71, #3498db);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.achievement-badge:hover::before {
    left: 100%;
}

.achievement-badge:hover {
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.achievement-badge i {
    font-size: 1.2rem;
    color: #f39c12;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   9. CONTACT SECTION
   ======================================== */
.contact {
    padding: 40px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    opacity: 1;
}

.contact-intro {
    margin-bottom: 20px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-social {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.contact-social h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.contact-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02), rgba(46, 204, 113, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #2ecc71;
}

.contact-item:nth-child(1):hover {
    border-left-color: #3498db;
}

.contact-item:nth-child(2):hover {
    border-left-color: #e74c3c;
}

.contact-item:nth-child(3):hover {
    border-left-color: #f39c12;
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: #3498db;
}

.contact-details p {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.contact-details span {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    font-weight: 500;
    display: block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details span {
    color: #2ecc71;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-item:hover .contact-icon {
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
}

.contact-item:hover .contact-icon::before {
    opacity: 0.2;
}

.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
}

.contact-form-container {
    opacity: 1;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.form-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: #3498db;
    margin-right: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input:focus+.form-icon,
.form-group textarea:focus+.form-icon {
    color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 65px;
}

.form-group .form-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s ease;
}

/* ========================================
   10. FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 30px;
    position: relative
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.5), transparent)
}

.footer-section {
    display: flex;
    flex-direction: column
}

.footer-section h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
}

/*.footer-brand{max-width:300px}*/
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0 25px
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem
}

.footer-contact-info .contact-item i {
    color: #2ecc71;
    font-size: 1rem;
    width: 16px
}

.footer-logo {
    display: flex;
    align-items: center;
}

/* Removed justify-content for responsive control */
.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2))
}

.footer-logo-img:hover {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3))
}

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

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0
}

.footer-links a:hover {
    color: #2ecc71
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease
}

.footer-links a:hover::before {
    width: 10px
}

.newsletter-signup {
    margin-top: 0;
}

/* Adjusted margin */
.newsletter-signup h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 15px
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px)
}

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

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2)
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center
}

.newsletter-form button:hover {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4)
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px
}

/* Removed align-items for responsive control */
.footer-social h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px
}

/* Removed justify-content for responsive control */
.social-link {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)
}

.social-link:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    border-color: transparent
}

.social-link i {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap
}

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

.footer-bottom-links a:hover {
    color: #2ecc71
}

/* ========================================
   12. MODAL STYLING
   ======================================== */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 25px 30px 20px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
}

.modal-title i {
    margin-right: 10px;
    color: #f39c12;
}

.modal-body {
    padding: 30px;
    background: #f8f9fa;
}

.modal-body .form-group {
    margin-bottom: 12px;
}

.modal-body .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-body .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.modal-body .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background: white;
}

.modal-body .btn-primary {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-body .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Keep CMS modal above the overlay and dim the background only */
#leadFormModal,
#leadFormModal .modal-dialog {
    z-index: 99999;
}

.modal-backdrop.show {
    z-index: 1040;
    background-color: rgba(15, 23, 42, 0.65);
}

.form-check {
    margin: 15px 0;
}

.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}

.text-primary {
    color: #3498db !important;
    text-decoration: none;
    font-weight: 600;
}

.text-primary:hover {
    color: #2980b9 !important;
    text-decoration: underline;
}

/* ========================================
   14. FORM VALIDATION STYLES
   ======================================== */
.form-control.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #e74c3c;
    font-weight: 500;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group .invalid-feedback {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

/* ========================================
   13. FLOATING CONTACT BUTTON
   ======================================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2980b9, #27ae60);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.floating-contact-btn:hover::before {
    opacity: 1;
}

.floating-contact-btn:hover {
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.6);
}

.floating-contact-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Icon animation removed */

.floating-contact-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-contact-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2c3e50;
}

.floating-contact:hover .floating-contact-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}


/* Floating contact button - no pulse animation */


/* Animation keyframes removed for performance */

/* ADDED FOR PRIVACY POLICY PAGE */
.policy-page .policy-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.policy-page .policy-content .card {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-page .policy-content h2 {
    font-weight: 700;
    color: #2c3e50;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3498db;
    display: inline-block;
    font-size: 28px;
}

.policy-page .policy-content h3 {
    font-weight: 600;
    color: #34495e;
    margin-top: 1.5rem;
}

.policy-page .policy-content ul {
    padding-left: 20px;
    line-height: 1.8;
}

.policy-page .policy-content ul li {
    margin-bottom: 0.5rem;
}


/* Desktop Styles - Hide Mobile Sidebar */
@media (min-width: 992px) {
    .mobile-sidebar {
        display: none !important;
    }
}

/* Tablet Styles */
@media (max-width: 991.98px) and (min-width: 769px) {
    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }

    .bottom-nav {
        display: none !important;
    }

    .mobile-sidebar {
        display: block !important;
    }

    main {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-cards {
        width: 450px;
        height: 380px;
        margin-top: 40px;
    }

    .floating-card {
        width: 170px;
        min-height: 130px;
        padding: 25px;
    }

    .floating-card-icon {
        width: 50px;
        height: 50px;
    }

    .floating-card-icon i {
        font-size: 1.3rem;
    }
}

/* ========================================
   12. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {

    .navbar {
        height: 60px;
    }

    .nav-container {
        padding: 0 20px;
        height: 60px;
        gap: 20px;
    }

    .nav-logo {
        margin-right: auto;
    }

    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    /* Hide auth buttons on mobile (moved to sidebar) */
    .nav-auth {
        display: none !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        max-width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 25px;
        height: auto;
        padding: 12px
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-contact-tooltip {
        display: none;
    }

    /* ========================================
       MOBILE SIDEBAR MENU
       ======================================== */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 10000;
        pointer-events: none;
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-sidebar.active {
        pointer-events: all;
    }

    .sidebar-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-sidebar.active .sidebar-overlay {
        opacity: 1;
    }

    .sidebar-content {
        position: absolute;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-sidebar.active .sidebar-content {
        left: 0;
    }

    /* Sidebar Header */
    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sidebar-title {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

    .sidebar-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .sidebar-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Sidebar Navigation */
    .sidebar-nav {
        flex: 1;
        padding: 20px 0;
    }

    .sidebar-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 25px;
        color: white;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .sidebar-item i:first-child {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }

    .sidebar-item:hover,
    .sidebar-item.active {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 30px;
    }

    .sidebar-item.active {
        background: rgba(255, 255, 255, 0.2);
        border-left: 4px solid white;
    }

    /* Sidebar Dropdown */
    .sidebar-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .sidebar-dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 8px 2px 5px;
        color: white;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
    }

    .sidebar-dropdown-toggle i:first-child {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }

    .dropdown-arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .sidebar-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .sidebar-dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 30px;
    }

    .sidebar-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .sidebar-dropdown.active .sidebar-dropdown-menu {
        max-height: 500px;
    }

    .sidebar-dropdown-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 25px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
    }

    .sidebar-dropdown-item i {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }

    .sidebar-dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }

    /* Sidebar Divider */
    .sidebar-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        margin: 15px 25px;
    }

    /* Sidebar Special Item */
    .sidebar-special {
        border-bottom: none;
        font-weight: 600;
    }

    /* Sidebar User Info */
    .sidebar-user-info {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.1);
    }

    .sidebar-user-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .sidebar-user-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .sidebar-user-name {
        color: white;
        font-weight: 600;
        font-size: 1rem;
    }

    .sidebar-user-email {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
    }

    /* Sidebar Buttons */
    .sidebar-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 25px;
        margin: 10px 25px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sidebar-btn-login {
        background: white;
        color: #3498db;
    }

    .sidebar-btn-login:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .sidebar-btn-register {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .sidebar-btn-register:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .sidebar-btn-logout {
        background: rgba(231, 76, 60, 0.8);
        color: white;
        width: calc(100% - 50px);
    }

    .sidebar-btn-logout:hover {
        background: rgba(231, 76, 60, 1);
        transform: translateY(-2px);
    }

    .sidebar-logout-form {
        margin: 0;
    }

    /* ========================================
       BOTTOM NAVIGATION BAR
       ======================================== */
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 9999;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px 12px;
        color: #6c757d;
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s ease;
        flex: 1;
        max-width: 80px;
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

    .bottom-nav-item span {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .bottom-nav-item.active {
        color: #3498db;
    }

    .bottom-nav-item.active i {
        color: #3498db;
        transform: scale(1.1);
    }

    .bottom-nav-item:hover {
        color: #3498db;
    }

    .bottom-nav-item:hover i {
        color: #3498db;
        transform: scale(1.1);
    }

    /* Add padding to main content for bottom nav on mobile only */
    main {
        padding-bottom: 10px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px 20px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-img {
        height: 55px;
        max-width: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 450px;
    }

    .floating-cards {
        position: static;
        width: 100%;
        height: auto;
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .floating-card {
        position: relative;
        width: 80%;
        max-width: 350px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }

    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        transform: none;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem
    }

    .section-title {
        font-size: 2rem
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem
    }

    .service-card {
        padding: 30px 20px
    }

    .contact-form {
        padding: 30px 20px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .contact-info {
        gap: 30px
    }

    .contact-methods {
        gap: 15px
    }

    .contact-item {
        padding: 20px
    }

    .contact-intro h3 {
        font-size: 1.5rem
    }

    .form-header h3 {
        font-size: 1.5rem
    }

    .logo-img {
        height: 40px;
        max-width: 160px
    }

    .footer-logo-img {
        height: 50px;
        max-width: 200px
    }

    /*.floating-cards{width:320px;height:300px}*/
    /*.floating-card{padding:20px;width:140px;min-height:110px;background:rgba(255,255,255,0.25)}*/
    /*.floating-card-icon{width:45px;height:45px}*/
    /*.floating-card-icon i{font-size:1.2rem}*/
    /*.floating-card-content h3{font-size:0.9rem;font-weight:700}*/
    /*.floating-card-content p{font-size:0.75rem;opacity:0.9}*/
    /*.floating-card-1{top:15%;left:50%;transform:translateX(-50%)}*/
    /*.floating-card-2{bottom:15%;left:0} */
    /*.floating-card-3{bottom:15%;right:0}*/
}

@media (max-width: 991.98px) {

    .footer .footer-section,
    .footer .newsletter-signup {
        text-align: center;
    }

    .footer .footer-logo,
    .footer .social-links {
        justify-content: center;
    }

    .footer .footer-links {
        display: inline-block;
        /* Allows text-align center to work on the list */
    }
}

@media (min-width: 1200px) {
    .logo-img {
        height: 55px;
        max-width: 220px;
    }

    .footer-logo-img {
        height: 70px;
        max-width: 280px;
    }
}