:root {
    --primary-color: #59bba4;
    --secondary-color: #4aa892;
    --accent-color: #0d6efd;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --primary-light: #6ac9b3;
    --primary-dark: #488f7d;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
}
body {
    font-family: "Roboto", sans-serif;
    color: #333;
    line-height: 1.6;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    color: var(--primary-light);
}
.section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.navbar {
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255 / 0.85);
}
.hero-slider {
    position: relative;
    overflow: hidden;
}
.slider-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgb(18 32 45 / 0.18);
    z-index: 20;
    overflow: hidden;
}
.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: #488f7d;
    transition: width 0.1s linear;
    border-radius: 6px;
}
.slider-progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(to right, transparent, rgb(18 32 45 / 0.25));
    animation: progressPulse 1.5s infinite;
}
@keyframes progressPulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
.swiper-slide {
    position: relative;
    height: 100vh;
    max-height: 1000px;
}
.slider-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(18 32 45 / 0.55) 0%, rgb(18 32 45 / 0.15) 50%, #fff0 100%);
    transition: opacity 0.4s;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}
.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
}
.slider-content-inner {
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slider-content-inner.active {
    opacity: 1;
    transform: translateY(0);
}
.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.5);
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.slide-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.slide-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 0.5);
    line-height: 1.6;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.slide-button {
    display: inline-block;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.2);
    transition: all 0.4s ease !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
    background-color: #fff !important;
    color: var(--primary-color) !important;
    border: 2px solid #fff !important;
}
.slide-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.3);
    background-color: transparent !important;
    color: #fff !important;
}
.slider-content-inner.active .slide-title,
.slider-content-inner.active .slide-description,
.slider-content-inner.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    color: #fff;
    background: rgb(89 187 164 / 0.8);
    border-radius: 50%;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    opacity: 0;
    transform: scale(0.8);
}
.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: 700;
}
.swiper-pagination {
    position: relative;
    bottom: 30px !important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(255 255 255 / 0.7);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgb(89 187 164 / 0.5);
}
@media (max-width: 992px) {
    .swiper-slide {
        height: 90vh;
    }
    .slide-title {
        font-size: 2.8rem;
    }
    .slide-description {
        font-size: 1.2rem;
        max-width: 90%;
    }
}
@media (max-width: 768px) {
    .swiper-slide {
        height: 80vh;
    }
    .slider-content {
        padding-left: 8%;
        padding-right: 8%;
    }
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    .slide-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .swiper-slide {
        height: 90vh;
        min-height: 400px;
    }
    .slider-content {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .slider-content-inner {
        max-width: 100%;
        background: rgb(18 32 45 / 0.18);
        border-radius: 12px;
        padding: 16px 8px;
    }
    .slide-title {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .slide-button {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
}
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}
.card:hover {
    transform: translateY(-5px);
}
.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
    height: 220px;
}
.service-card .card-body {
    padding: 1.5rem;
}
.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}
.team-card {
    text-align: center;
}
.team-card .card-body {
    padding: 1.5rem;
}
.social-icons a {
    display: inline-block;
    margin: 0 5px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--accent-color);
}
.blog-card .post-date {
    color: #6c757d;
    font-size: 0.9rem;
}
.blog-card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
}
.blog-card .btn-link {
    color: var(--primary-color);
    font-weight: 500;
}
.accordion-button:not(.collapsed) {
    background-color: rgb(89 187 164 / 0.1);
    color: var(--primary-color);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgb(89 187 164 / 0.25);
    border-color: rgb(89 187 164 / 0.5);
}
footer {
    background-color: #488f7d;
    color: #f8f9fa;
}
footer a {
    color: #f8f9fa;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}
.back-to-top.show {
    opacity: 1;
}
.back-to-top:hover {
    background: #45a049;
    transform: translateY(-3px);
}
.contact-cta {
    background: linear-gradient(135deg, #059b8a 0%, #59bba4 100%);
    color: #fff;
    position: relative;
    padding: 80px 0 40px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.cta-content-wrapper {
    z-index: 2;
    position: relative;
    padding: 40px 0 0 0;
}
.cta-badge .badge-pill {
    background: rgb(255 255 255 / 0.18);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 10px;
}
.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -1px;
}
.cta-title .text-gradient {
    background: linear-gradient(90deg, #fff 60%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    background-clip: text;
    text-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    font-weight: 900;
    opacity: 0.95;
}
.cta-description {
    font-size: 1.25rem;
    color: #f8f9fa;
    opacity: 0.95;
    margin-bottom: 32px;
    margin-top: 0;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}
.cta-btn-primary {
    background: #59bba4;
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 18px rgb(89 187 164 / 0.18);
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 1.15rem;
    transition: all 0.2s;
}
.cta-btn-primary:hover {
    background: #063d4c;
    color: #fff;
    box-shadow: 0 8px 24px rgb(6 61 76 / 0.18);
}
.cta-btn-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 1.15rem;
    transition: all 0.2s;
}
.cta-btn-secondary:hover {
    background: #fff;
    color: #059b8a;
    border-color: #fff;
}
.cta-features {
    margin-top: 40px;
}
.cta-features .feature-item {
    background: rgb(255 255 255 / 0.13);
    color: #fff;
    border-radius: 12px;
    padding: 22px 10px 18px 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.04);
    text-align: center;
    min-width: 180px;
    margin: 0 auto;
    display: inline-block;
}
.cta-features .feature-icon {
    background: #fff;
    color: #059b8a;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(6 61 76 / 0.08);
}
.cta-features h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 8px;
}
.cta-features p {
    color: #e0e0e0;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .contact-cta {
        padding: 60px 0 30px 0;
    }
    .cta-title {
        font-size: 2.1rem;
    }
    .cta-description {
        font-size: 1.1rem;
    }
    .cta-features {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .contact-cta {
        padding: 40px 0 20px 0;
    }
    .cta-title {
        font-size: 1.4rem;
    }
    .cta-description {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .cta-features .row > div {
        margin-bottom: 18px;
    }
}
.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
}
.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}
.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}
.cta-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}
.cta-badge .badge-pill {
    background: rgb(255 255 255 / 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
}
.cta-btn-primary {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #063d4c;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}
.btn-shine {
    position: relative;
    overflow: hidden;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.8;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
.cta-btn-secondary {
    border: 2px solid rgb(255 255 255 / 0.5);
    background: #fff0;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-btn-secondary:hover {
    background: rgb(255 255 255 / 0.1);
    border-color: #fff;
}
.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.feature-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}
.floating-element {
    position: absolute;
    color: rgb(255 255 255 / 0.1);
    animation: float 6s ease-in-out infinite alternate;
}
.floating-element.elem-1 {
    top: 7%;
    left: 10%;
    font-size: 2rem;
}
.floating-element.elem-2 {
    bottom: 10%;
    left: 10%;
    font-size: 1.5rem;
}
.floating-element.elem-3 {
    top: 10%;
    right: 10%;
    font-size: 1.8rem;
}
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .cta-btn-secondary {
        margin-left: 0 !important;
    }
}
.about-hacamat {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: rgb(89 187 164 / 0.05);
}
.about-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.1);
    z-index: 0;
}
.about-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}
.about-bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 10%;
    opacity: 0.5;
}
.about-bg-shapes .shape-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    opacity: 0.3;
}
.about-bg-shapes .shape-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 10%;
    opacity: 0.2;
}
.about-image-container {
    position: relative;
    margin: 0 auto;
    max-width: 500px;
}
.about-image-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgb(89 187 164 / 0.15);
    z-index: 2;
}
.about-image-main img {
    transition: transform 0.5s ease;
}
.about-image-container:hover .about-image-main img {
    transform: scale(1.05);
}
.about-image-accent {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 4px solid #59bba4;
    border-radius: 1rem;
    top: -20px;
    left: -20px;
    z-index: 1;
}
.about-image-card {
    position: absolute;
    bottom: 15px;
    right: -30px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
    z-index: 3;
    min-width: 120px;
    text-align: center;
    border-left: 4px solid #59bba4;
}
.experience-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #59bba4;
    line-height: 1;
}
.counter-number span {
    font-size: 1.8rem;
}
.counter-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: #333;
    line-height: 1.2;
}
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    font-size: 1.2rem;
    color: #59bba4;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}
.elem-1 {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}
.elem-2 {
    bottom: 55px;
    left: 35px;
    animation-delay: 1s;
}
.elem-3 {
    top: 30%;
    right: -15px;
    animation-delay: 2s;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.section-badge {
    display: inline-block;
    background-color: rgb(89 187 164 / 0.1);
    color: #59bba4;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.text-gradient {
    background: linear-gradient(90deg, #59bba4, #3d9d87);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff0;
    color: #59bba4;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #59bba4;
    transition: all 0.3s ease;
    z-index: -1;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(89 187 164 / 0.1);
}
.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(89 187 164 / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #59bba4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background-color: #59bba4;
    color: #fff;
    transform: scale(1.1);
}
.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}
.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    background-color: #59bba4;
    border-color: #59bba4;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #48a994;
    border-color: #48a994;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
}
.btn-light {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #444;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background-color: #f8f8f8;
    color: #59bba4;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
}
.btn-with-icon i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.btn-with-icon:hover i {
    transform: translateX(3px);
}
@media (max-width: 991.98px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .about-image-accent {
        display: none;
    }
    .about-image-card {
        bottom: -20px;
        right: -10px;
    }
}
@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    .about-hacamat {
        padding: 4rem 0;
    }
}
.top-bar {
    font-size: 0.9rem;
    padding: 0.8rem 0;
}
.top-bar .contact-info {
    font-size: 14px;
}
.social-icons-header {
    display: flex;
    justify-content: flex-end;
}
.social-icons-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.social-icons-header a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
}
.social-icons-header .facebook {
    background-color: #1877f2;
}
.social-icons-header .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icons-header .twitter {
    background-color: #1da1f2;
}
.social-icons-header .youtube {
    background-color: red;
}
.social-icons-header .whatsapp {
    background-color: #25d366;
}
.top-bar .social-icons a {
    transition: all 0.3s ease;
    font-size: 1rem;
}
.top-bar .social-icons a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
.main-header {
    position: relative;
    z-index: 1000;
}
.main-header .navbar {
    background: #121f2e !important;
    padding: 0px;
    transition: all 0.3s ease;
}
.main-header.fixed-top .navbar {
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}
.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.2));
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255 / 0.95) !important;
}
.navbar-nav .nav-item .nav-link {
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

/* Ana sayfa ve aktif sayfa için sabit çizgi */
.navbar-nav .nav-item:first-child .nav-link::after,
.navbar-nav .nav-item .nav-link.active::after {
    width: 100%;
}
.navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 5px !important;
    vertical-align: 0.15em;
    border-top: 0.4em solid;
    border-right: 0.4em solid #fff0;
    border-left: 0.4em solid #fff0;
}
.navbar-nav .btn {
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid #fff;
    background-color: rgb(255 255 255 / 0.15);
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}
.navbar-nav .btn:hover {
    transform: translateY(-2px);
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}
.page-header {
    position: relative;
    /*background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));*/
    background: url('https://drmehmetozkent.com/app/themes/default/assets/images/bg/drmehmetozkent.jpg') no-repeat center center;
    box-shadow: 0 4px 20px rgb(0 0 0 / 0.1);
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 991.98px) {
    .navbar-nav .nav-link::after {
        display: none;
    }
    .navbar-nav .nav-link {
        border-bottom: 1px solid rgb(255 255 255 / 0.1);
        padding: 0.5rem 0;
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    .navbar-nav .btn {
        margin: 0.5rem 0;
        display: inline-block;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.fade-in,
.slide-in,
.zoom-in {
    opacity: 0;
    transition: all 0.8s ease;
}
.fade-in {
    transform: translateY(20px);
}
.slide-in {
    transform: translateX(-50px);
}
.zoom-in {
    transform: scale(0.9);
}
.fade-in.animate,
.slide-in.animate,
.zoom-in.animate {
    opacity: 1;
    transform: translate(0) scale(1);
}
.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
}
.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.service-card .btn {
    transition: all 0.3s ease;
}
.service-card .btn:hover {
    transform: translateY(-3px);
}
.section-intro .lead {
    color: #555;
    line-height: 1.7;
}
.service-detail .service-intro h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}
.service-detail .service-content {
    line-height: 1.8;
}
.service-detail .service-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-detail .service-content h4 {
    color: var(--primary-dark);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-detail .service-content ul,
.service-detail .service-content ol {
    margin-bottom: 20px;
}
.service-detail .service-content ul li,
.service-detail .service-content ol li {
    margin-bottom: 10px;
}
.service-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.service-list a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}
.service-list .active a {
    color: #fff;
}
.service-list .active a:hover {
    text-decoration: none;
}
.cta-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.cta-card .btn {
    transition: all 0.3s ease;
}
.cta-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}
.testimonial-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
}
.testimonial-rating {
    color: #ffc107;
}
.feature-icon {
    color: var(--primary-color);
    background-color: rgb(89 187 164 / 0.1);
}
.service-tags a,
.service-conditions a {
    transition: all 0.3s ease;
}
.service-tags a:hover,
.service-conditions a:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}
.appointment-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.why-hacamat {
    position: relative;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf7f5 100%);
    padding: 100px 0;
    overflow: hidden;
}
.section-intro {
    position: relative;
    z-index: 3;
    margin-bottom: 70px !important;
}
.badge-pill {
    background-color: rgb(89 187 164 / 0.1);
    color: #59bba4;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}
.section-heading span {
    color: #59bba4;
    position: relative;
}
.section-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background-color: rgb(89 187 164 / 0.1);
    z-index: -1;
}
.heading-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #59bba4, #3d9281);
    margin: 0 auto;
    border-radius: 2px;
}
.radial-benefits-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.center-image-container {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-bg-circle {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px dashed rgb(89 187 164 / 0.4);
    animation: rotate 120s linear infinite;
}
.image-bg-circle::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 1px dashed rgb(89 187 164 / 0.2);
    animation: rotate 180s linear infinite reverse;
}
.hacamat-icon {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 8px 30px rgb(89 187 164 / 0.25);
    margin: 0 auto;
    z-index: 20;
    overflow: visible;
}
.icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    border-radius: 100%;
}
.radial-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.radial-item {
    position: absolute;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}
.radial-line {
    position: relative;
    height: 2px;
    background: repeating-linear-gradient(to right, rgb(89 187 164 / 0.4) 0%, rgb(89 187 164 / 0.4) 8px, transparent 8px, transparent 12px);
    flex-grow: 1;
    min-width: 100px;
    max-width: 150px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.radial-item:hover .radial-line {
    background: linear-gradient(to right, rgb(89 187 164 / 0.6) 0%, rgb(89 187 164 / 0.9) 100%);
    background-size: 10px 2px;
    opacity: 1;
}

.radial-item:hover .radial-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(89 187 164 / 0.15);
    border-color: rgb(89 187 164 / 0.5);
}
.radial-content h4 {
    color: #59bba4;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.radial-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}
.radial-item-1 {
    top: 15%;
    left: 0;
}
.radial-item-2 {
    top: 35%;
    left: 0;
}
.radial-item-3 {
    top: 55%;
    left: 0;
}
.radial-item-4 {
    top: 75%;
    left: 0;
}
.radial-item-5 {
    top: 15%;
    right: 0;
}
.radial-item-5 .radial-line {
    order: 2;
}
.radial-item-5 .radial-content {
    order: 1;
    text-align: right;
}
.radial-item-6 {
    top: 35%;
    right: 0;
}
.radial-item-6 .radial-line {
    order: 2;
}
.radial-item-6 .radial-content {
    order: 1;
    text-align: right;
}
.radial-item-7 {
    top: 55%;
    right: 0;
}
.radial-item-7 .radial-line {
    order: 2;
}
.radial-item-7 .radial-content {
    order: 1;
    text-align: right;
}
.radial-item-8 {
    top: 75%;
    right: 0;
}
.radial-item-8 .radial-line {
    order: 2;
}
.radial-item-8 .radial-content {
    order: 1;
    text-align: right;
}
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    background-color: rgb(89 187 164 / 0.03);
}
.circle-1 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.circle-2 {
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgb(89 187 164 / 0.05);
    background-color: #fff0;
}
.floating-particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.2);
    z-index: 1;
}
.particle-1 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 20%;
    animation: floating1 15s ease-in-out infinite alternate;
}
.particle-2 {
    width: 20px;
    height: 20px;
    bottom: 30%;
    right: 25%;
    animation: floating2 20s ease-in-out infinite alternate;
}
.particle-3 {
    width: 15px;
    height: 15px;
    bottom: 20%;
    left: 30%;
    animation: floating3 18s ease-in-out infinite alternate;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgb(89 187 164 / 0.2);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 5px 30px rgb(89 187 164 / 0.4);
    }
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
@keyframes floating1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(80px, 0) rotate(180deg);
    }
    75% {
        transform: translate(40px, -20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}
@keyframes floating2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -15px) rotate(90deg);
    }
    50% {
        transform: translate(-60px, 0) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 15px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}
@keyframes floating3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(40px, 0) rotate(180deg);
    }
    75% {
        transform: translate(20px, 40px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}
@media (max-width: 991px) {
    .radial-benefits-wrapper {
        height: 750px;
    }
    .center-image-container {
        transform: translate(-50%, -60%);
    }
    .radial-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .radial-line {
        width: 2px !important;
        min-width: 2px !important;
        max-width: 2px !important;
        height: 30px;
        background: repeating-linear-gradient(to bottom, rgb(89 187 164 / 0.4) 0%, rgb(89 187 164 / 0.4) 8px, transparent 8px, transparent 12px);
    }
    .radial-item:hover .radial-line {
        background: linear-gradient(to bottom, rgb(89 187 164 / 0.6) 0%, rgb(89 187 164 / 0.9) 100%);
    }
    .radial-content {
        margin-top: 10px;
        min-width: 180px;
    }
    .radial-item-1,
    .radial-item-2,
    .radial-item-3,
    .radial-item-4 {
        left: 5%;
    }
    .radial-item-5,
    .radial-item-6,
    .radial-item-7,
    .radial-item-8 {
        right: 5%;
    }
    .radial-item-1 {
        top: 5%;
    }
    .radial-item-2 {
        top: 25%;
    }
    .radial-item-3 {
        top: 45%;
    }
    .radial-item-4 {
        top: 65%;
    }
    .radial-item-5 {
        top: 5%;
    }
    .radial-item-6 {
        top: 25%;
    }
    .radial-item-7 {
        top: 45%;
    }
    .radial-item-8 {
        top: 65%;
    }
    .radial-item-5 .radial-line,
    .radial-item-6 .radial-line,
    .radial-item-7 .radial-line,
    .radial-item-8 .radial-line {
        order: 1;
    }
    .radial-item-5 .radial-content,
    .radial-item-6 .radial-content,
    .radial-item-7 .radial-content,
    .radial-item-8 .radial-content {
        order: 2;
        text-align: left;
    }
}
@media (max-width: 767px) {
    .why-hacamat {
        padding: 70px 0;
    }
    .section-heading {
        font-size: 2rem;
    }
    .radial-benefits-wrapper {
        height: 1100px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .center-image-container {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }
    .radial-items {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .radial-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin-bottom: 20px;
        width: 100%;
        max-width: 300px;
    }
    .radial-line {
        display: none;
    }
    .radial-content {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
    }
    .decoration-circle,
    .floating-particle {
        display: none;
    }
}
@media (max-width: 576px) {
    .why-hacamat {
        padding: 60px 0;
    }
    .section-heading {
        font-size: 1.8rem;
    }
    .badge-pill {
        font-size: 12px;
    }
    .center-image-container {
        width: 180px;
        height: 180px;
    }
    .hacamat-icon {
        width: 150px;
        height: 150px;
    }
    .icon-img {
        width: 100%;
        height: 100%;
    }
}
.title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #59bba4, #0d6efd);
    border-radius: 2px;
}
.service-card .card-title {
    color: var(--primary-color);
}
.testimonial-card:hover {
    border-color: var(--primary-color);
}
.accordion-button:not(.collapsed) {
    background-color: rgb(89 187 164 / 0.1);
    color: var(--primary-color);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgb(89 187 164 / 0.25);
    border-color: rgb(89 187 164 / 0.5);
}
.service-list .active {
    background-color: var(--primary-color) !important;
}
.service-list a {
    color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color) !important;
}
.slider-content h1::after {
    background-color: var(--primary-color);
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}
.back-to-top {
    background-color: var(--primary-color);
}
footer {
    background-color: #488f7d;
}
footer .footer-title::after {
    background-color: var(--primary-color);
}
.service-tags a:hover,
.service-conditions a:hover {
    background-color: var(--primary-color) !important;
}
.radial-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #59bba4, #3d9d87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.radial-text {
    flex: 1;
}
.radial-text h4 {
    color: #59bba4;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.radial-text p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.radial-item-1 {
    top: 8%;
    left: 0;
}
.radial-item-2 {
    top: 32%;
    left: 0;
}
.radial-item-3 {
    top: 56%;
    left: 0;
}
.radial-item-4 {
    top: 80%;
    left: 0;
}
.radial-item-5 {
    top: 8%;
    right: 0;
}
.radial-item-6 {
    top: 32%;
    right: 0;
}
.radial-item-7 {
    top: 56%;
    right: 0;
}
.radial-item-8 {
    top: 80%;
    right: 0;
}
@media (max-width: 991px) {
    .radial-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    .radial-text h4 {
        font-size: 15px;
    }
    .radial-text p {
        font-size: 12px;
    }
    .radial-item-1,
    .radial-item-2,
    .radial-item-3,
    .radial-item-4 {
        left: 3%;
    }
    .radial-item-5,
    .radial-item-6,
    .radial-item-7,
    .radial-item-8 {
        right: 3%;
    }
}
@media (max-width: 767px) {
    .radial-content-inner {
        gap: 10px;
    }
    .radial-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin: 0;
    }
    .radial-content {
        max-width: 300px;
        width: 85%;
        margin: 0 auto 15px;
        text-align: left;
    }
    .radial-text {
        flex: 1;
    }
    .radial-text h4 {
        margin-top: 0;
    }
}
.pulsate-icon {
    position: relative;
    animation: iconPulsate 3s ease-in-out infinite alternate;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes iconPulsate {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.orbit-particles {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    pointer-events: none;
    animation: spinOrbit 30s linear infinite;
    z-index: 5;
}
@keyframes spinOrbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #59bba4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(89 187 164 / 0.8);
    z-index: 10;
}
.particle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgb(255 255 255 / 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.p1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particlePulse 2s ease-in-out infinite;
}
.p2 {
    top: 25%;
    right: 0;
    animation: particlePulse 2.5s ease-in-out infinite;
}
.p3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particlePulse 3s ease-in-out infinite;
}
.p4 {
    top: 25%;
    left: 0;
    animation: particlePulse 2.8s ease-in-out infinite;
}
.p5 {
    top: 75%;
    right: 0;
    animation: particlePulse 2.2s ease-in-out infinite;
}
.p6 {
    top: 75%;
    left: 0;
    animation: particlePulse 3.2s ease-in-out infinite;
}
@keyframes particlePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}
.hacamat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.hacamat-icon::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed rgb(89 187 164 / 0.4);
    animation: rotateReverse 20s linear infinite;
    pointer-events: none;
}
@keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.hacamat-icon:hover .icon-img {
    filter: drop-shadow(0 0 8px rgb(89 187 164 / 0.6));
}
.hacamat-icon:hover .orbit-particles {
    animation-duration: 15s;
}
.hacamat-icon:hover .particle {
    animation-duration: 1.5s;
}
.radial-benefits-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .orbit-particles {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    .particle {
        width: 8px;
        height: 8px;
    }
    .particle::after {
        width: 4px;
        height: 4px;
    }
}
.radial-content-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.radial-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #59bba4, #3d9d87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.radial-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(255 255 255 / 0.2);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}
.radial-content:hover .radial-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.4);
}
.radial-content:hover .radial-icon i {
    animation: bounce 0.6s ease;
}
.radial-text {
    flex: 1;
}
.radial-text h4 {
    color: #59bba4;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.radial-text p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.radial-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #59bba4, transparent);
    transition: width 0.4s ease;
}
.radial-content:hover {
    transform: translateY(-8px);
}
.radial-content:hover::after {
    width: 100%;
}
.radial-item-1 .radial-icon i,
.radial-item-5 .radial-icon i {
    animation: pulse 2s infinite;
}
.radial-item-2 .radial-icon i,
.radial-item-6 .radial-icon i {
    animation: spin 6s linear infinite;
}
.radial-item-3 .radial-icon i,
.radial-item-7 .radial-icon i {
    animation: beat 1.5s ease infinite;
}
.radial-item-4 .radial-icon i,
.radial-item-8 .radial-icon i {
    animation: shake 3s ease infinite;
}
.radial-item-1 {
    top: 8%;
    left: 0;
}
.radial-item-2 {
    top: 32%;
    left: 0;
}
.radial-item-3 {
    top: 56%;
    left: 0;
}
.radial-item-4 {
    top: 80%;
    left: 0;
}
.radial-item-5 {
    top: 8%;
    right: 0;
}
.radial-item-6 {
    top: 32%;
    right: 0;
}
.radial-item-7 {
    top: 56%;
    right: 0;
}
.radial-item-8 {
    top: 80%;
    right: 0;
}
.radial-line {
    position: relative;
    overflow: hidden;
}
.radial-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #fff0 0%, rgb(89 187 164 / 0.8) 50%, #fff0 100%);
    animation: lineShimmer 4s infinite;
}
@keyframes lineShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}
@media (max-width: 991px) {
    .radial-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    .radial-text h4 {
        font-size: 15px;
    }
    .radial-text p {
        font-size: 12px;
    }
    .radial-item-1,
    .radial-item-2,
    .radial-item-3,
    .radial-item-4 {
        left: 3%;
    }
    .radial-item-5,
    .radial-item-6,
    .radial-item-7,
    .radial-item-8 {
        right: 3%;
    }
}
@media (max-width: 767px) {
    .radial-content-inner {
        gap: 10px;
    }
    .radial-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin: 0;
    }
    .radial-content {
        max-width: 300px;
        width: 85%;
        margin: 0 auto 15px;
        text-align: left;
    }
    .radial-text {
        flex: 1;
    }
    .radial-text h4 {
        margin-top: 0;
    }
}
.services {
    position: relative;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf7f5 100%);
    padding: 100px 0;
    overflow: hidden;
}
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2359bba4' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.services-wrapper {
    position: relative;
    z-index: 2;
}
.service-card {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    margin-bottom: 30px;
    z-index: 1;
}

.service-card:hover .service-icon {
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.3);
}
.service-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.service-card:hover .service-img {
    transform: scale(1.1);
}
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #fff0 0%, rgb(89 187 164 / 0.9) 100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}
.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #59bba4, #3d9d87);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.2);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}
.service-detail-content {
    padding: 0px;
    position: relative;
    z-index: 1;
}
.service-title {
    color: #063d4c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}
.service-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #59bba4, #3d9d87);
    border-radius: 3px;
}
.service-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-btn {
    display: inline-flex;
    align-items: center;
    color: #59bba4;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.service-btn span {
    position: relative;
    z-index: 1;
    margin-right: 10px;
}
.service-btn::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #59bba4;
    transition: width 0.3s ease;
}
.service-btn:hover {
    color: #3d9d87;
}
.service-btn:hover::before {
    width: calc(100% - 25px);
}
.service-btn i {
    transition: transform 0.3s ease;
}
.service-btn:hover i {
    transform: translateX(5px);
}
.service-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' fill='%2359bba4' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    border-radius: 0 0 15px 0;
    z-index: 0;
}
.btn-all-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #59bba4, #3d9d87);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-all-services::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(255 255 255 / 0.1);
    transform-origin: 0 0;
    transform: rotate(45deg) translateY(-100%);
    transition: all 0.6s ease;
    z-index: 0;
}
.btn-all-services:hover {
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.3);
    color: #fff;
    transform: translateY(-5px);
}
.btn-all-services:hover::before {
    transform: rotate(45deg) translateY(0);
}
.btn-all-services span {
    position: relative;
    z-index: 1;
    margin-right: 10px;
}
.arrow-icon {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn-all-services:hover .arrow-icon {
    transform: rotate(90deg);
}
@media (max-width: 991px) {
    .service-icon {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .service-content {
        padding: 20px;
    }
    .service-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .services {
        padding: 70px 0;
    }
    .service-card {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    .btn-all-services {
        padding: 12px 30px;
        font-size: 15px;
    }
}
.team-section {
    position: relative;
    background: linear-gradient(135deg, #edf7f5 0%, #f8fbfa 100%);
    padding: 100px 0;
    overflow: hidden;
}
.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='84' height='48' viewBox='0 0 84 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zm42 8h12v6H70v-6zm14-8h12v6H70V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0-16h12v6H70V0zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z' fill='%2359bba4' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}
.team-card {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1500px;
    margin-bottom: 30px;
}
.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    border-radius: 15px;
}
.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}
.team-card-front {
    background-color: #fff;
}
.team-card-back {
    background: linear-gradient(135deg, #59bba4 0%, #3d9d87 100%);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}
.team-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.team-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(89 187 164 / 0.2) 0%, rgb(89 187 164 / 0.1) 100%);
    z-index: 1;
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}
.team-card:hover .team-image {
    transform: scale(1.05);
}
.team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgb(0 0 0 / 0.7) 0%, transparent 100%);
    z-index: 2;
}
.team-content {
    padding: 20px;
    position: relative;
}
.team-name {
    color: #063d4c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}
.team-position {
    color: #12202d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.flip-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #59bba4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
    z-index: 3;
}
.back-icon {
    bottom: auto;
    top: 20px;
    left: 20px;
    right: auto;
    background: rgb(255 255 255 / 0.2);
}
.flip-icon:hover {
    transform: rotate(90deg);
    background: #3d9d87;
}
.back-icon:hover {
    transform: rotate(-90deg);
}
.back-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.team-bio {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.9);
}
.team-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 0.2);
    margin: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #fff;
    color: #59bba4;
    transform: translateY(-3px);
}
.team-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgb(255 255 255 / 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
}
.detail-item i {
    font-size: 16px;
    color: rgb(255 255 255 / 0.8);
}
.team-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px 10px 10px;
    color: #59bba4;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.15);
    transition: all 0.3s ease;
}
.team-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.2);
    color: #3d9d87;
}
.team-btn-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #59bba4 0%, #3d9d87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.team-btn:hover .team-btn-circle {
    transform: rotate(360deg);
}
@media (max-width: 991px) {
    .team-section {
        padding: 80px 0;
    }
    .team-card {
        height: 420px;
    }
    .team-image-wrapper {
        height: 280px;
    }
    .team-name {
        font-size: 20px;
    }
    .team-position {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }
    .team-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .team-btn {
        padding: 8px 20px 8px 8px;
    }
    .team-btn-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
.team-slider-container {
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
}
.teamSwiper {
    padding: 20px 10px 60px;
}
.team-slider-next,
.team-slider-prev {
    width: 50px;
    height: 50px;
    color: #fff;
    background: rgb(89 187 164 / 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}
.team-slider-next:hover,
.team-slider-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.team-slider-next:after,
.team-slider-prev:after {
    font-size: 22px;
    font-weight: 700;
}
.team-slider-pagination {
    bottom: 20px !important;
}
.team-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgb(89 187 164 / 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.team-slider-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px rgb(89 187 164 / 0.5);
}
.teamSwiper .team-card {
    height: 450px;
    margin: 0 auto;
    max-width: 350px;
}
@media (max-width: 767px) {
    .team-slider-next,
    .team-slider-prev {
        width: 40px;
        height: 40px;
    }
    .team-slider-next:after,
    .team-slider-prev:after {
        font-size: 18px;
    }
    .teamSwiper {
        padding: 10px 5px 50px;
    }
}
.blog-section {
    position: relative;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf7f5 100%);
    padding: 100px 0;
    overflow: hidden;
}
.blog-slider-container {
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
}

.blog-card-slide {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}
.blog-card-slide:hover {
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.15);
}
.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card-slide:hover .blog-card-image img {
    transform: scale(1.1);
}
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(6 61 76 / 0.2) 0%, rgb(6 61 76 / 0.6) 100%);
    transition: all 0.4s ease;
}
.blog-card-slide:hover .blog-overlay {
    background: linear-gradient(to bottom, rgb(89 187 164 / 0.3) 0%, rgb(6 61 76 / 0.7) 100%);
}
.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(89 187 164 / 0.9);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 55px;
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
    z-index: 2;
}
.blog-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.blog-date .month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.blog-card-content {
    padding: 25px;
    position: relative;
}
.blog-category {
    display: inline-block;
    background-color: rgb(89 187 164 / 0.1);
    color: #59bba4;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #063d4c;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.blog-card-slide:hover .blog-title {
    color: #59bba4;
}
.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-read-more {
    display: flex;
    align-items: center;
    color: #59bba4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}
.blog-read-more span {
    margin-right: 10px;
}
.blog-read-more svg {
    transition: transform 0.3s ease;
}
.blog-read-more:hover {
    color: #3d9d87;
}
.blog-read-more:hover svg {
    transform: translateX(5px);
}
.blog-slider-next,
.blog-slider-prev {
    width: 50px;
    height: 50px;
    color: #fff;
    background: rgb(89 187 164 / 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
}
.blog-slider-next:hover,
.blog-slider-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}
.blog-slider-next:after,
.blog-slider-prev:after {
    font-size: 22px;
    font-weight: 700;
}
.blog-slider-pagination {
    bottom: 20px !important;
}
.blog-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgb(89 187 164 / 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.blog-slider-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px rgb(89 187 164 / 0.5);
}
.blog-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px 10px 25px;
    color: #59bba4;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.15);
    transition: all 0.3s ease;
}
.blog-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.2);
    color: #3d9d87;
}
.blog-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #59bba4;
    transition: all 0.3s ease;
    margin-left: 10px;
}
.blog-btn:hover .blog-btn-arrow {
    transform: translateX(3px);
}
@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0;
    }
    .blog-card-slide {
        max-width: 400px;
        margin: 0 auto;
    }
    .blog-title {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .blog-section {
        padding: 60px 0;
    }
    .blog-card-image {
        height: 200px;
    }
    .blog-card-content {
        padding: 20px;
    }
    .blog-slider-next,
    .blog-slider-prev {
        width: 40px;
        height: 40px;
    }
    .blog-slider-next:after,
    .blog-slider-prev:after {
        font-size: 18px;
    }
}
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf7f5 100%);
    padding: 100px 0;
    overflow: hidden;
}
.faq-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
}
.faq-item {
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(89 187 164 / 0.15);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #fff0;
    transition: all 0.3s ease;
}
.faq-item.active .faq-question {
    border-bottom: 1px solid rgb(89 187 164 / 0.2);
}
.question-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #59bba4;
    margin-right: 16px;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.1);
    transition: all 0.3s ease;
}
.faq-item.active .question-icon,
.faq-item:hover .question-icon {
    background-color: #59bba4;
    color: #fff;
    transform: rotate(10deg);
}
.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #063d4c;
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}
.faq-item.active .faq-question h3,
.faq-item:hover .faq-question h3 {
    color: #59bba4;
}
.arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #59bba4;
    transition: all 0.3s ease;
}
.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 1s ease-in-out;
}
.faq-answer p {
    padding: 20px 25px 20px 81px;
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}
.faq-btn {
    display: inline-flex;
    align-items: center;
    background: #59bba4;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.25);
    transition: all 0.3s ease;
    margin-top: 20px;
}
.faq-btn:hover {
    background: #3d9d87;
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.3);
    transform: translateY(-5px);
    color: #fff;
}
.faq-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.faq-btn:hover svg {
    transform: translateX(5px);
}
.faq-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.faq-shape {
    position: absolute;
    border-radius: 50%;
    background: rgb(89 187 164 / 0.1);
}
.faq-shape.shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}
.faq-shape.shape-2 {
    bottom: -50px;
    left: -150px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
}
.faq-shape.shape-3 {
    top: 40%;
    right: 10%;
    width: 150px;
    height: 150px;
    opacity: 0.15;
}
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-question h3 {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .question-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin-right: 12px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-answer p {
        padding: 15px 20px 15px 68px;
        font-size: 14px;
    }
}
.contact-form-section {
    background: linear-gradient(135deg, #f8fbfa 0%, #e0f7f3 100%);
    position: relative;
    z-index: 2;
}
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgb(89 187 164 / 0.1), 0 1.5px 8px rgb(6 61 76 / 0.06);
    padding: 48px 32px 36px 32px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.contact-form-header {
    position: relative;
    z-index: 2;
}
.contact-form-badge {
    display: inline-block;
    background: linear-gradient(90deg, #59bba4 0%, #4aa892 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 7px 22px;
    border-radius: 30px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgb(89 187 164 / 0.08);
}
.contact-form-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #063d4c;
    margin-bottom: 8px;
}
.contact-form-title .highlight {
    color: #59bba4;
    background: linear-gradient(90deg, #59bba4 0%, #4aa892 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.contact-form-desc {
    color: #4aa892;
    font-size: 1.08rem;
    margin-bottom: 0;
    opacity: 0.85;
}
.contact-form .form-floating > .form-control,
.contact-form .form-floating > textarea.form-control {
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    background: #f8fbfa;
    font-size: 1.08rem;
    color: #063d4c;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-floating > .form-control:focus,
.contact-form .form-floating > textarea.form-control:focus {
    border-color: #59bba4;
    box-shadow: 0 0 0 2px rgb(89 187 164 / 0.15);
    background: #fff;
}
.contact-form .form-floating > label {
    color: #4aa892;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.85;
    left: 1.1rem;
}
.contact-form .form-floating > .form-control:not(:placeholder-shown):not(:focus) ~ label,
.contact-form .form-floating > textarea.form-control:not(:placeholder-shown):not(:focus) ~ label {
    color: #59bba4;
    font-weight: 600;
}
.contact-form-btn.btn-gradient {
    background: linear-gradient(90deg, #59bba4 0%, #4aa892 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    border-radius: 30px;
    padding: 14px 38px;
    box-shadow: 0 4px 18px rgb(89 187 164 / 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.contact-form-btn.btn-gradient:hover {
    background: linear-gradient(90deg, #063d4c 0%, #59bba4 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgb(6 61 76 / 0.13);
}
.contact-form-btn i {
    transition: transform 0.2s;
}
.contact-form-btn:hover i {
    transform: translateX(4px);
}
.contact-form-card:hover {
    box-shadow: 0 16px 48px rgb(89 187 164 / 0.18), 0 2px 12px rgb(6 61 76 / 0.1);
}
@media (max-width: 991px) {
    .contact-form-card {
        padding: 32px 12px 24px 12px;
    }
    .contact-form-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 575px) {
    .contact-form-card {
        padding: 18px 2px 12px 2px;
    }
    .contact-form-title {
        font-size: 1.1rem;
    }
    .contact-form-btn.btn-gradient {
        padding: 12px 18px;
        font-size: 1rem;
    }
}
.kvkk-check {
    accent-color: #59bba4;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    margin-right: 0.7em;
    border-radius: 6px;
    border: 2px solid #59bba4;
    transition: box-shadow 0.2s;
    box-shadow: 0 1px 4px rgb(89 187 164 / 0.08);
}
.kvkk-check:focus {
    outline: none;
    box-shadow: 0 0 0 2px #59bba4;
}
.kvkk-label {
    font-size: 11px;
    color: #063d4c;
    font-weight: 500;
    line-height: 1.6;
    cursor: pointer;
    user-select: text;
}
.kvkk-link {
    color: #59bba4;
    text-decoration: underline dotted;
    font-weight: 600;
    transition: color 0.2s;
}
.kvkk-link:hover {
    color: #063d4c;
    text-decoration: underline solid;
}
@media (max-width: 575px) {
    .kvkk-label {
        font-size: 0.95rem;
    }
}
.contact-form-section .container {
    max-width: 1050px;
}
.contact-form-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 48px 44px 48px;
}
.contact-form .form-floating > .form-control,
.contact-form .form-floating > textarea.form-control {
    min-height: 56px;
    font-size: 1.13rem;
    padding: 1.25rem 1.2rem 0.5rem 1.2rem;
}
.contact-form .form-floating > textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.contact-form .row.g-3 {
    row-gap: 22px;
}
@media (max-width: 991px) {
    .contact-form-card {
        max-width: 98vw;
        padding: 28px 6vw 18px 6vw;
    }
}
@media (max-width: 575px) {
    .contact-form-card {
        padding: 10px 0 8px 0;
    }
    .contact-form-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-form .form-floating > .form-control,
    .contact-form .form-floating > textarea.form-control {
        font-size: 1rem;
        min-height: 44px;
        padding: 1rem 0.8rem 0.4rem 0.8rem;
    }
    .contact-form .form-floating > textarea.form-control {
        min-height: 90px;
    }
}
.form-check.kvkk-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}
.form-check.kvkk-inline .kvkk-check {
    margin-top: 0;
    margin-right: 0;
}
.form-check.kvkk-inline .kvkk-label {
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .form-check.kvkk-inline {
        align-items: flex-start;
        gap: 8px;
    }
    .form-check.kvkk-inline .kvkk-label {
        font-size: 0.93rem;
    }
}
.modern-footer {
    position: relative;
    background-color: #12202d;
    color: #fff;
    padding-top: 80px;
    overflow: hidden;
}
.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}
.footer-section {
    position: relative;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}
.footer-logo img:hover {
    transform: scale(1.05);
}
.footer-description {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}
.footer-section h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}
.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #59bba4, #45a049);
    border-radius: 3px;
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgb(255 255 255 / 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #59bba4, #45a049);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.social-icon i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
}
.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}
.social-icon:hover::before {
    opacity: 1;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 15px;
}
.footer-links-list li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}
.footer-links-list li a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: #59bba4;
    transition: transform 0.3s ease;
}
.footer-links-list li a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-links-list li a:hover i {
    transform: translateX(3px);
}
.contact-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-item i {
    color: #59bba4;
    font-size: 1.2rem;
    margin-top: 3px;
}
.contact-text h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-text p {
    color: #b3b3b3;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.2);
    transition: all 0.3s ease;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.3);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 15px;
}
.footer-bottom {
    padding: 25px 0 0 0;
    position: relative;
    z-index: 2;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright p {
    color: #b3b3b3;
    margin: 0;
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 25px;
    justify-content: end;
}
.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}
.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #59bba4, #45a049);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-links a:hover::after {
    width: 100%;
}
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-links-list li a {
        justify-content: center;
    }
    .footer-links-list li a i {
        margin-right: 8px;
    }
}
@media (max-width: 576px) {
    .modern-footer {
        padding-top: 60px;
    }
    .footer-wave svg {
        height: 80px;
    }
    .footer-section h3 {
        font-size: 1.3rem;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-item i {
        margin-bottom: 10px;
    }
    .map-container iframe {
        height: 200px;
    }
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #59bba4, #45a049);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.3);
}
.back-to-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.back-to-top:hover i {
    transform: translateY(-2px);
}
.map-section {
    background-color: #f8f9fa;
}
.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.15);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}
@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
    .map-container iframe {
        height: 350px;
    }
}
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #12202d 80%, #1a2c3a 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding: 1rem;
}
.footer-svg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}
.footer-bg-blur.premium-blur {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: 320px;
    background: radial-gradient(circle at 60% 40%, #59bba4 0%, transparent 70%);
    opacity: 0.13;
    filter: blur(60px);
    z-index: 1;
}
.footer-glow {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 120px;
    background: radial-gradient(circle, #59bba4 0%, transparent 80%);
    opacity: 0.1;
    filter: blur(40px);
    z-index: 2;
}
.premium-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 50px 0 50px 0;
    position: relative;
    z-index: 3;
    align-items: flex-start;
}
.premium-logo-area,
.premium-desc,
.premium-links,
.premium-services,
.premium-contact {
    margin-bottom: 24px;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
}
.premium-grid > .footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    .premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 60px 0 30px 0;
    }
}
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 40px 0 20px 0;
        text-align: center;
    }
    .premium-grid > .footer-section {
        align-items: center;
    }
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #b3b3b3;
    font-weight: 400;
}
.footer-list li:last-child {
    margin-bottom: 0;
}
.footer-list li i {
    color: #59bba4;
    font-size: 1.1rem;
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
}
.footer-list li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.footer-list li a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-list li a i {
    color: #59bba4;
    font-size: 1rem;
    margin-right: 8px;
    min-width: 18px;
}
.premium-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    justify-content: flex-start;
}
.premium-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #59bba4;
    font-size: 1.4rem;
    transition: all 0.3s, box-shadow 0.4s;
    box-shadow: 0 2px 12px rgb(89 187 164 / 0.1);
    position: relative;
    overflow: hidden;
}
.premium-desc h3,
.premium-links h3,
.premium-services h3,
.premium-contact h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}
.premium-desc h3::after,
.premium-links h3::after,
.premium-services h3::after,
.premium-contact h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    background: linear-gradient(90deg, #59bba4, #45a049);
    border-radius: 2px;
    margin-top: 6px;
}
.premium-grid > .footer-section {
    align-items: flex-start;
}
@media (max-width: 768px) {
    .premium-grid > .footer-section {
        align-items: center;
    }
    .footer-list li {
        justify-content: center;
    }
    .premium-social-icons {
        justify-content: center;
    }
}
.new-footer-border {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #59bba4, #45a049);
    border-radius: 2px;
    margin: 0 auto 18px auto;
    opacity: 0.85;
}
.heroSwiper {
    height: 85vh;
    min-height: 400px;
    max-height: 1000px;
}

@media (max-width: 1440px) {
    .heroSwiper {
        height: 75vh;
        min-height: 380px;
        max-height: 900px;
    }
}

@media (max-width: 1024px) {
    .heroSwiper {
        height: 70vh;
        min-height: 340px;
        max-height: 750px;
    }
}

@media (max-width: 992px) {
    .heroSwiper {
        height: 68vh;
        min-height: 330px;
        max-height: 700px;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 60vh;
        min-height: 300px;
        max-height: 600px;
    }
}

@media (max-width: 576px) {
    .heroSwiper {
        height: 55vh;
        min-height: 250px;
        max-height: 500px;
    }
}
.dropdown-submenu {
    position: relative;
}
.dropdown-menu {
    min-width: 280px;
    max-width: 350px;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
    padding: 0.5rem 0;
    background-color: #fff;
    max-height: 400px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.main-dropdown {
    min-width: 320px;
    max-width: 350px;
    max-height: 70vh;
    padding: 0.75rem 0;
    border-top: 3px solid #488f7d;
    animation: fadeInDown 0.3s ease-out;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.2rem;
    font-weight: 600;
    color: #488f7d !important;
    background-color: #f8f9fa;
    border-left: 3px solid #488f7d;
    cursor: pointer;
    transition: all 0.3s ease;
}
.category-header:hover,
.category-header.active {
    background-color: #488f7d;
    color: #ffffff !important;
    border-left: 3px solid #3a7366;
}
.category-title {
    font-size: 1rem;
}
.category-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 0.8rem;
}
.category-header.active .category-icon {
    transform: rotate(180deg);
    color: #fff;
}
.category-content {
    display: none;
    padding: 0.5rem 0;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.2rem 0.6rem 2rem;
    font-weight: 500;
    color: #5a6268 !important;
    background-color: #f8f9fa;
    border-left: 3px solid #a3d4c5;
    cursor: pointer;
}
.subcategory-header:hover,
.subcategory-header.active {
    background-color: #a3d4c5;
    color: #ffffff !important;
    border-left: 3px solid #488f7d;
}
.subcategory-title {
    font-size: 0.9rem;
}
.subcategory-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 0.75rem;
}
.subcategory-header.active .subcategory-icon {
    transform: rotate(180deg);
    color: #fff;
}
.subcategory-content {
    display: none;
    padding: 0.3rem 0;
    animation: fadeIn 0.3s ease;
}
.category-icon,
.subcategory-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}
.category-header:hover .category-icon,
.category-header.active .category-icon {
    color: #fff;
}
.subcategory-header:hover .subcategory-icon,
.subcategory-header.active .subcategory-icon {
    color: #fff;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgb(72 143 125 / 0.15);
}
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}
.dropdown-menu::-webkit-scrollbar-track {
    background: rgb(72 143 125 / 0.05);
    border-radius: 10px;
    box-shadow: inset 0 0 2px rgb(72 143 125 / 0.1);
}
.dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #59bba4, #488f7d);
    border-radius: 10px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #488f7d, #3a7366);
    box-shadow: 0 0 2px rgb(0 0 0 / 0.2);
}
.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #488f7d rgb(72 143 125 / 0.05);
}
.dropdown-item.pl-3 {
    padding-left: 2rem !important;
}
.dropdown-item.pl-4 {
    padding-left: 2.5rem !important;
}
.dropdown-item {
    padding: 0.6rem 1.2rem;
    white-space: normal;
    word-wrap: break-word;
    transition: all 0.3s ease;
    color: #495057;
    font-weight: 500;
    border-left: 3px solid #fff0;
    font-size: 0.9rem;
    line-height: 1.4;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #488f7d;
    color: #fff;
    border-left: 3px solid #3a7366;
    text-decoration: none;
}
.dropdown-toggle::after {
    margin-left: 0px !important;
    vertical-align: 0.15em;
}
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}
.dropdown-menu-end {
    right: 0;
    left: auto;
}
.navbar-nav > .nav-item.dropdown > .dropdown-menu {
    top: 100%;
    left: 0;
}
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        box-shadow: none;
        max-width: 100%;
        max-height: 300px;
    }
    .dropdown-item {
        white-space: normal;
    }
    .main-dropdown {
        max-height: 50vh;
    }
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid rgb(255 255 255 / 0.1);
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}
@media (min-width: 992px) {
    .navbar-nav > .dropdown:last-child .dropdown-menu,
    .navbar-nav > .dropdown:nth-last-child(2) .dropdown-menu {
        right: 0;
        left: auto;
    }
}
.about-hero-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--bg-light);
}
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(89 187 164 / 0.15) 0%, rgb(89 187 164 / 0.05) 100%);
    z-index: 0;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}
.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}
.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(89 187 164 / 0.4);
}
.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.2;
    position: relative;
}
.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}
.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-text {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}
.about-hero-image {
    position: relative;
    z-index: 2;
}
.about-hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
    transition: all 0.5s ease;
}
.about-hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgb(0 0 0 / 0.15);
}
.image-accent {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    top: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.5s ease;
}
.about-hero-image:hover .image-accent {
    top: -30px;
    left: -30px;
}
.about-history {
    background-color: #fff;
    position: relative;
}
.history-image-container {
    position: relative;
    margin-bottom: 30px;
}
.history-image-container img {
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
    transition: all 0.5s ease;
}
.history-image-container:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.15);
}
.history-experience {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.history-experience:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(89 187 164 / 0.5);
}
.history-experience .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.9;
    display: flex;
    align-items: flex-start;
}
.history-experience .years span:nth-child(2) {
    font-size: 1.5rem;
    margin-top: 5px;
}
.history-experience p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}
.section-subtitle {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgb(89 187 164 / 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.history-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
}
.history-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}
.history-features {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}
.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}
.feature-text h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}
.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}
.values-section {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}
.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgb(89 187 164 / 0.05) 0%, transparent 80%);
    z-index: 0;
}
.section-description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}
.value-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}
.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}
.value-card:hover h3 {
    color: var(--primary-color);
}
.value-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}
.team-section {
    background-color: #fff;
}
.team-member-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}
.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.member-image-wrapper {
    position: relative;
    overflow: hidden;
}
.member-image-wrapper img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}
.team-member-card:hover .member-image-wrapper img {
    transform: scale(1.05);
}
.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 0.7) 0%, transparent 100%);
    transition: all 0.4s ease;
}
.team-member-card:hover .member-social {
    bottom: 0;
}
.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.member-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}
.member-content {
    padding: 25px;
}
.member-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}
.member-position {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.member-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}
.certificates-section {
    background-color: var(--bg-light);
}
.certificates-content {
    padding-right: 30px;
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.certificate-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}
.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}
.certificate-item img {
    max-width: 70px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.certificate-item:hover img {
    transform: scale(1.1);
}
.certificate-item h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}
.certificates-image {
    position: relative;
}
.img-overlap {
    position: relative;
    display: inline-block;
}
.img-overlap .main-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
    position: relative;
    z-index: 2;
}
.img-overlap .accent-img {
    position: absolute;
    bottom: -50px;
    right: -70px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 0.1);
    z-index: 1;
}
.testimonials-section {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(89 187 164 / 0.05) 0%, transparent 100%);
    z-index: 0;
}
.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: rgb(89 187 164 / 0.1);
    font-family: serif;
    line-height: 1;
    z-index: -1;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.testimonial-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 20px;
}
.testimonial-content {
    margin-bottom: 25px;
}
.testimonial-content p {
    color: #555;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.author-info h5 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
}
.author-info span {
    color: #777;
    font-size: 0.9rem;
}
.cta-section {
    position: relative;
    background-color: rgb(89 187 164 / 0.05);
    overflow: hidden;
}
.cta-wrapper {
    position: relative;
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 60px;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgb(89 187 164 / 0.3);
}
.cta-shape {
    position: absolute;
    background-color: rgb(255 255 255 / 0.1);
    border-radius: 50%;
    z-index: -1;
}
.cta-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}
.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}
.cta-btn {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}
.cta-btn i {
    transition: all 0.3s ease;
}
.cta-btn:hover {
    background-color: #fff0;
    color: #fff;
}
.cta-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .history-content .section-title {
        font-size: 2rem;
    }
    .cta-wrapper {
        padding: 40px 30px;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .about-hero-section {
        padding: 80px 0;
    }
    .about-hero-title {
        font-size: 2rem;
    }
    .about-hero-stats {
        gap: 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .history-experience {
        right: 20px;
    }
    .history-content .section-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    .certificates-image {
        margin-top: 40px;
    }
    .img-overlap .accent-img {
        bottom: -30px;
        right: -30px;
    }
}
@media (max-width: 575px) {
    .about-hero-section {
        padding: 60px 0;
    }
    .about-hero-title {
        font-size: 1.8rem;
    }
    .about-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    .value-card {
        padding: 30px 20px;
    }
    .cta-wrapper {
        padding: 30px 20px;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}
.certificate-gallery {
    padding-top: 20px;
}
.certificate-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}
.certificate-thumbnail img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.certificate-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(89 187 164 / 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.certificate-zoom i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.certificate-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
}
.certificate-thumbnail:hover .certificate-zoom {
    opacity: 1;
}
.certificate-thumbnail:hover .certificate-zoom i {
    transform: scale(1);
}
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.9);
    z-index: 1050;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
.certificate-modal.show {
    display: flex;
}
.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}
.certificate-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 5px solid #fff;
    border-radius: 5px;
}
.certificate-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.certificate-modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}
.certificate-modal-prev,
.certificate-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgb(255 255 255 / 0.2);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.certificate-modal-prev {
    left: 20px;
}
.certificate-modal-next {
    right: 20px;
}
.certificate-modal-prev:hover,
.certificate-modal-next:hover {
    background-color: rgb(89 187 164 / 0.7);
}
@media (max-width: 767px) {
    .certificate-modal-content {
        max-width: 95%;
    }
    .certificate-modal-prev,
    .certificate-modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .certificate-modal-prev {
        left: 10px;
    }
    .certificate-modal-next {
        right: 10px;
    }
}
@media (max-width: 575px) {
    .certificate-thumbnail {
        margin-bottom: 15px;
    }
}
.about-history {
    background-color: #fff;
    position: relative;
}
.services-section {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgb(89 187 164 / 0.1) 0%, rgb(89 187 164 / 0.05) 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 0;
}
.section-intro .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.section-intro .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.section-intro .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}
.service-card:hover .card-body {
    background: #fff0;
}

.service-card:hover .btn-outline-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.service-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .card-img-top {
    transform: scale(1.1);
}
.service-card .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    transition: background 0.4s ease;
}
.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}
.service-card .card-text {
    margin-bottom: 1.25rem;
    transition: color 0.4s ease;
}
.service-card .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.cta-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.25);
}
.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" width="50" height="50" x="0" y="0"/><rect fill="rgba(255,255,255,0.1)" width="50" height="50" x="50" y="50"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}
.cta-card .card-body {
    position: relative;
    z-index: 1;
}
.cta-card .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-card .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: 2px solid #fff0;
    transition: all 0.3s ease;
}
.cta-card .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
}
.service-list {
    margin-bottom: 0;
}
.service-list .list-group-item {
    border: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: #fff0;
}
.service-list .list-group-item a {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.service-list .list-group-item:hover {
    background-color: rgb(89 187 164 / 0.1);
    border-radius: 8px;
}
.service-list .list-group-item:hover a {
    color: var(--primary-color);
    transform: translateX(5px);
}
.service-list .fas {
    transition: all 0.3s ease;
}
.service-list .list-group-item:hover .fas {
    color: var(--primary-color);
    transform: scale(1.2);
}
.testimonial-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.2);
}
.testimonial-card .card-body {
    padding: 2rem;
}
.testimonial-rating {
    margin-bottom: 1rem;
}
.testimonial-card .card-text {
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.testimonial-card .card-text::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: 0;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgb(89 187 164 / 0.25);
    transition: all 0.4s ease;
    margin: 0 auto 12px;
}
.card:hover .feature-icon {
    transform: rotateY(180deg);
}
.why-us {
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, rgb(89 187 164 / 0.1) 0%, rgb(89 187 164 / 0.05) 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-section .btn {
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgb(0 0 0 / 0.15);
    transition: all 0.4s ease;
}
.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgb(0 0 0 / 0.25);
    background-color: #fff0;
    color: #fff;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}
@media (max-width: 991px) {
    .service-card .card-img-top {
        height: 180px;
    }
    .cta-card .card-title {
        font-size: 1.5rem;
    }
    .section-intro .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .service-card .card-img-top {
        height: 200px;
    }
    .section-intro .section-title {
        font-size: 1.75rem;
    }
    .section-intro .lead {
        font-size: 1rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}
@media (max-width: 575px) {
    .service-card .card-img-top {
        height: 180px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    .testimonial-card .card-body {
        padding: 1.5rem;
    }
}
.services-sidebar-card,
.contact-sidebar-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.05);
}
.services-sidebar-card:hover,
.contact-sidebar-card:hover {
    box-shadow: 0 10px 30px rgb(89 187 164 / 0.15);
    transform: translateY(-5px);
}
.sidebar-header {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    font-size: 1.1rem;
}
.sidebar-list-item {
    padding: 12px 15px;
    border-left: 3px solid #fff0;
    transition: all 0.3s ease;
}
.sidebar-list-item:hover {
    background-color: rgb(89 187 164 / 0.08);
    border-left-color: var(--primary-color);
}
.service-list-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(89 187 164 / 0.15);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.service-list-icon i {
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}
.sidebar-list-item:hover .service-list-icon {
    background-color: var(--primary-color);
}
.sidebar-list-item:hover .service-list-icon i {
    color: #fff;
}
.sidebar-list-item a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}
.sidebar-list-item:hover a {
    color: var(--primary-color);
    transform: translateX(5px);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgb(89 187 164 / 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.contact-icon i {
    color: var(--primary-color);
    font-size: 16px;
}
.contact-text p {
    margin: 0;
    color: #444;
    line-height: 1.5;
    font-size: 0.95rem;
    padding-top: 8px;
}
.contact-sidebar-card .card-body {
    padding: 20px;
}
@media (max-width: 991px) {
    .contact-item {
        margin-bottom: 12px;
    }
    .contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .contact-text p {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
    .sidebar-header {
        font-size: 1rem;
        padding: 12px 15px;
    }
    .sidebar-list-item {
        padding: 10px 12px;
    }
    .service-list-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
}
.blog-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.blog-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.1);
    z-index: 0;
}
.blog-header::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgb(89 187 164 / 0.05);
    z-index: 0;
}
.blog-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}
.blog-main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.blog-search-container {
    max-width: 500px;
    margin: 2rem auto 0;
}
.blog-search-container .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgb(0 0 0 / 0.1);
    box-shadow: 0 3px 15px rgb(0 0 0 / 0.05);
}
.blog-search-container .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}
.blog-section {
    background-color: #fff;
    position: relative;
}
.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}
.blog-img-container {
    position: relative;
    overflow: hidden;
}
.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.blog-card:hover .card-img-top {
    transform: scale(1.05);
}
.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
}
.blog-card .card-body {
    padding: 1.5rem;
}
.blog-card .post-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}
.blog-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}
.blog-card:hover .card-title {
    color: var(--primary-color);
}
.blog-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-card .card-footer {
    padding: 0.75rem 1.5rem 1.5rem;
}
.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-read-more:hover {
    color: var(--primary-dark);
}
.btn-read-more i {
    transition: transform 0.3s ease;
}
.btn-read-more:hover i {
    transform: translateX(5px);
}
.author-tag {
    font-size: 0.85rem;
    color: #777;
}
.pagination {
    margin-top: 3rem;
}
.page-item .page-link {
    border: none;
    padding: 0.6rem 1rem;
    margin: 0 5px;
    border-radius: 5px;
    color: var(--dark-color);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
}
.page-item .page-link:hover {
    background-color: var(--primary-light);
    color: #fff;
}
.page-item.disabled .page-link {
    color: #ccc;
    background-color: #fff0;
}
.sidebar-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    margin-bottom: 2rem;
}
.sidebar-card .card-header {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
}
.sidebar-card .card-header h5 {
    margin: 0;
    font-weight: 600;
}
.sidebar-card .card-body {
    padding: 1.5rem;
}
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-categories li {
    margin-bottom: 0.8rem;
}
.sidebar-categories li:last-child {
    margin-bottom: 0;
}
.sidebar-categories li a {
    color: #555;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 0.05);
}
.sidebar-categories li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.sidebar-categories li a i {
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.sidebar-categories li a:hover i {
    opacity: 1;
}
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent-post-item {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: center;
}
.recent-post-item:last-child {
    margin-bottom: 0;
}
.recent-post-img {
    width: 80px;
    height: 60px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}
.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.recent-post-item:hover .recent-post-img img {
    transform: scale(1.05);
}
.recent-post-content {
    flex: 1;
}
.recent-post-content h6 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.4;
}
.recent-post-content h6 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.recent-post-content h6 a:hover {
    color: var(--primary-color);
}
.recent-post-content .post-date {
    font-size: 0.8rem;
    color: #888;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background-color: var(--bg-light);
    color: #555;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.blog-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}
.newsletter-card {
    background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
    overflow: hidden;
}
.newsletter-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.newsletter-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.newsletter-card .form-control {
    border-radius: 50px 0 0 50px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgb(0 0 0 / 0.1);
}
.newsletter-card .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.contact-cta h2 {
    font-weight: 700;
}
.contact-cta .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}
.contact-cta .btn:hover {
    background-color: #fff0;
    color: #fff;
    transform: translateY(-5px);
}
.cta-shape {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
}
.cta-shape.shape-1 {
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #fff;
}
.cta-shape.shape-2 {
    bottom: -70px;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #fff;
}
@media (max-width: 991px) {
    .blog-main-title {
        font-size: 2.4rem;
    }
    .sidebar-card {
        margin-top: 3rem;
    }
}
@media (max-width: 767px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .meta-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .post-tags,
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
    .tags-title,
    .share-title {
        margin-bottom: 10px;
    }
    .post-navigation {
        flex-direction: column;
    }
    .nav-previous,
    .nav-next {
        width: 100%;
        border-right: none;
    }
    .nav-previous {
        border-bottom: 1px solid #eee;
    }
    .post-comments,
    .comment-form {
        padding: 20px;
    }
    .comment {
        flex-direction: column;
    }
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .comment-content::before {
        display: none;
    }
    .cta-card {
        padding: 30px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-text {
        font-size: 1rem;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
@media (max-width: 575px) {
    .blog-title {
        font-size: 1.5rem;
    }
    .post-content h3 {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .cta-title {
        font-size: 1.5rem;
    }
}
.gallery-nav {
    position: relative;
    overflow: hidden;
}
.gallery-nav::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: -1;
}
.gallery-nav::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -100px;
    right: -100px;
    z-index: -1;
}
#galleryTab {
    max-width: 700px;
    margin: 0 auto 3rem;
}
#galleryTab .nav-link {
    border-radius: 50px;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
    border: 2px solid #fff0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#galleryTab .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
    z-index: -1;
}
#galleryTab .nav-link:hover::before,
#galleryTab .nav-link.active::before {
    width: 100%;
}
#galleryTab .nav-link:hover,
#galleryTab .nav-link.active {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(89 187 164 / 0.25);
}
#galleryTab .nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
#galleryTab .nav-link:hover i,
#galleryTab .nav-link.active i {
    transform: scale(1.2);
}
.gallery-filter {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.gallery-filter .btn {
    margin: 0 5px 10px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.gallery-filter .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transition: width 0.4s ease;
    z-index: -1;
}
.gallery-filter .btn:hover::before,
.gallery-filter .btn.active::before {
    width: 100%;
}
.gallery-filter .btn:hover,
.gallery-filter .btn.active {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(89 187 164 / 0.3);
}
.photo-gallery {
    margin: 0 -15px;
}
.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(89 187 164 / 0.2);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(89 187 164 / 0.9), rgb(6 61 76 / 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}
.gallery-item:hover .overlay {
    opacity: 1;
}
.gallery-item .overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}
.gallery-item:hover .overlay i {
    transform: scale(1);
    opacity: 1;
}
.video-gallery {
    margin-top: 20px;
}
.video-item {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.video-item:hover {
    transform: translateY(-10px);
}
.video-item .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.1);
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}
.video-item:hover .card {
    box-shadow: 0 20px 40px rgb(89 187 164 / 0.15);
}
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.video-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgb(255 255 255 / 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.2);
    z-index: 2;
}
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.play-btn i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}
.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-color);
}
.video-item:hover .play-btn i {
    color: #fff;
}
.video-info {
    padding: 1.5rem;
    position: relative;
}
.video-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color), var(--primary-light));
    border-radius: 5px;
}
.video-info h5 {
    font-weight: 700;
    margin: 1rem 0 0.7rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.video-item:hover .video-info h5 {
    color: var(--primary-color);
}
.video-info p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgb(0 0 0 / 0.2);
}
.modal-header {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1.2rem 1.5rem;
}
.modal-title {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.modal-body {
    padding: 1rem;
}
.modal-dialog {
    max-width: 800px;
}
.btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.contact-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
    overflow: hidden;
}
.contact-cta::before,
.contact-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
    z-index: 0;
}
.contact-cta::before {
    top: -150px;
    left: -150px;
}
.contact-cta::after {
    bottom: -150px;
    right: -150px;
}
.contact-cta .container {
    position: relative;
    z-index: 1;
}
.contact-cta h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
}
.contact-cta .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
.contact-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
    transition: all 0.4s ease;
    border: 2px solid #fff0;
}
.contact-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.2);
    background-color: #fff0;
    border-color: #fff;
    color: #fff;
}
@media (max-width: 991px) {
    #galleryTab .nav-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .gallery-item img {
        height: 250px;
    }
    .video-thumbnail img {
        height: 200px;
    }
    .contact-cta h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 767px) {
    #galleryTab {
        margin-bottom: 2rem;
    }
    #galleryTab .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .gallery-filter .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .gallery-item img {
        height: 220px;
    }
    .contact-cta {
        padding: 4rem 0;
    }
    .contact-cta h2 {
        font-size: 2rem;
    }
}
@media (max-width: 575px) {
    #galleryTab .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    #galleryTab .nav-link i {
        margin-right: 5px;
    }
    .gallery-filter {
        margin-bottom: 25px;
    }
    .gallery-filter .btn {
        padding: 7px 15px;
        font-size: 0.85rem;
        margin: 0 3px 8px;
    }
    .gallery-item img {
        height: 200px;
    }
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    .contact-cta .lead {
        font-size: 1.1rem;
    }
}
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}
.contact-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/pattern.png);
    opacity: 0.05;
    z-index: 1;
}
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.1);
}
.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.contact-info-icon i {
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-info-icon {
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-color);
}
.contact-info-card:hover .contact-info-icon i {
    color: var(--primary-color);
}
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.contact-info-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}
.contact-info-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.contact-info-card:hover .contact-info-decoration {
    transform: scaleX(1);
}
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.08);
}
.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.form-description {
    color: #6c757d;
    margin-bottom: 30px;
}
.contact-form .form-floating > .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    transition: all 0.3s ease;
}
.contact-form .form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgb(89 187 164 / 0.25);
}
.contact-form .form-floating > textarea.form-control {
    height: 150px;
}
.btn-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(89 187 164 / 0.3);
}
.btn-submit i {
    transition: transform 0.3s ease;
}
.btn-submit:hover i {
    transform: translateX(5px);
}
.map-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.08);
}
.map-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.map-description {
    color: #6c757d;
    margin-bottom: 30px;
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
}
.working-hours-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}
.hours-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hours-title i {
    color: var(--primary-color);
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list .day {
    font-weight: 500;
    color: var(--dark-color);
}
.hours-list .time {
    color: #6c757d;
}
.contact-faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.05);
    overflow: hidden;
}
.faq-button {
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-icon i {
    color: #fff;
    font-size: 16px;
}
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}
.faq-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}
.faq-button[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}
.faq-body {
    padding: 0 30px 20px;
    color: #6c757d;
    line-height: 1.6;
}
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-cta-primary,
.btn-cta-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-cta-primary {
    background: #fff;
    color: var(--primary-color);
}
.btn-cta-primary:hover {
    background: rgb(255 255 255 / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}
.btn-cta-secondary {
    background: rgb(255 255 255 / 0.1);
    color: #fff;
    border: 2px solid rgb(255 255 255 / 0.2);
}
.btn-cta-secondary:hover {
    background: rgb(255 255 255 / 0.2);
    transform: translateY(-2px);
}
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: rgb(255 255 255 / 0.1);
}
.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}
.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}
.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .contact-form-wrapper,
    .map-card {
        padding: 30px;
    }
    .form-title,
    .map-title {
        font-size: 1.8rem;
    }
    .cta-title {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
    .contact-form-wrapper,
    .map-card {
        padding: 25px;
    }
    .form-title,
    .map-title {
        font-size: 1.6rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    .contact-info-icon i {
        font-size: 24px;
    }
    .contact-info-title {
        font-size: 1.3rem;
    }
    .form-title,
    .map-title {
        font-size: 1.4rem;
    }
    .cta-title {
        font-size: 1.6rem;
    }
}
.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgb(89 187 164 / 0.08);
    transition: box-shadow 0.3s;
}
.contact-info-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 32px 16px 24px 16px;
}
.contact-info-icon {
    margin-bottom: 12px;
    margin-top: 0;
}
.contact-info-title {
    margin-bottom: 8px;
    text-align: center;
}
.contact-info-text {
    text-align: center;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .contact-info-section .row.g-4 {
        gap: 32px 0;
    }
    .contact-info-card {
        margin-bottom: 0;
    }
}
.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}
.contact-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f0f2f5;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgb(89 187 164 / 0.08);
}
.contact-social-icons .social-icon.facebook:hover {
    background: #1877f3;
    color: #fff;
}
.contact-social-icons .social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    color: #fff;
}
.contact-social-icons .social-icon.whatsapp:hover {
    background: #25d366;
    color: #fff;
}
.service-detail {
    padding: 80px 0;
    background-color: var(--bg-light);
}
.service-detail .service-post {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 0.05);
    padding: 30px;
    transition: all 0.3s ease;
}
.service-detail .service-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgb(0 0 0 / 0.08);
}
.service-detail .service-intro {
    margin-bottom: 40px;
}
.service-detail .service-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.service-detail .service-intro h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.service-detail .service-intro .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Modern Appointment CTA Styles */
.appointment-cta-modern {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: none;
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.appointment-cta-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.cta-content-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.cta-badge .badge-pill {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.cta-title {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        left: 100%;
        opacity: 0.8;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.feature-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.floating-element {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.floating-element.elem-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.elem-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-element.elem-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) translateX(10px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-secondary {
        margin-top: 10px;
        margin-left: 0 !important;
    }
}

.why-hacamat {
    position: relative;
    background: linear-gradient(135deg, #f8fbfa 0%, #edf7f5 100%);
    padding: 100px 0;
    overflow: hidden;
}

.radial-content {
    background-color: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(89, 187, 164, 0.1);
    min-width: 200px;
    max-width: 260px;
    transition: all 0.3s ease;
    animation: float 5s ease-in-out infinite alternate;
    position: relative;
    z-index: 5;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 5 !important;
}

/* Sertifika Modal Stilleri */
.certificate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1050;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.certificate-modal.show {
    display: flex;
}

.certificate-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.certificate-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 5px solid white;
    border-radius: 5px;
}

.certificate-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.certificate-modal-prev,
.certificate-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-modal-prev {
    left: 20px;
}

.certificate-modal-next {
    right: 20px;
}

.certificate-modal-prev:hover,
.certificate-modal-next:hover {
    background-color: rgba(89, 187, 164, 0.7);
}

@media (max-width: 767px) {
    .certificate-modal-content {
        max-width: 95%;
    }
    
    .certificate-modal-prev,
    .certificate-modal-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .certificate-modal-prev {
        left: 10px;
    }
    
    .certificate-modal-next {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .certificate-thumbnail {
        margin-bottom: 15px;
    }
}

.topbar-phone{
    font-size: 14px;
}
.topbar-email{
    font-size: 14px;
}

/* HEADER YENİ CSS KODLARI DOSYA İÇİNDEKİ */
    /* Main Header Styles */
    .main-header {
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .main-header.fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .top-bar {
        transition: all 0.3s ease;
    }

    .top-bar.hide {
        transform: translateY(-100%);
        opacity: 0;
    }


    /* Özel Dropdown Menü Stilleri */
    .custom-dropdown {
        position: relative;
    }

    .custom-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 320px;
        max-width: 350px;
        background-color: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 0.75rem 0;
        margin-top: 0.5rem;
        border-top: 3px solid #488f7d;
        max-height: 70vh;
        overflow-y: auto;
        /* Firefox scrollbar */
        scrollbar-width: thin;
        scrollbar-color: #488f7d rgba(72, 143, 125, 0.05);
    }

    /* Açık olduğunda menüyü göster */
    .custom-dropdown.open .custom-dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Kategori stilleri */
    .custom-category {
        margin-bottom: 0.5rem;
    }

    .custom-category-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.2rem;
        font-weight: 600;
        color: #488f7d;
        background-color: #f8f9fa;
        border-left: 3px solid #488f7d;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .custom-category-header:hover,
    .custom-category-header.active {
        background-color: #488f7d;
        color: #ffffff;
        border-left: 3px solid #3a7366;
    }

    .custom-category-header i {
        transition: transform 0.3s ease, color 0.3s ease;
        font-size: 0.8rem;
    }

    .custom-category-header.active i {
        transform: rotate(180deg);
    }

    .custom-category-content {
        display: none;
        padding: 0.5rem 0;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Alt kategori stilleri */
    .custom-subcategory {
        margin: 0.3rem 0;
    }

    .custom-subcategory-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 1.2rem 0.6rem 2rem;
        font-weight: 500;
        color: #5a6268;
        background-color: #f8f9fa;
        border-left: 3px solid #a3d4c5;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .custom-subcategory-header:hover,
    .custom-subcategory-header.active {
        background-color: #a3d4c5;
        color: #ffffff;
        border-left: 3px solid #488f7d;
    }

    .custom-subcategory-header i {
        transition: transform 0.3s ease, color 0.3s ease;
        font-size: 0.75rem;
    }

    .custom-subcategory-header.active i {
        transform: rotate(180deg);
    }

    .custom-subcategory-content {
        display: none;
        padding: 0.3rem 0;
        animation: fadeIn 0.3s ease;
    }

    /* Öğe stilleri */
    .custom-item {
        display: block;
        padding: 0.6rem 1.2rem;
        color: #121f2e;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        font-size: 16px;
        line-height: 1.4;
    }

    .custom-item:hover {
        background-color: #488f7d;
        color: #ffffff;
        border-left: 3px solid #3a7366;
        text-decoration: none;
    }

    .custom-subcategory .custom-item {
        padding-left: 2.5rem;
    }

    /* Ayraç stili */
    .dropdown-divider {
        height: 0;
        margin: 0.5rem 0;
        overflow: hidden;
        border-top: 1px solid rgba(72, 143, 125, 0.15);
    }

    /* Scrollbar stilleri */
    .custom-dropdown-menu {
        max-height: 70vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #488f7d rgba(72, 143, 125, 0.05);
    }

    .custom-dropdown-menu::-webkit-scrollbar {
        width: 10px;
    }

    .custom-dropdown-menu::-webkit-scrollbar-track {
        background: rgba(72, 143, 125, 0.08);
        border-radius: 12px;
        box-shadow: inset 0 0 4px rgba(72, 143, 125, 0.1);
        margin: 8px 0;
    }

    .custom-dropdown-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #59bba4, #488f7d);
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #488f7d, #3a7366);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    /* Mobil Stillemeler */
    @media (min-width: 557px) {
        .top-bar .contact-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
        }

        .top-bar .contact-info {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Phone numbers container */
        .phone-numbers {
            display: flex;
            gap: 1.5rem;
        }
    }

    @media (max-width: 556px) {
        .top-bar .contact-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }
        .top-bar .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        .top-bar .contact-info {
            margin-bottom: 0 !important;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 0px !important;
        }
        .logo-img {
            height: 12vh;
            min-height: 60px;
            min-width: 60px;
            max-width: 60vw;
        }
    }

    @media (max-width: 991.98px) {
        .navbar-collapse {
            max-height: 80vh;
            overflow-y: auto;
        }
        .custom-dropdown-menu {
            position: static !important;
            width: 100% !important;
            min-width: 0 !important;
            max-width: 100% !important;
            box-shadow: none !important;
            margin-top: 0.5rem;
            border-radius: 0;
            border-top: none;
        }
        .custom-dropdown.open .custom-dropdown-menu {
            animation: none;
        }
    }

    .logo-img {
        height: 8vh;
        width: auto;
        max-width: 50vw;
        min-height: 40px;
        min-width: 40px;
        object-fit: contain;
        transition: height 0.3s, width 0.3s;
    }
/* HEADER YENİ CSS KODLARI DOSYA İÇİNDEKİ */

/* FOOTER YENİ CSS KODLARI DOSYA İÇİNDEKİ */
/* Fixed Social Media Toggle Button Styles */
.social-media-toggle {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

.social-toggle-btn {
    min-width: 60px; /* Minimum width for the icon */
    height: 60px;
    background: linear-gradient(45deg, #ff8a00, #e52e71, #8A2BE2);
    border-radius: 30px; /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the start */
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Smoother elastic transition */
    position: relative;
    overflow: hidden;
    padding: 0 20px; /* Padding for icon and text */
}

.social-toggle-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-right: 0; /* Initially no margin */
}

.toggle-btn-text {
    display: inline-block;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    transition: max-width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, opacity 0.3s ease 0.1s, margin-left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
    font-size: 16px; /* Adjust text size as needed */
    font-weight: 600;
    overflow: hidden;
    vertical-align: middle;
}

.social-toggle-btn:hover {
    /* min-width will be overridden by content + padding */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* Transform scale removed to allow width transition to dominate */
}

.social-toggle-btn:hover i {
    margin-right: 10px; /* Add margin when text is visible */
}

.social-toggle-btn:hover .toggle-btn-text {
    opacity: 1;
    max-width: 150px; /* Adjust as needed for text length */
    margin-left: 5px; /* Small gap between icon and text */
}

/* Ensure icon stays centered when button is just an icon */
.social-toggle-btn:not(:hover) {
    justify-content: center; /* Center icon when text is hidden */
    padding: 0; /* No padding when it's just the icon */
    width: 60px; /* Fixed width when only icon */
}

.social-toggle-btn:not(:hover) i {
    margin-right: 0;
}

.social-media-panel {
    position: fixed;
    left: 20px;
    bottom: 90px; /* Adjusted if main button size changes affect this */
    background: #fff; /* Solid white background */
    padding: 15px; /* Slightly reduced padding if needed for compactness */
    border-radius: 12px; /* Adjusted border-radius */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* Softened shadow */
    display: none;
    z-index: 999;
    animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Removed backdrop-filter and specific border */
}

.social-media-panel.active {
    display: block;
}

.social-media-panel a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    width: 100%;
    min-width: 50px;
    margin: 10px 0;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #fff;
    border-width: 2px;
    border-style: solid;
    box-sizing: border-box;
}

.social-media-panel a i {
    /* margin-right removed as we center the icon if no text */
    width: auto; /* Icon takes its own width */
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

/* Facebook */
.social-media-panel a.facebook {
    border-color: #1877F2;
}
.social-media-panel a.facebook i {
    color: #1877F2;
}
.social-media-panel a.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}
.social-media-panel a.facebook:hover i {
    color: white;
    transform: scale(1.1);
}

/* Instagram */
.social-media-panel a.instagram {
    border-color: #E4405F;
}
.social-media-panel a.instagram i {
    color: #E4405F;
}
.social-media-panel a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: transparent; /* Gradient background makes border redundant */
}
.social-media-panel a.instagram:hover i {
    color: white;
    transform: scale(1.1);
}

/* YouTube */
.social-media-panel a.youtube {
    border-color: #FF0000;
}
.social-media-panel a.youtube i {
    color: #FF0000;
}
.social-media-panel a.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
}
.social-media-panel a.youtube:hover i {
    color: white;
    transform: scale(1.1);
}

/* WhatsApp */
.social-media-panel a.whatsapp {
    border-color: #25D366;
}
.social-media-panel a.whatsapp i {
    color: #25D366;
}
.social-media-panel a.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
}
.social-media-panel a.whatsapp:hover i {
    color: white;
    transform: scale(1.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .social-media-toggle {
        left: 15px;
        bottom: 15px;
    }
    
    .social-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .social-media-panel {
        left: 15px;
        bottom: 80px;
        padding: 15px;
    }
    
    .social-media-panel a {
        font-size: 20px;
        margin: 10px 0;
        padding: 8px 12px;
    }
}

.footer-main-logo {
    max-width: 100%;
    width: 30vw;
    height: auto;
}

@media (max-width: 1200px) {
    .footer-main-logo {
        width: 65vw;
    }
}

@media (max-width: 992px) {
    .footer-main-logo {
        width: 55vw;
    }
}

@media (max-width: 768px) {
    .footer-main-logo {
        width: 45vw;
    }
}

@media (max-width: 576px) {
    .footer-main-logo {
        width: 75vw;
    }
}
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    overflow: hidden;
    display: none;
    flex-direction: column;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}
.chat-header {
    background: linear-gradient(90deg, #5fb3a2 80%, #3e8e7e 100%);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}
.chat-title {
    font-weight: 600;
    font-size: 1.08rem;
}
.chat-subtitle {
    font-size: 0.98rem;
    opacity: 0.92;
}
.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s;
}
.chat-close:hover { color: #ffd700; }
.chat-body {
    background: #f7f7f7;
    padding: 18px 16px 10px 16px;
    min-height: 70px;
    max-height: 180px;
    overflow-y: auto;
}
.chat-message {
    margin-bottom: 10px;
    display: flex;
}
.chat-message-bot .chat-message-content {
    background: #e6f7f3;
    color: #222;
    border-radius: 12px 12px 12px 0;
    padding: 12px 16px;
    font-size: 1.04rem;
    box-shadow: 0 2px 8px rgba(95,179,162,0.08);
}
.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
}
.chat-input {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1rem;
    background: #f2f2f2;
    margin-right: 8px;
    outline: none;
}
.chat-send {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    display: flex;
    align-items: center;
}
.chat-ask-doctor {
    width: 100%;
    background: #5fb3a2;
    color: #fff;
    border: none;
    border-radius: 0 0 18px 18px;
    padding: 13px 0;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.chat-ask-doctor:hover {
    background: #3e8e7e;
}
.chat-open-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366; /* WhatsApp orijinal rengi */
    color: #fff;
    border: none;
    border-radius: 28px;
    min-width: 170px;
    height: 58px;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.18);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    transition: background 0.2s;
    padding: 0 24px;
}
.chat-open-btn i.fab.fa-whatsapp {
    font-size: 1.6em;
    margin-right: 6px;
}
.chat-open-btn:hover {
    background: #128C7E;
}
@media (max-width: 500px) {
    .chat-widget {
        width: 98vw;
        right: 1vw;
        bottom: 1vw;
        border-radius: 12px;
    }
    .chat-open-btn {
        right: 3vw;
        bottom: 3vw;
        min-width: 83px;
        font-size: 1.05rem;
        padding: 0 10px;
        height: 50px;
    }
}
/* FOOTER YENİ CSS KODLARI DOSYA İÇİNDEKİ */

/* HOMEPAGE BLOG KISMI CSS KODLARI DOSYA İÇİNDEKİ */
.blogSwiper{
    height: 60vh;
    min-height: 340px;
}

.blog-slider-container .swiper-slide {
    height: 100%;
    display: flex;
}

.blog-slider-container .blog-card-slide {
    display: flex;
    flex-direction: column;
    height: 60vh;
    min-height: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    overflow: hidden;
}

.blog-slider-container .blog-card-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.2rem 1rem 1rem 1rem;
    background: #fff;
    box-shadow: none;
}

.blog-slider-container .blog-button-wrapper {
    padding: 0 1rem 1rem 1rem;
    margin-top: auto;
    background: #fff;
    display: flex;
    align-items: flex-start;
}

.blog-slider-container .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(90deg, #59bba4 0%, #3a8fd8 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(89,187,164,0.18);
    transition: background 0.3s, transform 0.18s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}

@media (max-width: 992px) {

    .blog-slider-container .blog-card-content,
    .blog-slider-container .blog-button-wrapper {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
/* HOMEPAGE BLOG KISMI CSS KODLARI DOSYA İÇİNDEKİ */

/* HOMEPAGE TEAMS KISMI CSS KODLARI */
.team-slider-container .teamSwiper {
    height: 55vh;
    min-height: 440px;
}

@media (max-width: 1200px) {
    .team-slider-container .teamSwiper {
        height: 48vh;
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .team-slider-container .teamSwiper {
        height: 42vh;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .team-slider-container .teamSwiper {
        height: 36vh;
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .team-slider-container .teamSwiper {
        height: 65vh;
        min-height: 160px;
    }
}

.team-slider-container .team-card {
    height: 50vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    transition: box-shadow 0.3s;
}

@media (max-width: 1200px) {
    .team-slider-container .team-card {
        height: 50vh;
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .team-slider-container .team-card {
        height: 50vh;
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .team-slider-container .team-card {
        height: 50vh;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .team-slider-container .team-card {
        height: 62vh;
        min-height: 260px;
    }
}

.team-slider-container .team-card:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.14);
}

.team-slider-container .team-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.team-slider-container .team-image-wrapper {
    height: 40vh;
    min-height: 320px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-slider-container .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-slider-container .team-image-overlay {
    display: none;
}

.team-slider-container .team-content {
    width: 100%;
    background: #fff;
    border-radius: 0 0 14px 14px;
    text-align: center;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    box-shadow: none;
    margin-top: 0;
}

.team-slider-container .team-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #22313f;
    margin-bottom: 0.3rem;
}

.team-slider-container .team-position {
    font-size: 1rem;
    color: #4a6073;
    font-weight: 400;
    margin-bottom: 0.2rem;
    position: relative;
}

.team-slider-container .team-position::after {
    content: '';
    display: block;
    margin: 0.4rem auto 0 auto;
    width: 32px;
    height: 2px;
    background: #59bba4;
    border-radius: 1px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .team-slider-container .team-image-wrapper {
        height: 50vh;
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .team-slider-container .team-image-wrapper {
        height: 50vh;
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .team-slider-container .team-image-wrapper {
        height: 50vh;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .team-slider-container .team-image-wrapper {
        height: 50vh;
        min-height: 260px;
    }
}
/* HOMEPAGE TEAMS KISMI CSS KODLARI */

/* HOMEPAGE SERVİCES KISMI CSS KODLARI */
.services-slider-container .servicesSwiper {
    height: 60vh;
    min-height: 480px;
}


.services-slider-container .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.services-slider-container .service-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px 18px 10px 18px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-top: auto;
    min-height: 180px;
}

.services-slider-container .service-content .service-title {
    margin-bottom: 10px;
}

.services-slider-container .service-content .service-text {
    margin-bottom: 0;
    color: #444;
    font-size: 1rem;
}

.services-slider-container .service-button-wrapper {
    padding: 0 18px 18px 18px;
    background: #fff;
    border-radius: 0 0 18px 18px;
}

.services-slider-container .service-btn {
    margin-top: 0;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(90deg, #59bba4 0%, #3a8fd8 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(89, 187, 164, 0.18);
    transition: background 0.3s, transform 0.18s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-slider-container .service-btn i {
    font-size: 1.2em;
    transition: transform 0.2s;
}

.services-slider-container .service-btn:hover {
    background: linear-gradient(90deg, #3a8fd8 0%, #59bba4 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(58, 143, 216, 0.18);
}

.services-slider-container .service-btn:hover i {
    transform: translateX(4px) scale(1.15);
}

.services-slider-container .service-btn::before {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-25deg);
    transition: left 0.4s;
    z-index: 0;
}

.services-slider-container .service-btn:hover::before {
    left: 110%;
}

.services-slider-container .service-btn span,
.services-slider-container .service-btn i {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .services-slider-container .service-content {
        padding: 14px 10px 8px 10px;
    }

    .services-slider-container .service-content .service-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}
/* HOMEPAGE SERVİCES KISMI CSS KODLARI */ 

