/* Styles from about-us.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #42ad93;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42ad93;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Breadcrumb Section */
.breadcrumb-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bredcum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 80px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-content h2 span.thin {
    font-weight: normal;
}

.breadcrumb-content h2 span.bold {
    font-weight: bold;
}

.breadcrumb-content .breadcrumb {
    font-size: 1.2rem;
    font-weight: 400;
}

.breadcrumb-content .breadcrumb a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-content .breadcrumb span {
    margin: 0 0.5rem;
}

/* About Section */
.about-section {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 30px;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1280px;
    width: 100%;
    position: relative;
}

.about-text {
    flex: 1;
    text-align: left;
    padding: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: left;
}

.about-text h1 span.thin {
    font-weight: normal;
}

.about-text h1 span.bold {
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-text .btn {
    opacity: 1;
    transform: none;
    animation: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    display: inline-block;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-text .btn:hover {
    background: linear-gradient(45deg, #217460, #42ad93);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: slideInRight 0.8s ease-out;
}

.about-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Our Story Section */
.our-story-section {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.our-story-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1280px;
    width: 100%;
    position: relative;
}

.our-story-text {
    flex: 1;
    text-align: left;
    padding: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.our-story-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: left;
}

.our-story-text h2 span.thin {
    font-weight: normal;
}

.our-story-text h2 span.bold {
    font-weight: bold;
}

.our-story-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.our-story-image {
    flex: 1;
    max-width: 500px;
}

.our-story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: slideInRight 0.8s ease-out;
}

.our-story-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Our Leadership & Values Section */
.leadership-values-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.leadership-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.leadership-values-section>* {
    position: relative;
    z-index: 2;
}

.leadership-values-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
}

.leadership-values-section h2 span.thin {
    font-weight: normal;
}

.leadership-values-section h2 span.bold {
    font-weight: bold;
}

.leadership-values-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.leadership-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.expert-showcase {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    animation: slideInLeft 0.8s ease-out;
}

.expert-visual {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.expert-avatar {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.expert-avatar img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4, #3b82f6, #06b6d4);
    border-radius: 22px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.expert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.expert-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.expert-showcase:hover .expert-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
}

.expert-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expert-title {
    color: #ad4e7f;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expert-title i {
    font-size: 1.4rem;
    color: #ad4e7f;
}

.expert-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.expert-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.value-card {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translateX(-100%);
}

.value-card:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.value-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 70px 135px;
    position: relative;
    background: linear-gradient(135deg, #42ad93, #217460);
}

.why-choose-us-section h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.why-choose-us-section h2 span.thin {
    font-weight: normal;
}

.why-choose-us-section h2 span.bold {
    font-weight: bold;
}

.why-choose-us-section .subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: center;
}

.value-propositions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: rgb(63 167 142);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.2rem;
    color: #ae4f80;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
}

.value-item div {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.value-item p {
    font-size: 1rem;
    color: #ffffff;
}

/* Our Team Section */
.team-section {
    padding: 70px 135px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-section h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.team-section h2 span.thin {
    font-weight: 400;
}

.team-section h2 span.bold {
    font-weight: 700;
}

.team-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #42ad93, #217460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(59, 136, 246, 0.3);
}

.team-card:hover .team-avatar {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.team-avatar i {
    font-size: 4rem;
    color: #ffffff;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotateAvatar 15s linear infinite;
    animation-play-state: paused;
}

.team-card:hover .team-avatar::before {
    opacity: 1;
    animation-play-state: running;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.team-role {
    font-size: 1rem;
    color: #ad4e7f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-bio {
    display: none !important;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0 0 20px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), transparent);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #42ad93, #217460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    transform: translateY(10px);
}

.team-card:hover .team-social a {
    opacity: 1;
    transform: translateY(0);
}

.team-social a:hover {
    background: linear-gradient(45deg, #2563eb, #0891b2);
    transform: translateY(-3px) scale(1.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem 50px;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateAvatar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .expert-showcase {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .expert-avatar {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .our-story-text h2 {
        font-size: 2.5rem;
    }

    .our-story-text p {
        font-size: 1rem;
    }

    .leadership-values-section h2 {
        font-size: 2.5rem;
    }

    .expert-content h3 {
        font-size: 2.2rem;
    }

    .expert-avatar {
        height: 300px;
    }

    .why-choose-us-section h2 {
        font-size: 2.5rem;
    }

    .team-section h2 {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        animation: none;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image img {
        animation: none;
    }

    .our-story-content {
        flex-direction: column;
        text-align: center;
    }

    .our-story-text {
        animation: none;
    }

    .our-story-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .our-story-image img {
        animation: none;
    }

    .leadership-values-section {
        padding: 50px 20px;
    }

    .expert-showcase {
        flex-direction: column;
    }

    .expert-avatar {
        height: 280px;
        max-width: 300px;
    }

    .expert-content {
        padding: 1.5rem;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-us-section {
        padding: 50px 20px;
    }

    .team-section {
        padding: 50px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
    }

    .team-avatar i {
        font-size: 3.2rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .our-story-text h2 {
        font-size: 2rem;
    }

    .our-story-text p {
        font-size: 0.9rem;
    }

    .leadership-values-section h2 {
        font-size: 2rem;
    }

    .expert-content h3 {
        font-size: 1.8rem;
    }

    .expert-avatar {
        height: 250px;
    }

    .expert-stats {
        justify-content: center;
    }

    .values-list {
        gap: 1.2rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .why-choose-us-section {
        padding: 50px 15px;
    }

    .why-choose-us-section h2 {
        font-size: 2rem;
    }

    .team-section {
        padding: 50px 15px;
    }

    .team-section h2 {
        font-size: 2rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar i {
        font-size: 2.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Styles from blog-details.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3b82f6;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.breadcrumb-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bredcum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 80px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-content h2 span.thin {
    font-weight: normal;
}

.breadcrumb-content h2 span.bold {
    font-weight: bold;
}

.breadcrumb-content .breadcrumb {
    font-size: 1.2rem;
    font-weight: 400;
}

.breadcrumb-content .breadcrumb a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-content .breadcrumb span {
    margin: 0 0.5rem;
}

.content {
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
}

.blog-detail-section {
    padding: 70px 135px;
    position: relative;
    text-align: left;
}

.blog-detail-section .blog-title {
    font-size: 2.5rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-detail-section .blog-meta {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 400;
}

.blog-detail-section .blog-meta span {
    margin-right: 1rem;
}

.blog-detail-section .blog-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-section .blog-content {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-detail-section .blog-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.blog-detail-section .btn:hover {
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem 50px;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .blog-detail-section .blog-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 1rem;
    }

    .blog-detail-section {
        padding: 50px 20px;
    }

    .blog-detail-section .blog-image {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .breadcrumb-content h2 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 0.9rem;
    }

    .blog-detail-section {
        padding: 50px 15px;
    }

    .blog-detail-section .blog-title {
        font-size: 1.8rem;
    }

    .blog-detail-section .blog-content {
        font-size: 1rem;
    }
}

/* Styles from blogs.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #42ad93;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42ad93;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.breadcrumb-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bredcum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 80px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-content h2 span.thin {
    font-weight: normal;
}

.breadcrumb-content h2 span.bold {
    font-weight: bold;
}

.breadcrumb-content .breadcrumb {
    font-size: 1.2rem;
    font-weight: 400;
}

.breadcrumb-content .breadcrumb a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-content .breadcrumb span {
    margin: 0 0.5rem;
}

.content {
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
}

.blogs-section {
    padding: 70px 135px;
    position: relative;
}

.blogs-section h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.blogs-section h2 span.thin {
    font-weight: normal;
}

.blogs-section h2 span.bold {
    font-weight: bold;
}

.blogs-section .subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-item {
    background: #ffffff;
    border-radius: 12px;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #42ad93, #217460);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-item:hover::before {
    opacity: 1;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.blog-item h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-item .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.blog-item .btn:hover {
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem 50px;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .blogs-section h2 {
        font-size: 3rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 1rem;
    }

    .blogs-section {
        padding: 50px 20px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .breadcrumb-content h2 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 0.9rem;
    }

    .blogs-section {
        padding: 50px 15px;
    }
}

/* Styles from contact.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #42ad93;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42ad93;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Breadcrumb Section */
.breadcrumb-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bredcum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 80px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.breadcrumb-content {
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-content h2 span.thin {
    font-weight: 300;
}

.breadcrumb-content h2 span.bold {
    font-weight: bold;
}

.breadcrumb-content .breadcrumb {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.breadcrumb-content .breadcrumb a {
    color: #e0f2fe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-content .breadcrumb span {
    margin: 0 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-section>* {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 3rem;
    max-width: 1280px;
    width: 100%;
}

.contact-form {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: slideInLeft 0.8s ease-out;
}

.contact-form h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: left;
    background: linear-gradient(45deg, #42ad93, #217460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form h1 span.thin {
    font-weight: 300;
}

.contact-form h1 span.bold {
    font-weight: bold;
}

.contact-form p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:valid ~ label,
.form-group.valid label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #42ad93;
    background: #ffffff;
    padding: 0 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #10b981;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ef4444;
}

.form-group .validation-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    display: none;
}

.form-group.valid .validation-icon.fa-check {
    display: block;
    color: #10b981;
}

.form-group.invalid .validation-icon.fa-times {
    display: block;
    color: #ef4444;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234b5563" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.submit-btn {
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn .spinner {
    display: none;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-info {
    flex: 1;
    max-width: 500px;
    animation: slideInRight 0.8s ease-out;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.info-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.8rem;
    color: #ffffff;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #42ad93, #217460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.info-item a {
    color: #42ad93;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ad4e7f;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.map-section>* {
    position: relative;
    z-index: 2;
}

.map-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-header h2 span.thin {
    font-weight: 300;
}

.map-header h2 span.bold {
    font-weight: bold;
}

.map-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#map {
    height: 550px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

#map:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        max-width: 600px;
    }

    .contact-info {
        max-width: 600px;
    }
}

@media (max-width: 968px) {
    .contact-form h1 {
        font-size: 2.5rem;
    }

    .contact-form p {
        font-size: 1rem;
    }

    .map-header h2 {
        font-size: 2.5rem;
    }

    .map-header p {
        font-size: 1rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.8rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 1rem;
    }

    #map {
        height: 450px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        animation: none;
    }

    .contact-info {
        max-width: 100%;
        animation: none;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .map-section {
        padding: 50px 20px;
    }

    #map {
        height: 400px;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .contact-form h1 {
        font-size: 2rem;
    }

    .contact-form p {
        font-size: 0.9rem;
    }

    .map-header h2 {
        font-size: 2rem;
    }

    .map-header p {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    #map {
        height: 300px;
    }

    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .breadcrumb-content h2 {
        font-size: 2rem;
    }

    .breadcrumb-content .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Styles from index.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #42ad93;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42ad93;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Full-Screen Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    transition: transform 10s ease;
}

.slide:hover .slide-image {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 10;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1100px;
    z-index: 20;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 4rem;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards 0.5s;
    letter-spacing: 1px;
}

.slide-content h2 span.thin {
    font-weight: normal;
}

.slide-content h2 span.bold {
    font-weight: bold;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #f1f5f9;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards 0.8s;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards 1.1s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 30;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.slider-dot.active {
    background: #42ad93;
    transform: scale(1.5);
    border-color: #217460;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(59, 130, 246, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Content Section - ✅ NO TOP MARGIN */
.content {
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
}

/* ✅ SECTION PADDING - 50PX TOP & BOTTOM */
.section-padding {
    padding: 70px 0;
}

/* ✅ ABOUT SECTION WITH 50PX PADDING */
.about-section {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1280px;
    width: 100%;
    position: relative;
}

.about-text {
    flex: 1;
    text-align: left;
    padding: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.about-text h1 span.thin {
    font-weight: normal;
}

.about-text h1 span.bold {
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.about-text .btn {
    opacity: 1;
    transform: none;
    animation: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: slideInRight 0.8s ease-out;
}

.about-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ✅ PRODUCTS SECTION WITH 50PX PADDING */
.products-section {
    padding: 70px 135px;
    position: relative;
}

.products-section h2 {
    font-size: 3rem;
    line-height: 0;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.products-section h2 span.thin {
    font-weight: normal;
}

.products-section h2 span.bold {
    font-weight: bold;
}

.products-section .subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover::before {
    opacity: 1;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-item h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-item .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    opacity: 1;
    transform: none;
    animation: none;
    margin-top: auto;
}

/* ✅ WHY CHOOSE US SECTION WITH 50PX PADDING */
.why-choose-us-section {
    padding: 70px 135px;
    position: relative;
    background: linear-gradient(135deg, #42ad93, #217460);
}

.why-choose-us-section h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.why-choose-us-section h2 span.thin {
    font-weight: normal;
}

.why-choose-us-section h2 span.bold {
    font-weight: bold;
}

.why-choose-us-section .subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.value-propositions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    background: rgb(63 167 142);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.2rem;
    color: #ae4f80;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
}

.value-item div {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.value-item p {
    font-size: 1rem;
    color: #ffffff;
}

/* ✨ UPDATED PARTNERS SECTION WITH 50PX PADDING */
.partners-section {
    padding: 70px 135px;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.partners-section h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.partners-section h2 span.thin {
    font-weight: 400;
}

.partners-section h2 span.bold {
    font-weight: 700;
}

.partners-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* 🏥 MEDICAL THEME MARQUEE CONTAINER */
.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marqueeMedicalScroll 30s linear infinite;
    gap: 2.5rem;
    padding: 0 2rem;
}

/* ⏸️ Pause on hover */
.partners-marquee:hover .marquee-wrapper {
    animation-play-state: paused;
}

/* 🏥 MEDICAL PARTNER CARDS */
.partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.15);
    min-width: 240px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42ad93, #42ad93, #217460, #217460);
    transition: transform 0.4s ease;
    z-index: 2;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* 🩺 Medical Logo Container */
.partner-logo-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.4s ease;
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-card:hover .partner-logo-container {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 20px 40px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: #42ad93;
}

.partner-logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 20s linear infinite;
    animation-play-state: paused;
}

.partner-card:hover .partner-logo-container::before {
    opacity: 1;
    animation-play-state: running;
}

.partner-logo-container img {
    max-height: 85%;
    object-fit: contain;
    filter: grayscale(10%) brightness(1.05) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    position: relative;
}

.partner-card:hover .partner-logo-container img {
    filter: grayscale(0%) brightness(1.1) contrast(1.2);
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.partner-category {
    font-size: 0.85rem;
    color: #ad4e7f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* 🏥 MEDICAL MARQUEE ANIMATION */
@keyframes marqueeMedicalScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 🩺 OUR TEAM SECTION WITH 50PX PADDING */
.team-section {
    padding: 70px 135px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-section h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 3;
}

.team-section h2 span.thin {
    font-weight: 400;
}

.team-section h2 span.bold {
    font-weight: 700;
}

.team-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* 🎯 4 CARDS PER ROW - PERFECT LAYOUT - NO DESCRIPTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42ad93, #42ad93, #217460, #217460);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #42ad93, #217460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.team-card:hover .team-avatar {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.team-avatar i {
    font-size: 4rem;
    color: #ffffff;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.team-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotateAvatar 15s linear infinite;
    animation-play-state: paused;
}

.team-card:hover .team-avatar::before {
    opacity: 1;
    animation-play-state: running;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.team-role {
    font-size: 1rem;
    color: #ad4e7f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-bio {
    display: none !important;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0 0 20px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), transparent);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #42ad93, #217460);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    transform: translateY(10px);
}

.team-card:hover .team-social a {
    opacity: 1;
    transform: translateY(0);
}

.team-social a:hover {
    background: linear-gradient(45deg, #2563eb, #0891b2);
    transform: translateY(-3px) scale(1.1);
}

/* 🩺 TEAM ANIMATION */
@keyframes rotateAvatar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 🆕 REQUEST A QUICK ENQUIRY SECTION */
.enquiry-section {
    padding: 70px 135px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.enquiry-section h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.enquiry-section h2 span.thin {
    font-weight: 400;
}

.enquiry-section h2 span.bold {
    font-weight: 700;
}

.enquiry-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.enquiry-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.enquiry-info {
    flex: 1;
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.enquiry-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ad4e7f;
}

.contact-item span {
    font-size: 1.1rem;
}

.enquiry-form {
    flex: 1;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4b5563;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"%3E%3Cpath fill="%234b5563" d="M1 4l5 5 5-5z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    line-height: normal;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #832e5a, #ad4e7f);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 🆕 BLOGS SECTION */
.blogs-section {
    padding: 70px 135px;
    position: relative;
}

.blogs-section h2 {
    font-size: 3rem;
    color: #1a202c;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.blogs-section h2 span.thin {
    font-weight: 400;
}

.blogs-section h2 span.bold {
    font-weight: 700;
}

.blogs-section .subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-date {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.blog-date i {
    margin-right: 0.5rem;
}

.blog-category {
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.2rem;
    text-align: left;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #42ad93;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #217460;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.view-all-blogs {
    text-align: center;
    margin-top: 3rem;
}

/* 🎯 CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 0;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    opacity: 1;
    transform: none;
    animation: none;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem 50px;
    position: responsive;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .enquiry-container {
        flex-direction: column;
    }

    .enquiry-info {
        padding: 2rem;
    }
}

@media (max-width: 968px) {
    .slide-content h2 {
        font-size: 3rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .products-section h2,
    .why-choose-us-section h2,
    .partners-section h2,
    .team-section h2,
    .enquiry-section h2,
    .blogs-section h2 {
        font-size: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .slide-content h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        animation: none;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image img {
        animation: none;
    }

    .products-section h2,
    .why-choose-us-section h2,
    .partners-section h2,
    .team-section h2,
    .enquiry-section h2,
    .blogs-section h2 {
        font-size: 3rem;
    }

    .products-section,
    .why-choose-us-section,
    .partners-section,
    .team-section,
    .enquiry-section,
    .blogs-section {
        padding: 50px 20px;
    }

    .partners-marquee {
        padding: 2rem 1rem;
    }

    .marquee-wrapper {
        gap: 1.5rem;
        animation-duration: 25s;
    }

    .partner-card {
        min-width: 200px;
        padding: 2rem 1.2rem;
    }

    .partner-logo-container {
        width: 110px;
        height: 110px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
    }

    .team-avatar i {
        font-size: 3.2rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .slide-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .products-section,
    .why-choose-us-section,
    .partners-section,
    .team-section,
    .enquiry-section,
    .blogs-section {
        padding: 50px 15px;
    }

    .partners-section h2,
    .team-section h2,
    .enquiry-section h2,
    .blogs-section h2 {
        font-size: 3rem;
    }

    .marquee-wrapper {
        gap: 1rem;
        animation-duration: 20s;
    }

    .partner-card {
        min-width: 170px;
        padding: 1.5rem 1rem;
    }

    .partner-logo-container {
        width: 90px;
        height: 90px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-avatar i {
        font-size: 2.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .enquiry-form {
        padding: 2rem;
    }
}

/* Styles from products.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1a202c;
    overflow-x: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23e2e8f0" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V4h2V0h4v2h-4v4h-2V2h-4v2h4zM6 34v4h4v-4h2v-4h-2v-4h-4v4H2v2h4zM6 2v4h2V2H2V0h4v4h4V2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

header {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1a202c;
    padding: 10px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 600;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #42ad93;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #42ad93;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.breadcrumb-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bredcum.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    margin-top: 80px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb-content h2 span.thin {
    font-weight: normal;
}

.breadcrumb-content h2 span.bold {
    font-weight: bold;
}

.breadcrumb-content .breadcrumb {
    font-size: 1.2rem;
    font-weight: 400;
}

.breadcrumb-content .breadcrumb a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content .breadcrumb a:hover {
    color: #3b82f6;
}

.breadcrumb-content .breadcrumb span {
    margin: 0 0.5rem;
}

.content {
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
}

.section-padding {
    padding: 70px 0;
}

/* === UPDATED Filter Section (NON-STICKY) === */
.filter-section {
    padding: 40px 135px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* NO STICKY PROPERTIES */
}

.filter-title {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #42ad93 #f1f5f9;
}

.filter-buttons::-webkit-scrollbar {
    height: 6px;
}

.filter-buttons::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.filter-buttons::-webkit-scrollbar-thumb {
    background: #42ad93;
    border-radius: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #e2e8f0;
    color: #4b5563;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(45deg, #42ad93, #217460);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 173, 147, 0.3);
}

/* === Products Section === */
.products-section {
    padding: 50px 135px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    justify-content: center;
}

.products-grid.fade {
    opacity: 0.3;
}

.product-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    display: none;
    width: 280px;
}

.product-item.show {
    display: flex;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #42ad93, #217460);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover::before {
    opacity: 1;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-item h3 {
    font-size: 1.6rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-item .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.product-item .btn:hover {
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

footer {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: #ffffff;
    text-align: center;
    padding: 50px 2rem 50px;
    position: relative;
}

footer::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    width: 50%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {

    .filter-section,
    .products-section {
        padding: 40px 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul li {
        margin-left: 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.6rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .breadcrumb-content h2 {
        font-size: 2rem;
    }

    .filter-section,
    .products-section {
        padding: 40px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-item {
        width: 100%;
        max-width: 100%;
    }
}

/* Styles for Catheter Kit */
.product-detail-section {
    padding: 70px 135px;
}

.product-header {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.product-info {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h1 {
    font-size: 2.2rem;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #42ad93;
    margin-bottom: 2rem;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #42ad93, #217460);
}

p.standard-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.clinical-depts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.dept-badge {
    background: linear-gradient(135deg, #42ad93, #217460);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(66, 173, 147, 0.3);
}

.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.indication-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(66, 173, 147, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.indication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #42ad93;
}

.indication-card i {
    color: #3b82f6;
    font-size: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.indication-card span {
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

.features-list {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #ad4e7f;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
    background: rgba(173, 78, 127, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ad4e7f;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.specs-accordion {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.spec-table-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.spec-table-header {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-table-header i {
    color: #42ad93;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 1.2rem 2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.spec-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1a202c;
    width: 25%;
    font-size: 1.1rem;
    border-right: 1px solid #e2e8f0;
}

.spec-table td {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
}

.spec-table tr:last-child td,
.spec-table tr:last-child th {
    border-bottom: none;
}

/* Kit Specifications Layout */
.spec-kit-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
}

.spec-kit-image {
    flex: 0 0 40%;
}

.spec-kit-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 1px solid #f3f4f6;
}

.spec-kit-image img:hover {
    transform: scale(1.03);
}

.spec-kit-table {
    flex: 1;
}

@media (max-width: 768px) {
    .spec-kit-content {
        flex-direction: column;
        padding: 1rem 0;
    }

    .spec-kit-image {
        flex: 1;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .product-detail-section {
        padding: 50px 20px;
    }

    .product-header {
        flex-direction: column;
    }

    .spec-table th,
    .spec-table td {
        padding: 1rem;
    }

    .spec-table th {
        width: 35%;
    }
}

@media (max-width: 600px) {

    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
        border-right: none;
    }

    .spec-table th {
        background: #eff6ff;
    }
}

/* Full Website Mobile Responsiveness */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: #1a202c;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    header {
        padding: 15px 20px;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        padding: 0;
    }

    header nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid #f1f5f9;
    }

    /* Sliders & Banners */
    .slider-content h2 {
        font-size: 2.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 2.2rem;
    }

    .breadcrumb-container {
        height: 250px;
        margin-top: 60px;
    }

    .slider-container {
        margin-top: 60px;
        height: 80vh;
    }

    /* Grids & Flex */
    .about-content,
    .our-story-content,
    .expert-showcase {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    /* Sections Padding */
    .about-section,
    .our-story-section,
    .leadership-values-section,
    .team-section,
    .why-choose-us-section,
    .enquiry-section,
    .blogs-section,
    .products-section,
    .partners-section,
    .authorized-dealer-section,
    .drap-approval-section {
        padding: 40px 20px;
    }

    .team-grid,
    .products-grid,
    .blogs-grid,
    .values-list,
    .value-propositions,
    .indications-grid,
    .features-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slider-content h2 {
        font-size: 2rem;
    }

    .team-grid,
    .products-grid,
    .blogs-grid,
    .values-list,
    .value-propositions,
    .indications-grid,
    .features-list {
        grid-template-columns: 1fr !important;
    }

    .expert-avatar {
        height: auto;
    }

    .expert-content {
        padding: 1.5rem;
    }

    .enquiry-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-details {
        margin-bottom: 2rem;
    }

    footer {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slider-content h2 {
        font-size: 1.5rem;
    }

    .breadcrumb-content h2 {
        font-size: 1.8rem;
    }

    .about-text h1,
    .our-story-text h2,
    .why-choose-us-section h2,
    .team-section h2,
    .blogs-section h2 {
        font-size: 2rem;
    }

    .expert-content h3 {
        font-size: 1.5rem;
    }
}

/* ------------------------------------- */
/* Authorized Dealer Section (index)     */
/* ------------------------------------- */

.authorized-dealer-section {
    padding: 100px 135px;
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
    border-bottom: 1px solid #e2e8f0;
}

.dealer-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.dealer-content-left {
    flex: 1;
    text-align: left;
}

.dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(66, 173, 147, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dealer-badge i {
    color: #42ad93;
    font-size: 1.5rem;
}

.dealer-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-logo-wrapper {
    flex: 0 0 35%;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.fornia-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.dealer-text h3 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.dealer-text p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dealer-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dealer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ad4e7f, #832e5a);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(173, 78, 127, 0.3);
}

.dealer-btn.outline-btn {
    background: transparent;
    color: #ad4e7f;
    border: 2px solid #ad4e7f;
    box-shadow: none;
}

.dealer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(173, 78, 127, 0.5);
    color: #fff;
}

.dealer-btn.outline-btn:hover {
    background: #ad4e7f;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(173, 78, 127, 0.3);
}

/* ------------------------------------- */
/* DRAP Approval Section                 */
/* ------------------------------------- */

.drap-approval-section {
    padding: 70px 135px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-bottom: 1px solid #d1fae5;
}

.drap-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.drap-content-left {
    flex: 1;
    text-align: left;
}

.drap-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.drap-badge i {
    color: #10b981;
    font-size: 1.5rem;
}

.drap-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #065f46;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drap-logo-wrapper {
    flex: 0 0 35%;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.08);
    border: 1px solid #d1fae5;
}

.drap-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.drap-text h3 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.drap-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 992px) {

    .authorized-dealer-section,
    .drap-approval-section {
        padding: 50px 20px;
    }

    .dealer-container,
    .drap-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .dealer-content-left,
    .drap-content-left {
        text-align: center;
    }

    .dealer-actions {
        justify-content: center;
    }

    .dealer-logo-wrapper,
    .drap-logo-wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .authorized-dealer-section,
    .drap-approval-section {
        padding: 40px 15px;
    }

    .dealer-text h3,
    .drap-text h3 {
        font-size: 1.6rem;
    }

    .dealer-badge span,
    .drap-badge span {
        font-size: 0.9rem;
    }

    .fornia-logo,
    .drap-logo {
        max-height: 80px;
    }

    .dealer-actions {
        flex-direction: column;
        width: 100%;
    }

    .dealer-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------- */
/* Catheter Kit Image Spec Layout        */
/* ------------------------------------- */
.spec-kit-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}

.spec-kit-image {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spec-kit-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.spec-kit-table {
    flex: 1;
    min-width: 300px;
}

/* Puncture Set Section */
.puncture-set-section {
    margin-top: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.puncture-set-section .spec-table-header {
    background: linear-gradient(45deg, #42ad93, #217460);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.puncture-set-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .spec-kit-content {
        flex-direction: column;
    }
    .spec-kit-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .spec-kit-table {
        width: 100%;
        min-width: unset;
    }
    .puncture-set-section {
        padding: 20px 10px;
        margin-top: 30px;
    }
}

/* Clients Section */
.clients-section {
    padding: 70px 0;
    text-align: center;
    background-color: #f8fafc;
}

.clients-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.clients-section h2 span.thin {
    font-weight: 300;
}

.clients-section h2 span.bold {
    font-weight: bold;
}

.clients-section .subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.client-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(66, 173, 147, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(66, 173, 147, 0.15);
    border-color: rgba(66, 173, 147, 0.3);
}

.client-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    padding: 12px;
    background: rgba(66, 173, 147, 0.05);
    transition: all 0.4s ease;
}

.client-card:hover img {
    transform: scale(1.1);
    background: rgba(66, 173, 147, 0.1);
}

.client-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.client-card p {
    font-size: 0.9rem;
    color: #42ad93;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 968px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-section h2 {
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}