/* General Styles */
:root {
    --primary-color: #1a365d;    /* Deep navy blue - professional and trustworthy */
    --secondary-color: #2b6cb0;  /* Bright blue - engaging but professional */
    --accent-color: #F6C343;     /* Gold for highlights */
    --text-color: #2d3748;       /* Dark gray - for better readability */
    --light-bg: #f7fafc;         /* Light gray - for backgrounds */
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--light-bg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)),
                url('../projects-images-00/FB_IMG_1744455079203.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

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

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: var(--gray-200) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white) !important;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(26,54,93,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: var(--white);
}

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

/* Sections */
section {
    padding: 100px 0;
}

section h2 {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Gallery */
.gallery-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-item .card {
    height: 100%;
}

.gallery-item .card-img-top {
    height: 250px;
    object-fit: cover;
}

.gallery-item .badge {
    font-size: 0.8rem;
    padding: 0.5em 1em;
    border-radius: 4px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

.gallery-item .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.gallery-item .card-text {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Testimonials */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: var(--secondary-color);
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
}

.testimonial-card .fa-star {
    color: #f6ad55;
}

/* Contact Form */
.form-control {
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

/* Social Links */
.social-links a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    text-decoration: none !important;
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary-color);
    transform: translateY(-3px);
    text-decoration: none !important;
}

.social-links .fa-2x {
    font-size: 1.5rem;
}

.social-links .fa-brands {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--gray-200);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button i {
    font-size: 24px;
}

.chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-container.active {
    display: flex;
}

.chat-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h5 {
    margin: 0;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.chat-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message p {
    margin: 0;
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-block;
}

.message.bot p {
    background-color: #f0f0f0;
    border-bottom-left-radius: 5px;
}

.message.user {
    margin-left: auto;
}

.message.user p {
    background-color: var(--secondary-color);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-input button:hover {
    background-color: #2980b9;
}

/* Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-container {
        width: calc(100% - 40px);
        height: 60vh;
        bottom: 90px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar-brand span {
        font-size: 1.2rem;
    }
}

/* Our Design Cards */
.design-card {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    padding: 1.5rem 1rem 1rem 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(26,54,93,0.06);
}
.design-card .design-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    padding: 0.25em 0.75em;
    margin-right: 1rem;
    display: inline-block;
}

/* Testimonial Client Name */
blockquote-footer, .blockquote-footer {
    color: var(--white) !important;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.highlight-box {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 0;
}

/* Happy Customers Section Styles */
.counter-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;

    .counter-card h3 {
        font-size: 24px;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
    }

    .counter-card p {
        font-size: 18px;
        color: #666;
        text-align: center;
    }
}



.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.counter-icon {
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon {
    transform: scale(1.1);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.counter-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Add animation for counter numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-value.animated {
    animation: countUp 0.5s ease-out forwards;
}

@media (max-width: 768px) {
    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-prev {
        left: 5px;
    }
    
    .testimonial-next {
        right: 5px;
    }
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 8px;
}

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

/* Contact Cards */
#contact .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

#contact .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
} 

 .work-card {
            transition: transform 0.3s ease;
            height: 300px;
        }
        
.work-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.work-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

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

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

.work-card:hover .work-content {
    transform: translateY(0);
}
.project-icon {
    font-size: 2.5rem;
}
.f-size{
    font-size: 0.9rem;
}
.estm{
    font-size:0.95rem;
}
.map-frame{
    height:100%;
    width:100%;
    border: 0;
}
.align-package{
    align-items: center;
    justify-content: center;
}