/*
Theme Name: Custom-DVC
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2026
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2026
BlankSlate is distributed under the terms of the GNU GPL
*/


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #FF6B35;
            --dark-navy: #0A1628;
            --white: #FFFFFF;
            --light-gray: #F5F7FA;
            --medium-gray: #64748B;
            --green: #10B981;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Work Sans', sans-serif;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--dark-navy);
            background: var(--white);
        }

	
		/* ===== HAMBURGER ===== */
        .menu-toggle {
            display: none;
            width: 30px;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            background: #111;
            margin: 6px 0;
            border-radius: 2px;
            transition: all 0.4s ease;
        }

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

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

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


        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(10, 22, 40, 0.1);
        }

.menu-item-has-children {
    position: relative;
}
.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;      /* below parent */
    left: 0;        /* aligned to parent, not page */

    min-width: 220px;
    background: #fff;
    padding:0;
    margin: 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 9999;
}


.menu-item-has-children > .sub-menu li a{width: 100%;
    display: inline-block;
    padding: 8px;
    border-bottom: 1px solid #eee;}
.menu-item-has-children > .sub-menu li a:hover{    background: #142239;
    color: #fff;}




        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-placeholder {
            height: 50px;
            width: 200px;
            background: var(--orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 24px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-navy);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--orange);
        }


        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
            color: white;
            padding: 2rem 2em 1em 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            color: var(--orange);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 22px;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-section {
            padding: 2rem 0rem;
            background: var(--light-gray);
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
             
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }



        /* Footer */
        .footer {
            background: var(--dark-navy);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--orange);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }

        .footer-section a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.7;
        }





/* === LAYOUT === */
.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Main Posts */
.blog-posts {
    width: 72%;
}

/* Sidebar */
.blog-sidebar {
    width: 28%;
    position: sticky;
    top: 120px;
}

/* === BLOG CARD === */
.blog-item {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 0.6s ease both;
}

.blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* === INNER FLEX === */
.blog-item-inner {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* === IMAGE === */
.blog-thumb {
    width: 340px;
    min-width: 340px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-thumb img {
    transform: scale(1.08);
}

/* === CONTENT === */
.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #ff6a00;
}

/* === META === */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === EXCERPT === */
.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* === READ MORE BUTTON === */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(255,106,0,0.35);
}

/* === SIDEBAR WIDGETS === */
.blog-sidebar .widget {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.blog-sidebar .widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.blog-sidebar .widget-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

.blog-sidebar li a{justify-content: space-between;
    align-items: center;
    color: rgb(51, 51, 51);
    font-weight: 500;
    padding: 12px 18px;
    background: rgb(247, 247, 247);
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;display: inline-block;
    width: 100%;
    margin-bottom: 11px;}
.blog-sidebar li{list-style: none;}
.blog-sidebar li a:hover {
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #fff;
    transform: translateX(6px);
}
.blog-sidebar{}


.single_post {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    animation: articleFade 0.7s ease both;
}


.single-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 35px;
}

.single-thumb img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.single-post:hover .single-thumb img {
    transform: scale(1.08);
}

/* Gradient overlay */
.single-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0),
        rgba(0,0,0,0.35)
    );
}


.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.single-meta span {
    background: #f4f6f8;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
}


.single-content {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.single-content p {
    margin-bottom: 22px;
}

.single-content h2 {
    font-size: 28px;
    margin: 50px 0 20px;
}

.single-content h3 {
    font-size: 22px;
    margin: 40px 0 15px;
}

.single-content ul {
    padding-left: 20px;
    margin: 20px 0;
}

.single-content ul li {
    margin-bottom: 10px;
}


.author-box {
    display: flex;
    gap: 25px;
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    border-radius: 18px;
    border-left: 6px solid #ff6a00;
}

.author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
}


.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 50px 0;
}

.post-navigation a {
    flex: 1;
    padding: 18px 24px;
    border-radius: 14px;
    background: #f8f8f8;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #fff;
    transform: translateY(-4px);
}



.comment-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.comment-reply-link {
    font-weight: 600;
    color: #ff6a00;
}


.blog-sidebar .widget {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-sidebar .widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}



/* === COMMENT FORM WRAPPER === */
.comment-respond {
    margin-top: 60px;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.comment-reply-title {
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
}

.comment-reply-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

/* === FORM GRID === */
.comment-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comment-form-comment {
    grid-column: span 2;
}

/* === FLOATING INPUTS === */
.comment-form-url {
    display: none !important;
}

.comment-respond {
    margin-top: 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.comment-reply-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.comment-reply-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

.comment-form {
    display: block;
}

.comment-form p {
    margin-bottom: 22px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    background: #f9f9f9;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus Effect */
.comment-form input:focus,
.comment-form textarea:focus {
    background: #fff;
    border-color: #ff6a00;
    box-shadow: 0 0 0 4px rgba(255,106,0,0.15);
}

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

.comment-notes,
.logged-in-as {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit input[type="submit"] {
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #fff;
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,106,0,0.35);
}

.comment-list li {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.comment-author img {
    border-radius: 50%;
}

.comment-metadata {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.comment-reply-link {
    font-weight: 600;
    color: #ff6a00;
}


/* === LOGGED IN TEXT === */
.logged-in-as,
.comment-notes {
    grid-column: span 2;
    font-size: 13px;
    color: #666;
}


.comment-list {
    margin-top: 50px;
}

.comment-list li {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.comment-author img {
    border-radius: 50%;
}

.comment-metadata {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #ff6a00;
}


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




/* === ANIMATION === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


		/* Responsive */
		@media (min-width: 969px) {
            .menu-item-has-children:hover > .sub-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        
        }
        
        @media (max-width: 968px) {
            
            
            body .menu-item-has-children.active .sub-menu{position: initial; opacity: 1;  visibility: visible;}
            .menu-item-has-children > .sub-menu li a{padding-left: 0;}
            
            .menu-toggle {
                display: block;z-index: 9999999;
            }
            
            .submenu-arrow {
                font-size: 25px;
                transition: transform 0.3s ease;
                float:right;
                background: #000;
                width: 30px;
                color: #fff;
                text-align: center;
                line-height: 29px;
            }
	
	.menu-item-has-children > .sub-menu{display: block;
    visibility: visible;
    opacity: 1;    
	padding: 0;
	box-shadow: inherit;
	
	}
	.content-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.benefits-side {
		position: relative;
		top: 0;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.hero h1 {
		font-size: 36px;
	}

	.content-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.benefits-side {
		position: relative;
		top: 0;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.hero h1 {
		font-size: 36px;
	}


	.menu-toggle {
		display: block;z-index: 9999999;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -320px;
		width: 300px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		padding: 60px 25px;
		gap: 20px;
		transition: right 0.4s ease;
		box-shadow: -20px 0 40px rgba(0,0,0,0.15);
		z-index: 1001;
		overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
	}

	.nav-links.active {
		right: 0;
	}
	.nav-links li{ width: 100%;border-bottom: 1px solid #ccc;}
	.nav-links li a {
		font-size: 18px;
	}

	/* Overlay */
	.menu-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease;
		z-index: 1000;
	}

	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}

}

@media (max-width: 991px) {
    .blog-layout {
        flex-direction: column;
    }

    .blog-posts,
    .blog-sidebar {
        width: 100%;
    }

    .blog-item-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-thumb {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }


    .single-post {
        padding: 25px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .post-navigation {
        flex-direction: column;
    }

}






        