@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --color-primary: #483AA0;
    --color-primary-light: #d4cfef;
    --color-secondary: #FFD586;
    --color-secondary-light: #ffebc5;
    --color-secondary-lightest: #fef7eb;
    --color-secondary-rgba: rgba(255, 235, 197, 0.3);
    --color-secondary-dark: #ffb938;
    --color-dark: #150f41;
    --color-light: #c9d2e4;

    /* Background Gradients */
    --bg-dark-primary: #0E1A33;
    --bg-dark-secondary: #1a2847;
    --bg-darkest: #0a0f1e;
    --gradient-appointment: linear-gradient(135deg, var(--bg-dark-primary) 0%, var(--bg-dark-secondary) 100%);
    --gradient-testimonial: var(--bg-darkest);

    /* Glow Effects */
    --glow-secondary-light: rgba(255, 213, 134, 0.1);
    --glow-secondary-subtle: rgba(255, 213, 134, 0.08);

    /* Card Styles */
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-radius: 24px;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--color-secondary);
}

a:hover,
a:focus,
button:hover {
    color: var(--color-secondary-dark);
    transition: all 0.5s ease-out;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.pt-10 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 100px;
}

.py-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.bg-white {
    background-color: #FFF;
}

.bg-yellow {
    background-color: var(--color-yellow);
}

.bg-yellow:hover {
    background-color: var(--color-yellow-dark);
}

.bg-yellow-light {
    background-color: var(--color-yellow-light);
}

.bg-violet-light {
    background-color: var(--color-primary-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.w-md {
    max-width: 700px;
}

.w-lg {
    max-width: 900px;
}

.w-xl {
    max-width: 1200px;
}

.color-violet {
    color: var(--color-primary);
}

.color-violet-light {
    color: var(--color-primary-light);
}

.color-violet-dark {
    color: var(--color-primary-dark);
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

body {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: var(--color-dark);
}


h1,
h2,
h3,
.h1,
.h2,
.h3 {
    line-height: 2.4rem;
    font-weight: bold;
    font-family: "Michroma", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
    font-style: normal;
}

h4,
h5,
.h4 {
    font-family: "Poppins", sans-serif;
    line-height: 140%;
}

h1 {
    letter-spacing: 3px;
    line-height: 6rem;
}

h2 {
    letter-spacing: 2px;
    font-size: 3rem;
    line-height: 4rem;
}

ul li {
    font-size: 1.2rem;
}

.my-10 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.py-10 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.header {
    background-color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    box-shadow: 0 10px 20px var(--color-secondary-rgba);
}

.navbar-brand {
    max-width: 200px;
}


.display-10 {
    font-size: 5rem;
}

.text-violet {
    color: var(--color-primary);
}

@media screen and (max-width: 768px) {
    .display-10 {
        font-size: 3rem;
    }
}

.header-area .fixed-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    z-index: 999;
    padding: 8px 15px;
}

.header-area .fixed-menu.scrolled {
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.header-area .fixed-menu.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    filter: blur(5px);
    z-index: -1;
    background-color: var(--color-primary);
}

.header-area .fixed-menu .header-area-image {
    max-width: 150px;
}

.header-area .fixed-menu.scrolled .header-area-image {
    max-width: 150px;
}

.header-area .fixed-menu.scrolled ul li.scroll-effect {
    padding: 20px 0;
}

.innerpage-banner {
    min-height: 500px;
    position: relative;
    background: var(--color-primary);
}

.innerpage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/farmhouse/1.png') no-repeat center 82%;
    background-size: cover;
    background-attachment: fixed;
    opacity: .3;
}

.innerpage-banner.seo-banner::before {
    background: url('../images/services/seo.png') no-repeat center 82%;
    background-size: cover;
}

.innerpage-banner>div {
    width: 100%;
    height: 100%;
    z-index: 10;
    color: white;
    padding-top: 50px;
}

.introduction img {
    border-radius: 30px;
}

.intro-pic {
    position: relative;
}

.intro-pic img {
    z-index: 10;
    position: relative;
}

.intro-pic::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    z-index: 1;
    background-color: var(--color-primary);
}

.whatsapp-button {
    position: fixed;
    bottom: 15px;
    right: 40px;
    z-index: 999;
}


.navbar-brand {
    max-width: 200px;
}

.dropdown-menu {
    background: var(--color-dark);
}

.nav-link {
    color: white;
    font-size: 20px;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--color-yellow);
}

.dropdown-item {
    background: var(--color-dark);
    color: white;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background: var(--color-dark);
    color: var(--color-yellow);
}

.portfolio-area-2 h4 {
    font-size: 20px;
}

.portfolio-area-wrapper::after {
    display: none;
}


/* hero styles */

.hero-area-title {
    margin-left: 50px;
}

.hero-area-slider-text-2 {
    font-weight: 300;
}

.hero-area-slider-text-2 span {
    font-weight: bold;
}

#lottie3+.text-marque-area-shape {
    left: -100px;
    top: 20px;
    right: inherit;
}

.hero-area .slick-arrow.btn-prev {
    position: absolute;
    top: 2px;
    right: 100px;
    z-index: 11;
    width: 46px;
    height: 46px;
    color: #ffffff;
    transform: rotate(180deg);
    background: var(--color-dark);
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-prev:hover {
    background: #ffd586;
}

.testimonial-area.style-1 .slick-arrow.btn-prev {
    position: absolute;
    bottom: -50px;
    left: 10px;
    z-index: 11;
    width: 44px;
    height: 44px;
    color: #ffffff;
    background: var(--color-dark);
    transform: rotate(180deg);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}


.testimonial-area.style-1 .slick-arrow.btn-next {
    position: absolute;
    bottom: -50px;
    left: 66px;
    z-index: 11;
    width: 44px;
    height: 44px;
    color: #ffffff;
    transform: rotate(180deg);
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.testimonial-area.style-1 .slick-arrow.btn-prev:hover,
.testimonial-area.style-1 .slick-arrow.btn-next:hover {
    color: var(--color-violet);
    background-color: var(--color-yellow);
}

.hero-area-bg-block-shape {
    top: 0;
    right: 150px;
    z-index: 11;
    max-width: 480px;
}

.hero-area-title-one {
    position: relative;
    font-size: 50px;
    color: #FFD586;
}

.hero-area-title-two {
    font-size: 42px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    display: inline-block;
    position: relative;
    font-weight: normal;
}

.hero-area-title-two::before {
    content: "";
    width: 149px;
    height: 132px;
    background: url(../images/hero-1-super-toroid-black-matte-2.png) no-repeat 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    left: -65px;
    top: -174px;
    z-index: -1;
    animation: rotated_circle 30s infinite;
}


.hero-area-title-two::after {
    content: "";
    width: 180px;
    height: 156px;
    background: url(../images/hero-1-element-3.png) no-repeat 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    right: -118px;
    top: -58px;
    z-index: -1;
    transform: rotate(25deg);
}


.hero-area-title-three {
    font-size: 32px;
    line-height: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 5px;
}

.hero-area::after {
    content: "";
    position: absolute;
    width: 376px;
    height: 376px;
    left: 50px;
    top: -90px;
    background: oklab(0.89 0.01 0.11 / 0.4);
    filter: blur(200px);
    z-index: 5;
    animation: zoomInOut 5s 2s infinite;
}

.header-area-image {
    margin: 5px;
}


.hero-area-slider-inner-text {
    bottom: 140px;
    left: 114px;
}

.hero-area-slider-section .slick-list {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #ffd586;
    box-shadow: 0 0 30px 10px rgba(255, 213, 134, .3);
}

.hero-area .slick-arrow.btn-next {
    position: absolute;
    top: 2px;
    right: 50px;
    z-index: 11;
    width: 46px;
    height: 46px;
    color: #ffffff;
    transform: rotate(180deg);
    border: none;
    background: var(--color-dark);
    transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-next:hover,
.hero-area .slick-arrow.btn-prev:hover {
    background: #ffd586;
    color: var(--color-primary);
}

.hero-area .slick-arrow.btn-prev:hover {
    background: #ffd586;
}

.hero-area .slick-arrow.btn-prev {
    position: absolute;
    top: 2px;
    right: 100px;
    z-index: 11;
    width: 46px;
    height: 46px;
    color: #ffffff;
    border: none;
    transform: rotate(180deg);
    background: var(--color-dark);
    transition: all 0.5s ease-out;
}

.hero-area-author-profile .author-img-wrapper img {
    border-radius: 50%;
    max-width: 100px;
}

.hero-area .text-marque-area-shape {
    left: -100px;
    top: 20px;
    right: inherit;
}

.text-marque-area-shape {
    position: absolute;
    width: 300px;
    height: 289px;
    top: 99px;
    right: 80px;
    animation: rotated_circle 30s infinite;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
}


.text-marque-area.style-1 .text-marque-section {
    gap: 40px;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper.first-text-marque {
    animation: Scroll 16s linear infinite;
}

.text-marque-area.style-1 .text-marque-section .text-marque-wrapper.second-text-marque {
    animation: Scroll 16s linear infinite;
    animation-direction: reverse;
}

.text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-one {
    font-size: 150px;
    line-height: 10rem;
    letter-spacing: 12.5px;
    white-space: nowrap;
}

.text-marque-area.style-1 .text-marque-section .single-text-marque .text-marque-title-two {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--color-secondary);
    color: transparent;
    font-size: 150px;
    line-height: 10rem;
    letter-spacing: 7.5px;
    margin-top: -3.2%;
    white-space: nowrap;
}

.bg-light-color.style-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(237, 188, 90, 0.7);
    filter: blur(200px);
    z-index: 5;
    right: 30px;
    top: 70px;
    animation: zoomInOut 5s 2s infinite;
}

.about-area-info {
    max-width: 1000px;
    margin: 0 auto;
}

.about-area-info p {
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 300;
    color: var(--color-secondary-lightest);
}

.about-area-main-part {
    background: var(--color-primary);
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 0 30px;
    margin: 50px 0 100px 0;
}

.about-card-area {
    background: var(--color-dark);
    padding: 30px;
    border-radius: 30px;
}

.arrow-icon a {
    width: 40px;
    height: 40px;
    background: #ffd586;
    display: flex;
    border-radius: 50%;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.arrow-icon a:hover {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background: var(--color-secondary-dark);
    box-shadow: 0 0 10px var(--color-secondary);
}

.about-card-area .card-content span {
    font-size: 50px;
    font-weight: 400;
    line-height: normal;
    color: transparent;
    color: var(--color-secondary);
    opacity: .3;
    transition: all 0.3s ease;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
}

.about-card-area:hover .card-content span {
    opacity: 1;
    transition: all 0.3s ease;
}

/* Modern Services Grid Layout */


.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.icon-badge-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd586 0%, #ffbe4d 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 213, 134, 0.4);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.icon-badge-large svg {
    color: #0E1A33;
    width: 32px;
    height: 32px;
}

.services-main-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd586 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.services-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    perspective: 1000px;
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.1) 0%, rgba(255, 190, 77, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-inner {
    transform: translateY(-10px);
    border-color: rgba(255, 213, 134, 0.4);
    box-shadow: 0 20px 60px rgba(255, 213, 134, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.service-card:hover .service-card-inner::before {
    opacity: 1;
}

.service-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd586 0%, #ffbe4d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .service-hover-effect {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.2) 0%, rgba(255, 190, 77, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 213, 134, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.3) 0%, rgba(255, 190, 77, 0.2) 100%);
    border-color: rgba(255, 213, 134, 0.4);
    box-shadow: 0 10px 30px rgba(255, 213, 134, 0.3);
}

.icon-emoji {
    font-size: 42px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: #ffd586;
}

.service-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.lottie-animations-section {
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid-wrapper {
        padding: 40px 0;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .icon-badge-large {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .icon-badge-large svg {
        width: 28px;
        height: 28px;
    }

    .services-main-title {
        font-size: 32px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-inner {
        padding: 30px 24px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-emoji {
        font-size: 32px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .lottie-animations-section {
        padding: 40px 0;
    }
}


/* Client Styles */
.brand-marque-area .brand-marque-wrapper .single-img-marque {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 430.75px;
    height: 100px;
    background: #FFF;
    margin: 0 20px;
    filter: grayscale(100%) invert();
    transition: all 0.5s ease-out;
}

.brand-marque-area .brand-marque-wrapper .single-img-marque:hover {
    cursor: crosshair;
    filter: grayscale(0);
    transition: all 0.5s ease-out;
}

/* ================= Modern Portfolio Card Styles ================= */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 213, 134, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 213, 134, 0.2);
}

.portfolio-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #0E1A33;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.95) 0%, rgba(14, 26, 51, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: scale(1);
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #0E1A33;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-view-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    color: #0E1A33;
}

.portfolio-view-btn svg {
    width: 20px;
    height: 20px;
}

.portfolio-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 213, 134, 0.15);
    color: #ffd586;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 213, 134, 0.3);
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-tag {
    background: rgba(255, 213, 134, 0.25);
    border-color: rgba(255, 213, 134, 0.5);
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #ffd586;
}

.portfolio-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Modern Portfolio Tabs */
.portfolio-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.portfolio-nav-tabs {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-nav-tabs .nav-item {
    margin: 0;
}

.portfolio-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd586 0%, #ffbe4d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.portfolio-tab-btn:hover {
    color: #ffffff;
}

.portfolio-tab-btn:hover::before {
    opacity: 0.2;
}

.portfolio-tab-btn.active {
    background: linear-gradient(135deg, #ffd586 0%, #ffbe4d 100%);
    color: #0E1A33;
}

.portfolio-tab-btn.active::before {
    opacity: 1;
}

.tab-icon {
    font-size: 18px;
}

.tab-text {
    font-size: 15px;
}

/* Portfolio Item Animation */
.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .portfolio-card-content {
        padding: 20px;
    }

    .portfolio-title {
        font-size: 18px;
    }

    .portfolio-nav-tabs {
        padding: 6px;
        gap: 10px;
    }

    .portfolio-tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .tab-icon {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 20px;
    }

    .portfolio-card-image {
        aspect-ratio: 16/10;
    }

    .portfolio-card-content {
        padding: 18px;
    }

    .portfolio-title {
        font-size: 17px;
    }

    .portfolio-description {
        font-size: 13px;
    }

    .portfolio-nav-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        border-radius: 20px;
    }

    .portfolio-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .portfolio-view-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Legacy Portfolio Styles - Keeping for compatibility */
.portfolio-area-img {
    border: 10px solid var(--color-primary);
    transition: all 0.5s ease-out;
}

.portfolio-area-wrapper:hover .portfolio-area-img {
    border: 10px solid var(--color-secondary);
    transition: all 0.5s ease-out;
}

.portfolio-area-info {
    background: var(--color-primary);
    height: 100px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.portfolio-area-btnn a {
    color: var(--color-secondary);
    font-size: 28px;
    margin: 40px 0;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    padding: 22px 20px 20px 38px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease-out;
}

.portfolio-area-btnn a:hover {
    background: var(--color-primary);
    transition: all 0.5s ease-out;
}

/* ================= Portfolio Tabs Custom Styles ================= */
#portfolio-tabs .nav-link {
    background: #fff6d6;
    /* light yellow */
    color: var(--color-primary);
    /* purple text from var(--color-violet) */
    border-radius: 30px;
    font-weight: 500;
    padding: 10px 26px;
    margin: 0 6px 10px;
    border: 1px solid #ffd586;
    line-height: 1.2;
}

#portfolio-tabs .nav-link:hover,
#portfolio-tabs .nav-link:focus {
    background: var(--color-secondary);
    color: var(--color-primary);
}

#portfolio-tabs .nav-link.active {
    background: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 213, 134, 0.35);
}

/* Testimonilas STyles */

.testimonial-area-main-slider {
    margin-right: 20px;
    background: rgb(72, 58, 160, .3);
    border-left: 30px solid var(--color-primary);
    border-right: 30px solid var(--color-primary);
    border-radius: 50px;
}

.testimonial-area-slider-wrapper {
    display: flex;
    padding: 0 30px 78px 50px;
}

.testimonial-area-slider-wrapper h3 {
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
}

.testimonial-area-slider-wrapper .fast-slider {
    width: 30;
}

.testimonial-area-slider-wrapper .fast-slider .slider-image img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
}

.testimonial-area-slider-wrapper {
    cursor: move;
}

.testimonial-area-slider-wrapper .second-slider {
    width: 100%;
    padding: 0 10px;
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-info .slider-info-text h5 {
    color: #fff;
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .slider-info .slider-info-text span {
    color: #d3d3d3;
}

.slider-pra {
    position: relative;
}

.testimonial-area-slider-wrapper .second-slider .slider-wrapper .icon-quote::before {
    font-size: 80px;
    color: #FFD586;
    position: absolute;
    bottom: -72px;
    right: 0;
}

.slider-info img {
    width: 100px;
    margin: 20px 0;
}

.testimonial-area .slick-center img {
    border: 2px solid #fff;
    margin-right: 100px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-next {
    position: absolute;
    top: 2px;
    right: 50px;
    z-index: 11;
    width: 46px;
    height: 46px;
    color: #ffffff;
    transform: rotate(180deg);
    background: var(--color-dark);
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.hero-area .slick-arrow.btn-next:hover,
.hero-area .slick-arrow.btn-prev:hover {
    background: #ffd586;
    color: var(--color-violet)
}

/* Contactus styles */

.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

.appertment-btn {
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: background 0.3s;
}

.appertment-btn:hover {
    color: var(--color-primary);
    background: var(--color-secondary-dark);
}

/* ================= Contact Form Themed Styles ================= */
.appatment-form {
    /* existing wrapper, enhance spacing */
    background: var(--color-primary);
    backdrop-filter: blur(4px);
    padding: 28px 30px 34px;
    border: 1px solid rgba(255, 213, 134, 0.25);
    border-radius: 18px;
    box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.45);
}

.appatment-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.appatment-form input[type="text"],
.appatment-form input[type="email"],
.appatment-form textarea {
    width: 100%;
    background: var(--color-dark);
    /* slightly lighter than body bg */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px 12px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.4;
    resize: vertical;
    transition: border-color .25s, box-shadow .25s, background .25s;
}

.appatment-form textarea {
    min-height: 140px;
}

.appatment-form input::placeholder,
.appatment-form textarea::placeholder {
    color: #92a4c4;
    opacity: .9;
}

.appatment-form input:focus,
.appatment-form textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(255, 213, 134, 0.25);
    background: #153360;
}

/* Success / Error alert boxes already exist; tweak spacing */
#success-message,
#error-message {
    font-size: 15px;
    letter-spacing: .5px;
}

/* Inline field error messages */
.appatment-form .error {
    color: #ff8181;
    font-size: 13px;
    margin-top: -10px;
    display: none;
    padding-left: 4px;
}

.appatment-form .error:before {
    content: "\26A0";
    margin-right: 4px;
    font-size: 12px;
}

/* When JS shows an error, add a visual highlight to the field preceding it */
.appatment-form .error-field {
    border-color: #ff8181 !important;
    box-shadow: 0 0 0 3px rgba(255, 129, 129, .2) !important;
}

/* Submit button refinement to sit flush with input styling */
.appatment-form .appertment-btn {
    margin-top: 4px;
    border-radius: 10px;
    box-shadow: 0 6px 18px -4px rgba(255, 213, 134, 0.4);
}

.appatment-form .appertment-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 14px -4px rgba(255, 213, 134, 0.35);
}


/* Footer Styles */
.footer-bg {
    background: var(--color-primary);
}

.footer-logo {
    max-width: 250px;
}

.footer-area .footer-copy-right-info span {
    color: var(--White, #fff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.footer-area .footer-copy-right-info span a {
    color: #FFD586;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    font-family: "Michroma", sans-serif;
}

.footer-area-heading-text h4 {
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
}


.scrollup-wrapper {
    position: fixed;
    right: 45px;
    bottom: 80px;
    z-index: 9999;
}

.scrollup-btn {
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    width: 50px;
    height: 50px;
    background-color: #ffd586;
    border-radius: 50px;
    border: 2px solid transparent;
    outline: 2px dashed #ffd586;
    align-items: center;
    cursor: pointer;
}

.scrollup-btn i {
    color: var(--color-primary);
}

/* Modern About Card Styles */
.card-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 213, 134, 0.15);
}

.icon-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd586 0%, #ffbe4d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 213, 134, 0.3);
    transition: all 0.3s ease;
}

.about-card-area:hover .icon-badge {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 213, 134, 0.5);
}

.icon-badge svg {
    color: #0E1A33;
    width: 24px;
    height: 24px;
}

.card-header-modern h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd586 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modern-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd586 0%, #ffbe4d 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 213, 134, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modern-list li:hover::before {
    opacity: 1;
}

.list-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 213, 134, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modern-list li:hover .list-icon {
    background: rgba(255, 213, 134, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list-content strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.list-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-header-modern {
        gap: 12px;
        margin-bottom: 20px;
    }

    .icon-badge {
        width: 42px;
        height: 42px;
    }

    .card-header-modern h3 {
        font-size: 20px;
    }

    .modern-list {
        gap: 15px;
    }

    .modern-list li {
        padding: 14px;
        gap: 12px;
    }

    .list-icon {
        font-size: 24px;
        width: 38px;
        height: 38px;
    }

    .list-content strong {
        font-size: 15px;
    }

    .list-content p {
        font-size: 13px;
    }
}

/* ================= Portfolio Modal Styles ================= */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.portfolio-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.portfolio-modal-content {
    position: relative;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    background: linear-gradient(135deg, #0E1A33 0%, #1a2847 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 213, 134, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.portfolio-modal-close:hover {
    background: rgba(255, 213, 134, 0.2);
    border-color: #ffd586;
    transform: rotate(90deg) scale(1.1);
}

.portfolio-modal-close svg {
    color: #ffffff;
    transition: color 0.3s ease;
}

.portfolio-modal-close:hover svg {
    color: #ffd586;
}

.portfolio-modal-inner {
    display: flex;
    max-height: 90vh;
    overflow-y: auto;
}

.portfolio-modal-image {
    flex: 1;
    min-width: 50%;
    max-width: 55%;
    background: #0a0f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.portfolio-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.portfolio-modal-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.modal-category {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 213, 134, 0.15);
    color: #ffd586;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 213, 134, 0.3);
    width: fit-content;
}

.modal-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffd586 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

/* Custom Scrollbar for Modal */
.portfolio-modal-inner::-webkit-scrollbar,
.portfolio-modal-info::-webkit-scrollbar {
    width: 8px;
}

.portfolio-modal-inner::-webkit-scrollbar-track,
.portfolio-modal-info::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.portfolio-modal-inner::-webkit-scrollbar-thumb,
.portfolio-modal-info::-webkit-scrollbar-thumb {
    background: rgba(255, 213, 134, 0.3);
    border-radius: 10px;
}

.portfolio-modal-inner::-webkit-scrollbar-thumb:hover,
.portfolio-modal-info::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 213, 134, 0.5);
}

/* Responsive Modal */
@media (max-width: 992px) {
    .portfolio-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .portfolio-modal-inner {
        flex-direction: column;
    }

    .portfolio-modal-image {
        max-width: 100%;
        min-width: 100%;
        padding: 30px;
    }

    .portfolio-modal-info {
        padding: 30px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .portfolio-modal-image {
        padding: 20px;
    }

    .portfolio-modal-info {
        padding: 24px 20px;
        gap: 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 15px;
    }

    .detail-value {
        font-size: 16px;
    }
}

/* ================= Modern Appointment Section ================= */
.appointment-area {
    position: relative;
    overflow: hidden;
}

.appointment-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-secondary-light) 0%, transparent 70%);
    border-radius: 50%;
}

.appointment-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.appointment-form-wrapper {
    position: relative;
}

.form-group-modern {
    position: relative;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-control-modern {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control-modern:focus {
    outline: none;
    border-color: #ffd586;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 213, 134, 0.1);
}

.form-control-modern.error-input {
    border-color: #ff6b6b;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.appointment-btn-modern {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #ffd586 0%, #ffbe4d 100%);
    border: none;
    border-radius: 12px;
    color: #0E1A33;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.appointment-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 213, 134, 0.4);
}

.appointment-btn-modern svg {
    transition: transform 0.3s ease;
}

.appointment-btn-modern:hover svg {
    transform: translateX(5px);
}

.success-message,
.error-message {
    display: none;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
    animation: slideInMsg 0.4s ease;
}

@keyframes slideInMsg {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.success-message svg {
    color: #4caf50;
    margin-bottom: 12px;
}

.error-message {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Map Card Styles */
.map-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.3) brightness(0.9);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0) brightness(1);
}

.location-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.2) 0%, rgba(255, 190, 77, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    color: #ffd586;
}

.location-details h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.location-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.error-message svg {
    color: #ff6b6b;
    margin-bottom: 12px;
}

.success-message p,
.error-message p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.success-message.show,
.error-message.show {
    display: block;
}

/* ================= Modern Testimonial Section ================= */
.testimonial-area-modern {
    position: relative;
    overflow: hidden;
}

.testimonial-area-modern::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-secondary-subtle) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-slider-modern {
    position: relative;
    z-index: 1;
}

.testimonial-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    padding: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    margin: 20px 10px;
}

.testimonial-card-modern:hover {
    border-color: rgba(255, 213, 134, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 213, 134, 0.2) 0%, rgba(255, 190, 77, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.testimonial-quote-icon svg {
    width: 40px;
    height: 40px;
    color: #ffd586;
    fill: currentColor;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.author-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.author-logo {
    flex-shrink: 0;
}

.author-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonial-card-modern:hover .author-logo img {
    opacity: 1;
}

/* Slick Slider Custom Styles for Testimonials */
.testimonial-active-slider-nav .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    padding: 30px 0 0;
    margin: 0;
    list-style: none;
}

.testimonial-active-slider-nav .slick-dots li {
    margin: 0;
}

.testimonial-active-slider-nav .slick-dots button {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-active-slider-nav .slick-dots .slick-active button {
    width: 32px;
    border-radius: 6px;
    background: #ffd586;
}

.testimonial-active-slider-nav .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonial-active-slider-nav .slick-arrow.btn-prev {
    right: 0;
}

.testimonial-active-slider-nav .slick-arrow:hover {
    background: rgba(255, 213, 134, 0.2);
    border-color: #ffd586;
}

.testimonial-active-slider-nav .slick-arrow::before {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    opacity: 1;
}

.testimonial-active-slider-nav .slick-prev {
    left: -70px;
}

.testimonial-active-slider-nav .slick-prev::before {
    content: '←';
}

.testimonial-active-slider-nav .slick-next {
    right: -70px;
}

.testimonial-active-slider-nav .slick-next::before {
    content: '→';
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonial-active-slider-nav .slick-prev {
        left: -50px;
    }

    .testimonial-active-slider-nav .slick-next {
        right: -50px;
    }
}

@media (max-width: 992px) {
    .appointment-card {
        padding: 40px 30px;
    }

    .testimonial-card-modern {
        padding: 40px 30px;
    }

    .testimonial-active-slider-nav .slick-arrow {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .appointment-card {
        padding: 30px 24px;
    }

    .form-control-modern {
        padding: 14px 18px;
        font-size: 14px;
    }

    .appointment-btn-modern {
        padding: 16px 28px;
        font-size: 15px;
    }

    .testimonial-card-modern {
        padding: 30px 24px;
    }

    .testimonial-quote-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .testimonial-quote-icon svg {
        width: 30px;
        height: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-logo img {
        max-width: 140px;
    }
}