﻿
/* Breadcrumb Section Styles ==========================================================================================================*/
.breadcrumb-section {
    position: relative;
    background-image: url('https://cdn-dynmedia-1.microsoft.com/is/image/microsoftcorp/herobackground-1600x616-365076?resMode=sharp2&op_usm=1.5,0.65,15,0&wid=2000&hei=770&qlt=100&fmt=png-alpha&fit=constrain'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Overlay */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

    .breadcrumb-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.breadcrumb-nav {
    font-size: 0.95rem;
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb-nav span {
        margin: 0 5px;
    }

/* Breadcrum Responsive Styles */
@media (min-width: 576px) {
    .breadcrumb-section {
        height: 150px;
    }

    .breadcrumb-content h1 {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .breadcrumb-section {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb-content h1 {
        font-size: 3.5rem;
    }
}

/* Section Wrapper ==================================================================================================================================== */
.agency-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.agency-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Image Styles */
.agency-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 60px 0 60px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Text Content */
.agency-text {
    max-width: 50%;
/*    text-align: left;*/
    color:black;
}

    .agency-text .label {
        font-size: 1.2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .agency-text h2 {
        font-size: 2.5rem;
        color: #36949e;
        margin-bottom: 15px;
    }

    .agency-text .description {
        font-size: 1rem;
        color: black;
        margin-bottom: 20px;
        text-align: justify;
    }

/* CTA Button */
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #36949e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

    .btn-primary:hover {
        background-color: #fff;
        border: 2px solid #36949e;
        color: #36949e;
    }

/* Responsive Layout for Larger Screens */
@media (min-width: 992px) {
    .agency-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .agency-image {
        flex: 1;
        max-width: 50%;
        display: flex;
        justify-content: center;
    }

    .agency-text {
        flex: 1;
        max-width: 50%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .agency-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .agency-stats-circle {
        margin-bottom: 20px;
    }

    .agency-text {
        max-width: 100%;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .agency-container {
        flex-direction: column;
    }

    .agency-stats-circle,
    .agency-image,
    .agency-text {
        max-width: 100%;
        width: 100%;
    }
        .agency-text .description {
            margin: 8px;
        }

        .agency-image img {
            max-width: 100%;
        }

        .agency-text h2 {
            font-size: 1.5rem;
        }

    .stat-box h3 {
        font-size: 1rem;
    }

    .stat-box p {
        font-size: 0.75rem;
    }
}

/* Base Section========================================================================================================================================== */
.founder-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.founder-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Founder Image with Circle and Line */
.founder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .founder-image img {
        width: 240px;
        height: 240px;
        border-radius: 50%;
        object-fit: cover;
        border: 6px solid #36949e;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

.founder-name {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.image-line {
    margin-top: 25px;
    width: 100%;
    height: 2px;
    background: #36949e;
    position: relative;
}

/* Content */
.founder-content {
    max-width: 900px;
}

    .founder-content h2 {
        font-size: 2rem;
        color: #36949e;
        margin-bottom: 10px;
    }

    .founder-content h3 {
        font-size: 1.5rem;
        color: #222;
        margin-bottom: 20px;
    }

    .founder-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #333;
        text-align: justify;
        margin-bottom: 15px;
    }

/* Heading with Vertical Arrow */
.heading-with-arrow {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
}

    .heading-with-arrow h4 {
        font-size: 1.2rem;
        color: #36949e;
        padding-left: 20px;
        margin: 0;
    }

.vertical-arrow {
    width: 2px;
    height: 25px;
    background: #36949e;
    position: relative;
}

    .vertical-arrow::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #36949e;
    }

/* Responsive Layout */
@media (min-width: 992px) {
    .founder-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .founder-image {
        flex: 1;
        max-width: 30%;
    }

    .founder-content {
        flex: 2;
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .founder-content h2 {
        font-size: 1.6rem;
    }

    .founder-content h3 {
        font-size: 1.2rem;
    }

    .founder-content p {
        font-size: 0.95rem;
    }

    .founder-image img {
        width: 200px;
        height: 200px;
    }
}

/* Vision, Mission, Values Section ========================================================================================================================*/
.vmv-section-main h1{
    font-weight:700;
    font-size:2.5rem;
    color:#36949e;
    text-align:center;
/*    background:white;*/
    margin-top:20px;

}
.vmv-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 60px 40px;
/*    background: linear-gradient(to right, #f0f4f8 50%, #ffffff 50%);*/
background:#fff;
    border-radius: 10px;
}


.vmv-box {
    flex: 1 1 30%;
    background-color: #f0f8f9;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

    .vmv-box:hover {
        transform: translateY(-5px);
    }

.vmv-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.vmv-box h2 {
    font-size: 24px;
    color: #36949e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vmv-box p {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    text-align: justify;
}

/* Responsive: Mobile First */
@media (max-width: 1024px) {
    .vmv-section {
        padding: 30px 20px;
        flex-direction: column;
        background: #f0f4f8;
    }

    .vmv-box {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

        .vmv-box:last-child {
            margin-bottom: 0;
        }
}

/* === Marketing Partners Section ========================================================================================================================= */
.partners-section {
    padding: 60px 100px;
    background: #f4f9fc;
}

.partners-heading {
    text-align: center;
    font-size: 2.9rem;
    color: #36949e;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    flex: 1;
    min-width: 250px;
    text-align:center;
    max-width: 400px;
}
.partner-box:hover {
    background: #f0f8f9;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    flex: 1;
    min-width: 250px;
    text-align: center;
    max-width: 400px;
}

    .partner-box h3 {
        font-size: 20px;
        color:#36949e ;
        margin-bottom: 5px;
    }

    .partner-box p {
        font-size: 15px;
        color: black;
        margin-bottom: 20px;
    }

/* === Responsive Styling === */
@media screen and (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-box {
        width: 100%;
        max-width: 100%;
    }

    .partners-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .partners-heading {
        font-size: 20px;
    }

    .partner-box h3 {
        font-size: 18px;
    }

    .partner-box p {
        font-size: 14px;
    }
}

/* === Office Branches Section ============================================================================================================================ */
.branches-section {
    padding: 40px 90px;
    background: #f0f8f9;
}

.branches-heading {
    text-align: center;
    font-size: 2.9rem;
    color: #36949e;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

.branches-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    text-align: center;
    max-width: 400px;
    transition: 0.3s ease;
}

    .branch-box:hover {
        background: #e6f5f8;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .branch-box h3 {
        font-size: 20px;
        color: #36949e;
        margin-bottom: 5px;
    }

    .branch-box p {
        font-size: 15px;
        color: #333;
    }

/* === Responsive Styling === */
@media screen and (max-width: 768px) {
    .branches-grid {
        flex-direction: column;
        align-items: center;
    }

    .branch-box {
        width: 100%;
        max-width: 100%;
    }

    .branches-heading {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .branches-heading {
        font-size: 20px;
    }

    .branch-box h3 {
        font-size: 18px;
    }

    .branch-box p {
        font-size: 14px;
    }
}

