/*
Theme Name: Agarwal Builder
Theme URI: https://agarwalbuilder.com
Author: Inovashi
Author URI: https://inovashi.com/
Description: A modern, professional WordPress theme for real estate and construction businesses. Features include custom page templates, dynamic menus, blog functionality, and fully responsive design.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agarwal-builder
Tags: real-estate, construction, business, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready

Agarwal Builder WordPress Theme, Copyright 2025
Agarwal Builder is distributed under the terms of the GNU GPL
*/

/* Theme CSS is loaded via functions.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Antique Soft', serif;
    overflow-x: hidden;
}

/* Decorative Line Above Titles */
.section-title-decorator {
    width: 60px;
    height: 3px;
    background-color: #d75643;
    margin: 0 auto 15px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 0.5rem 1.2rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d75643;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #d75643;
}

.navbar-toggler {
    border: 2px solid #333;
    padding: 5px 8px;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: #e74c3c;
}

.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%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.bg-blur {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
}

.bg-main {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slide-content {
    text-align: center;
    color: #fff;
    max-width: 1200px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

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

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
	text-decoration:none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff;
    font-size: 30px;
}
a.call-float {
   

}
/* Call Floating Button */
.call-float {
    position: fixed;
    bottom:20px !important;    right: 30px;
    width:50px;
    height:50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #205690 0%, #d75643 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(32, 86, 144, 0.35);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    animation: callPulseButton 2s ease-in-out infinite;
}

.call-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(215, 86, 67, 0.35);
    animation: callPulse 2s ease-out infinite;
    z-index: 0;
}

.call-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(32, 86, 144, 0.45);
}

.call-float i {
    font-size: 26px;
    position: relative;
    z-index: 1;
}

@keyframes callPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.55);
        opacity: 0;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes callPulseButton {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #d75643;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(215, 86, 67, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(215, 86, 67, 0.6);
    background-color: #205690;
}

.back-to-top i {
    color: #fff;
    font-size: 20px;
}

/* About Us Section */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background-image: 
        repeating-linear-gradient(60deg, transparent, transparent 50px, rgba(200, 200, 200, 0.1) 50px, rgba(200, 200, 200, 0.1) 51px),
        repeating-linear-gradient(-60deg, transparent, transparent 50px, rgba(200, 200, 200, 0.1) 50px, rgba(200, 200, 200, 0.1) 51px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200, 200, 200, 0.1) 50px, rgba(200, 200, 200, 0.1) 51px);
    opacity: 0.5;
}

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

.about-section .section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: block;
    text-align: center;
}

.about-section .section-tag::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d75643;
}

.about-section .main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-section .description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
   
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #205690 0%, #2c3e50 100%);
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

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

.statistics-title {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0;
}

.stats-container {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    align-items: center;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #d75643;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Zen Antique Soft', serif;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
}

/* Key Fundamentals Section */
.fundamentals-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.fundamentals-section .section-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: block;
}

.fundamentals-section .section-tag::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d75643;
}

.fundamentals-section .main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 60px;
    line-height: 1.3;
    text-align: center;
}

.fundamentals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fundamental-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
}

.fundamental-card.animate {
    animation: fadeInUp 0.6s ease forwards;
    visibility: visible;
}

.fundamental-card:nth-child(1).animate {
    animation-delay: 0.1s;
}

.fundamental-card:nth-child(2).animate {
    animation-delay: 0.3s;
}

.fundamental-card:nth-child(3).animate {
    animation-delay: 0.5s;
}

.fundamental-card:nth-child(4).animate {
    animation-delay: 0.7s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d75643 0%, #c0392b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/12/sunil-agrawal-ji-rev-0fg-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.cta-contact {
    background-color: #fff;
    padding: 25px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-details p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
}

.cta-details h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 80px 0 40px;
}

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

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    font-size: 18px;
    color: #d75643;
    margin-top: 3px;
}

.footer-contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #d75643;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background-color: #d75643;
    color: #fff;
    border-color: #d75643;
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #d75643;
}

.footer-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.footer-form input:focus {
    outline: none;
    border-color: #d75643;
}

.footer-form button {
    padding: 15px 40px;
    background-color: #d75643;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.footer-form button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 86, 67, 0.3);
}

/* Copyright */
.copyright {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.copyright a {
    color: #d75643;
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

.fundamental-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.fundamental-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fundamental-icon svg {
    width: 100%;
    height: 100%;
}

.fundamental-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.fundamental-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    min-height: 400px;
}

.project-slider-container {
    position: relative;
    width: 100%;
    display: block;
    visibility: visible;
    min-height: 400px;
}

.project-slide {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.project-slide.active {
    display: block;
    opacity: 1;
}

/* Fallback: If only one slide exists, show it */
.project-slider-container:has(.project-slide:only-child) .project-slide {
    display: block;
    opacity: 1;
}

/* Mobile fallback: Show first slide if no active class */
@media (max-width: 768px) {
    .project-slider-container .project-slide:first-child {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .project-slider-container .project-slide:first-child ~ .project-slide {
        display: none;
    }
}

.project-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.project-image-container {
    flex: 1;
    position: relative;
}

.project-image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f0f4f8;
}

.project-image-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.project-image-slide.active {
    opacity: 1;
    z-index: 1;
}

.project-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: #205690;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.project-image-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.project-image-nav.prev {
    left: 16px;
}

.project-image-nav.next {
    right: 16px;
}

.project-details {
    flex: 1;
    padding: 40px;
}

.project-location {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-name {
    font-size: 35px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

.project-description {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
}

.project-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 2px solid #d75643;
    color: #d75643;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background-color: #d75643;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(215, 86, 67, 0.3);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 48px;
    }

    .about-section .main-heading {
        font-size: 40px;
    }

    .geometric-pattern {
        width: 35%;
    }

    .statistics-title {
        font-size: 32px;
    }

    .stats-container {
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 14px;
    }

    .fundamentals-section .main-heading {
        font-size: 40px;
    }

    .fundamentals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-name {
        font-size: 48px;
    }

    .projects-section {
        display: block !important;
        visibility: visible !important;
    }

    .project-slider-container {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }

    .project-slide.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project-content-wrapper {
        min-height: 500px;
        display: flex !important;
        visibility: visible !important;
    }

    .project-image-slider {
        height: 500px;
        display: block !important;
        visibility: visible !important;
    }

    .cta-text h2 {
        font-size: 36px;
    }

    .cta-details h3 {
        font-size: 24px;
    }

    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 36px;
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 0.8rem 0;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section .main-heading {
        font-size: 32px;
    }

    .about-section .description {
        font-size: 15px;
        text-align: left;
    }

    .geometric-pattern {
        width: 100%;
        opacity: 0.2;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top i {
        font-size: 18px;
    }

    .statistics-section {
        padding: 60px 0;
    }

    .statistics-section::before {
        width: 100%;
        opacity: 0.15;
    }

    .statistics-title {
        font-size: 24px;
        margin-bottom: 40px;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 14px;
    }

    .fundamentals-section {
        padding: 60px 0;
    }

    .fundamentals-section .main-heading {
        font-size: 32px;
    }

    .fundamentals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fundamental-card {
        padding: 30px 20px;
    }

    .fundamental-card h3 {
        font-size: 20px;
    }

    .fundamental-card p {
        font-size: 14px;
    }

    .projects-section {
        padding: 60px 0;
        overflow: visible;
        display: block !important;
        visibility: visible !important;
    }

    .project-slider-container {
        overflow: visible;
        display: block !important;
        visibility: visible !important;
        width: 100%;
        min-height: 400px;
    }

    .project-slide {
        display: none;
    }

    .project-slide.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project-content-wrapper {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        display: flex !important;
        visibility: visible !important;
    }

    .project-image-container {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }

    .project-image-slider {
        height: 400px;
        display: block !important;
        visibility: visible !important;
        position: relative !important;
    }

    .project-image-slide {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }

    .project-image-slide.active {
        opacity: 1 !important;
        z-index: 1 !important;
        visibility: visible !important;
    }

    .project-image-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
    }

    .project-details {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }

    .project-details {
        padding: 20px;
    }

    .project-name {
        font-size: 36px;
    }

    .project-description {
        font-size: 15px;
        text-align: left;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-contact {
        padding: 20px 30px;
    }

    .cta-details h3 {
        font-size: 22px;
    }

    .footer {
        padding: 60px 0 30px;
    }

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

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .slide-content h1 {
        font-size: 28px;
        padding: 0 60px;
    }


    .about-section {
        padding: 40px 0;
    }

    .about-section .main-heading {
        font-size: 26px;
    }

    .about-section .section-tag {
        font-size: 12px;
    }

    .about-section .description {
        font-size: 14px;
    }

    .fundamentals-section {
        padding: 40px 0;
    }

    .fundamentals-section .main-heading {
        font-size: 26px;
    }

    .fundamentals-section .section-tag {
        font-size: 12px;
    }

    .fundamental-icon {
        width: 60px;
        height: 60px;
    }

    .projects-section {
        padding: 40px 0;
        overflow: visible;
        display: block !important;
        visibility: visible !important;
    }

    .project-slider-container {
        overflow: visible;
        display: block !important;
        visibility: visible !important;
        width: 100%;
        min-height: 300px;
    }

    .project-slide.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project-content-wrapper {
        display: flex !important;
        visibility: visible !important;
    }

    .project-image-container {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }

    .project-image-slider {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        height: 300px !important;
    }

    .project-image-slide {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }

    .project-image-slide.active {
        opacity: 1 !important;
        z-index: 1 !important;
        visibility: visible !important;
    }

    .project-image-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
    }

    .project-details {
        display: block !important;
        visibility: visible !important;
        width: 100%;
    }

    .project-name {
        font-size: 28px;
    }

    .project-location {
        font-size: 14px;
    }

    .project-description {
        font-size: 14px;
    }

    .project-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .project-image-slider {
        height: 300px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .statistics-title {
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .cta-details h3 {
        font-size: 20px;
    }

    .cta-details p {
        font-size: 13px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-form button {
        width: 100%;
    }
}

/* About Us Page Template Styles */
.internal-banner {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 86, 144, 0.85) 0%, rgba(215, 86, 67, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.about-content-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-block {
    margin-bottom: 100px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    transition: transform 0.3s ease;
}

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

.about-text-content {
    padding: 0 30px;
}

.about-text-content .section-title-decorator {
    margin: 0 0 20px 0;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-description {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.about-description strong {
    color: #d75643;
    font-weight: 700;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 48px;
    }

    .section-heading {
        font-size: 36px;
    }

    .about-block {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .internal-banner {
        height: 300px;
        margin-top: 70px;
    }

    .banner-title {
        font-size: 36px;
        padding: 0 20px;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-block {
        margin-bottom: 60px;
    }

    .about-text-content {
        padding: 0;
        margin-top: 20px;
    }

    .section-heading {
        font-size: 28px;
    }

    .about-description {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .internal-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .about-content-section {
        padding: 40px 0;
    }

    .about-block {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }
}

/* Single Project Template Styles */
.project-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-city-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.project-hero-title {
    position: relative;
    z-index: 2;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 2px;
}

/* Project Details Section */
.project-details-section {
    padding: 100px 0 60px;
    background-color: #fff;
}

.project-main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.project-info-wrapper {
    padding: 0 40px;
}

.project-location-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.project-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
}

.project-logo {
    margin-bottom: 15px;
}

.project-logo img {
    max-height: 80px;
    width: auto;
}

.project-content {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 40px;
}

.project-content p {
    margin-bottom: 20px;
}

.project-meta-details {
    margin-bottom: 40px;
}

.project-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.project-meta-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.meta-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.meta-value {
    font-size: 16px;
    color: #666;
    text-align: right;
}

.download-brochure-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #d75643;
    color: #d75643;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.download-brochure-btn:hover {
    background-color: #d75643;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(215, 86, 67, 0.3);
}

.download-brochure-btn i {
    margin-right: 10px;
}

/* Key Features Section */
.key-features-section {
    padding:  0 0 60px;
    background-color: #fff;
}

.key-features-title {
    font-size: 30px;
    font-weight: 700;
    color: #d75643;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.key-features-description {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.key-features-description p {
    margin-bottom: 15px;
}

.key-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.key-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d75643;
    transition: all 0.3s ease;
}

.key-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d75643;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* Amenities Section */
.project-amenities-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.amenities-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.amenities-title {
    font-size: 48px;
    font-weight: 700;
    color: #d75643;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #333;
}

.amenity-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0;
}

/* Gallery Section */
.project-gallery-section {
    padding: 100px 0;
    background-color: #fff;
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 48px;
    font-weight: 700;
    color: #d75643;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 86, 67, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Project Responsive Styles */

/* Hero Slider Responsive Enhancements */
.hero-slider {
    height: 90vh;
    margin-top: 70px;
}

.slide {
    background-color: #f5f7fa;
}

.slide img {
    display: none;
}

.slide-content h1 {
    font-size: 64px;
    line-height: 1.2;
}

.slide-subheading {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f8f9fa;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .project-hero-title {
        font-size: 56px;
    }

    .project-main-title {
        font-size: 40px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slider {
        height: 75vh;
    }

    .slide-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .project-hero-banner {
        height: 60vh;
        margin-top: 70px;
    }

    .project-hero-title {
        font-size: 42px;
        padding: 0 20px;
    }

    .hero-slider {
        height: 65vh;
        margin-top: 60px;
    }

    .slide-content h1 {
        font-size: 38px;
        padding: 0 20px;
    }

    .slide-subheading {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .project-details-section {
        padding: 60px 0;
    }

    .project-info-wrapper {
        padding: 0;
        margin-top: 30px;
    }

    .project-main-title {
        font-size: 32px;
    }

    .project-content {
        font-size: 15px;
    }

    .key-features-section {
        padding: 60px 0;
    }

    .key-features-title {
        font-size: 36px;
    }

    .key-features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .key-feature-item {
        padding: 20px;
    }

    .feature-text {
        font-size: 15px;
    }

    .project-amenities-section,
    .project-gallery-section {
        padding: 60px 0;
    }

    .amenities-title,
    .gallery-title {
        font-size: 36px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .meta-label,
    .meta-value {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .project-hero-banner {
        height: 50vh;
    }

    .project-hero-title {
        font-size: 32px;
    }

    .hero-slider {
        height: 58vh;
        margin-top: 55px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-subheading {
        font-size: 12px;
    }

    .project-city-tag,
    .project-location-tag,
    .amenities-subtitle,
    .gallery-subtitle {
        font-size: 12px;
    }

    .project-main-title {
        font-size: 26px;
    }

    .project-content {
        font-size: 14px;
    }

    .amenities-title,
    .gallery-title {
        font-size: 28px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .download-brochure-btn {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Projects Archive Page */
.projects-archive-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.project-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background-color: #d75643;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.project-status-badge.completed {
    background-color: #27ae60;
}

.project-status-badge.upcoming {
    background-color: #f39c12;
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 86, 67, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-project-btn {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.view-project-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.project-card:hover .view-project-btn i {
    transform: translateX(5px);
}

.project-card-content {
    padding: 30px;
}

.project-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-card-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.project-card-location i {
    color: #d75643;
    margin-right: 8px;
}

.project-card-type {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.project-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.project-card-excerpt p {
    margin: 0;
}

.projects-pagination {
    margin-top: 60px;
}

.projects-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.projects-pagination .page-numbers li {
    display: inline-block;
}

.projects-pagination a,
.projects-pagination span {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #d75643;
    color: #d75643;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.projects-pagination a:hover,
.projects-pagination .current {
    background-color: #d75643;
    color: #fff;
}

.no-projects {
    text-align: center;
    padding: 60px 30px;
    background-color: #fff;
    border-radius: 8px;
}

.no-projects h2 {
    font-size: 32px;
    color: #d75643;
    margin-bottom: 20px;
}

.no-projects p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Contact Page */
.contact-page-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
}

.contact-form .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: #d75643;
    box-shadow: 0 0 0 0.15rem rgba(215, 86, 67, 0.15);
}

.contact-submit {
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
}

.form-note {
    font-size: 13px;
    color: #777;
    margin-top: 12px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-list i {
    color: #d75643;
    font-size: 18px;
    margin-top: 3px;
}

.contact-list p {
    margin: 0;
    color: #555;
}

.contact-list a {
    color: #205690;
    text-decoration: none;
}

.contact-list a:hover {
    color: #d75643;
}

.map-card {
    margin-top: 20px;
}

.map-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Navigation Dropdowns */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    z-index: 99;
}

.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu li {
    width: 100%;
}

.navbar-nav .dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.navbar-nav .dropdown-menu a:hover {
    background: #f8f9fa;
    color: #d75643;
}

.navbar-nav .menu-item-has-children.open > .dropdown-menu {
    display: block;
}

.navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.submenu-toggle {
    font-size: 10px;
    color: #333;
    transition: transform 0.3s ease;
    display: inline-block;
}

.navbar-nav .menu-item-has-children:hover > .nav-link .submenu-toggle,
.navbar-nav .menu-item-has-children.open > .nav-link .submenu-toggle {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 6px 0 6px 16px;
    }

    .navbar-nav .dropdown-menu a {
        padding: 8px 0;
    }
}

/* Blog Archive */
.blog-archive-main {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.blog-card-body {
    padding: 20px 22px 24px;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-card-category {
    color: #d75643;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-author i {
    margin-right: 6px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
}

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

.blog-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #d75643;
    text-decoration: none;
}

.blog-card-link i {
    font-size: 13px;
}

.blog-archive-pagination {
    margin-top: 50px;
}

.blog-archive-pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-archive-pagination a,
.blog-archive-pagination span {
    display: inline-block;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #eee;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
}

.blog-archive-pagination .current,
.blog-archive-pagination a:hover {
    background: #d75643;
    color: #fff;
    border-color: #d75643;
}

@media (max-width: 1024px) {
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive-main {
        padding: 40px 0 60px;
    }
}

/* Page Template */
.page-main {
    padding: 60px 0 80px;
    background: #fff;
}

.page-article {
    background: #fff;
    padding: 0;
}

.page-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-content h2 {
    font-size: 32px;
    color: #d75643;
}

.page-content h3 {
    font-size: 26px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.page-content iframe,
.page-content video,
.page-content embed {
    max-width: 100%;
    margin: 20px 0;
}

/* Single Blog */
.blog-single-main {
    padding: 60px 0 80px;
    background: #fff;
}

.blog-single-main .container {
    max-width: 1200px;
}

.blog-single-main .row {
    align-items: flex-start;
}

.single-blog-article {
    background: #fff;
    padding: 0;
    margin-bottom: 0;
}

.single-blog-article .entry-header {
    margin-bottom: 20px;
}

.single-blog-article .entry-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
}

.single-blog-article .entry-meta i {
    margin-right: 6px;
    color: #d75643;
}

.single-blog-article .entry-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}

/* Restrict media width in blog content */
.blog-content img,
.blog-content iframe,
.blog-content video,
.blog-content embed,
.blog-content object {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.blog-content iframe,
.blog-content embed,
.blog-content object {
    width: 100%;
    max-width: 100%;
}

.blog-content .wp-block-image,
.blog-content figure {
    max-width: 100%;
    margin: 20px 0;
}

.blog-content .wp-block-video,
.blog-content .wp-block-embed {
    max-width: 100%;
    margin: 20px 0;
}

.single-blog-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.single-blog-footer .tags-links {
    font-size: 14px;
    color: #555;
}

.single-blog-footer .tags-links i {
    margin-right: 8px;
    color: #d75643;
}

.post-nav-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.post-navigation a {
    display: block;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.post-navigation a:hover {
    background: #eaeef3;
}

.post-navigation .nav-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.post-navigation .nav-title {
    font-weight: 700;
    color: #333;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        position: static;
    }
}

.blog-widgets .widget,
.recent-posts-widget {
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #d75643;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.recent-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

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

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #d75643;
}

.recent-post-date {
    font-size: 12px;
    color: #888;
}

@media (max-width: 991px) {
    .blog-single-main .row {
        flex-direction: column;
    }
    
    .blog-sidebar {
        margin-top: 40px;
        padding-left: 0;
    }
}

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

    .page-content {
        font-size: 15px;
    }

    .page-content h2 {
        font-size: 26px;
    }

    .page-content h3 {
        font-size: 22px;
    }

    .blog-single-main {
        padding: 40px 0 60px;
    }

    .post-nav-wrap {
        grid-template-columns: 1fr;
    }

    .recent-post-thumb {
        width: 60px;
        height: 60px;
    }

    .recent-post-content h4 {
        font-size: 13px;
    }
}

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

    .project-card-title {
        font-size: 24px;
    }

    .contact-page-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .projects-archive-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card-content {
        padding: 25px;
    }

    .project-card-title {
        font-size: 22px;
    }

    .projects-pagination a,
    .projects-pagination span {
        padding: 10px 16px;
        font-size: 14px;
    }

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .projects-archive-section {
        padding: 40px 0;
    }

    .project-card-content {
        padding: 20px;
    }

    .project-card-title {
        font-size: 20px;
    }

    .project-card-type {
        font-size: 14px;
    }

    .project-card-excerpt {
        font-size: 14px;
    }

    .no-projects h2 {
        font-size: 24px;
    }

    .no-projects p {
        font-size: 16px;
    }

    .contact-card {
        padding: 18px;
    }
}

.project-logo {
    position:absolute;
    z-index:99999999 !important;
}
.about-image-wrapper img{
    height:600px;
    width:100% !important;
    object-fit:cover;
}
.slide {
    background-size:cover;
    background-position:top center !important;   
}

.wpcf7-submit,
.btn-enquire-now {
    background:#d75543 !important;
    border-color:#d75543 !important;
    color:#fff;
    letter-spacing:1.2px !important;
    border-radius:20px !important ;
    padding:10px 30px !important;
    text-transform:uppercase;
    text-decoration:none !important;
    
}

.wpcf7-submit:hover
{
    background:#fff !important;
     border-color:#d75543 !important;
    color:#d75543  !important;
 }


    .btn-enquire-now{
    margin-left:20px !important;
}



@media(max-width:767px){
    .btn-enquire-now{
display:none !important;  
}
/* button.slider-nav.slider-prev,
button.slider-nav.slider-next{
display:none;
} */
	button.slider-nav.slider-prev
 {
        position: absolute;
    left:10px !important;
    width: 30px;
    height: 30px;
  

}

button.slider-nav.slider-next{
    right: 10px !important;
        width: 30px;
    height: 30px;
}
}

.page-template-template-contact footer.footer {
display:none;
}
.cta-icon i{
    font-size:48px;
    color:#d75543;
}