/* Zoom out effect - scales entire page to 90% */


/* Ensure proper centering and no horizontal scroll */
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    /* Safari smooth scrolling */
}

html {
    height: auto;
    min-height: 100%;
}

body {
    position: relative;
    /* Safari fix */
    height: auto;
    min-height: 100vh;
}

/* For better compatibility, reset any conflicting styles */
* {
    box-sizing: border-box;
}

/* Fix Vision/Mission section overflow */
.vision-mission-animated {
    overflow: hidden;
}

/*-----------------------[ About Section - Complete Design from Home ]------------------------*/
.section-about {
    --ip-teal: #4A7C7C;
    --ip-teal-dark: #3A6565;
    --ip-teal-light: #D4E3E3;
    --ip-orange: #FF6B35;
    --ip-dark: #1f2e2e;
    --text-grey: #5f6c7b;
    --bg-off-white: #f8fcfc;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 12px 30px rgba(0, 137, 123, 0.12);

    padding: 50px 0;
    background: linear-gradient(135deg, #fff 0%, #f8fcfc 100%);
    position: relative;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.top-right-bg-animation {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-about 60s linear infinite;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

.top-left-bg-animation {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-about 60s linear infinite reverse;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

/* Background Animations */
@keyframes float-about {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes pulse-glow-about {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

@keyframes spin-slow-about {
    0% {
        transform: rotate(0deg) scale(1.5);
    }

    50% {
        transform: rotate(180deg) scale(1.4);
    }

    100% {
        transform: rotate(360deg) scale(1.5);
    }
}

.section-about .container {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding-left: 40px;
    padding-right: 40px;
}

.section-about .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.section-about .col-lg-6:first-child {
    padding-right: 15px;
    padding-left: 15px;
}

.section-about .col-lg-6:last-child {
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Typography --- */
.section-about .badge-pill {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--ip-teal-light);
    color: var(--ip-teal);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.section-about .main-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ip-dark);
    margin-bottom: 12px;
    line-height: 1.1;
}

.section-about .highlight-text {
    color: var(--ip-orange);
    position: relative;
    display: inline-block;
}

.section-about .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-about .sub-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ip-teal);
    margin-bottom: 10px;
}

.section-about .description-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-grey);
    margin-bottom: 8px;
    max-width: 100%;
}

.section-about .footnote-text {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-grey);
    font-style: italic;
    margin-bottom: 18px;
    max-width: 100%;
    border-left: 2px solid var(--ip-teal-light);
    padding-left: 10px;
}

/* --- Features Grid --- */
.section-about .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
    margin-top: 18px;
    margin-bottom: 22px;
}

.section-about .feature-card {
    background: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-about .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(0, 137, 123, 0.2);
}

.section-about .icon-box {
    width: 36px;
    height: 36px;
    background: var(--ip-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.section-about .feature-card:hover .icon-box {
    background: var(--ip-teal);
    transform: rotateY(180deg);
}

.section-about .feature-card:hover .icon-box i {
    transform: rotateY(-180deg);
    transition: transform 0.3s ease;
}

.section-about .feature-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ip-dark);
    margin-bottom: 5px;
}

.section-about .feature-desc {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.4;
}

/* --- CTA & Contact --- */
.section-about .action-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-about .btn-primary-custom {
    background-color: var(--ip-teal);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 137, 123, 0.2);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.section-about .btn-primary-custom:hover {
    background-color: var(--ip-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0, 137, 123, 0.3);
    color: white;
}

.section-about .contact-widget {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-about .contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--ip-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow-about 2s infinite;
    font-size: 0.9rem;
}

.section-about .contact-info small {
    display: block;
    font-size: 10px;
    color: var(--text-grey);
    font-weight: 600;
    text-transform: uppercase;
}

.section-about .contact-info a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ip-dark);
    text-decoration: none;
}

/* --- Image Side --- */
.section-about .image-wrapper {
    position: relative;
    padding: 10px;
    text-align: center;
}

.section-about .blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23e0f2f1' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,70.9,32.3C59.6,43.1,48.3,51.8,36.4,59.3C24.5,66.8,12,73.1,-1.2,75.2C-14.4,77.3,-29.8,75.2,-43.3,68.4C-56.8,61.6,-68.4,50.1,-77.1,36.6C-85.8,23.1,-91.6,7.6,-89.4,-6.8C-87.2,-21.2,-77,-34.5,-65.4,-45C-53.8,-55.5,-40.8,-63.2,-27.6,-71.1C-14.4,-79,-1,87.1,14.7,85.6L44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    animation: float-about 8s ease-in-out infinite reverse;
}

.section-about .main-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: float-about 6s ease-in-out infinite;
}

.section-about .stats-card {
    position: absolute;
    bottom: 50px;
    left: -15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 240px;
    border-left: 4px solid var(--ip-orange);
    animation: float-about 7s ease-in-out infinite 1s;
}

.section-about .stats-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ip-dark);
    line-height: 1;
}

.section-about .stats-text {
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-grey);
}

/* --- Responsive Breakpoints --- */

@media (min-width: 1400px) {
    .section-about .container {
        max-width: 85%;
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-about .main-heading {
        font-size: 2.4rem;
    }

    .section-about .col-lg-6:first-child {
        padding-right: 20px;
        padding-left: 15px;
    }

    .section-about .col-lg-6:last-child {
        padding-left: 20px;
        padding-right: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .section-about .container {
        max-width: 88%;
        padding-left: 45px;
        padding-right: 45px;
    }

    .section-about .main-heading {
        font-size: 2.2rem;
    }

    .section-about .col-lg-6:first-child {
        padding-right: 15px;
        padding-left: 15px;
    }

    .section-about .col-lg-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section-about .container {
        max-width: 92%;
        padding-left: 35px;
        padding-right: 35px;
    }

    .section-about .main-heading {
        font-size: 2rem;
    }

    .section-about .features-grid {
        gap: 15px 18px;
    }

    .section-about .col-lg-6:first-child {
        padding-right: 15px;
        padding-left: 15px;
    }

    .section-about .col-lg-6:last-child {
        padding-left: 10px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .section-about {
        padding: 45px 0;
    }

    .section-about .container {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-about .main-heading {
        font-size: 1.9rem;
        text-align: center;
    }

    .section-about .sub-heading {
        text-align: center;
        font-size: 1.05rem;
    }

    .section-about .badge-pill {
        display: table;
        margin: 0 auto 12px auto;
    }

    .section-about .description-text,
    .section-about .footnote-text {
        text-align: center;
        max-width: 100%;
    }

    .section-about .col-lg-6 {
        width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .section-about .stats-card {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 260px;
        animation: none;
    }

    .section-about .main-img {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 15px;
    }

    .section-about .blob-bg {
        display: none;
    }

    .section-about .action-area {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-about .main-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-about .sub-heading {
        text-align: center;
        font-size: 1.05rem;
    }

    .section-about .badge-pill {
        display: table;
        margin: 0 auto 12px auto;
        font-size: 10px;
        padding: 4px 10px;
        letter-spacing: 0.5px;
    }

    .section-about .description-text,
    .section-about .footnote-text {
        text-align: center;
        font-size: 0.9rem;
    }

    .section-about .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-about .feature-card {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .section-about .icon-box {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .section-about .action-area {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .section-about .contact-widget {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-about .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .section-about .badge-pill {
        font-size: 9px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }

    .section-about .stats-card {
        flex-direction: column;
        text-align: center;
        padding: 10px 12px;
        border-left: none;
        border-top: 3px solid var(--ip-orange);
        max-width: 160px;
        width: 70%;
    }

    .section-about .stats-number {
        font-size: 1.3rem;
    }

    .section-about .stats-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

/* Reveal Animation */
.section-about .reveal-element {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-fade-up 0.8s ease forwards;
    margin-top: 60px;
}

@keyframes reveal-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-about .delay-100 {
    animation-delay: 0.1s;
}

.section-about .delay-200 {
    animation-delay: 0.2s;
}

.section-about .delay-300 {
    animation-delay: 0.3s;
}

/*-----------------------[ Our Story Section CSS ]------------------------*/
.our-story-section {
    padding: 120px 0;
    margin-top: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('../../assets/images/about/ourstory.png') center/cover no-repeat;
    background-attachment: scroll;
    /* Changed from fixed for Safari compatibility */
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
}

.our-story-section .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Badge Design - Matching First Section Style */
.our-story-section .story-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #D4E3E3;
    border-radius: 50px;
    margin-bottom: 15px;
}

.our-story-section .badge-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4A7C7C;
    text-transform: uppercase;
}

/* Main Heading */
.our-story-section .story-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2e2e;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.our-story-section .highlight-text {
    color: #FF6B35;
    position: relative;
    display: inline-block;
}

.our-story-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Description Text */
.our-story-section .story-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000000;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .our-story-section {
        padding: 80px 0;
    }

    .our-story-section .story-heading {
        font-size: 1.75rem;
    }

    .our-story-section .story-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .our-story-section {
        padding: 60px 0;
    }

    .our-story-section .story-badge {
        padding: 4px 10px;
    }

    .our-story-section .badge-text {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .our-story-section .story-heading {
        font-size: 1.5rem;
    }

    .our-story-section .story-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .our-story-section .story-heading {
        font-size: 1.3rem;
    }

    .our-story-section .story-description {
        font-size: 0.8rem;
    }
}

/*-----------------------[ Vision & Mission Creative Section CSS ]------------------------*/
.vision-mission-creative-section {
    padding: 100px 0;
    background: #ffffff;
    /* Changed from orange gradient to white */
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Remove creative background elements */
.vision-mission-creative-section::before {
    display: none;
    /* Remove radial gradients */
}

.vision-mission-creative-section::after {
    display: none;
    /* Remove moving pattern */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes move-pattern {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
    }
}

.vision-mission-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    object-fit: contain;
    opacity: 0.03;
    /* Reduced opacity for subtle background */
    z-index: 2;
    pointer-events: none;
}

.vision-mission-creative-section .container {
    position: relative;
    z-index: 10;
}

.vision-mission-creative-section .cap-text,
.vision-mission-creative-section .sec-text {
    position: relative;
    z-index: 10;
    color: #1a1a1a;
    /* Changed from white to dark for visibility */
}

/* Remove floating geometric shapes */
.vision-mission-creative-section .container::before {
    display: none;
    /* Remove floating shape */
}

.vision-mission-creative-section .container::after {
    display: none;
    /* Remove floating shape */
}

/* Vision & Mission Cards Grid */
.vision-mission-grid-creative {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .vision-mission-grid-creative {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.vision-mission-card {
    background: #ffffff;
    /* Clean white background */
    backdrop-filter: none;
    /* Remove blur effect */
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        /* Subtle shadow */
        0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Light border */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

/* Enhanced card background pattern */
.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #ff8c5a, #FF6B35);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.vision-mission-card::after {
    display: none;
    /* Remove corner decoration */
}

.vision-mission-card:hover::before {
    transform: translateX(0);
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        /* Neutral shadow on hover */
        0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    background: #ffffff;
}

/* Vision Card Specific Styling */
.vision-card {
    background: #ffffff;
    /* Clean white */
}

.vision-card .vm-icon-wrapper {
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
}

/* Mission Card Specific Styling */
.mission-card {
    background: #ffffff;
    /* Clean white */
}

.mission-card .vm-icon-wrapper {
    background: linear-gradient(135deg, #ff8c5a, #FF6B35);
}

/* Stats Section with clean background */
.vm-stats-section {
    margin-top: 60px;
    padding: 40px 20px;
    background: #ffffff;
    /* Clean white background */
    backdrop-filter: none;
    /* Remove blur */
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Light border */
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.vm-stats-section::before {
    display: none;
    /* Remove gradient border effect */
}

.vm-stat-box {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.vm-stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 107, 53, 0.3);
}

.vm-stat-box:last-child::after {
    display: none;
}

.vm-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.vm-stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #ff8c5a);
    border-radius: 2px;
}

.vm-stat-label {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Vision & Mission Card Header and Icon Styles */
.vm-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.vm-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.vm-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.vm-icon {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2.5;
}

.vm-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: inherit;
}

.vm-card-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.vm-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF6B35, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vision-mission-card:hover .vm-card-accent {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-creative-section {
        padding: 80px 0;
    }

    .vision-mission-grid-creative {
        margin-top: 40px;
        margin-bottom: 50px;
        gap: 25px;
    }

    .vision-mission-card {
        padding: 30px 25px;
        min-height: 250px;
    }

    .vm-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .vm-card-title {
        font-size: 20px;
    }

    .vm-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .vm-icon {
        width: 24px;
        height: 24px;
    }

    .vm-stats-section {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .vm-stat-box {
        margin-bottom: 20px;
        padding: 15px 10px;
    }

    .vm-stat-box::after {
        display: none;
    }

    .vm-stat-number {
        font-size: 32px;
    }

    .vm-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .vision-mission-card {
        padding: 25px 20px;
    }

    .vm-card-title {
        font-size: 18px;
    }

    .vm-card-text {
        font-size: 15px;
    }

    .vm-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .vm-icon {
        width: 20px;
        height: 20px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: #00A99D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-button:hover {
    background-color: #009287;
    transform: translateY(-2px);
}

.scroll-icon {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .vision-mission-modern-section {
        padding: 80px 0;
    }

    .vision-mission-container {
        padding: 0 16px;
    }

    .vision-mission-grid {
        gap: 50px;
    }

    .vision-mission-main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .vision-mission-professional-card {
        padding: 24px;
    }

    .card-title {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .card-description {
        margin-left: 0;
        margin-top: 8px;
    }

    .card-icon {
        margin-top: 0;
    }

    .scroll-to-top-button {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-icon {
        width: 14px;
        height: 14px;
    }
}

/*-----------------------[ Working Process Section CSS ]------------------------*/
/*-----------------------[ How We Work Section - Services Style ]------------------------*/
.working-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8fcfc 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.working-process-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.working-process-section .top-right-bg-animation {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-about 60s linear infinite;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

.working-process-section .top-left-bg-animation {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-about 60s linear infinite reverse;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

/* Section Header */
.working-process-section .hww-section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

/* Badge Pill */
.working-process-section .hww-badge-pill {
    display: inline-block;
    padding: 5px 12px;
    background-color: #D4E3E3;
    color: #4A7C7C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* Main Title */
.working-process-section .hww-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2e2e;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Orange Highlight */
.working-process-section .highlight-text {
    color: #FF6B35;
    position: relative;
    display: inline-block;
}

.working-process-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Sub Text */
.working-process-section .hww-sub-text {
    font-size: 0.95rem;
    color: #5f6c7b;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.working-process-section .container {
    position: relative;
    z-index: 2;
}

/* Process Flow Container */
.process-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 200px;
    /* Increased gap between circles */
    margin-top: 60px;
}

@media (min-width: 768px) {
    .process-flow-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 200px;
        /* Increased gap for better spacing */
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    .process-flow-container {
        gap: 250px;
        /* Even more gap on larger screens */
        flex-wrap: nowrap;
    }
}

/* Process Step Wrapper */
.process-step-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    text-align: center;
    flex: 1;
}

@media (min-width: 768px) {
    .process-step-wrapper {
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .process-step-wrapper {
        max-width: 250px;
    }
}

/* Process Step Circle */
.process-step-circle {
    position: relative;
    width: 320px;
    /* Increased from 280px */
    height: 320px;
    /* Increased from 280px */
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    /* Keep padding same */
    transition: all 0.3s ease-in-out;
    text-align: center;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

/* Add small orange dots around each circle */
.process-step-circle::before {
    content: '';
    position: absolute;
    top: -40px;
    /* Reduced from -50px */
    left: -40px;
    /* Reduced from -50px */
    width: calc(100% + 80px);
    /* Reduced from +100px */
    height: calc(100% + 80px);
    /* Reduced from +100px */
    border-radius: 50%;
    background: transparent;
    border: 3px dotted #FF6B35;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    animation: orbit 8s linear infinite;
    clip-path: polygon(50% 50%,
            50% 0%,
            100% 0%,
            100% 50%,
            50% 50%,
            50% 100%,
            0% 100%,
            0% 50%);
}

/* Orbit animation keyframes */
@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Different animation speeds for each circle with small dots */
.process-step-wrapper:nth-child(1) .process-step-circle::before {
    border: 3px dotted #FF6B35;
    animation: orbit 6s linear infinite;
    clip-path: polygon(50% 50%,
            50% 0%,
            100% 0%,
            100% 50%,
            50% 50%,
            50% 100%,
            0% 100%,
            0% 50%);
}

.process-step-wrapper:nth-child(2) .process-step-circle::before {
    border: 3px dotted #FF6B35;
    animation: orbit 8s linear infinite reverse;
    clip-path: polygon(50% 50%,
            50% 0%,
            100% 0%,
            100% 50%,
            50% 50%,
            50% 100%,
            0% 100%,
            0% 50%);
}

.process-step-wrapper:nth-child(3) .process-step-circle::before {
    border: 3px dotted #FF6B35;
    animation: orbit 10s linear infinite;
    clip-path: polygon(50% 50%,
            50% 0%,
            100% 0%,
            100% 50%,
            50% 50%,
            50% 100%,
            0% 100%,
            0% 50%);
}

/* Remove 4th circle completely */
.process-step-wrapper:nth-child(4) {
    display: none !important;
}

.process-step-wrapper:nth-child(4) .process-step-circle::before {
    display: none !important;
}

.process-step-circle:hover {
    border-color: transparent;
    /* No border on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    background: #ffffff;
    /* Change to white on hover */
}

.process-step-circle:hover::before {
    border: 3px dotted #FF6B35;
    transform: scale(1.05);
    animation-play-state: paused;
    /* Pause animation on hover for better interaction */
}

@media (min-width: 768px) {
    .process-step-circle {
        width: 300px;
        /* Increased from 260px */
        height: 300px;
        /* Increased from 260px */
        padding: 30px;
        /* Keep padding same */
    }
}

@media (min-width: 1200px) {
    .process-step-circle {
        width: 280px;
        /* Increased from 240px */
        height: 280px;
        /* Increased from 240px */
        padding: 28px;
        /* Keep padding same */
    }
}

/* Process Number Badge */
.process-number-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    width: 45px;
    /* Reduced from 50px */
    height: 45px;
    /* Reduced from 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FF6B35;
    color: white;
    font-weight: bold;
    font-size: 16px;
    /* Reduced from 18px */
    box-shadow: 0 4px 6px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

/* Process Icon Container */
.process-icon-container {
    margin-bottom: 18px;
    /* Reduced from 20px */
    perspective: 1000px;
    /* Add perspective for 3D effect */
}

.process-icon {
    width: 50px;
    /* Reduced from 70px */
    height: 50px;
    /* Reduced from 70px */
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    /* Preserve 3D transformations */
}

.process-step-circle:hover .process-icon {
    transform: rotateX(360deg);
}

/* Process Content */
.process-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step-title {
    font-size: 22px;
    /* Reduced from 24px */
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    /* Reduced from 15px */
    font-family: inherit;
}

@media (min-width: 768px) {
    .process-step-title {
        font-size: 20px;
        /* Reduced from 22px */
    }
}

@media (min-width: 1200px) {
    .process-step-title {
        font-size: 18px;
        /* Reduced from 20px */
    }
}

.process-step-description {
    color: #6b7280;
    font-size: 15px;
    /* Reduced from 16px */
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .process-step-description {
        font-size: 14px;
        /* Reduced from 15px */
    }
}

@media (min-width: 1200px) {
    .process-step-description {
        font-size: 13px;
        /* Reduced from 14px */
        line-height: 1.5;
    }
}

/* Responsive adjustments for 3 circles - Updated spacing */
@media (max-width: 1199px) and (min-width: 768px) {
    .process-flow-container {
        justify-content: center;
        gap: 150px;
        /* Increased gap for 3 circles */
    }

    .process-step-wrapper:nth-child(3) {
        margin-top: 100px;
        /* Increased vertical spacing */
    }

    .process-step-wrapper:nth-child(4) {
        display: none !important;
        /* Ensure 4th circle is hidden */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .working-process-section {
        padding: 80px 0;
    }

    .working-process-section .text-center {
        margin-bottom: 50px;
    }

    .process-flow-container {
        gap: 120px;
        /* Increased mobile gap */
        margin-top: 40px;
    }

    .process-step-circle {
        width: 280px;
        /* Increased from 240px */
        height: 280px;
        /* Increased from 240px */
        padding: 26px;
        /* Reduced from 30px */
    }

    .process-step-title {
        font-size: 18px;
        /* Reduced from 20px */
    }

    .process-step-description {
        font-size: 13px;
        /* Reduced from 14px */
    }

    .process-icon {
        width: 58px;
        /* Reduced from 65px */
        height: 58px;
        /* Reduced from 65px */
    }

    .process-number-badge {
        width: 38px;
        /* Reduced from 40px */
        height: 38px;
        /* Reduced from 40px */
        font-size: 13px;
        /* Reduced from 14px */
    }
}

@media (max-width: 480px) {
    .process-step-circle {
        width: 260px;
        /* Increased from 220px */
        height: 260px;
        /* Increased from 220px */
        padding: 22px;
        /* Reduced from 25px */
    }

    .process-step-title {
        font-size: 16px;
        /* Reduced from 18px */
    }

    .process-icon {
        width: 50px;
        /* Reduced from 55px */
        height: 50px;
        /* Reduced from 55px */
    }

    .process-number-badge {
        width: 32px;
        /* Reduced from 35px */
        height: 32px;
        /* Reduced from 35px */
        font-size: 11px;
        /* Reduced from 12px */
    }
}

/*-----------------------[ Meet Our Team Section CSS ]------------------------*/
/*-----------------------[ Meet Our Team Section - Services Style ]------------------------*/
.meet-team-section {
    padding: 40px 0 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f8fcfc 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    clear: both;
    margin-bottom: 40px;
}

/* Animated Gradient Background Layer */
.meet-team-section .team-bg-gradient-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 137, 123, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

/* Creative Background Container (Shapes) */
.meet-team-section .team-bg-creative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Abstract Shapes */
.meet-team-section .team-bg-shape {
    position: absolute;
    opacity: 1;
}

.meet-team-section .shape-ring-1 {
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 50px solid rgba(0, 137, 123, 0.05);
    border-radius: 50%;
    animation: spin-slow 25s linear infinite;
}

.meet-team-section .shape-ring-2 {
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(255, 107, 53, 0.04);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite reverse;
}

.meet-team-section .shape-dot-1 {
    top: 15%;
    right: 10%;
    width: 15px;
    height: 15px;
    background: #4A7C7C;
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y 6s ease-in-out infinite;
}

.meet-team-section .shape-dot-2 {
    bottom: 25%;
    left: 5%;
    width: 25px;
    height: 25px;
    background: #FF6B35;
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y 7s ease-in-out infinite 1s;
}

/* Section Header */
.meet-team-section .team-section-header {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

/* Badge Pill */
.meet-team-section .team-badge-pill {
    display: inline-block;
    padding: 5px 12px;
    background-color: #D4E3E3;
    color: #4A7C7C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* Main Title */
.meet-team-section .team-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2e2e;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Orange Highlight */
.meet-team-section .highlight-text {
    color: #FF6B35;
    position: relative;
    display: inline-block;
}

.meet-team-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Sub Text */
.meet-team-section .team-sub-text {
    font-size: 0.95rem;
    color: #5f6c7b;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.meet-team-section .container {
    position: relative;
    z-index: 2;
}

/* Team profile wrapper */
.team-profile-wrapper {
    margin-top: 40px;
    margin-bottom: 0;
    /* Remove bottom margin */
}

/* Left Column - Content Area */
.team-content-area {
    padding: 40px 30px;
}

/* Name styling */
.team-member-name {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: inherit;
}

/* Role styling - subtle badge */
.team-member-role {
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

/* Description text */
.team-member-description {
    color: #555555;
    line-height: 1.7;
    font-size: 15px;
    margin-top: 20px;
}

/* Expertise text */
.team-member-expertise {
    color: #666666;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
    padding-left: 20px;
    border-left: 3px solid #f0f0f0;
    font-style: italic;
}

/* Social media icons - minimal styling */
.team-social-section {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.team-social-link {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

/* Navigation arrows - clean styling */
.team-navigation {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.team-nav-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #e0e0e0;
    color: #666666;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-nav-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    background: white;
}

/* View Full Profile Button */
.view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.view-profile-btn svg {
    transition: transform 0.3s ease;
}

.view-profile-btn:hover svg {
    transform: translateX(4px);
}

/* Right Column - Image Area with increased height */
.team-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 600px;
    /* Increased from default */
}

.team-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.team-member-image {
    width: 100%;
    height: 500px;
    /* Increased height from auto */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-image-wrapper:hover .team-member-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Profile transition */
.profile-transition {
    transition: opacity 0.4s ease-in-out;
}

/* Footer separation fix */
footer {
    clear: both;
    /* Clear any floated elements */
    margin-top: 0;
    /* Remove top margin */
    position: relative;
    /* Ensure proper positioning */
    z-index: 1;
    /* Lower z-index than team section */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .meet-team-section {
        padding: 80px 0 60px 0;
    }

    .team-content-area {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .team-member-name {
        font-size: 32px;
    }

    .team-member-role {
        font-size: 13px;
        padding: 5px 12px;
    }

    .team-member-description {
        font-size: 14px;
    }

    .team-social-link {
        width: 40px;
        height: 40px;
    }

    .team-nav-btn {
        width: 40px;
        height: 40px;
    }

    .team-image-area {
        padding: 20px;
    }

    .team-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .meet-team-section {
        padding: 60px 0 40px 0;
    }

    .team-content-area {
        padding: 25px 15px;
    }

    .team-member-name {
        font-size: 28px;
    }

    .team-member-role {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .team-social-link {
        width: 38px;
        height: 38px;
    }

    .team-nav-btn {
        width: 38px;
        height: 38px;
    }

    .team-image-wrapper {
        max-width: 280px;
    }
}

/* ------------------[ Vision/Mission Animated Theming Overrides ]------------------ */
/*-----------------------[ Vision Mission Values Section - Services Style ]------------------------*/
.vision-mission-animated {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8fcfc 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Animated Gradient Background Layer */
.vision-mission-animated .mvv-bg-gradient-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 137, 123, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

/* Creative Background Container (Shapes) */
.vision-mission-animated .mvv-bg-creative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Abstract Shapes */
.vision-mission-animated .mvv-bg-shape {
    position: absolute;
    opacity: 1;
}

.vision-mission-animated .shape-ring-1 {
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 50px solid rgba(0, 137, 123, 0.05);
    border-radius: 50%;
    animation: spin-slow 25s linear infinite;
}

.vision-mission-animated .shape-ring-2 {
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(255, 107, 53, 0.04);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite reverse;
}

.vision-mission-animated .shape-dot-1 {
    top: 15%;
    right: 10%;
    width: 15px;
    height: 15px;
    background: #4A7C7C;
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y 6s ease-in-out infinite;
}

.vision-mission-animated .shape-dot-2 {
    bottom: 25%;
    left: 5%;
    width: 25px;
    height: 25px;
    background: #FF6B35;
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y 7s ease-in-out infinite 1s;
}

/* Section Header */
.vision-mission-animated .mvv-section-header {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

/* Badge Pill */
.vision-mission-animated .mvv-badge-pill {
    display: inline-block;
    padding: 5px 12px;
    background-color: #D4E3E3;
    color: #4A7C7C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
}

/* Main Title */
.vision-mission-animated .mvv-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2e2e;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Orange Highlight */
.vision-mission-animated .highlight-text {
    color: #FF6B35;
    position: relative;
    display: inline-block;
}

.vision-mission-animated .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Sub Text */
.vision-mission-animated .mvv-sub-text {
    font-size: 0.95rem;
    color: #5f6c7b;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards - Keep existing styling */
.vision-mission-animated .infographic-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.vision-mission-animated .infographic-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Icon Container - Matching Services Section */
.vision-mission-animated .icon-container {
    width: 48px !important;
    height: 48px !important;
    background: #1f2e2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.vision-mission-animated .icon-container svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #fff;
    transition: all 0.3s ease;
}

/* Hover: Flip Icon Box */
.vision-mission-animated .infographic-card:hover .icon-container {
    background: #4A7C7C;
    transform: rotateY(180deg);
}

.vision-mission-animated .infographic-card:hover .icon-container svg {
    transform: rotateY(-180deg);
}

/* Connecting Lines */
.vision-mission-animated .connecting-line {
    stroke: #FF6B35;
}

.vision-mission-animated .connecting-dot {
    fill: #FF6B35;
}

/* Animation Keyframes */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .vision-mission-animated {
        padding: 50px 0;
    }

    .vision-mission-animated .mvv-main-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .vision-mission-animated {
        padding: 40px 0;
    }

    .vision-mission-animated .mvv-badge-pill {
        font-size: 12px;
        padding: 4px 10px;
    }

    .vision-mission-animated .mvv-main-title {
        font-size: 1.5rem;
    }

    .vision-mission-animated .mvv-sub-text {
        font-size: 0.9rem;
    }
}

/* Breadcrumb (match Patent style) */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.85) 100%),
        url('../images/practice-areas-services/breadcrumb-bg.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 6rem 0 3rem 0;
    min-height: 280px;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    list-style: none;
    margin-left: 0;
    padding: 0;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-list li a {
    color: #00A7A1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #FF7F4D;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.breadcrumb-list li:last-child {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 3rem 0 2rem 0;
        min-height: 160px;
        align-items: flex-end;
    }

    .breadcrumb-list {
        justify-content: flex-start;
        font-size: 14px;
        padding-left: 10px;
    }
}

/* Safari-specific fixes for smooth scrolling */
@supports (-webkit-touch-callout: none) {

    /* iOS Safari specific styles */
    html,
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Ensure sections don't cause scroll issues */
    .our-story-section,
    .vision-mission-creative-section,
    .section-about {
        transform: translateZ(0);
        /* Force GPU acceleration */
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}