/* General Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #45a049;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --text-color: #666666;
    --bg-gray: #f5f5f5;
    --dark-black-color: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 0 0;
    transition: all 0.3s ease;
    background: white !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--dark-color) !important;
    text-transform: lowercase;
}

.navbar-brand img{
    min-height: 73px;
    width: 320px;
    object-fit: contain;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 18px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('./../pexels-mikhail-nilov-8296970.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    z-index: 2; /* Ensure content is above background */
}

.hero h1 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.border_radius_46{
    border-radius: 46px !important;
    padding: 0.6rem 4rem !important;
    font-size: 16px !important;
}

.wlcm_btn_contact{
    border: 1px solid #000 !important;
    color: #000 !important;;
}

.wlcm_btn_contact:hover{
    background-color: unset !important;
    color: #000 !important;
    border-color: unset !important;
}

.rating-box {
    display: inline-block;
    padding: 1rem;
}

.stars {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.welcome-image {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #E8F6E9;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: start;
    gap: 1rem;
    width: calc(100% - 40px);
    right: 20px;
}

.image-caption i {
    color: var(--dark-black-color);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.section-subtitle {
    color: var(--text-color);
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h4.carousel_heading{
    min-height: 52px;
    display: flex;
    align-items: center;
    margin: 0 !important;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-card p.carousel_summary {
    min-height: 80px;
    margin: 0 !important;
}

.service-card img {
    border-radius: 5px;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: white;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    margin: 2rem 0;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.client-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.client-name {
    margin: 0;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.footer-form input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-label{
    color: #1a1a1a;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.submit_inquiry{
    border-radius: 46px !important;
    padding: 0.6rem 3rem !important;
    font-size: 16px !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.font24-mbl18{
    font-size: 24px !important;
}

.fontp24-mbl18e{
    font-size: 18px !important;
}

.service-image.our_services{
    max-width: 413px;
    min-height: 482px;
    object-fit: cover;
    border-radius: 12px;
}

.box_shadow {
    box-shadow: 0 0 #000, 0 0 #0000, 0 0 #000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 0;
}

.pad12_16 {
    padding: 16px 12px
}

.consulting-service-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.consulting-service-text {
    font-size: 12px;
    color: #000;
}


.mobile_view_block{
    display: none !important;
}
/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .flex-direction-gap{
        flex-direction: column;
        margin-top: 16px !important;
    }

    .flex-direction-gap img.w-50{
        width: 100% !important;
    }

    .service-testimonial{
        width: 100% !important;
    }

    .services-section{
        padding-top: 72px !important;
    }

    .mbl-top{
        margin-top: 120px !important;
    }
    .services-section .service-description{
        height: auto !important;
    }

    .services-section br{
      display: none !important;      
    }

    .box_shadow {
        padding: unset !important;
    }

    .mblZero {
        margin: 0px !important;
    }

    .mbl_direction_column {
        flex-direction: column
    }

    .mbl_direction_column .image-container img {
        max-width: 100% !important;
        /* min-height: 315px !important; */

    }

    .pad12_16 {
        min-height: 300px;
        padding: 24px 12px;

    }

    .font24-mbl18{
        font-size: 20px !important;
    }

    .fontp24-mbl18e{
        font-size: 16px !important;
    }
 
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .contact-form-wrapper {
        margin-top: 2rem;
    }

    .service-testimonial br{
        display: none !important;      
    }

    .mbl-top-16{
        margin-top: 16px !important;
    }

    .desktop_view_block{
        display: none !important;
    }
    .mobile_view_block{
        display: block !important;
    }

    
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
    }

    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .navbar-brand img{
        width: 240px;
    }

    .carousel-control-prev, .carousel-control-next{
        display: none;
    }

    .footer_mbl_top{
        margin-bottom: 20px;
    }
} 


.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

