/* Welcome Intro Section */
.intro-welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #fafaf8 100%);
    position: relative;
}

.intro-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.02) 35px, rgba(212, 175, 55, 0.02) 70px);
    pointer-events: none;
}

.welcome-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 
        0 10px 40px rgba(44, 62, 80, 0.08),
        0 2px 10px rgba(44, 62, 80, 0.04);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(44, 62, 80, 0.12),
        0 5px 20px rgba(44, 62, 80, 0.06);
}

.welcome-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d576 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 0 0 8px rgba(212, 175, 55, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(212, 175, 55, 0.3),
            0 0 0 8px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(212, 175, 55, 0.4),
            0 0 0 12px rgba(212, 175, 55, 0.15);
    }
}

.welcome-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.welcome-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 35px;
    border-radius: 2px;
}

.welcome-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555555;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
    font-weight: 400;
}

.welcome-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.welcome-text .highlight-gold {
    color: #d4af37;
    font-weight: 700;
    position: relative;
}

/* Features Row */
.welcome-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d576 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-icon svg {
    color: #d4af37;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    color: #ffffff;
}

.feature-item span {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .intro-welcome {
        padding: 60px 0;
    }

    .welcome-card {
        padding: 50px 40px;
    }

    .welcome-title {
        font-size: 2.2rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .welcome-features {
        gap: 25px;
    }

    .feature-item {
        min-width: 150px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .intro-welcome {
        padding: 50px 20px;
    }

    .welcome-card {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .welcome-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }

    .welcome-icon svg {
        width: 40px;
        height: 40px;
    }

    .welcome-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .welcome-divider {
        width: 70px;
        margin-bottom: 25px;
    }

    .welcome-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 35px;
        padding: 0 5px;
    }

    .welcome-features {
        flex-direction: column;
        gap: 30px;
        margin-top: 35px;
        padding-top: 30px;
    }

    .feature-item {
        min-width: 100%;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .welcome-card {
        padding: 35px 20px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-text {
        font-size: 0.95rem;
    }
}

/* Animation on scroll (optional) */
.welcome-card.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CAROUSEL
   ========================================= */
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(26, 35, 50, .4);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
}

.carousel .carousel-caption h1 {
    color: #f8f6f1;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #f8f6f1;
    font-size: 30px;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #f5f5f0;
    background: #d4af37;
    border-radius: 50px;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #f5f5f0;
    background: #2c3e50;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/* =========================================
   PAGE HEADER
   ========================================= */
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #d4af37;
}

.page-header h2 {
    position: relative;
    color: #2c3e50;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #2c3e50;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #2c3e50;
}

.page-header a:hover {
    color: #f5f5f0;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #2c3e50;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 36px;
        white-space: normal;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
        white-space: normal;
    }
}

/* =========================================
   FEATURE TOP
   ========================================= */
.feature-top {
    position: relative;
    background: #2c3e50;
    margin-bottom: 45px;
}

.feature-top .col-md-3 {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 575.98px) {
    .feature-top .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .feature-top .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    .feature-top .col-md-3:nth-child(3n),
    .feature-top .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .feature-top .col-md-3 {
        border-bottom: none;
    }
    
    .feature-top .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

.feature-top .feature-item {
    padding: 30px 0;
    text-align: center;
}

.feature-top .feature-item i {
    color: #d4af37;
    font-size: 35px;
    margin-bottom: 10px;
}

.feature-top .feature-item h3 {
    color: #f5f5f0;
    font-size: 30px;
    font-weight: 600;
}

.feature-top .feature-item p {
    color: #f5f5f0;
    margin: 0;
    font-size: 18px;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    padding: 5px;
    background: #d4af37;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #f5f5f0;
    border-radius: 50px;
    background: #d4af37;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #f5f5f0;
    background: #2c3e50;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/* =========================================
   SERVICES SLIDER — FULLY FIXED
   ========================================= */
.services-slider-section {
    position: relative;
    width: 100%;
    padding: 45px 0 70px 0;
}

.services-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* FIX: padding makes room for the arrows so they don't bleed off-screen */
    padding: 0 65px;
}

.services-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* FIX: each slide takes full width of the container */
.services-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    padding: 0;
    box-sizing: border-box;
}

.services-slider-item {
    flex: 1;
    /* Cap width so a lone card on the last slide doesn't stretch full width */
    max-width: calc(33.333% - 20px);
    background: #2c3e50;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 0;
}

/* Tablet: 2 cards per slide */
@media (min-width: 768px) and (max-width: 992px) {
    .services-slider-item {
        max-width: calc(50% - 10px);
    }
}

/* Mobile: 1 card per slide — full width is correct */
@media (max-width: 767px) {
    .services-slider-item {
        max-width: 100%;
    }
}

.services-slider-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.3);
}

.services-slider-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.services-slider-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.5s;
}

.services-slider-item:hover .services-slider-icon::before {
    left: 100%;
}

.services-slider-icon i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #d4af37;
    background: #2c3e50;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.services-slider-item:hover .services-slider-icon i {
    transform: translateY(-15px) scale(1.1);
    background: #d4af37;
    color: #2c3e50;
}

.services-slider-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 26px;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.3;
    max-width: 100%;
}

.services-slider-item:hover h3 {
    color: #dbc589;
}

.services-slider-item p {
    margin: 0;
    color: #b8b8b8;
    padding: 0 25px 25px 25px;
    font-size: 16px;
    text-align: center;
    flex-grow: 1;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-slider-item a.btn {
    display: inline-block;
    margin: 0 auto 30px auto;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4af37;
    border: 2px solid #d4af37;
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* FIX: prevent button from stretching full width */
    width: auto;
    align-self: center;
}

.services-slider-item a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.4s ease;
    z-index: -1;
}

.services-slider-item a.btn:hover::before {
    left: 0;
}

.services-slider-item a.btn:hover {
    color: #2c3e50;
    border-color: #2c3e50;
}

/* FIX: Arrow buttons — sit inside the wrapper padding, never bleed */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #d4af37 100%);
    color: #2c3e50;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(1.0);
}

/* FIX: arrows anchored to the wrapper edges, inside the 65px padding */
.slider-nav-btn.prev {
    left: 0;
}

.slider-nav-btn.next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: #b8b8b8;
    transform: scale(1.1);
}

.slider-dot.active {
    background: #d4af37;
    width: 40px;
    border-radius: 7px;
    border-color: #d4af37;
}

/* =========================================
   SERVICES SLIDER RESPONSIVE
   ========================================= */

/* Large tablets / small desktops */
@media (min-width: 993px) and (max-width: 1199px) {
    .services-slider-wrapper {
        padding: 0 60px;
    }
}

/* Standard tablets */
@media (min-width: 768px) and (max-width: 992px) {
    .services-slider-wrapper {
        padding: 0 55px;
    }

    .services-slide {
        gap: 20px;
    }

    .services-slider-item h3 {
        font-size: 20px;
        min-height: 85px;
        padding: 18px 10px 10px 10px;
    }

    .services-slider-icon {
        height: 170px;
    }

    .services-slider-icon i {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .slider-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .services-slider-item p {
        padding: 0 18px 18px 18px;
        font-size: 15px;
    }
}

/* FIX: Mobile — show 1 card at a time, readable size */
@media (max-width: 767px) {
    .services-slider-wrapper {
        padding: 0 50px;
    }

    /* FIX: Force single card per slide on mobile */
    .services-slide {
        gap: 0;
        padding: 0;
    }

    .services-slider-item {
        /* FIX: each card takes the full slide width */
        flex: 0 0 100%;
        min-width: 100%;
    }

    .services-slider-icon {
        height: 160px;
    }

    .services-slider-icon i {
        width: 75px;
        height: 75px;
        font-size: 44px;
    }

    .services-slider-item h3 {
        font-size: 22px;
        min-height: auto;
        padding: 20px 20px 12px 20px;
    }

    .services-slider-item p {
        font-size: 15px;
        padding: 0 20px 20px 20px;
        line-height: 1.6;
    }

    .services-slider-item a.btn {
        padding: 12px 28px;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .slider-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .services-slider-wrapper {
        padding: 0 44px;
    }

    .services-slider-icon {
        height: 140px;
    }

    .services-slider-icon i {
        width: 65px;
        height: 65px;
        font-size: 38px;
    }

    .services-slider-item h3 {
        font-size: 20px;
        padding: 18px 15px 10px 15px;
    }

    .services-slider-item p {
        font-size: 14px;
        padding: 0 15px 18px 15px;
    }

    .services-slider-item a.btn {
        padding: 11px 24px;
        font-size: 13px;
        margin-bottom: 22px;
    }

    .slider-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Extra small phones */
@media (max-width: 374px) {
    .services-slider-wrapper {
        padding: 0 38px;
    }

    .services-slider-icon {
        height: 120px;
    }

    .services-slider-icon i {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }

    .services-slider-item h3 {
        font-size: 18px;
        padding: 15px 12px 8px 12px;
    }

    .services-slider-item p {
        font-size: 13px;
        padding: 0 12px 15px 12px;
    }

    .services-slider-item a.btn {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 18px;
    }

    .slider-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.Feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e6e0 100%);
}

.Feature .feature-items {
    margin-bottom: 35px;
    transition: all 0.4s ease;
    position: relative;
}

.Feature .feature-items:hover {
    transform: translateX(10px);
}

.Feature .Feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.Feature .Feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.6s ease;
}

.Feature .feature-items:hover .Feature-icon::before {
    left: 100%;
}

.Feature .feature-items:hover .Feature-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.4);
}

.Feature .Feature-icon i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #d4af37;
    background: #2c3e50;
    border-radius: 12px;
    transition: all 0.4s ease;
    z-index: 1;
}

.Feature .feature-items:hover .Feature-icon i {
    transform: scale(1.05);
    background: #d4af37;
    color: #2c3e50;
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.Feature .feature-items h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.Feature .feature-items:hover h3 {
    color: #d4af37;
}

.Feature .feature-items h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #d4af37, #c9a961);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.Feature .feature-items:hover h3::after {
    width: 100px;
}

.Feature .feature-items p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.Feature .feature-items:hover p {
    color: #2c3e50;
}

.Feature .feature-img {
    position: relative;
    height: 100%;
    min-height: 550px;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Feature .feature-img::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.Feature .feature-img img {
    width: 480px;
    height: 480px;
    object-fit: cover;
    border-radius: 50%;
    border: 14px solid #d4af37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.Feature .feature-img:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.4);
}

@media (max-width: 992px) {
    .Feature .feature-img {
        min-height: 450px;
        margin-top: 40px;
    }
    
    .Feature .feature-img::before {
        width: 400px;
        height: 400px;
    }
    
    .Feature .feature-img img {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .Feature .Feature-icon {
        height: 150px;
    }
    
    .Feature .Feature-icon i {
        width: 80px;
        height: 80px;
        font-size: 45px;
    }
    
    .Feature .feature-items h3 {
        font-size: 24px;
    }
    
    .Feature .feature-img {
        min-height: 350px;
    }
    
    .Feature .feature-img::before {
        width: 300px;
        height: 300px;
    }
    
    .Feature .feature-img img {
        width: 280px;
        height: 280px;
    }
    
    .Feature .feature-items:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 576px) {
    .Feature .feature-img::before {
        width: 250px;
        height: 250px;
    }
    
    .Feature .feature-img img {
        width: 230px;
        height: 230px;
    }
}

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e6e0 100%);
    overflow: visible;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faqs .faqs-img img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid #d4af37;
    transition: all 0.4s ease;
}

.faqs .faqs-img:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.4);
}

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
    
    .faqs .faqs-img img {
        max-height: 400px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #f5f5f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqs .card:hover {
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.25);
    transform: translateY(-3px);
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #f5f5f0;
}

.faqs .card-header a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faqs .card-header a:hover {
    color: #d4af37;
}

.faqs .card-header a.collapsed {
    color: #2c3e50;
}

.faqs .card-header a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 15px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    color: #d4af37;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faqs .card-header a:hover span {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #2c3e50;
    transform: rotate(360deg);
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f067";
    margin-left: auto;
    color: #d4af37;
    font-size: 16px;
    font-weight: 900;
    transition: all 0.3s ease;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    content: "\f068";
    color: #2c3e50;
    transform: rotate(180deg);
}

.faqs .card-body {
    padding: 0 20px 20px 80px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border: none;
    background: #f5f5f0;
}

@media(max-width: 576px) {
    .faqs .card-body {
        padding: 0 20px 20px 20px;
    }
    
    .faqs .card-header a {
        font-size: 16px;
    }
}

.faqs a.btn {
    position: relative;
    margin-top: 25px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f5f5f0;
    border-radius: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.faqs a.btn:hover {
    color: #f5f5f0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}