/* Custom Services Section Styling */
.ht-services-area {
    background-color: #f5f5f5;
    padding: 80px 0;
}
.ht-services-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ht-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ht-services-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.ht-services-icon-wrapper img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.ht-services-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}
.ht-services-card .desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}
.ht-services-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ht-services-features li {
    font-size: 15px;
    color: #333333;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.ht-services-features li::before {
    content: "+";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #4b5563;
    font-size: 16px;
}
.ht-services-card a {
    text-decoration: none;
    color: inherit;
}
.ht-services-card a:hover h3 {
    color: #2563eb;
}
@media (max-width: 768px) {
    .ht-services-card {
        margin-bottom: 30px;
    }
}
/* Detailed Services Cards */
.ht-services-detailed-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.ht-services-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ht-services-detailed-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.ht-services-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-services-detailed-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.ht-services-detailed-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.ht-services-detailed-content {
    padding: 40px 30px 30px;
    margin-top: 20px;
}
.ht-services-detailed-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.ht-services-detailed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ht-services-detailed-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.ht-services-detailed-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 18px;
}
/* Additional Services Cards with Bottom-Left Icon */
.ht-services-additional-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.ht-services-additional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ht-services-additional-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.ht-services-additional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-services-additional-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.ht-services-additional-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.ht-services-additional-content {
    padding: 30px;
}
.ht-services-additional-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.ht-services-additional-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ht-services-additional-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.ht-services-additional-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 18px;
}
/* Hotel Management Software CTA Section - Template Style */
.ht-software-cta-wrapper {
    position: relative;
    z-index: 1;
}
.ht-software-cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
@media (min-width: 992px) {
    .ht-software-cta-content {
        grid-template-columns: 1fr 1fr;
    }
}
.ht-software-cta-left {
    color: var(--ht-white);
}
.ht-software-cta-left .section-title {
    margin-bottom: 30px;
}
.ht-software-cta-left .section-title .subtitle {
    color: var(--ht-theme-color-2);
    margin-bottom: 15px;
}
.ht-software-cta-left .section-title .title {
    color: var(--ht-white);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ht-software-cta-description {
    color: var(--ht-white);
    margin-top: 10px;
    margin-bottom: 30px;
}
.ht-software-cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
@media (max-width: 576px) {
    .ht-software-cta-features {
        grid-template-columns: 1fr;
    }
}
.ht-software-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ht-white);
}
.ht-software-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ht-software-feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--ht-white);
}
.ht-software-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.ht-software-cta-right {
    background: var(--ht-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}
.ht-software-logo {
    text-align: center;
    margin-bottom: 30px;
}
.ht-software-logo h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ht-theme-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.ht-software-logo h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ht-theme-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.ht-software-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
@media (max-width: 576px) {
    .ht-software-modules {
        grid-template-columns: repeat(2, 1fr);
    }
}
.ht-software-module {
    background: var(--ht-body);
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--ht-text-color);
    transition: all 0.3s ease;
}
.ht-software-module:hover {
    background: var(--ht-theme-color);
    color: var(--ht-white);
    transform: translateY(-2px);
}
.ht-software-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--ht-border-color);
}
.ht-software-stat {
    text-align: center;
}
.ht-software-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--ht-theme-color);
    margin-bottom: 5px;
}
.ht-software-stat-label {
    font-size: 14px;
    color: var(--ht-text-color);
    text-transform: uppercase;
}
/* Call to Action Section - Modern Design */
.ht-cta-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}
.ht-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.ht-cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.ht-cta-modern-wrapper {
    position: relative;
    z-index: 1;
}
.ht-cta-modern-card {
    background: var(--ht-white);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .ht-cta-modern-card {
        padding: 40px 30px;
    }
}
.ht-cta-modern-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--ht-theme-color) 0%, #3b82f6 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.05;
}
.ht-cta-modern-content {
    position: relative;
    z-index: 1;
}
.ht-cta-modern-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--ht-theme-color);
    color: var(--ht-white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.ht-cta-modern-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .ht-cta-modern-title {
        font-size: 32px;
    }
}
.ht-cta-highlight {
    color: var(--ht-theme-color);
    position: relative;
}
.ht-cta-modern-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .ht-cta-modern-desc {
        font-size: 16px;
    }
}
.ht-cta-modern-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .ht-cta-modern-stats {
        gap: 30px;
    }
}
.ht-cta-stat-item {
    text-align: left;
}
.ht-cta-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--ht-theme-color);
    line-height: 1;
    margin-bottom: 8px;
}
.ht-cta-stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ht-cta-modern-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ht-cta-action-card {
    background: #063231;
    border-radius: 20px;
    padding: 35px;
    color: var(--ht-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ht-cta-action-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ht-cta-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}
.ht-cta-action-card:hover::before {
    opacity: 1;
}
.ht-cta-action-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.ht-cta-action-card:hover .ht-cta-action-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}
.ht-cta-action-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ht-white);
}
.ht-cta-action-card p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}
.ht-cta-action-card a {
    color: var(--ht-white);
    text-decoration: none;
}
.ht-cta-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.ht-cta-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}
.ht-cta-action-btn i {
    transition: transform 0.3s ease;
}
.ht-cta-action-btn:hover i {
    transform: translateX(5px);
}
/* Circular Services Section - Professional Card Design */
.ht-circular-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.ht-circular-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}
.ht-circular-service-item {
    height: 100%;
    position: relative;
    z-index: 1;
}
.ht-circular-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.ht-circular-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ht-circular-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}
.ht-circular-service-card:hover::before {
    transform: scaleX(1);
}
.ht-circular-service-image {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    margin: 0 auto 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}
.ht-circular-service-card:hover .ht-circular-service-image {
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.25);
    transform: scale(1.02);
}
.ht-circular-service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ht-circular-service-card:hover .ht-circular-service-image::after {
    opacity: 1;
}
.ht-circular-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ht-circular-service-card:hover .ht-circular-service-image img {
    transform: scale(1.08);
}
.ht-circular-service-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 20px;
}
.ht-circular-service-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ht-circular-service-card:hover .ht-circular-service-text {
    color: #2563eb;
}
.ht-circular-service-card:hover .ht-circular-service-text::after {
    opacity: 1;
}
.ht-circular-service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.ht-circular-service-card:hover .ht-circular-service-icon {
    opacity: 1;
    transform: scale(1);
}
.ht-circular-service-icon svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
}
@media (max-width: 768px) {
    .ht-circular-service-image {
        height: 180px;
    }
    .ht-circular-service-text {
        font-size: 16px;
    }
    .ht-circular-service-card {
        padding: 30px 20px;
    }
}
/* Services Cards Section */
.ht-services-cards-section {
    padding: 80px 0;
    background-color: #f9fafb;
}
.ht-service-card-modern {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.ht-service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.ht-service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f5f5f5;
}
.ht-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-service-card-content {
    padding: 30px;
    position: relative;
}
.ht-service-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
    padding-right: 50px;
}
.ht-service-card-category {
    font-size: 14px;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ht-service-card-link {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.ht-service-card-link:hover {
    background-color: #3b82f6;
}
.ht-service-card-link img {
    width: 20px;
    height: 20px;
}
.ht-services-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.ht-services-subtitle {
    font-size: 14px;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.ht-services-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}
/* Title Styles - Preserved from inline styles */
.title-custom-large {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 15px;
}
.title-custom-blue {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 15px;
    line-height: 1.2;
}
.subtitle-custom-yellow {
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
.subtitle-custom-default {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}
/* Interactive Image Gallery Slider Styles */
.ht-gallery-section {
    position: relative;
    padding: 100px 0;
}
.ht-gallery-wrapper {
    position: relative;
    z-index: 1;
}
.ht-gallery-main {
    margin-bottom: 30px;
    position: relative;
}
.ht-gallery-slider {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}
.ht-gallery-item {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .ht-gallery-item {
        height: 400px;
    }
}
.ht-gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.ht-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ht-gallery-item:hover .ht-gallery-image img {
    transform: scale(1.1);
}
.ht-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ht-gallery-item:hover .ht-gallery-overlay {
    opacity: 1;
}
.ht-gallery-content {
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.ht-gallery-item:hover .ht-gallery-content {
    transform: translateY(0);
}
.ht-gallery-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}
@media (max-width: 768px) {
    .ht-gallery-content h3 {
        font-size: 24px;
    }
}
.ht-gallery-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
@media (max-width: 768px) {
    .ht-gallery-content p {
        font-size: 16px;
    }
}
.ht-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}
.ht-gallery-nav button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #1e3a8a;
    font-size: 20px;
}
.ht-gallery-nav button:hover {
    background: #1e3a8a;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}
.ht-gallery-nav button:active {
    transform: scale(0.95);
}
.ht-gallery-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.ht-gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.ht-gallery-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}
.ht-gallery-thumbs {
    margin-top: 20px;
}
.ht-gallery-thumbs-slider {
    padding: 10px 0;
}
.ht-gallery-thumb {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.ht-gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-5px);
}
.ht-gallery-thumb.swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1e3a8a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}
.ht-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.ht-gallery-thumb:hover img {
    transform: scale(1.1);
}
.ht-gallery-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.ht-gallery-shape-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
