/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #1a4d72 !important;
    --secondary-color: #2e6aa1 !important;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --grey-color: #6c757d;
    --white-color: #fff;
    --section-padding: 80px 0;
}

/* Force color updates throughout the site */
.navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: #1a4d72 !important;
}

#hero .contact-btn {
    background: #1a4d72 !important;
}

#hero .contact-btn:hover {
    background: #2e6aa1 !important;
}

.about-content h3 {
    color: #1a4d72 !important;
}

.feature i {
    color: #1a4d72 !important;
}

.service-category-icon {
    background: #1a4d72 !important;
}

.service-triangle {
    color: #1a4d72 !important;
}

.service-item-header:hover .service-name {
    color: #1a4d72 !important;
}

.contact-item .icon {
    background: #1a4d72 !important;
}

.contact-form h3 {
    color: #1a4d72 !important;
}

.form-control:focus {
    border-color: #1a4d72 !important;
}

.btn-primary {
    background-color: #1a4d72 !important;
    border-color: #1a4d72 !important;
}

.btn-primary:hover {
    background-color: #2e6aa1 !important;
    border-color: #2e6aa1 !important;
}

.back-to-top {
    background-color: #25d366 !important;
}

.back-to-top:hover {
    background-color: #128c7e !important;
}

#footer {
    background: #1a4d72 !important;
}

.review-arrow {
    background: #1a4d72 !important;
}

.review-dot.active {
    background: #1a4d72 !important;
}

.title-line {
    background: #333 !important;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #333;
}

/* Main section headings in blue */
#services h2,
#reviews h2,
#gallery h2,
#about h2,
#contact h2 {
    color: var(--primary-color);
}

/* What Our Clients Say heading specifically */
#reviews .section-title h2 {
    color: var(--primary-color);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #f8f9fa !important;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #333;
    margin: 0 auto 20px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    padding-left: 0px;
}

#header .logo img {
    max-height: 325px;
    width: auto;
}

/* Make sure logo and navbar are aligned on mobile */
@media (max-width: 767px) {
    #header {
        padding: 5px 0;
    }
    
    #header .row.align-items-center {
        align-items: center !important;
    }
    
    #header .logo {
        padding-left: 5px;
    }
    
    #header .logo img {
        max-height: 145px;
    }
    
    .navbar-toggler {
        margin-right: 15px;
        border: none;
        padding: 6px 9px;
        font-size: 15px;
        width: 37px;
        height: 37px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--white-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/static/images/hero-bg-desktop.jpg?v=3');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
    margin-top: 70px;
}

/* Mobile hero image */
@media (max-width: 768px) {
    #hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('/static/images/hero-bg-mobile.jpg?v=3');
        background-size: cover;
        background-position: center;
    }
}

#hero .hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
}

#hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--white-color);
    opacity: 0.9;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--white-color);
}

#hero p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

#hero .contact-btn {
    font-weight: 500;
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

#hero .contact-btn i {
    margin-right: 10px;
    font-size: 20px;
}

#hero .contact-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-img img {
    max-width: 100%;
    transition: transform 0.3s ease;
}

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

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--grey-color);
    line-height: 1.7;
}

.about-features {
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-category-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(26, 77, 114, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 77, 114, 0.2);
    border-color: var(--primary-color);
}

.service-category-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

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

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

.service-category-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 25px 30px 20px 30px;
    border-bottom: 2px solid rgba(26, 77, 114, 0.1);
}

.service-category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.service-category-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-category-header p {
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.service-items {
    margin-top: 20px;
    padding: 0 30px 30px 30px;
}

.service-item {
    margin-bottom: 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 77, 114, 0.15);
    transform: translateX(5px);
}

.service-item-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.service-item-header:hover {
    background: linear-gradient(135deg, rgba(26, 77, 114, 0.05) 0%, rgba(26, 77, 114, 0.1) 100%);
}

.service-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-right: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.service-triangle.rotated {
    transform: rotate(90deg);
    border-left-color: #000;
}

.service-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 17px;
    transition: color 0.3s ease;
}

.service-item-header:hover .service-name {
    color: var(--primary-color);
}

.service-description {
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(26, 77, 114, 0.02) 0%, rgba(26, 77, 114, 0.05) 100%);
    border-top: 2px solid rgba(26, 77, 114, 0.1);
    animation: slideDown 0.4s ease;
}

.service-description p {
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-container {
    margin-top: 20px;
}

.project-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.project-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.project-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-description {
    color: var(--grey-color);
    margin-bottom: 0;
}

.project-gallery {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Gallery Carousel (Bootstrap-based)
--------------------------------------------------------------*/
#galleryCarousel {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gallery-slide-content {
    display: flex;
    flex-direction: column;
    height: 500px;
}

.gallery-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-carousel-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.gallery-carousel-img:hover {
    transform: scale(1.05);
}

.gallery-slide-info {
    padding: 20px 30px;
    text-align: center;
    background: var(--white-color);
}

.gallery-slide-info h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-slide-info p {
    color: var(--grey-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Custom navigation buttons positioned lower */
.gallery-nav-btn {
    position: absolute;
    top: 25%;
    width: 50px;
    height: 50px;
    background: rgba(26, 77, 114, 0.8) !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-nav-btn:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1);
}

.gallery-nav-btn i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Custom indicators */
.gallery-indicators {
    position: static;
    margin: 0;
    padding: 20px;
    background: var(--white-color);
}

.gallery-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    background: #ddd !important;
    border: none !important;
    transition: all 0.3s ease;
}

.gallery-indicators button.active,
.gallery-indicators button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gallery-slide-content {
        height: 400px;
    }
    
    .gallery-carousel-img {
        height: 250px;
        object-fit: contain;
    }
    
    .gallery-slide-info {
        padding: 15px 20px;
    }
    
    .gallery-slide-info h4 {
        font-size: 1.3rem;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        top: 20%;
    }
    
    .gallery-nav-btn i {
        font-size: 1rem;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 114, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-info {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-info h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
}

.gallery-info p {
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0;
}

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

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

.gallery-img:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Modal Styles */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

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

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: none;
    padding: 15px 20px;
}

#modalImage {
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .project-container {
        padding: 20px;
    }
    
    .gallery-img img {
        height: 200px;
    }
}

/*--------------------------------------------------------------
# Testimonials - Google Reviews Style
--------------------------------------------------------------*/
.google-reviews-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.reviews-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    margin-bottom: 15px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.avatar-placeholder {
    font-weight: bold;
    color: #555;
    font-size: 16px;
}

.reviewer-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
}

.review-stars {
    display: flex;
    margin-bottom: 5px;
}

.star {
    color: #FBBC05;
    font-size: 16px;
    margin-right: 2px;
}

.review-source {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

.google-icon {
    height: 15px;
    margin-right: 5px;
    display: inline-block;
}

.review-body {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.review-body p {
    margin: 0;
}

/* Review Navigation */
.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.review-arrow:hover {
    background: var(--secondary-color);
}

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

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

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

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(26, 77, 114, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.whatsapp-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 106, 161, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.chat-text {
    white-space: nowrap;
}

/* Mobile Triangle Adjustments */
@media (max-width: 768px) {
    .service-triangle {
        border-left-width: 7px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        margin-right: 12px;
    }
    
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .chat-text {
        display: none;
    }
    
    .whatsapp-btn svg {
        margin-right: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-card {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .reviewer-info h4 {
        font-size: 14px;
    }
    
    .review-body {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon i {
    color: var(--white-color);
    font-size: 18px;
}

.contact-item .text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item .text p {
    margin-bottom: 0;
    color: var(--grey-color);
}

.contact-item .text p a {
    color: var(--grey-color);
}

.contact-item .text p a:hover {
    color: var(--primary-color);
}

.map-container {
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.contact-form {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: auto;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Floating Buttons
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background-color: var(--primary-color) !important;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white-color);
    text-decoration: none;
}

.back-to-top:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #128c7e !important;
}

.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-quote-btn.show {
    opacity: 1;
    visibility: visible;
}

.floating-quote-btn a {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
}

.floating-quote-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.floating-quote-btn:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
}

/*--------------------------------------------------------------
# WhatsApp Float
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white-color);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--primary-color);
    padding: 50px 0 0 0;
    color: #fff;
    font-size: 14px;
}

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

.footer-logo h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

.footer-links ul li {
    padding: 7px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 0;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer-links ul a:hover {
    color: var(--white-color);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-contact p {
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact strong {
    font-weight: 500;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--white-color);
}

.social-links {
    margin-top: 15px;
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-right: 10px;
    color: var(--white-color);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
}

.copyright {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.credits p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        right: 15px !important;
        left: auto !important;
        z-index: 1050 !important;
        margin-top: 5px !important;
        background: rgba(255, 255, 255, 1) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
        border: 2px solid rgba(255, 255, 255, 1) !important;
        width: 250px !important;
        max-width: 250px !important;
    }
    
    .navbar-nav {
        padding: 15px 0 !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .navbar-nav.ms-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .navbar-nav .nav-item {
        display: block !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(26, 77, 114, 0.1) !important;
        width: 100% !important;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none !important;
    }
    
    .navbar-nav .nav-link {
        color: #333333 !important;
        padding: 15px 20px !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
        font-weight: 500 !important;
        background: rgba(255, 255, 255, 1) !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(26, 77, 114, 0.1) !important;
        color: var(--primary-color) !important;
    }
    #hero {
        height: 70vh;
    }
    
    #hero h1 {
        font-size: 36px;
        line-height: 42px;
    }
    
    #hero p {
        font-size: 16px;
    }
    
    .navbar-toggler {
        border-color: var(--primary-color);
        padding: 8px 11px;
        font-size: 17px;
        width: 40px;
        height: 40px;
    }
    
    .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='%231a4d72' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    

}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    #hero {
        height: 90vh;
        text-align: center;
    }
    
    #hero .hero-content {
        padding: 30px;
        margin-top: 30px;
    }
    
    #hero h1 {
        font-size: 30px;
        line-height: 36px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item .icon {
        margin-bottom: 10px;
    }
    
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .footer-links, .footer-contact, .footer-newsletter {
        margin-top: 20px;
    }
    
    .back-to-top {
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    #header {
        padding: 3px 0;
    }
    
    #header .logo img {
        max-height: 77px;
    }
    
    #hero {
        height: 100vh;
    }
    
    #hero .hero-content {
        padding: 20px;
    }
    
    #hero h1 {
        font-size: 24px;
        line-height: 30px;
    }
    
    #hero p {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/*--------------------------------------------------------------
# Projects Carousel
--------------------------------------------------------------*/
.projects-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.projects-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.carousel-slide.active {
    opacity: 1;
}

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

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

.project-info {
    padding: 30px 30px 120px 30px; /* Increased bottom padding significantly to prevent text cutoff */
    background: var(--white-color);
    text-align: center;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-info p {
    color: var(--grey-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 77, 114, 0.8);
    color: var(--white-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

.carousel-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--white-color);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .project-image {
        height: 300px;
    }
    
    .project-info {
        padding: 20px 20px 100px 20px; /* Increased bottom padding for mobile */
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
}


