/*
Theme Name: WP SeedFinServe
Description: A modern, responsive WordPress theme for financial services with 5 dynamic pages
Version: 1.0
Author: Your Name
Text Domain: wp_seedfinserve
*/

/* CSS Variables for Theme Colors and Typography */
:root {
    --primary-dark: #212e73;
    --primary-medium: #77ae48;
    /* --primary-medium: #819067; */
    --primary-light: #B1AB86;
    --accent-light: #FEFAE0;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --border-color: #dee2e6;
    --shadow-light: rgba(0,0,0,0.05);
    --shadow-medium: rgba(0,0,0,0.08);
    --font-family: 'Work Sans', sans-serif;
    
    /* Hero Section Dynamic Colors */
    --hero-background-color: #212e73;
    --hero-text-color: #ffffff;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Typography Scale */
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-xxxl: 2.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--gray-light);
    font-size: var(--font-size-sm);
}

p{
	margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Section Spacing */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-sm {
    padding: var(--spacing-xl) 0;
}

.section-lg {
    padding: var(--spacing-xxl) 0;
}

/* Header Styles */
.site-header {
    background: var(--white);
    color: var(--text-dark);   
    box-shadow: 0 1px 3px var(--shadow-light);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

/* Logo Section */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-logo {
    max-width: 300px;
}

.custom-logo img {
    max-height: 120px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: opacity 0.3s ease;
}

.site-title a:hover {
    opacity: 0.8;
}

.site-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    margin-top: 0.25rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 35px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.primary-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.primary-menu li {
    position: relative;
    margin: 0;
}

.primary-menu a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 0.25rem;
}

.primary-menu a:hover {
    color: var(--primary-dark);
    font-weight: 700;
}

.primary-menu > li:last-child > a:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-page-item > a {
    color: var(--primary-dark);
    font-weight: 700;
}

.primary-menu > li:last-child > a {
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

/* Dropdown Menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 300px;
    box-shadow: 0 5px 15px var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
	border:1px solid #ddd;
}

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

.primary-menu .sub-menu li {
    display: block;
    margin: 0;
}

.primary-menu .sub-menu a {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    margin: 0;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.primary-menu .sub-menu a:hover {
    background-color: var(--primary-medium);
    color: var(--white);
}

/* Content Area */
.site-content {
    /* padding: var(--spacing-lg) 0; */
    min-height: 60vh;
}

.project-header{
    padding: 20px 0;
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 1px 3px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.page-title {
    font-size: var(--font-size-xxxl);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.page-description {
    font-size: var(--font-size-md);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: var(--font-size-xxxl);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-header p {
    font-size: var(--font-size-md);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards and Sections */
.card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 1px 3px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 2px 8px var(--shadow-medium);
}

.card h2 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.card p:last-child {
    margin-bottom: 0;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-medium);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: background-color 0.2s ease;
    border: 1px solid var(--primary-medium);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--primary-medium);
    border-color: var(--primary-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    padding-bottom: 0;
    margin-top: var(--spacing-xl);
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-widget h3 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.footer-widget p, .footer-widget a {
    color: var(--accent-light);
    text-decoration: none;
    line-height: 1.6;
}

.footer-widget a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-dark);
    margin-top: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .custom-logo img{
        width: 90px;
        height: auto;
    }

  
    .site-branding {
        flex: 1;
        justify-content: flex-start;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .main-navigation {
        order: 4;
        flex-basis: 100%;
        display: none;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 1px 3px var(--shadow-light);
        border: 1px solid var(--border-color);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .primary-menu {
        flex-direction: column;
        padding: var(--spacing-sm) 0;
    }
    
    .primary-menu li {
        width: 100%;
    }
    
    .primary-menu a {
        border-bottom: 1px solid var(--border-color);
        margin: 0;
        border-radius: 0;
        color: var(--text-dark);
    }
    
    .primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--gray-light);
        box-shadow: none;
        margin-left: var(--spacing-sm);
        border-radius: 0;
    }
    
    .primary-menu .sub-menu a {
        color: var(--text-dark);
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .page-title {
        font-size: var(--font-size-xxl);
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-xxl) 0;
    
    position: relative;
    overflow: hidden;
    background: var(--hero-background-color);
    color: var(--hero-text-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(129, 144, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(33, 46, 115, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(129, 144, 103, 0.02) 50%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(129, 144, 103, 0.02)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Animated Background Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Additional Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    background: var(--primary-medium);
    border-radius: 50%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    background: var(--primary-dark);
    border-radius: 50%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 5%;
    background: var(--primary-light);
    border-radius: 50%;
    animation-delay: 4s;
}

.hero-shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 5%;
    background: var(--accent-light);
    border-radius: 50%;
    animation-delay: 6s;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.particle-4 {
    width: 30px;
    height: 30px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.particle-5 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 30%;
    animation-delay: 4s;
}

.particle-6 {
    width: 35px;
    height: 35px;
    top: 80%;
    left: 30%;
    animation-delay: 5s;
}

.particle-7 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 5%;
    animation-delay: 1.5s;
}

.particle-8 {
    width: 45px;
    height: 45px;
    top: 15%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.15;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    padding-right: var(--spacing-lg);
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.hero-description {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    text-align: left;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    font-size: var(--font-size-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* box-shadow: 0 4px 20px var(--shadow-light); */
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 85%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: var(--font-size-xl);
        text-align: center;
    }
    
    .hero-description {
        font-size: var(--font-size-sm);
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Hide particles on mobile for better performance */
    .hero-particles {
        display: none;
    }
}

/* About Us Section */
.about-us-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(33, 46, 115, 0.85), rgba(119, 174, 72, 0.85)), url('images/about-us-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-us-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-us-image:hover img {
    transform: scale(1.05);
}

.about-us-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-us-text h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-us-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-us-text .btn {
    margin-top: 1rem;
    display: inline-block;
}

/* Responsive About Us */
@media (max-width: 768px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us-text h2 {
        font-size: 2rem;
    }
    
    .about-us-text h3 {
        font-size: 1.5rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
}

/* Our Services Section */
.our-services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.service-box {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 1px 3px var(--shadow-light);
    transition:  0.2s ease;
    border: 2px solid var(--primary-medium);
}

.service-box:hover {
    box-shadow: 0 2px 8px var(--shadow-medium);
    border-color: var(--primary-medium);
    transform: scale(1.04);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.2s ease;
}

.service-box:hover .service-icon {
    background: var(--primary-medium);
}

.service-box h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-box p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    min-height: 4rem;
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-link {
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-xs);
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}
 
.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover::after {
    transform: translateX(2px);
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.services-cta .btn {
    font-size: var(--font-size-md);
    padding: var(--spacing-sm) var(--spacing-lg);
}

/* Responsive Services */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-box {
        padding: var(--spacing-md);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-box h3 {
        font-size: var(--font-size-md);
    }
    
    .service-box p {
        font-size: var(--font-size-sm);
        min-height: auto;
    }
}

/* Our Projects Section */
.our-projects-section {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.project-box {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm);
    text-align: center;
    box-shadow: 0 1px 3px var(--shadow-light);
    transition:  0.2s ease;
    border: 2px solid var(--primary-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
}



.project-box:hover {
    box-shadow: 0 2px 8px var(--shadow-medium);
    border-color: var(--primary-medium);
    transform: scale(1.02);
}

.project-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.2s ease;
}

.project-box:hover .project-icon {
    background: var(--primary-dark);
}

.project-box h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-link {
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-xs);
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--primary-medium);
    border-radius: var(--border-radius-sm);
    margin-top: auto;
}

 

.project-link:hover {
    background: var(--primary-medium);
    color: var(--white);
}

.project-link:hover::after {
    transform: translateX(2px);
}

/* Project Images and Excerpts for Dynamic Content */
.project-image {
    width: 100%;
    height: 200px;
   
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card a {
    margin-top: var(--spacing-md);
}

.project-box:hover .project-image img {
    transform: scale(1.05);
}

.project-excerpt {
    color: var(--text-medium);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Project Image Placeholder */
.project-image.placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.project-image.placeholder:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.placeholder-icon {
    margin-bottom: var(--spacing-xs);
    opacity: 0.6;
}

.placeholder-icon svg {
    width: 48px;
    height: 48px;
}

.project-image.placeholder:hover .placeholder-icon {
    opacity: 0.8;
}

.placeholder-text {
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Tag for Projects */
.featured-tag {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), 0 2px 8px rgba(247, 147, 30, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.projects-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.projects-cta .btn {
    font-size: var(--font-size-md);
    padding: var(--spacing-sm) var(--spacing-lg);
}

/* Responsive Projects */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .project-box {
        padding: var(--spacing-lg) var(--spacing-md);
        min-height: 180px;
    }
    
    .project-icon {
        width: 50px;
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }
    
    .project-box h3 {
        font-size: var(--font-size-md);
        margin-bottom: var(--spacing-sm);
    }
}

/* Hero Section */
.hero-section {
 
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

 

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--gray-light);
    padding: 4rem 0;
    margin-top: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    color: var(--primary-medium);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}



/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Contact Info */
.contact-item {
    text-align: center;
    padding: 1.5rem;
}

.contact-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Map Section */
.map-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.map-placeholder {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e9ecef;
    border-radius: 5px;
}
 
/* CTA Section */
.cta-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
    border-radius: 10px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Process Section */
.process-step {
    text-align: center;
    padding: 2rem;
}

.process-step h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Service Items */
.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.service-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Achievement Items */
.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-item h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Single Post Styles */
.article-single-post {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1rem;
}

.post-thumbnail {
    margin-bottom: 2rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.post-content h2, .post-content h3, .post-content h4 {
    color: #667eea;
    margin: 2rem 0 1rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-tags {
    margin-bottom: 2rem;
}

.post-tags a {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous, .nav-next {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-previous:hover, .nav-next:hover {
    background: #667eea;
    color: white;
}

.nav-previous a, .nav-next a {
    text-decoration: none;
    color: inherit;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
}

/* 404 Error Page */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-title {
    font-size: 8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-subtitle {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions .btn {
    margin: 0 0.5rem;
}

.error-suggestions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.error-suggestions h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.error-suggestions a:hover {
    text-decoration: underline;
}

/* Project Page Styles */
.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}
.related-projects .project-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 0;
}

.project-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-item {
    background: white;
    /* padding: 2rem; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    text-align: center;
}

.category-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.project-count {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.metric-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.metric-item h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Latest News Section */
.latest-news {
    padding: 4rem 0;
    background: var(--gray-light);
    margin-top: 2rem;
}

.latest-news .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.latest-news .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.latest-news .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.latest-news .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.latest-news .card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
    display: flex;
    flex-direction: column;
}

.latest-news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-medium);
}

.latest-news .post-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    background: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-news .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news .card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.latest-news .card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.latest-news .card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-news .card h3 a:hover {
    color: var(--primary-medium);
}

.latest-news .post-meta {
    margin-bottom: 1rem;
}

.latest-news .post-meta small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.latest-news .post-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.latest-news .card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Responsive Latest News */
@media (max-width: 900px) {
    .latest-news .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .latest-news .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .latest-news {
        padding: 3rem 0;
    }
    
    .latest-news .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .latest-news .section-header h2 {
        font-size: 1.8rem;
    }
    
    .latest-news .card {
        padding: 1.5rem;
    }
    
    .latest-news .post-thumbnail {
        height: 180px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
}

.faq-container {
    width: 100%;
}



.faq-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--primary-medium);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-medium);
}

.faq-question {
    padding: 1.5rem;
    background: var(--gray-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-medium);
    color: var(--white);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question:hover .faq-toggle {
    color: var(--white);
}

.faq-item.active .faq-toggle {
    /* transform: rotate(45deg); */
    color: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-content {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-content p {
    margin: 0 0 1rem 0;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.no-faqs {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.no-faqs p {
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 1.25rem;
    }
}



/* Blog Page Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

 

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-article {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-medium);
}

.article-image {
    height: 350px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-article:hover .article-image img {
    transform: scale(1.05);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    opacity: 0.8;
}

.article-content {
    padding: var(--spacing-lg);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.article-meta i {
    color: var(--primary-medium);
    font-size: 0.9em;
}

.article-meta a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-meta a:hover {
    color: var(--primary-dark);
}

.article-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.article-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.article-title a:hover {
    color: var(--primary-medium);
}

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.article-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.read-more-link {
    color: var(--primary-medium);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.read-more-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

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

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Blog Sidebar */
.blog-sidebar {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-medium);
    height: fit-content;
    border: 1px solid var(--border-color);
}

.sidebar-widget {
    margin-bottom: var(--spacing-xl);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-medium);
    padding-bottom: var(--spacing-sm);
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.recent-post-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.recent-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.recent-post-title a:hover {
    color: var(--primary-medium);
}

.recent-post-date {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.category-item a:hover {
    color: var(--primary-medium);
}

.category-name {
    font-weight: normal;
}

.category-count {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: var(--primary-medium);
    color: var(--white);
    border-color: var(--primary-medium);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.blog-pagination .current {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: var(--spacing-xxl);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.no-posts h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
}

.no-posts p {
    color: var(--text-muted);
    font-size: var(--font-size-md);
}



/* Tag Cloud Styles */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag-link {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--gray-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tag-link:hover {
    background: var(--primary-medium);
    color: var(--white);
    border-color: var(--primary-medium);
    transform: translateY(-1px);
}

/* Archives List Styles */
.archives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archives-list li {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.archives-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.archives-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
}

.archives-list a:hover {
    color: var(--primary-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-content {
        padding: var(--spacing-md);
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .blog-sidebar {
        padding: var(--spacing-lg);
    }
    
    .blog-pagination ul {
        gap: var(--spacing-xs);
    }
    
    .blog-pagination a,
    .blog-pagination span {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: var(--font-size-xs);
    }
    

    
    .tag-cloud {
        gap: var(--spacing-xs);
    }
    
    .tag-link {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
} 

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.contact-info-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-info-header h2 {
    color: var(--primary-dark);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.contact-info-header p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
	border:1px solid #ddd;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-medium);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
}

.contact-details h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
} */

.contact-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.contact-cta h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-md);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-header h2 {
    color: var(--primary-dark);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 100%;
}

/* Contact Form 7 Styles */
.wpcf7 {
    max-width: 100%;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(129, 144, 103, 0.1);
}

.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: var(--primary-medium);
    color: var(--white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: var(--spacing-sm);
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 144, 103, 0.3);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Contact Form 7 Validation Styles */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    display: block;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545;
}

.wpcf7-form .wpcf7-not-valid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.wpcf7-response-output {
    margin: var(--spacing-md) 0 0 0;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-md);
    text-align: center;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wpcf7-response-output.wpcf7-spam-blocked {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Contact Map Section */
.contact-map-section {
    margin-top: var(--spacing-xl);
}

.map-container {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.map-container h2 {
    color: var(--primary-dark);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.map-container > p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-lg);
}

.map-placeholder {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--gray-light);
    border-radius: var(--border-radius-md);
    border: 2px dashed var(--border-color);
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-medium);
    margin-bottom: var(--spacing-md);
}

.map-placeholder p {
    margin: var(--spacing-xs) 0;
    font-size: var(--font-size-md);
}

.map-placeholder p:first-of-type {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-info-section,
    .contact-form-section {
        padding: var(--spacing-lg);
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .contact-icon {
        align-self: center;
    }

    .contact-cta {
        padding: var(--spacing-md);
    }

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

    .wpcf7-form input[type="submit"] {
        padding: var(--spacing-md);
    }

    .map-placeholder {
        min-height: 200px;
    }

    .map-placeholder i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section,
    .map-container {
        padding: var(--spacing-md);
    }

    .contact-info-header h2,
    .form-header h2,
    .map-container h2 {
        font-size: var(--font-size-lg);
    }
	
	.contact-details {
		width:100%;
	}

    .contact-details h3 {
        font-size: var(--font-size-md);
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
} 

/* --- Testimonials Section --- */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(rgba(33, 46, 115, 0.85), rgba(119, 174, 72, 0.85)), url('images/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonials-section .section-header {
    margin-bottom: var(--spacing-xl);
}

.testimonial-slider {
    width: 100%;
    margin: 0 auto;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 var(--spacing-sm);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.testimonial-slide:last-child {
    margin-right: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    z-index: 2;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px var(--shadow-light);
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-icon {
    font-size: 2.5rem;
    color: var(--primary-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-light);
}

.testimonial-review {
    font-size: var(--font-size-md);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-review p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.testimonial-author {
    margin-top: var(--spacing-sm);
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: var(--font-size-md);
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Testimonials Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.testimonial-prev.disabled,
.testimonial-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonial-prev.disabled:hover,
.testimonial-next.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
    .testimonial-slide {
        padding: var(--spacing-md);
    }
    .testimonial-nav {
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: var(--spacing-xl) 0;
        background-attachment: scroll; /* Disable fixed attachment on mobile for better performance */
    }
    .testimonial-slide {
        padding: var(--spacing-md);
    }
    .testimonial-nav {
        margin-top: var(--spacing-md);
    }
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .testimonials-section .section-header h2 {
        font-size: var(--font-size-xxl);
    }
    .testimonials-section .section-header p {
        font-size: var(--font-size-sm);
    }
}

/* Slick Slider Custom Styles */
.testimonial-slider .slick-slide {
    padding: 0 var(--spacing-sm);
}

.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--white);
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Hover effect removed as requested */

.testimonial-slider .slick-prev {
    left: -60px;
}

.testimonial-slider .slick-next {
    right: -60px;
}

@media (max-width: 1200px) {
    .testimonial-slider .slick-prev {
        left: -50px;
    }
    
    .testimonial-slider .slick-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .testimonial-slider .slick-prev {
        left: -40px;
    }
    
    .testimonial-slider .slick-next {
        right: -40px;
    }
}

/* --- Featured Projects Section --- */
.featured-projects-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(rgba(33, 46, 115, 0.85), rgba(119, 174, 72, 0.85)), url('images/testimonials-bg.jpg');
    position: relative;
    overflow: hidden;
}

.featured-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 46, 115, 0.1) 0%, rgba(119, 174, 72, 0.1) 100%);
    pointer-events: none;
}

.featured-projects-section .container {
    position: relative;
    z-index: 2;
}

.featured-projects-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.featured-projects-section .section-header h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-projects-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.featured-projects-slider {
    width: 100%;
    margin: 0 auto;
}

.featured-project-slide {
    margin: 0 var(--spacing-sm);
    height: auto;
}

.featured-project-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-project-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.featured-project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project-content:hover .featured-project-image img {
    transform: scale(1.05);
}

/* .project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.project-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
} */

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.featured-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.featured-project-details {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.project-category {
    color: var(--primary-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.project-excerpt {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.project-stats {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.stat {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
    align-self: flex-start;
}

/* Slick Slider Styles for Featured Projects */
.featured-projects-slider .slick-slide {
    padding: 0 var(--spacing-xs);
}

.featured-projects-slider .slick-dots {
    bottom: -40px;
}

.featured-projects-slider .slick-dots li button:before {
    color: var(--white);
    opacity: 0.5;
}

.featured-projects-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

.featured-projects-slider .slick-prev,
.featured-projects-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.featured-projects-slider .slick-prev {
    left: -60px;
}

.featured-projects-slider .slick-next {
    right: -60px;
}

.featured-projects-slider .slick-prev:before,
.featured-projects-slider .slick-next:before {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Design for Featured Projects */
@media (max-width: 1200px) {
    .featured-projects-slider .slick-prev {
        left: 10px;
    }
    
    .featured-projects-slider .slick-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .featured-projects-slider .slick-prev,
    .featured-projects-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .featured-projects-slider .slick-prev {
        left: 5px;
    }
    
    .featured-projects-slider .slick-next {
        right: 5px;
    }
    
    .featured-projects-section .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .featured-projects-section .section-header p {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 600px) {
    .featured-projects-section {
        padding: var(--spacing-xl) 0;
    }
    
    .featured-project-slide {
        margin: 0 var(--spacing-xs);
    }
    
    .featured-project-details {
        padding: var(--spacing-md);
    }
    
    .project-title {
        font-size: var(--font-size-md);
    }
    
    .project-stats {
        gap: var(--spacing-xs);
    }
    
    .stat {
        font-size: 10px;
        padding: 3px 8px;
    }
}

 
 

.company-story {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 46, 115, 0.02) 0%, rgba(119, 174, 72, 0.02) 100%);
    pointer-events: none;
}

.story-content h2 {
    color: var(--primary-dark);
    font-size: var(--font-size-xxl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.story-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

.story-text p {
    margin-bottom: var(--spacing-md);
}

.story-text p:last-child {
    margin-bottom: 0;
}

.mission-values {
    margin: var(--spacing-xl) 0;
}

.mission-values .grid {
    gap: var(--spacing-xl);
}

.mission-values .card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-values .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.mission-values .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.mission-values .card h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.mission-values .card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.mission-values .card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.values-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-content li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: var(--spacing-md);
}

.values-content li:last-child {
    border-bottom: none;
}

.values-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: var(--font-size-sm);
}

.values-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.gutenberg-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
     
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.content-wrapper {
    max-width: 100%;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.content-wrapper h1 {
    font-size: var(--font-size-xxl);
}

.content-wrapper h2 {
    font-size: var(--font-size-xl);
}

.content-wrapper h3 {
    font-size: var(--font-size-lg);
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.content-wrapper ul,
.content-wrapper ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-wrapper li {
    margin-bottom: var(--spacing-sm);
}

.content-wrapper blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--text-muted);
    background: rgba(33, 46, 115, 0.05);
    padding: var(--spacing-lg);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-md) 0;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-wrapper a:hover {
    border-bottom-color: var(--primary-color);
}

.cta-section {
 
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    margin-top: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header {
        background-attachment: scroll;
        padding: var(--spacing-lg) 0;
    }
    
    .company-story {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .story-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .story-text {
        font-size: var(--font-size-sm);
        text-align: left;
    }
    
    .mission-values .card {
        padding: var(--spacing-lg);
    }
    
    .mission-values .card h3 {
        font-size: var(--font-size-lg);
    }
    
    .gutenberg-content {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .content-wrapper h1 {
        font-size: var(--font-size-xl);
    }
    
    .content-wrapper h2 {
        font-size: var(--font-size-lg);
    }
    
    .cta-section {
        padding: var(--spacing-xl) 0;
    }
    
    .cta-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .cta-content p {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 480px) {
    .company-story {
        padding: var(--spacing-md);
    }
    
    .story-content h2 {
        font-size: var(--font-size-lg);
    }
    
    .mission-values .card {
        padding: var(--spacing-md);
    }
    
    .gutenberg-content {
        padding: var(--spacing-md);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-lg);
    }
    
    .cta-content p {
        font-size: var(--font-size-sm);
    }
}

/* Social Media Icons and Footer Enhancements */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::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;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 46, 115, 0.3);
}

.social-link.facebook-link:hover {
    background: #1877f2;
}

.social-link.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.x-twitter-link:hover {
    background: #000000;
}

.social-link.youtube-link:hover {
    background: #ff0000;
}

.social-link i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

/* Enhanced Footer Styling */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #252433 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-light));
    border-radius: 2px;
}

.footer-widget p, 
.footer-widget a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

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

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}
 
.footer-widget ul li a:hover {
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.footer-widget ul li a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Contact Details Styling */
.contact-phone-link,
.contact-email-link {
    color: var(--accent-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* .contact-phone-link:hover,
.contact-email-link:hover {
    color: var(--white) !important;
    text-decoration: underline;
} */

.office-location,
.business-hours {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-widget {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget ul li a {
        padding-left: 0;
    }
    
    .footer-widget ul li a::before {
        display: none;
    }
    
    .footer-widget ul li a:hover {
        padding-left: 0;
    }
	
	
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .footer-widget h3 {
        font-size: 1.1rem;
    }
	
	.footer-links{
		display: block;
	}
}

/* Single Service Page Title Section */
.service-title-section {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.service-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.service-title-section .service-title {
    font-size: var(--font-size-xxxl);
    color: var(--white);
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.service-title-section .service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Service Single Page Layout */
.service-single {
    margin-bottom: var(--spacing-xl);
}

.service-header {
    margin-bottom: var(--spacing-xl);
}

.service-header .service-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-header .service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-header .service-image:hover img {
    transform: scale(1.02);
}

.service-header .service-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-header .service-excerpt {
    margin-bottom: var(--spacing-md);
}

.service-header .service-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Features Section */
.service-features {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl) 0;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-features h2 {
    text-align: center;
    font-size: var(--font-size-xxl);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Service Process Section */
.service-process {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.service-process h2 {
    text-align: center;
    font-size: var(--font-size-xxl);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.step-content h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Related Services Section */
.related-services {
    margin: var(--spacing-xl) 0;
}

.related-services h2 {
    text-align: center;
    font-size: var(--font-size-xxl);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .service-image {
    position: relative;
    overflow: hidden;
}

.service-card .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-content {
    padding: var(--spacing-lg);
}

.service-card .service-content h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-card .service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.service-card .service-content .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .service-content .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Service Placeholder */
.service-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.service-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.service-placeholder span {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Responsive adjustments for service title section */
@media (max-width: 768px) {
    .service-title-section {
        padding: var(--spacing-md) 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .service-title-section .service-title {
        font-size: var(--font-size-xxl);
    }
    
    .service-title-section .service-title::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .service-title-section {
        padding: var(--spacing-sm) 0;
    }
    
    .service-title-section .service-title {
        font-size: var(--font-size-xl);
    }
    
    .service-title-section .service-title::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }
    
    .service-features h2,
    .service-process h2,
    .related-services h2 {
        font-size: var(--font-size-xl);
    }
    
    .feature-item,
    .process-step {
        padding: var(--spacing-md);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Page Header with Background Image */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: var(--spacing-lx) 0;
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 46, 115, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.page-header-overlay {
    position: relative;
    z-index: 2;     
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.page-header .page-title {
    font-size: var(--font-size-xxxl);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-header .page-description, .page-header p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .post-title{
        font-size: var(--font-size-xl);
    }
    
    .page-header {
        padding: var(--spacing-xl) 0;
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .page-header .page-title {
        font-size: var(--font-size-xxl);
    }
    
    .page-header .page-description {
        font-size: var(--font-size-md);
    }
    
    .page-header-overlay {
        padding: 0 var(--spacing-md);
    }
}

/* Fallback for pages without featured images */
.page-header:not([style*="background-image"]) {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
}

.page-header:not([style*="background-image"])::before {
    display: none;
}

/* Add an icon after parent menu items */
/* .main-navigation .menu-item-has-children > a::after {
  content: " ▼";  
  font-size: 0.7em;
  margin-left: 5px;
  color: #555;
} */

.main-navigation .menu-item-has-children > a::after {
  content: "\f078"; /* Unicode for fa-chevron-down */
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; /* required for solid icons */
  margin-left: 5px;
  font-size: 0.7em;
  color: #555;
}

#page article.project-single .project-info .project-title{
	text-align: center;
	font-size:2.5rem !important;
}

 .ft-address-row {
	 display: flex;
	 gap: 1rem;
	 padding: 1rem;
	 border: 1px solid #ccc;
	 margin: 1rem 0;
	 background-color: #f9f9f9;
	 border-radius:10px;
	 box-shadow:2px 2px 5px rgba(255, 255, 255, 0.5);
}

.ft-address-col {
	flex: 1;
	padding:10px;
	border:2px solid #ccc;
	border-radius:20px;
}

.ft-label {
	font-weight: bold;
	display: block;
	margin-bottom: 0.25rem;
}

.ft-value {
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	
  .ft-address-row{
		flex-flow:wrap;
	  	gap:10px;
	  
  }
	
  .ft-address-col {
	flex:none;
	 
	border-radius:10px;
    width:100%;
  }
}
