/*
Theme Name: Vedha Structures Pro
Theme URI: https://vedhastructures.com
Author: Vedha Development Team
Description: Professional WordPress theme for pre-engineered building and construction companies with modern design, custom post types, and testimonials.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: vedha-structures
*/

:root {
    --primary: #0a2463;
    --secondary: #fb8500;
    --accent: #219ebc;
    --dark: #023047;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2b2d42;
    --text-light: #6c757d;
    --success: #06d6a0;
    --danger: #ef476f;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff9500 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 133, 0, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.section-padding {
    padding: 100px 0;
}

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

.section-header-main {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.site-header.scrolled .site-logo .site-name-top {
    color: var(--secondary);
    text-shadow: none;
}

.site-header.scrolled .site-logo .site-name-bottom {
    color: var(--primary);
    text-shadow: none;
}

.site-header.scrolled #primary-menu a {
    color: var(--dark);
    text-shadow: none;
}

.site-header.scrolled .header-cta .btn {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff9500 100%);
    color: var(--white);
    border-color: transparent;
    text-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

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

.custom-logo-wrapper .custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo-wrapper img {
    height: 60px;
    width: auto;
    max-width: none;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.site-header.scrolled .custom-logo-wrapper img {
    filter: none;
}

.site-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo .site-name-top {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.site-logo .site-name-bottom {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

#primary-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

#primary-menu a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

#primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

#primary-menu a:hover::after,
#primary-menu .current-menu-item a::after {
    width: 100%;
}

#primary-menu a:hover {
    color: var(--secondary);
}

.site-main {
    padding-top: 0;
}

/* Header CTA - transparent state */
.header-cta .btn {
    background: var(--secondary);
    border: 2px solid var(--white);
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-cta .btn:hover {
    background: var(--white);
    color: var(--primary);
    text-shadow: none;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: linear-gradient(135deg, var(--dark) 0%, #011627 100%);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Footer About Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .custom-logo-link img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-site-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-name-top {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 5px;
}

.footer-name-bottom {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-address i {
    color: var(--secondary);
    margin-top: 4px;
    width: 16px;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-address a:hover {
    color: var(--secondary);
}

/* Footer Links */
.footer-links ul,
.footer-services ul,
.footer-services-list,
#footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li,
.footer-services-list li,
#footer-menu li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-services-list li a,
#footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before,
.footer-services ul li a::before,
.footer-services-list li a::before,
#footer-menu li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--secondary);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-services-list li a:hover,
#footer-menu li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Footer Social */
.footer-social p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}
.wp-block-list{
    padding:0px 40px;
}
.social-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
}
.about-content {
    padding: 10px 0;
}
/* Footer CTA */
.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.footer-cta h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;    
}

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

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits i {
    color: var(--danger);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

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

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

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

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-address p {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-name-top {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .footer-name-bottom {
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


