/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1773943495
Updated: 2026-03-19 18:04:55

 /*
Theme Name: Digital Solutions Child
Template: hello-elementor
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important; /* Prevents horizontal scroll */
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --background-light: #f3f4f6;
    --white: #ffffff;
    --dark-bg: #0f172a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

/* ===== HERO SECTION FIXES ===== */
.ds-hero-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-white) !important;
    width: 100%;
    overflow: hidden;
}

.ds-hero-parallax * {
    color: var(--text-white) !important;
}

.ds-hero-parallax h1,
.ds-hero-parallax p,
.ds-hero-parallax span,
.ds-hero-parallax .ds-stat-number,
.ds-hero-parallax .ds-stat-label {
    color: var(--text-white) !important;
}

.ds-hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.ds-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37,99,235,0.95) 0%, rgba(30,64,175,0.98) 100%);
    z-index: -1;
}

.ds-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.ds-hero-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ds-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ds-stat-item {
    text-align: center;
}

.ds-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* ===== TRUSTED BY SECTION ===== */
.ds-trusted-by {
    padding: 40px 0;
    background: var(--background-light);
    text-align: center;
    width: 100%;
}

/* ===== CATEGORIES SECTION ===== */
.ds-categories-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.ds-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== PROMO BANNER FIXES ===== */
.ds-promo-banner {
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    width: 100%;
    position: relative;
}

.ds-promo-banner * {
    color: var(--text-white) !important;
}

.ds-promo-banner h2,
.ds-promo-banner p,
.ds-promo-banner span,
.ds-promo-banner .ds-promo-tag,
.ds-promo-banner .ds-promo-feature {
    color: var(--text-white) !important;
}

.ds-promo-tag {
    display: inline-block;
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ===== BLOG POSTS ===== */
.ds-recent-posts {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.ds-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ds-blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== PRODUCTS SECTION ===== */
.ds-featured-products {
    padding: 80px 0;
    background: var(--background-light);
    width: 100%;
}

.ds-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== FAQ SECTION ===== */
.ds-faq-section {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.ds-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ===== SIDEBAR SECTION FIX ===== */
.ds-sidebar-section {
    padding: 80px 0;
    background: var(--background-light);
    width: 100%;
}

.ds-sidebar-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Sidebar styling */
.ds-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== NEWSLETTER ===== */
.ds-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 100%;
}

.ds-newsletter * {
    color: var(--text-white) !important;
}

.ds-newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
}

/* ===== INSTAGRAM FEED ===== */
.ds-instagram-feed {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
}

.ds-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

/* ===== BUTTON STYLES ===== */
.ds-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ds-btn-primary {
    background: var(--primary-color);
    color: var(--text-white) !important;
}

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

.ds-btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white) !important;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
    .ds-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ds-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .ds-sidebar-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ds-container {
        padding: 0 15px;
    }
    
    .ds-hero h1 {
        font-size: 2rem;
    }
    
    .ds-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ds-promo-features {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .ds-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .ds-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}                                                                                                                         /* ===== DIGIDORIA CUSTOM HEADER STYLES ===== */

:root {
    --header-height: 80px;
    --header-scrolled-height: 70px;
    --header-bg: transparent;
    --header-bg-scrolled: rgba(255, 255, 255, 0.95);
    --header-text: #ffffff;
    --header-text-scrolled: #1f2937;
    --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Header Base Styles */
.digidoria-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(0);
}

/* Scrolled State */
.digidoria-header.scrolled {
    height: var(--header-scrolled-height);
    background: var(--header-bg-scrolled);
    backdrop-filter: blur(10px);
    box-shadow: var(--header-shadow);
}

.digidoria-header.scrolled .digidoria-brand,
.digidoria-header.scrolled .digidoria-tagline,
.digidoria-header.scrolled .digidoria-menu > li > a {
    color: var(--header-text-scrolled);
}

.digidoria-header.scrolled .digidoria-search-input {
    background: rgba(0, 0, 0, 0.05);
    color: var(--header-text-scrolled);
}

.digidoria-header.scrolled .digidoria-search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.digidoria-header.scrolled .digidoria-search-submit {
    color: var(--header-text-scrolled);
}

/* Header Container */
.digidoria-header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.digidoria-logo {
    flex-shrink: 0;
}

.digidoria-logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.digidoria-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--header-text);
    letter-spacing: -0.5px;
    transition: color 0.3s;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digidoria-header.scrolled .digidoria-brand {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digidoria-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.digidoria-header.scrolled .digidoria-tagline {
    color: rgba(0, 0, 0, 0.6);
}

/* Navigation Menu */
.digidoria-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.digidoria-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.digidoria-menu > li {
    position: relative;
}

.digidoria-menu > li > a {
    display: block;
    padding: 10px 0;
    color: var(--header-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.digidoria-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
}

.digidoria-menu > li > a:hover::after,
.digidoria-menu > li.current-menu-item > a::after {
    width: 100%;
}

.digidoria-menu > li > a:hover {
    color: #2563eb;
}

.digidoria-header.scrolled .digidoria-menu > li > a:hover {
    color: #2563eb;
}

/* Submenu Styles */
.digidoria-submenu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.digidoria-menu > li:hover .digidoria-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.digidoria-submenu li {
    position: relative;
}

.digidoria-submenu a {
    display: block;
    padding: 10px 25px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.digidoria-submenu a:hover {
    background: linear-gradient(90deg, #f3f4f6, #ffffff);
    color: #2563eb;
    padding-left: 30px;
}

/* Header Actions */
.digidoria-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Form */
.digidoria-search {
    position: relative;
}

.digidoria-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.digidoria-header.scrolled .digidoria-search-form {
    background: rgba(0, 0, 0, 0.05);
}

.digidoria-search-input {
    width: 200px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--header-text);
    font-size: 14px;
    outline: none;
}

.digidoria-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.digidoria-search-submit {
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    transition: color 0.3s;
    font-size: 16px;
}

.digidoria-search-submit:hover {
    color: #2563eb;
}

/* Mobile Toggle Button */
.digidoria-mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.digidoria-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--header-text);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.digidoria-header.scrolled .digidoria-mobile-toggle span {
    background: var(--header-text-scrolled);
}

.digidoria-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.digidoria-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.digidoria-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Placeholder (for homepage) */
.digidoria-hero-placeholder {
    height: var(--header-height);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .digidoria-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        transition: left 0.3s;
        margin: 0;
        padding: 40px 20px;
        overflow-y: auto;
        z-index: 9998;
    }

    .digidoria-header.scrolled .digidoria-nav {
        top: var(--header-scrolled-height);
    }

    .digidoria-nav.active {
        left: 0;
    }

    .digidoria-menu {
        flex-direction: column;
        gap: 0;
    }

    .digidoria-menu > li > a {
        color: #1f2937;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .digidoria-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .digidoria-submenu.active {
        display: block;
    }

    .digidoria-mobile-toggle {
        display: flex;
    }

    .digidoria-search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .digidoria-header-container {
        padding: 0 20px;
    }

    .digidoria-brand {
        font-size: 24px;
    }

    .digidoria-tagline {
        display: none;
    }

    .digidoria-search-input {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .digidoria-search-form {
        display: none;
    }

    .digidoria-header-actions {
        gap: 10px;
    }
}

/* Animation for header on page load */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.digidoria-header {
    animation: slideDown 0.5s ease-out;
}                                                                                                                                             