/* CIC Website - Professional Header Styling */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.blog-meta i {
    color: var(--golden);
    margin-right: 0.5rem;
}

.blog-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.blog-categories {
    margin-top: auto;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(10, 93, 54, 0.1);
    color: var(--primary-green);
    border-radius: 2rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.blog-category:hover {
    background-color: var(--golden);
    color: var(--dark-green);
}

/* Single Blog Post */
.blog-post-header {
    padding: 120px 0 60px;
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.blog-post-header .container {
    position: relative;
    z-index: 2;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.blog-post-meta i {
    color: var(--golden);
    margin-right: 0.5rem;
}

.blog-post-content {
    padding: 60px 0;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.blog-post-content h2, .blog-post-content h3 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--golden);
    padding: 1rem 1.5rem;
    background-color: rgba(10, 93, 54, 0.05);
    margin: 2rem 0;
    font-style: italic;
}

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

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

.blog-post-tags {
    margin: 2rem 0;
}

.blog-post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(10, 93, 54, 0.1);
    color: var(--primary-green);
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.blog-post-tag:hover {
    background-color: var(--golden);
    color: var(--dark-green);
}

.blog-author {
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 3px solid var(--golden);
}

.blog-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-info h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.blog-comments {
    margin-top: 3rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-green);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.comment-reply {
    margin-left: 4rem;
}

.comment-form {
    margin-top: 3rem;
}

.comment-form h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.comment-form .form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.comment-form .form-control:focus {
    border-color: var(--golden);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.comment-form .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    transition: var(--transition-normal);
}

.comment-form .btn-primary:hover {
    background-color: var(--golden);
    border-color: var(--golden);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Blog Sidebar */
.blog-sidebar {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

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

.sidebar-widget h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden);
    position: relative;
}

.search-form {
    position: relative;
}

.search-form .form-control {
    padding-right: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.75rem 1.5rem;
}

.search-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.search-form .btn:hover {
    background-color: var(--golden);
    border-color: var(--golden);
}

.recent-post {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

.recent-post-content h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-post-content h5 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-content h5 a:hover {
    color: var(--primary-green);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.recent-post-date i {
    color: var(--golden);
    margin-right: 0.5rem;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.categories-list a:hover {
    color: var(--primary-green);
}

.categories-list .badge {
    background-color: var(--golden);
    color: var(--dark-green);
    font-weight: 500;
    border-radius: 2rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
}

.tags-list a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(10, 93, 54, 0.1);
    color: var(--primary-green);
    border-radius: 2rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.tags-list a:hover {
    background-color: var(--golden);
    color: var(--dark-green);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.blog-pagination .page-item .page-link {
    color: var(--primary-green);
    border-color: rgba(0,0,0,0.1);
    margin: 0 3px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.blog-pagination .page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.blog-pagination .page-item .page-link:hover {
    background-color: var(--golden);
    border-color: var(--golden);
    color: var(--dark-green);
}

/* Responsive Blog Styles */
@media (max-width: 991.98px) {
    .blog-sidebar {
        margin-top: 3rem;
    }
    
    .blog-post-header {
        padding: 100px 0 50px;
    }
}

@media (max-width: 767.98px) {
    .blog-image {
        height: 180px;
    }
    
    .blog-post-header {
        padding: 80px 0 40px;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment-reply {
        margin-left: 2rem;
    }
}

@media (max-width: 575.98px) {
    .blog-post-meta {
        flex-wrap: wrap;
    }
    
    .blog-post-meta span {
        margin-bottom: 0.5rem;
    }
    
    .blog-post-header h1 {
        font-size: 1.75rem;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
}

/* Global Styles */
:root {
    --primary-green: #0a5d36;
    --secondary-green: #0e8a4f;
    --light-green: #1db954;
    --dark-green: #073b21;
    --golden: #d4af37;
    --golden-light: #f1d875;
    --golden-dark: #a17c1a;
    --primary-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    --golden-gradient: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
    --accent-color: var(--golden);
    --text-primary: var(--primary-green);
    --text-secondary: #4a5568;
    --text-light: #f7fafc;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 0.375rem;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar Styling */
.top-bar {
    background: var(--primary-gradient) !important;
    padding: 0.5rem 0 !important;
    font-size: 0.875rem;
    position: relative;
    z-index: 1030;
    border-bottom: 2px solid var(--golden);
}

/* Hero Sections */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0;
    position: relative;
    background-attachment: fixed;
}

/* Services Page Styles */
.hero-section {
    padding: 150px 0;
    position: relative;
    background-attachment: fixed;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-image-container img {
    transition: var(--transition-normal);
    transform: scale(0.98);
}

.about-image-container:hover img {
    transform: scale(1);
}

.mission-card, .vision-card {
    transition: var(--transition-normal);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.bg-green-gradient {
    background: var(--primary-gradient);
}

.bg-gold-gradient {
    background: var(--golden-gradient);
}

.value-card {
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--golden) !important;
}

.text-green {
    color: var(--primary-green);
}

.text-gold {
    color: var(--golden);
}

.team-card {
    transition: var(--transition-normal);
}

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

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: white;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background-color: var(--golden);
}

.achievement-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-card {
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* Service Cards Styling */
.service-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--golden);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.3;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content h3 i {
    color: var(--golden);
}

.service-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.service-features h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.service-features ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: -1.25rem;
    font-weight: bold;
}

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

.service-card .btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

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

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
}

.services-overview h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Call to Action Section */
.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-100px, 100px);
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background-color: var(--golden);
    border-color: var(--golden);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.cta-section .btn-primary:hover {
    background-color: var(--golden-light);
    border-color: var(--golden-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Process Section Styling */
.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-step {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-green);
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--golden);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 3;
}

.process-step h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* FAQ Section Styling */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background-color: rgba(10, 93, 54, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(10, 93, 54, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a5d36'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
}

/* Testimonials Section Styling */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    transition: var(--transition-normal);
}

.testimonial-rating i {
    color: var(--golden);
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--golden);
    font-weight: bold;
}

.testimonial-author-image img {
    border: 2px solid var(--golden);
}

/* Divider Styling */
.divider {
    display: block;
    height: 4px;
    background: var(--golden);
    margin: 0.5rem auto !important;
    width: 80px;
}

/* Section Subtitle Styling */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Process, Testimonials, FAQ Section Styling */
.process-section .section-title,
.testimonials-section .section-title,
.faq-section .section-title {
    color: var(--primary-green);
    font-weight: 700;
}

.process-section .divider,
.testimonials-section .divider,
.faq-section .divider {
    background: var(--golden);
}

.process-section .section-subtitle,
.testimonials-section .section-subtitle,
.faq-section .section-subtitle {
    color: var(--text-secondary);
}

/* Footer Styling */
.footer {
    background: var(--secondary-gradient) !important;
    border-top: 3px solid var(--golden);
    color: var(--text-light);
    position: relative;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
    padding: 80px 0 30px;
}

/* Responsive Footer Columns */
@media (max-width: 1199.98px) {
    .footer {
        padding: 70px 0 25px;
    }
    
    .footer-heading {
        font-size: 1.4rem;
        margin-bottom: 1.75rem;
    }
    
    .footer-about-text {
        font-size: 0.98rem;
    }
    
    .footer-links a {
        font-size: 0.94rem;
    }
    
    .contact-item p {
        font-size: 0.94rem;
    }
    
    .map-container {
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-about-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .footer-links a {
        font-size: 0.92rem;
        margin-bottom: 0.55rem;
        padding-left: 18px;
    }
    
    .footer-links a::before {
        font-size: 10px;
    }
    
    .contact-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }
    
    .map-container {
        margin-top: 1rem;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    h5.text-white.fw-bold.mb-3 {
        padding-left: 20px;
        text-align: left;
    }
    
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-heading {
        text-align: left !important;
        margin-bottom: 1.5rem;
        padding-left: 20px;
    }
    
    .footer-heading:after {
        left: 20px !important;
        transform: none !important;
    }
    
    .footer-about-text {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
    }
    
    .footer-links {
        text-align: left;
        padding-left: 20px;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer .contact-info .contact-item {
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .social-links {
        justify-content: flex-start;
        padding-left: 20px;
    }
    
    .footer-heading.text-center.text-md-start {
        text-align: left !important;
        padding-left: 20px;
    }
    
    .footer-bottom .row {
        text-align: left;
    }
    
    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
        padding-left: 20px;
    }
    
    .footer-bottom .text-center.text-md-start {
        text-align: left !important;
        padding-left: 20px;
    }
    
    .map-container {
        height: 220px;
        margin: 0.5rem auto;
        max-width: 90%;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 40px 0 10px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-about-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin-right: 10px;
    }
    
    .contact-icon i {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .map-container {
        height: 180px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        right: 15px;
        bottom: 15px;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
}

.footer-heading {
    color: var(--golden);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: left;
}


.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background: var(--golden-gradient);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    border-radius: 1.5px;
}

.footer-about-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 95%;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition-fast);
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
}

.footer-links a::before {
    content: '\f105'; /* Font Awesome arrow icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--golden);
    font-size: 11px;
    opacity: 0.8;
    transition: var(--transition-fast);
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--golden-light);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 5px;
}

.social-links {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    transition: var(--transition-normal);
    margin-right: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--golden-gradient);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-normal);
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: var(--golden);
}

.social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--golden);
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: var(--golden-gradient);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-item:hover .contact-icon i {
    color: var(--dark-green);
}

.contact-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
    margin-top: 2px;
}

.contact-item:hover p {
    color: var(--golden-light);
}

.contact-info p {
    margin-bottom: 0;
    transition: var(--transition-fast);
}

.contact-info .d-flex:hover p {
    color: var(--golden-light);
}

.business-hours {
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 0.1px;
}

.map-container {
    border: 3px solid var(--golden);
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,93,54,0.1) 0%, rgba(10,93,54,0) 100%);
    pointer-events: none;
    z-index: 2;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--golden-gradient);
    color: var(--dark-green);
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.back-to-top:hover {
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--golden-light);
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top i {
    transition: var(--transition-normal);
}

.back-to-top:hover i {
    animation: bounce 0.8s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Footer Bottom Styling */
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, var(--golden) 50%, rgba(255,255,255,0) 100%);
}

.copyright-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.text-golden {
    color: var(--golden) !important;
}

.footer-link {
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--golden);
    transition: var(--transition-normal);
}

.footer-link:hover::after {
    width: 100%;
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.hero-section {
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 93, 54, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 0;
    animation: pulse-bg 8s infinite alternate;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.animate-slide-in-right {
    animation: slideInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

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

.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    transform: translateY(0);
}

.hero-btn::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: all 0.6s ease;
    z-index: -1;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-image img {
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

.hero-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Custom Text Colors */
.text-golden {
    color: var(--golden);
}

.text-green {
    color: var(--primary-green);
}

/* Custom Hero Button Styles */
.btn-green-gold {
    background-color: var(--primary-green);
    border: 2px solid var(--golden);
    color: white;
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-green-gold:hover {
    background-color: var(--secondary-green);
    border-color: var(--golden-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-gold-green {
    background-color: var(--golden);
    border: 2px solid var(--primary-green);
    color: var(--dark-green);
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-gold-green:hover {
    background-color: var(--golden-light);
    border-color: var(--secondary-green);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments for hero animations */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .animate-slide-in-right {
        animation-delay: 0.6s;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* Hero Particles Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particles 15s linear infinite;
}

.hero-particles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 16s;
    width: 7px;
    height: 7px;
}

.hero-particles span:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 4s;
    animation-duration: 13s;
    width: 9px;
    height: 9px;
}

.hero-particles span:nth-child(4) {
    top: 70%;
    left: 10%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.hero-particles span:nth-child(5) {
    top: 60%;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 12s;
    width: 8px;
    height: 8px;
}

.hero-particles span:nth-child(6) {
    top: 80%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(7) {
    top: 30%;
    left: 90%;
    animation-delay: 7s;
    animation-duration: 18s;
    width: 6px;
    height: 6px;
}

.hero-particles span:nth-child(8) {
    top: 90%;
    left: 30%;
    animation-delay: 9s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(9) {
    top: 50%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
    width: 7px;
    height: 7px;
}

.hero-particles span:nth-child(10) {
    top: 15%;
    left: 45%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes particles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
        border-radius: 20%;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.6;
        border-radius: 50%;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
        border-radius: 20%;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
        border-radius: 50%;
    }
}

/* ================================
   New Interior Design Hero Section
   ================================ */

.hero-section-new {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    color: white;
}

/* Enhanced Background Layers */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Primary gradient overlay */
        linear-gradient(
            135deg, 
            rgba(10, 93, 54, 0.88) 0%, 
            rgba(0, 0, 0, 0.75) 40%, 
            rgba(212, 175, 55, 0.65) 100%
        ),
        /* Subtle texture pattern */
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 93, 54, 0.15) 0%, transparent 50%),
        /* Interior design inspired pattern */
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 
        100% 100%,
        300px 300px,
        400px 400px,
        40px 40px,
        40px 40px;
    background-position: 
        center,
        0% 0%,
        100% 100%,
        0 0,
        20px 20px;
    animation: backgroundShift 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 
            center,
            0% 0%,
            100% 100%,
            0 0,
            20px 20px;
    }
    50% {
        background-position: 
            center,
            20% 20%,
            80% 80%,
            10px 10px,
            30px 30px;
    }
}

/* Additional Interior Design Background Elements */
.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Marble texture effect */
        linear-gradient(45deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        /* Fabric weave pattern */
        linear-gradient(0deg, rgba(212, 175, 55, 0.05) 50%, transparent 50%),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 50%, transparent 50%);
    background-size: 
        60px 60px,
        60px 60px,
        20px 20px,
        20px 20px;
    background-position:
        0 0,
        30px 30px,
        0 0,
        10px 10px;
    opacity: 0.4;
    animation: textureFloat 30s linear infinite;
    z-index: 0;
}

@keyframes textureFloat {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* Enhanced Geometric Background Patterns */
.hero-geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Add Interior Design Inspired Background Elements */
.hero-geometric-patterns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Architectural grid pattern */
        linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        /* Art deco inspired pattern */
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.08) 3px, transparent 3px);
    background-size:
        80px 80px,
        80px 80px,
        120px 120px,
        160px 160px;
    background-position:
        0 0,
        0 0,
        0 0,
        40px 40px;
    animation: architecturalMove 40s linear infinite;
}

.hero-geometric-patterns::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Luxury interior pattern */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(212, 175, 55, 0.03) 15px,
            rgba(212, 175, 55, 0.03) 16px
        );
    animation: luxuryPattern 35s ease-in-out infinite;
}

@keyframes architecturalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

@keyframes luxuryPattern {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

/* Add Luxury Interior Background Textures */
.hero-section-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Damask-inspired pattern */
        radial-gradient(ellipse 40px 60px at 50px 50px, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 30px 45px at 100px 100px, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        /* Wallpaper texture simulation */
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(212, 175, 55, 0.02) 25%, 
            transparent 50%, 
            rgba(212, 175, 55, 0.02) 75%, 
            transparent 100%
        ),
        /* Subtle wood grain effect */
        repeating-linear-gradient(
            0deg,
            rgba(139, 69, 19, 0.01) 0px,
            rgba(160, 82, 45, 0.01) 1px,
            transparent 2px,
            transparent 4px
        ),
        /* Fabric weave texture */
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.005) 0px,
            rgba(255, 255, 255, 0.005) 2px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.008) 0px,
            rgba(212, 175, 55, 0.008) 2px,
            transparent 2px,
            transparent 4px
        );
    background-size:
        100px 100px,
        150px 150px,
        200px 100%,
        8px 8px,
        12px 12px,
        12px 12px;
    background-position:
        0 0,
        50px 50px,
        0 0,
        0 0,
        0 0,
        6px 6px;
    opacity: 0.7;
    animation: interiorTexture 45s ease-in-out infinite;
    z-index: 1;
}

@keyframes interiorTexture {
    0%, 100% {
        background-position:
            0 0,
            50px 50px,
            0 0,
            0 0,
            0 0,
            6px 6px;
        opacity: 0.7;
    }
    33% {
        background-position:
            20px 20px,
            70px 30px,
            50px 0,
            2px 2px,
            3px 3px,
            9px 9px;
        opacity: 0.5;
    }
    66% {
        background-position:
            -10px 10px,
            30px 70px,
            -20px 0,
            -2px -2px,
            -3px -3px,
            3px 3px;
        opacity: 0.8;
    }
}

/* Enhanced Design Elements with Interior Focus */
.floating-design-elements::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-image:
        /* Chandelier shadow effect */
        radial-gradient(ellipse 80px 120px at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        /* Crystal reflection */
        conic-gradient(from 45deg at 50% 30%, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.1) 60deg, 
            transparent 120deg, 
            rgba(212, 175, 55, 0.08) 180deg, 
            transparent 240deg, 
            rgba(255, 255, 255, 0.05) 300deg, 
            transparent 360deg
        );
    border-radius: 50%;
    animation: chandelierGlow 15s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
}

.floating-design-elements::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 20%;
    width: 150px;
    height: 300px;
    background:
        /* Floor lamp glow effect */
        linear-gradient(to top,
            rgba(255, 248, 220, 0.1) 0%,
            rgba(212, 175, 55, 0.08) 30%,
            transparent 70%
        ),
        /* Lamp shade pattern */
        repeating-linear-gradient(
            0deg,
            rgba(212, 175, 55, 0.02) 0px,
            rgba(212, 175, 55, 0.02) 2px,
            transparent 2px,
            transparent 12px
        );
    border-radius: 75px 75px 10px 10px;
    animation: lampGlow 12s ease-in-out infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes chandelierGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.4;
    }
}

@keyframes lampGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.05);
    }
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.4);
    animation: geometricFloat 20s ease-in-out infinite;
    backdrop-filter: blur(1px);
}

/* Interior Design Inspired Shape 1 - Circular Mirror Frame */
.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 10%;
    left: 5%;
    border: 3px solid rgba(212, 175, 55, 0.5);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 30%, transparent 70%);
    box-shadow: 
        inset 0 0 20px rgba(212, 175, 55, 0.1),
        0 0 30px rgba(212, 175, 55, 0.15);
    animation-delay: 0s;
}

.shape-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

/* Interior Design Inspired Shape 2 - Picture Frame */
.shape-2 {
    width: 100px;
    height: 140px;
    top: 60%;
    right: 10%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px;
    transform: rotate(15deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation-delay: 5s;
}

.shape-2::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: linear-gradient(45deg, rgba(10, 93, 54, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

/* Interior Design Inspired Shape 3 - Decorative Medallion */
.shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 30%;
    right: 30%;
    border: 2px solid rgba(212, 175, 55, 0.6);
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    position: relative;
    animation-delay: 10s;
}

.shape-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40%;
    height: 40%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.3) 50%, transparent 70%);
    border-radius: 2px;
}

/* Interior Design Inspired Shape 4 - Architectural Element */
.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 93, 54, 0.08) 100%),
        conic-gradient(from 45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(30deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(212, 175, 55, 0.05);
    animation-delay: 15s;
}

.shape-4::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.1) 75%);
    background-size: 8px 8px;
}

/* Add additional decorative shapes */
.shape-5 {
    position: absolute;
    width: 60px;
    height: 200px;
    top: 15%;
    right: 5%;
    background: linear-gradient(to bottom, 
        rgba(212, 175, 55, 0.2) 0%,
        transparent 30%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 70%,
        rgba(212, 175, 55, 0.2) 100%);
    border-radius: 30px;
    transform: rotate(-10deg);
    animation: geometricFloat 25s ease-in-out infinite 8s;
    opacity: 0.6;
}

.shape-6 {
    position: absolute;
    width: 180px;
    height: 2px;
    bottom: 35%;
    right: 15%;
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(212, 175, 55, 0.4) 25%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(212, 175, 55, 0.4) 75%,
        transparent 100%);
    transform: rotate(25deg);
    animation: geometricFloat 18s ease-in-out infinite 12s;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Floating Design Elements */
.floating-design-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.design-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
    font-size: 1.5rem;
    animation: designElementFloat 15s ease-in-out infinite;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.element-2 { top: 25%; right: 15%; animation-delay: 3s; }
.element-3 { bottom: 30%; left: 8%; animation-delay: 6s; }
.element-4 { top: 45%; right: 5%; animation-delay: 9s; }
.element-5 { bottom: 15%; right: 20%; animation-delay: 12s; }

@keyframes designElementFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.9;
    }
}

/* Hero Content Styling */
.hero-content-new {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
    color: var(--dark-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Enhanced Title Styling */
.hero-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title-new {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.title-accent {
    display: block;
    font-size: 0.6em;
    color: var(--golden);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 22px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-size: 44px;
}

.title-decorator {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.decorator-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--golden), transparent);
    margin-right: 10px;
}

.decorator-dot {
    width: 8px;
    height: 8px;
    background: var(--golden);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Subtitle */
.hero-subtitle-new {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 500px;
}

.subtitle-highlight {
    color: var(--golden);
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
}

/* Statistics Row */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--golden);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Modern Button Styles */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-new, .btn-secondary-new {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.btn-primary-new {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--golden);
    box-shadow: 0 5px 25px rgba(10, 93, 54, 0.3);
}

.btn-secondary-new {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(10, 93, 54, 0.4);
    border-color: var(--golden-light);
    color: white;
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-text {
    margin-right: 0.75rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary-new:hover .btn-icon,
.btn-secondary-new:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Visual Section */
.hero-visual-section {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-new {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Image Frame */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.6s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(10, 93, 54, 0.1) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.image-frame:hover .image-overlay {
    opacity: 0.3;
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
    background-size: 20px 20px;
    animation: patternMove 10s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    min-width: 200px;
    animation: floatingCard 6s ease-in-out infinite;
}

.card-1 {
    top: -20px;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -30px;
    right: -60px;
    animation-delay: 3s;
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(10, 93, 54, 0.3);
}

.floating-card h6 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
}

.floating-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Design Grid Pattern */
.design-grid-pattern {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.6;
    animation: gridRotate 20s linear infinite;
    z-index: -1;
}

@keyframes gridRotate {
    from { transform: translateY(-50%) rotate(45deg); }
    to { transform: translateY(-50%) rotate(405deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--golden);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay-4 {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay-5 {
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-in-right {
    animation: slideInFromRight 1s ease 0.4s forwards;
    opacity: 0;
    transform: translateX(50px);
}

.animate-float-delay-1 {
    animation-delay: 1s;
}

.animate-float-delay-2 {
    animation-delay: 1.5s;
}

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

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .floating-card {
        padding: 1rem;
        min-width: 170px;
    }
    
    .card-1 {
        left: -30px;
    }
    
    .card-2 {
        right: -40px;
    }
}

@media (max-width: 991.98px) {
    .hero-section-new {
        background-attachment: scroll;
    }
    
    .title-decorator {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn-primary-new, .btn-secondary-new {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .design-grid-pattern {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section-new {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary-new, .btn-secondary-new {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
    
    .image-frame {
        transform: none;
        border-radius: 15px;
    }
    
    .image-frame:hover {
        transform: scale(1.02);
    }
    
    .hero-visual-section {
        margin-top: 2rem;
    }
    
    .floating-design-elements .design-element {
        display: none;
    }
    
    .hero-geometric-patterns .geometric-shape {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

/* ================================
   Services Page Hero Section
   ================================ */

.services-hero-section {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0 60px;
    color: white;
}

.min-vh-75 {
    min-height: 50vh;
}

/* Services Background Overlay */
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg, 
            rgba(10, 93, 54, 0.85) 0%, 
            rgba(0, 0, 0, 0.75) 40%, 
            rgba(212, 175, 55, 0.65) 100%
        ),
        /* Service-themed texture patterns */
        radial-gradient(circle at 25% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(10, 93, 54, 0.1) 0%, transparent 50%),
        /* Blueprint-inspired grid */
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 
        100% 100%,
        400px 400px,
        350px 350px,
        50px 50px,
        50px 50px;
    background-position: 
        center,
        0% 0%,
        100% 100%,
        0 0,
        25px 25px;
    animation: servicesBackgroundShift 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes servicesBackgroundShift {
    0%, 100% {
        background-position: 
            center,
            0% 0%,
            100% 100%,
            0 0,
            25px 25px;
    }
    50% {
        background-position: 
            center,
            25% 25%,
            75% 75%,
            15px 15px,
            40px 40px;
    }
}

/* Services Geometric Patterns */
.services-geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.services-geometric-patterns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Blueprint grid lines */
        linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px),
        /* Technical drawing circles */
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 3px, transparent 3px);
    background-size:
        60px 60px,
        60px 60px,
        100px 100px,
        120px 120px;
    background-position:
        0 0,
        0 0,
        0 0,
        30px 30px;
    animation: servicesGridMove 35s linear infinite;
}

@keyframes servicesGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.services-geometric-shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: servicesGeometricFloat 25s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

/* Services Shape 1 - Compass */
.services-shape-1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 15%;
    left: 8%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 30%, transparent 60%),
        conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation-delay: 0s;
}

.services-shape-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.6), transparent);
    border-radius: 50%;
    animation: compassSpin 20s linear infinite;
}

@keyframes compassSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Services Shape 2 - Blueprint Rectangle */
.services-shape-2 {
    width: 140px;
    height: 90px;
    top: 55%;
    right: 12%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(212, 175, 55, 0.08) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(212, 175, 55, 0.1) 5px, rgba(212, 175, 55, 0.1) 6px);
    border-radius: 8px;
    transform: rotate(-8deg);
    animation-delay: 8s;
}

/* Services Shape 3 - Measurement Tool */
.services-shape-3 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 25%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(212, 175, 55, 0.1) 75%);
    background-size: 20px 20px;
    border-radius: 15px;
    transform: rotate(45deg);
    animation-delay: 5s;
}

/* Services Shape 4 - Design Frame */
.services-shape-4 {
    width: 110px;
    height: 160px;
    bottom: 25%;
    left: 12%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    background: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 0%, rgba(10, 93, 54, 0.05) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(212, 175, 55, 0.08) 8px, rgba(212, 175, 55, 0.08) 9px);
    transform: rotate(-15deg);
    animation-delay: 12s;
}

/* Services Shape 5 - Circular Design Element */
.services-shape-5 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 8%;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        conic-gradient(from 90deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.2));
    animation-delay: 15s;
}

@keyframes servicesGeometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-15px) rotate(120deg) scale(1.05);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-30px) rotate(240deg) scale(0.95);
        opacity: 0.4;
    }
}

/* Floating Service Elements */
.floating-service-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.service-element {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
    font-size: 1.3rem;
    animation: serviceElementFloat 18s ease-in-out infinite;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.element-1 { top: 20%; left: 15%; animation-delay: 0s; }
.element-2 { top: 35%; right: 10%; animation-delay: 4s; }
.element-3 { bottom: 35%; left: 5%; animation-delay: 8s; }
.element-4 { top: 60%; right: 20%; animation-delay: 12s; }
.element-5 { bottom: 20%; right: 15%; animation-delay: 16s; }

@keyframes serviceElementFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 0.9;
    }
}

/* Services Hero Content */
.services-hero-content {
    position: relative;
    z-index: 10;
    padding: 0.5rem 0;
}

/* Services Hero Badge */
.services-hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
    color: var(--dark-green);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Services Title Styling */
.services-title-wrapper {
    position: relative;
    margin-bottom: 1.8rem;
}

.services-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.services-title-accent {
    display: block;
    font-size: 0.55em;
    color: var(--golden);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.services-title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.services-title-decorator {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.services-decorator-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--golden), transparent);
    margin-right: 8px;
}

.services-decorator-icon {
    color: var(--golden);
    font-size: 0.8rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Services Subtitle */
.services-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 450px;
}

.services-subtitle-highlight {
    color: var(--golden);
    font-weight: 500;
    font-style: italic;
}

/* Service Highlights */
.services-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.service-highlight:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(10, 93, 54, 0.3);
}

.highlight-content h6 {
    margin: 0;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Services Action Buttons */
.services-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-btn-primary, .services-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.services-btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--golden);
    box-shadow: 0 8px 25px rgba(10, 93, 54, 0.3);
}

.services-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 93, 54, 0.4);
    border-color: var(--golden-light);
    color: white;
}

.services-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.services-btn-primary .btn-text,
.services-btn-secondary .btn-text {
    margin-right: 0.7rem;
}

.services-btn-primary .btn-icon,
.services-btn-secondary .btn-icon {
    transition: transform 0.3s ease;
}

.services-btn-primary:hover .btn-icon {
    transform: translateY(3px);
}

.services-btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Services Visual Section */
.services-visual-section {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-showcase {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Main Service Card */
.main-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.main-service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.service-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 8px 25px rgba(10, 93, 54, 0.3);
}

.service-card-title h5 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card-title p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-card-image {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.image-placeholder {
    color: var(--primary-green);
    opacity: 0.7;
}

.card-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    background-size: 15px 15px;
    animation: cardPatternMove 8s linear infinite;
    opacity: 0.5;
}

@keyframes cardPatternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, 15px); }
}

.service-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Mini Service Cards */
.mini-service-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    min-width: 150px;
    animation: miniCardFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mini-service-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: -10px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -15px;
    right: -50px;
    animation-delay: 3s;
}

.card-3 {
    top: 40%;
    left: -60px;
    animation-delay: 6s;
}

.mini-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 12px rgba(10, 93, 54, 0.3);
}

.mini-card-content h6 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.85rem;
}

.mini-card-content p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

@keyframes miniCardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Services Design Grid */
.services-design-grid {
    position: absolute;
    top: 50%;
    right: -80px;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    transform: translateY(-50%) rotate(30deg);
    opacity: 0.6;
    animation: servicesGridRotate 25s linear infinite;
    z-index: -1;
}

@keyframes servicesGridRotate {
    from { transform: translateY(-50%) rotate(30deg); }
    to { transform: translateY(-50%) rotate(390deg); }
}

/* Services Scroll Indicator */
.services-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-scroll-indicator:hover {
    color: var(--golden);
    transform: translateX(-50%) translateY(-5px);
}

.services-scroll-indicator .scroll-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.services-scroll-indicator .scroll-arrow {
    font-size: 1.1rem;
    animation: servicesScrollBounce 2s ease-in-out infinite;
}

@keyframes servicesScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Responsive Design for Services Hero */
@media (max-width: 1199.98px) {
    .services-highlights {
        gap: 1rem;
    }
    
    .mini-service-card {
        padding: 0.8rem;
        min-width: 130px;
    }
    
    .card-1 {
        left: -30px;
    }
    
    .card-2 {
        right: -35px;
    }
    
    .card-3 {
        left: -45px;
    }
}

@media (max-width: 991.98px) {
    .services-hero-section {
        background-attachment: scroll;
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .services-title-decorator {
        display: none;
    }
    
    .services-highlights {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .service-highlight {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .services-hero-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .services-btn-primary, .services-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .mini-service-card {
        display: none;
    }
    
    .services-design-grid {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .services-hero-section {
        padding: 40px 0 40px;
    }
    
    .services-hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-highlights {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .service-highlight {
        justify-content: center;
    }
    
    .services-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .services-btn-primary, .services-btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .main-service-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .floating-service-elements .service-element {
        display: none;
    }
    
    .services-geometric-patterns .services-geometric-shape {
        opacity: 0.3;
    }
    
    .services-scroll-indicator {
        bottom: 20px;
    }
}

/* ================================
   About Page Hero Section
   ================================ */

.about-hero-section {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0 60px;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg, 
            rgba(10, 93, 54, 0.88) 0%, 
            rgba(0, 0, 0, 0.75) 40%, 
            rgba(212, 175, 55, 0.6) 100%
        ),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(10, 93, 54, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 350px 350px, 300px 300px;
    background-position: center, 0% 0%, 100% 100%;
    animation: aboutBackgroundShift 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes aboutBackgroundShift {
    0%, 100% {
        background-position: center, 0% 0%, 100% 100%;
    }
    50% {
        background-position: center, 20% 20%, 80% 80%;
    }
}

.about-geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-geometric-shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.4);
    animation: aboutGeometricFloat 22s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.about-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation-delay: 0s;
}

.about-shape-2 {
    width: 80px;
    height: 120px;
    top: 50%;
    right: 15%;
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: rotate(-20deg);
    animation-delay: 5s;
}

.about-shape-3 {
    width: 90px;
    height: 90px;
    top: 15%;
    right: 25%;
    border-radius: 50%;
    background: conic-gradient(from 45deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    animation-delay: 10s;
}

.about-shape-4 {
    width: 110px;
    height: 70px;
    bottom: 30%;
    left: 8%;
    border-radius: 15px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgba(212, 175, 55, 0.08) 100%);
    transform: rotate(15deg);
    animation-delay: 15s;
}

.about-shape-5 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation-delay: 18s;
}

@keyframes aboutGeometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
}

.floating-about-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
    font-size: 1.2rem;
    animation: aboutElementFloat 16s ease-in-out infinite;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.element-1 { top: 25%; left: 12%; animation-delay: 0s; }
.element-2 { top: 40%; right: 8%; animation-delay: 3s; }
.element-3 { bottom: 40%; left: 6%; animation-delay: 6s; }
.element-4 { top: 65%; right: 18%; animation-delay: 9s; }
.element-5 { bottom: 20%; right: 12%; animation-delay: 12s; }

@keyframes aboutElementFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.9;
    }
}

/* About Hero Content Styling */
.about-hero-content {
    position: relative;
    z-index: 10;
    padding: 0.5rem 0;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
    color: var(--dark-green);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-title-wrapper {
    position: relative;
    margin-bottom: 1.8rem;
}

.about-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-title-accent {
    display: block;
    font-size: 0.55em;
    color: var(--golden);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.about-title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.about-title-decorator {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.about-decorator-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--golden), transparent);
    margin-right: 8px;
}

.about-decorator-icon {
    color: var(--golden);
    font-size: 0.8rem;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.about-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 450px;
}

.about-subtitle-highlight {
    color: var(--golden);
    font-weight: 500;
    font-style: italic;
}

/* About Values Preview */
.about-values-preview {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.8rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.value-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(10, 93, 54, 0.3);
}

.value-content h6 {
    margin: 0;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.value-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.2;
}

/* About Action Buttons */
.about-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-btn-primary, .about-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.about-btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--golden);
    box-shadow: 0 8px 25px rgba(10, 93, 54, 0.3);
}

.about-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 93, 54, 0.4);
    border-color: var(--golden-light);
    color: white;
}

.about-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.about-btn-primary .btn-text,
.about-btn-secondary .btn-text {
    margin-right: 0.7rem;
}

.about-btn-primary .btn-icon,
.about-btn-secondary .btn-icon {
    transition: transform 0.3s ease;
}

.about-btn-primary:hover .btn-icon {
    transform: translateY(3px);
}

.about-btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* About Visual Section */
.about-visual-section {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-showcase {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

/* Main About Card */
.main-about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.main-about-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 1rem;
    box-shadow: 0 8px 25px rgba(10, 93, 54, 0.3);
}

.about-card-title h5 {
    margin: 0 0 0.2rem 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-card-title p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* About Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem 0.5rem;
    background: linear-gradient(135deg, rgba(10, 93, 54, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.about-card-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-card-footer p {
    margin: 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mini Achievement Cards */
.mini-achievement-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    min-width: 140px;
    animation: aboutMiniCardFloat 7s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mini-achievement-card:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: -10px;
    left: -35px;
    animation-delay: 0s;
}

.card-2 {
    bottom: -15px;
    right: -40px;
    animation-delay: 3.5s;
}

.achievement-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 12px rgba(10, 93, 54, 0.3);
}

.achievement-content h6 {
    margin: 0 0 0.3rem 0;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.8rem;
}

.achievement-content p {
    margin: 0;
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

@keyframes aboutMiniCardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

/* About Design Pattern */
.about-design-pattern {
    position: absolute;
    top: 50%;
    right: -60px;
    width: 120px;
    height: 120px;
    background-image: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 2px, transparent 2px);
    background-size: 15px 15px;
    transform: translateY(-50%) rotate(15deg);
    opacity: 0.6;
    animation: aboutPatternRotate 20s linear infinite;
    z-index: -1;
}

@keyframes aboutPatternRotate {
    from { transform: translateY(-50%) rotate(15deg); }
    to { transform: translateY(-50%) rotate(375deg); }
}

/* About Scroll Indicator */
.about-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-scroll-indicator:hover {
    color: var(--golden);
    transform: translateX(-50%) translateY(-5px);
}

.about-scroll-indicator .scroll-text {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-scroll-indicator .scroll-arrow {
    font-size: 1.1rem;
    animation: aboutScrollBounce 2s ease-in-out infinite;
}

@keyframes aboutScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* About Page Responsive Design */
@media (max-width: 1199.98px) {
    .about-values-preview {
        gap: 1rem;
    }
    
    .value-item {
        min-width: 120px;
    }
    
    .mini-achievement-card {
        padding: 0.8rem;
        min-width: 120px;
    }
}

@media (max-width: 991.98px) {
    .about-hero-section {
        background-attachment: scroll;
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .about-title-decorator {
        display: none;
    }
    
    .about-values-preview {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .value-item {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
        min-width: 110px;
    }
    
    .value-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .about-hero-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .about-btn-primary, .about-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .mini-achievement-card {
        display: none;
    }
    
    .about-design-pattern {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding: 40px 0 40px;
    }
    
    .about-hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-values-preview {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .value-item {
        justify-content: center;
        min-width: auto;
    }
    
    .about-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .about-btn-primary, .about-btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .main-about-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-stats-grid {
        gap: 0.5rem;
    }
    
    .stat-box {
        padding: 0.8rem 0.3rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .floating-about-elements .about-element {
        display: none;
    }
    
    .about-geometric-patterns .about-geometric-shape {
        opacity: 0.3;
    }
    
    .about-scroll-indicator {
        bottom: 20px;
    }
}

/* ================================
   Portfolio/Products/Contacts/Blog Hero Sections
   ================================ */

.portfolio-hero-section, .products-hero-section, .contacts-hero-section, .blog-hero-section {
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0 60px;
    color: white;
}

.portfolio-hero-overlay, .products-hero-overlay, .contacts-hero-overlay, .blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg, 
            rgba(10, 93, 54, 0.85) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            rgba(212, 175, 55, 0.65) 100%
        ),
        radial-gradient(circle at 25% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(10, 93, 54, 0.1) 0%, transparent 50%);
    background-size: 100% 100%, 300px 300px, 250px 250px;
    background-position: center, 0% 0%, 100% 100%;
    animation: genericBackgroundShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes genericBackgroundShift {
    0%, 100% {
        background-position: center, 0% 0%, 100% 100%;
    }
    50% {
        background-position: center, 15% 15%, 85% 85%;
    }
}

.generic-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 0;
    margin-top: -1rem;
}

.generic-hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
    color: var(--dark-green);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.generic-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.generic-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.generic-btn-primary, .generic-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.generic-btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--golden);
    box-shadow: 0 8px 25px rgba(10, 93, 54, 0.3);
}

.generic-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.generic-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 93, 54, 0.4);
    border-color: var(--golden-light);
    color: white;
}

.generic-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.generic-btn-primary .btn-text,
.generic-btn-secondary .btn-text {
    margin-right: 0.75rem;
}

.generic-btn-primary .btn-icon,
.generic-btn-secondary .btn-icon {
    transition: transform 0.3s ease;
}

.generic-btn-primary:hover .btn-icon,
.generic-btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design for Generic Heroes */
@media (max-width: 991.98px) {
    .portfolio-hero-section, .products-hero-section, .contacts-hero-section, .blog-hero-section {
        background-attachment: scroll;
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .generic-hero-actions {
        gap: 0.8rem;
    }
    
    .generic-btn-primary, .generic-btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .portfolio-hero-section, .products-hero-section, .contacts-hero-section, .blog-hero-section {
        padding: 40px 0 40px;
    }
    
    .generic-hero-content {
        margin-top: -0.5rem;
    }
    
    .generic-hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .generic-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .generic-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .generic-btn-primary, .generic-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

/* Blog Filter Badges */
.hero-filter-badge {
    margin: 1rem 0;
    text-align: center;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filter-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.category-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.2));
    border-color: rgba(212, 175, 55, 0.5);
}

.search-badge {
    background: linear-gradient(135deg, rgba(10, 93, 54, 0.2), rgba(46, 125, 50, 0.2));
    border-color: rgba(10, 93, 54, 0.5);
}

@media (max-width: 767.98px) {
    .filter-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* Business Divisions Section */
.business-divisions {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-green);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--golden);
}

.division-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.division-image {
    height: 250px;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.division-card:hover .division-image img {
    transform: scale(1.1);
}

.division-content {
    padding: 1.5rem;
    background: #fff;
}

.division-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
}

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-green);
}

/* Recent Projects Section */
.project-card {
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.project-image {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.project-image img {
    transition: var(--transition-normal);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 93, 54, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Testimonials Section */
.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--golden);
    transition: var(--transition-normal);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '\201C';
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--golden-light);
}

.testimonial-text::after {
    content: '\201D';
    left: auto;
    right: -10px;
    bottom: -30px;
    top: auto;
}

/* Call to Action Section */
.cta-section {
    background: var(--primary-gradient);
}

.top-bar .contact-info span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
}

.top-bar .contact-info i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--golden-dark);
    color: var(--text-light) !important;
    margin-left: 0.5rem;
    transition: var(--transition-fast);
    border: 1px solid var(--golden-light);
}

.top-bar .social-links a:hover {
    background-color: var(--golden);
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--golden-light);
}

/* Main Header Styling */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: var(--transition-normal);
}

.main-header .navbar {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-bottom: 3px solid var(--golden);
}

.main-header.scrolled .navbar {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    margin-top: -5px;
    margin-bottom: -5px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--text-primary) !important;
    transition: var(--transition-normal);
}

.navbar-brand:hover {
    transform: scale(1.05) rotate(-1deg);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-brand h3 {
    font-weight: 700;
    background: var(--golden-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Navigation Menu */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.1rem;
}

/* Cart Link Styling */
.cart-link {
    position: relative;
    background-color: var(--light-green);
    color: white !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.cart-link:hover {
    background-color: var(--golden);
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--golden);
    color: var(--primary-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 5px;
}

.navbar-nav .nav-link {
    color: var(--primary-green) !important;
    font-weight: 500;
    padding: 0.3rem 0.7rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--golden-gradient);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--golden-dark) !important;
}

.navbar-nav .nav-link:hover:before {
    width: 80%;
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--golden) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active:before {
    width: 80%;
    opacity: 1;
}

.navbar-nav .nav-link i {
    margin-right: 0.25rem;
    font-size: 0.875rem;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 0.3rem;
    min-width: 10rem;
    margin-top: 0.3rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: dropdown-fade 0.2s ease-out;
}

@keyframes dropdown-fade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 0.3rem 0.7rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(10, 93, 54, 0.1);
    color: var(--golden);
}

.dropdown-item i {
    margin-right: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.dropdown-divider {
    margin: 0.25rem 0;
    opacity: 0.1;
}

/* Announcements Banner */
.announcements-banner {
    background: var(--secondary-gradient) !important;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--golden);
}

.announcements-banner:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.announcements-banner i.fa-bullhorn {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    color: var(--golden);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.announcement-slider {
    overflow: hidden;
    position: relative;
}

.announcement-item {
    padding: 0.25rem 0;
    white-space: nowrap;
    transition: opacity 0.5s ease;
    display: none;
}

.announcement-item:first-child {
    display: block;
}

/* For browsers that don't support JS */
@supports (not (animation-play-state: paused)) {
    .announcement-item {
        animation: slide 15s linear infinite;
        display: block;
    }
    
    @keyframes slide {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .top-bar .contact-info,
    .top-bar .social-links {
        text-align: center;
    }
    
    .top-bar .contact-info span {
        display: inline-block;
        margin: 0.25rem 0.75rem;
    }
    
    .top-bar .social-links {
        margin-top: 0.5rem;
    }
    
    .navbar-toggler {
        border: 1px solid var(--golden);
        padding: 0.5rem;
        border-radius: var(--border-radius);
        transition: var(--transition-fast);
        background-color: rgba(10, 93, 54, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 93, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        margin-top: 0.5rem;
        max-height: 80vh;
        overflow-y: auto;
        transform-origin: top center;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }
    
    .navbar-collapse.collapsing {
        opacity: 0;
        transform: scaleY(0);
    }
    
    .navbar-collapse.show {
        opacity: 1;
        transform: scaleY(1);
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link:before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(10, 93, 54, 0.1);
        border-left: 3px solid var(--golden);
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: rgba(0,0,0,0.03);
        padding: 0;
        margin: 0.5rem 0;
        position: static !important;
        transform: none !important;
        animation: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .announcements-banner {
        font-size: 0.875rem;
    }
    
    .announcements-banner i.fa-bullhorn {
        font-size: 1.25rem;
    }
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
    border-radius: 4px;
    border: 1px solid var(--golden);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--secondary-green), var(--golden));
}

/* Print Styles */
@media print {
    .top-bar,
    .announcements-banner {
        display: none !important;
    }
    
    .main-header .navbar {
        box-shadow: none !important;
        position: static;
    }
}

/* JavaScript Helper Classes */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 93, 54, 0.3);
    border-radius: 50%;
    border-top-color: var(--golden);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Featured Products Section Styles */
.featured-products {
    padding: 4rem 0;
    background-color: #fff;
}

.product-card {
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

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

/* Slider Styles - Common */
.divisions-slider,
.products-slider,
.projects-slider,
.testimonials-slider,
.features-slider {
    margin: 0 -15px;
    position: relative;
    padding: 0 20px;
}

.division-slide,
.product-slide,
.project-slide,
.testimonial-slide,
.feature-slide {
    height: auto;
    padding: 10px;
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    border-radius: 50%;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--golden);
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    opacity: 1;
    line-height: 1;
}

.slick-prev {
    left: -5px;
}

.slick-next {
    right: -5px;
}

.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-green);
}

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

/* Specific Slider Styles */
.division-card,
.product-card,
.project-card,
.testimonial-card,
.feature-card {
    margin: 0 auto;
    max-width: 100%;
}

/* Testimonials Slider Specific */
.testimonials-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .testimonial-slide {
    height: inherit;
    display: flex;
}

.testimonials-slider .testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product-image img {
    max-height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--golden);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2rem;
    z-index: 1;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-green);
}

.product-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.product-card:hover .product-content h5 {
    color: var(--primary-green);
}