.elementor-8 .elementor-element.elementor-element-8db8241{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-13971a1 *//* WordPress & Elementor Pro Compatible Header Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hind-cloud-header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 107, 107, 0.1);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        .hind-cloud-header.scrolled {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 80px;
            position: relative;
        }

        /* Logo Section */
        .header-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .logo-icon:hover {
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
            transform: translateY(-1px);
        }

        /* Logo Image - for when using actual logo */
        .logo-image {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .company-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        .company-tagline {
            font-size: 0.75rem;
            color: #7f8c8d;
            font-weight: 400;
            margin: 0;
            letter-spacing: 0.5px;
        }

        /* Main Navigation */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .main-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
            align-items: center;
        }

        .main-menu li {
            position: relative;
        }

        .main-menu > li > a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
            display: block;
        }

        .main-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            transition: width 0.3s ease;
        }

        .main-menu > li > a:hover::after,
        .main-menu > li.current-menu-item > a::after {
            width: 100%;
        }

        .main-menu > li > a:hover {
            color: #ff6b6b;
        }

        /* Dropdown Menu */
        .main-menu li.has-dropdown {
            position: relative;
        }

        .main-menu li.has-dropdown > a::before {
            content: "▼";
            font-size: 0.7rem;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .main-menu li.has-dropdown:hover > a::before {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10000;
            list-style: none;
            padding: 15px 0;
            margin: 0;
            border: 1px solid rgba(255, 107, 107, 0.1);
        }

        .main-menu li.has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            padding: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background: rgba(255, 107, 107, 0.05);
            color: #ff6b6b;
            border-left-color: #ff6b6b;
            padding-left: 25px;
        }

        /* CTA Buttons */
        .header-cta {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cta-button {
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cta-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .cta-secondary {
            background: transparent;
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
        }

        .cta-secondary:hover {
            background: #ff6b6b;
            color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 10001;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
            backdrop-filter: blur(20px);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list li {
            margin: 20px 0;
        }

        .mobile-menu-list a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            padding: 15px 0;
        }

        .mobile-menu-list a:hover {
            color: #ff6b6b;
            transform: scale(1.1);
        }

        .mobile-cta-buttons {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Search Form */
        .header-search {
            position: relative;
            margin-right: 15px;
        }

        .search-toggle {
            background: none;
            border: none;
            color: #2c3e50;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .search-toggle:hover {
            background: rgba(255, 107, 107, 0.1);
            color: #ff6b6b;
        }

        .search-form {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 20px;
            min-width: 300px;
            z-index: 10000;
        }

        .search-form.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .search-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ecf0f1;
            border-radius: 25px;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #ff6b6b;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }

        /* Admin Bar Compatibility */
        .admin-bar .hind-cloud-header {
            top: 32px;
        }

        @media (max-width: 782px) {
            .admin-bar .hind-cloud-header {
                top: 46px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 15px;
            }

            .main-menu {
                gap: 20px;
            }

            .header-cta {
                gap: 10px;
            }

            .cta-button {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .header-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .header-container {
                min-height: 70px;
            }

            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .company-name {
                font-size: 1.5rem;
            }

            .company-tagline {
                font-size: 0.7rem;
            }

            .header-search {
                margin-right: 10px;
            }

            .search-form {
                min-width: 250px;
                right: -50px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 10px;
            }

            .logo-text {
                display: none;
            }

            .search-form {
                min-width: 200px;
                right: -100px;
            }
        }

        /* Elementor Compatibility */
        .elementor-widget-container .hind-cloud-header {
            margin: 0;
            position: relative;
        }

        .elementor-section .hind-cloud-header {
            width: 100%;
        }

        /* WordPress Customizer Live Preview */
        .customize-partial-edit-shortcut {
            position: absolute;
            z-index: 10002;
        }

        /* Smooth Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hind-cloud-header {
            animation: fadeInDown 0.6s ease-out;
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .hind-cloud-header {
                background: white;
                border-bottom: 2px solid #000;
            }

            .main-menu > li > a {
                color: #000;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }/* End custom CSS */