/* About Section Styles */
.main-about-section {
    padding: 80px 0;
    background-color: #fff;
    padding-top: 120px;
}

.gallery_section {
    padding: 5rem 0;
    background: #E8F6E9;
    padding: 136px 0px;
    padding-bottom: 50px;
}

.main-about-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-black-color);
    margin-bottom: 1.5rem;
}

.main-about-content .main-lead {
    color: var(--muted-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.main-btn-outline-dark {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-btn-outline-dark:hover {
    background-color: var(--dark-black-color);
    border-color: var(--dark-black-color);
    transform: translateY(-2px);
}

.main-image-grid {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: 20px;
}

.main-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    height: 460px;
}

.main-image-item:hover img {
    transform: scale(1.05);
}

/* Location Section Styles */
.main-location-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.main-location-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-black-color);
    margin-bottom: 1.5rem;
}

.main-location-content .main-lead {
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.main-location-details {
    margin-top: 2rem;
}

.main-detail-item {
    margin-bottom: 1.5rem;
}

.main-detail-item h5 {
    font-weight: 600;
    color: var(--dark-black-color);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--muted-text);
    margin: 0;
}

.main-map-container {
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Feedback Section Styles */
.main-feedback-section {
    padding: 80px 0;
    background-color: #fff;
}

.main-feedback-card {
    background-color: #edf7ed;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(70, 182, 73, 0.1);
    border: 1px solid rgba(70, 182, 73, 0.1);
    display: flex;
    flex-direction: column;
}

.main-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.main-feedback-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.main-client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.main-client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.main-client-details h5 {
    margin: 0;
    color: var(--dark-black-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.main-client-details .main-location {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.carousel-control-next, .carousel-control-prev{
    width: unset !important;
}

.about-section {
    padding: 5rem 0;
    background: #E8F6E9;
    padding: 136px 0px;
    padding-bottom: 50px;
}

.desk_hidden{
    display: none !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-about-section {
        padding: 60px 0;
        /* padding-top: 20px; */
    }

    .main-image-item img{
        height: 100%;
    }

    .main-image-grid {
        margin-left: 0;
        margin-top: 40px;
    }

    .main-location-section {
        padding: 60px 0;
    }

    .main-map-container {
        margin-top: 40px;
        height: 300px;
    }

    .mbl_padding136{
        padding-top: 136px !important;
    }
    
    .mbl_about_us_heading_none{
        display: none;
    }

    .desk_hidden{
        display: block !important;
    }
}

@media (max-width: 768px) {
    .main-about-content h1 {
        font-size: 2rem;
    }

    .main-feedback-card {
        padding: 1.5rem;
    }

    .card-wrapper .row {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .card-wrapper .col-md-5 {
        max-width: 100%;
        margin: 0 auto;
      }
      .mbl-top-16 {
        margin-top: 1rem !important;
      }
}


/* Global Styles */




/* Background Pattern */
/* .background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff5f5;
    z-index: -2;
} */

/* .background-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 200%;
    background-color: var(--primary-color);
    opacity: 0.1;
    transform: rotate(-12deg);
    z-index: -1;
} */

/* Contact Sections */
.contact-section-top {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.contact-section-bottom {
    padding: 80px 0;
    background-color: white;
}


/* Contact Info Styles */
.info-item {
    margin-bottom: 1.5rem;
}

.info-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    margin-bottom: 0;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group .required {
    color: var(--required-color);
    margin-left: 2px;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-control::placeholder {
    color: var(--muted-text);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(70, 182, 73, 0.15);
}

textarea.form-control {
    min-height: 120px;
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #3a9f3d;
    border-color: #3a9f3d;
    transform: translateY(-1px);
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.team-member {
    /* margin-bottom: 8rem; */
    position: relative;
    background: white;
    border-radius: 15px;
    /* padding: 3rem; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-container {
    position: relative;
    padding: 1rem;
}

.team-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 0 2rem;
}

.title-section {
    margin-bottom: 2rem;
}

.role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.designation {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.designation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.description-section {
    padding-top: 1rem;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.read-more:hover::after {
    transform: scaleX(1);
}


.team-member .contact-section-top {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.team-member .contact-section-bottom {
    padding: 80px 0;
    background-color: white;
}


/* Contact Info Styles */
.team-member .info-item {
    margin-bottom: 1.5rem;
}

.team-member  .info-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-member  .info-item p {
    margin-bottom: 0;
}

/* Form Styles */
.team-member .contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.team-member .form-group {
    margin-bottom: 1.2rem;
}

.team-member .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-member .form-group .required {
    color: var(--required-color);
    margin-left: 2px;
}

.team-member .form-control {
    padding: 0.8rem 1.2rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.team-member .form-control::placeholder {
    color: var(--muted-text);
}

.team-member .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(70, 182, 73, 0.15);
}

.team-member textarea.form-control {
    min-height: 120px;
}

.team-member .btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-member .btn-success:hover {
    background-color: #3a9f3d;
    border-color: #3a9f3d;
    transform: translateY(-1px);
}

/* Map Container */
.team-member .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.team-member .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



.team-member .image-container {
    position: relative;
    height: 100%;
    padding: 0;
}

.team-member .team-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member .team-info {
    padding: 0 2rem;
}

.team-member .title-section {
    margin-bottom: 0rem;
}

.team-member .role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.team-member .name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.team-member .designation {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.team-member .designation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.team-member .description-section {
    padding-top: 0rem;
}

.team-member .description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.team-member .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.team-member .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member .read-more:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.team-member .read-more:hover::after {
    transform: scaleX(1);
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
       
    .team-info {
        padding: 1rem 0;
        text-align: center;
    }
    
    .image-container {
        margin-bottom: 2rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .designation::after {
        left: 50%;
        transform: translateX(-50%);
    }


    .team-member {
        /* padding: 2rem; */
        margin-bottom: 4rem;
    }
    
    .team-member .team-info {
        padding: 1rem 0;
        text-align: center;
        padding-top: 2rem !important;
    }
    
    .team-member .image-container {
        margin-bottom: 2rem;
    }
    
    .team-member .name {
        font-size: 2rem;
    }
    
    .team-member .designation::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about_team_members_section .team-member:last-child{
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 576px) {
    .team-member {
        padding: 0rem;
    }
    
    .name {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    .team-member .team-member {
        padding: 1.5rem;
    }
    
    .team-member .name {
        font-size: 1.8rem;
    }
    
    .team-member .description {
        font-size: 0.95rem;
    }
}


.container.gallery-container {
    /* background-color: #fff; */
    color: #35373a;
    /* min-height: 100vh; */
    /* padding: 30px 50px; */
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}

.baguetteBox-button {
    background-color: transparent !important;
}

.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;
}