/* ===================================
    Crafto - Elder care
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Enhanced Contact Form Popup Styles */
@keyframes popIn {
    0% {
        transform: scale(0.5) translateY(-50px);
        opacity: 0;
    }
    70% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.form-results {
    position: relative;
    padding: 30px 40px !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

.form-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

.form-results.alert-success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border-left: 5px solid #ffd700 !important;
}

.form-results.alert-success::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    animation: iconBounce 1s ease-in-out infinite;
}

.form-results.alert-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: #ffffff !important;
    border-left: 5px solid #ff4444 !important;
}

.form-results.alert-danger::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    animation: iconBounce 1s ease-in-out infinite;
}

.form-results strong {
    display: block;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Add padding to make room for icon */
.form-results.alert-success,
.form-results.alert-danger {
    padding-left: 70px !important;
}

/* Sticky Contact Sidebar */
.sticky-contact-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-contact-sidebar .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--base-color), #c91349);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(221, 22, 82, 0.3);
    transition: all 0.3s ease;
    overflow: visible;
}

.sticky-contact-sidebar .contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(221, 22, 82, 0.5);
    background: linear-gradient(135deg, #c91349, var(--base-color));
}

.sticky-contact-sidebar .contact-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    background: var(--dark-gray);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--primary-font);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-contact-sidebar .contact-icon::after {
    content: '';
    position: absolute;
    right: 55px;
    border: 6px solid transparent;
    border-left-color: var(--dark-gray);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sticky-contact-sidebar .contact-icon:hover::before,
.sticky-contact-sidebar .contact-icon:hover::after {
    opacity: 1;
}

/* Responsive - Hide on mobile */
@media (max-width: 991px) {
    .sticky-contact-sidebar {
        right: 15px;
    }

    .sticky-contact-sidebar .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .sticky-contact-sidebar {
        display: none;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--base-color), #c91349);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 22, 82, 0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #c91349, var(--base-color));
    box-shadow: 0 6px 25px rgba(221, 22, 82, 0.5);
    transform: translateY(-3px);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px) {
    .scroll-to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}

/* variable */
:root {
    --alt-font: 'Rufina', serif;
    --primary-font: 'Manrope', sans-serif;
    --base-color: #dd1652;
    --dark-gray: #0e2a62;
    --medium-gray: #5f6b82;
    --aluminium-gray: rgba(255, 255, 255, 0.5);
    --very-light-gray: rgba(235, 239, 246, 0.4);
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; /* Account for fixed header height */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%;
}

/* Remove space between FAQ and footer */
#faq {
    padding-bottom: 0 !important;
}

footer {
    margin-top: 0 !important;
}
body {
    font-size: 17px;
    line-height: 28px;
    /* Add padding to body to prevent content from hiding under fixed header */
    padding-top: 130px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%;
}
/* header */
/* Keep navbar always visible and fixed */
header .navbar {
    position: fixed !important;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
}

/* Override any transform that hides the navbar */
header.sticky .navbar,
header.sticky .header-reverse-back-scroll,
header .header-reverse-back-scroll {
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
}

header .navbar-brand img {
    max-height: 74px;
    transition: transform 0.3s ease;
}

header .navbar-brand:hover img {
    transform: scale(1.05);
}

/* Enhanced navbar styling */
header .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(14, 42, 98, 0.08);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #dd1652 0%, #0e2a62 50%, #dd1652 100%);
    border-image-slice: 1;
}

/* Nav link enhancements */
.navbar .navbar-nav .nav-link {
    position: relative;
    color: #0e2a62 !important;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover {
    color: #dd1652 !important;
    transform: translateY(-2px);
}

/* Careers button special styling */
.navbar .navbar-nav .nav-item .btn-base-color {
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(221, 22, 82, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar .navbar-nav .nav-item .btn-base-color::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.navbar .navbar-nav .nav-item .btn-base-color:hover::before {
    width: 300px;
    height: 300px;
}

.navbar .navbar-nav .nav-item .btn-base-color:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 22, 82, 0.4);
}

/* Top bar styling - enhanced with gradient and effects */
.header-top-bar {
    padding: 18px 0;
    font-size: 15px;
    line-height: 1.6;
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-left ul li,
.header-top-right ul li {
    color: #ffffff;
}

.header-top-left ul li i {
    color: #dd1652;
    opacity: 1;
    vertical-align: middle;
    transition: all 0.3s ease;
    font-size: 16px;
}

.header-top-left ul li:hover i {
    transform: scale(1.15);
}

.header-top-left ul li span {
    color: #ffffff;
    opacity: 1;
}

.header-top-left ul li span.fw-700 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.header-top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-top-bar a:hover {
    color: #dd1652;
    text-shadow: 0 0 8px rgba(221, 22, 82, 0.5);
}

.header-top-bar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #dd1652;
    transition: width 0.3s ease;
}

.header-top-bar a:hover::after {
    width: 100%;
}

.header-top-right ul li a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-top-right ul li a:hover {
    transform: translateY(-2px);
}

.list-style-none {
    list-style: none;
    padding: 0;
    margin: 0;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a,
.navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 17px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    text-rendering: optimizeLegibility;
}

/* Enhanced Typography - Make Words Pop */
h1, .h1 {
    font-weight: 800 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

h2, .h2 {
    font-weight: 800 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

h3, .h3 {
    font-weight: 700 !important;
}

h4, .h4 {
    font-weight: 700 !important;
}

h5, .h5 {
    font-weight: 700 !important;
}

p {
    font-weight: 400;
    line-height: 1.7;
    color: #5f6b82;
}

.fw-600 {
    font-weight: 700 !important;
}

.fw-700 {
    font-weight: 800 !important;
}

.text-dark-gray {
    color: #0e2a62 !important;
}

.text-base-color {
    font-weight: 600 !important;
}

/* Make spans and labels pop */
span.fw-600, span.fw-700 {
    letter-spacing: 0.3px;
}

/* Full-width image section transparency */
section.p-0 img.w-100 {
    opacity: 0.85;
    transition: opacity 0.4s ease;
}

section.p-0:hover img.w-100 {
    opacity: 1;
}

/* Button text enhancement */
.btn {
    font-weight: 700 !important;
    letter-spacing: 0.3px;
}

/* Alt font enhancement */
.alt-font {
    font-weight: 700 !important;
}
/* button */
.btn {
    font-weight: 600;
    font-family: var(--primary-font);
    letter-spacing: normal;
    text-transform: none;
}
.btn.btn-switch-text.btn-extra-large > span {
    padding: 18px 34px;
}
.btn.btn-switch-text.btn-large > span {
    padding: 16px 32px;
}
.btn.btn-large {
    font-size: 17px;
}
.btn.btn-switch-text.btn-medium > span {
    padding: 13px 26px;
}
.btn.btn-transparent-blue-light {
    border-color: rgba(14, 42, 48, 0.20);
    color: var(--dark-gray);
}
.btn.btn-transparent-blue-light:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
}
/* bg background color */
.bg-light-blue-gray {
    background-color: #ebeff6;
}
/* Gradient background color */
.bg-gradient-blue-transparent-first {
    background: linear-gradient(to top, rgb(235, 239, 246, 1) 10%, rgba(235, 239, 246, 0) 100%);
}
.bg-gradient-blue-transparent-second {
    background: linear-gradient(to bottom, rgb(235, 239, 246, 1) 10%, rgba(235, 239, 246, 0) 100%);
}
.bg-gradient-white-bottom-transparent {
    background: rgb(0, 0, 0);
    background: linear-gradient(271deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 60%);
}
/* Border color */
.border-color-extra-medium-gray {
    border-color: rgba(14, 42, 98, 0.2) !important;
}

/* Enhanced About Section Background */
#about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 50%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(221, 22, 82, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(14, 42, 98, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(221, 22, 82, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

#about::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 25px,
        rgba(14, 42, 98, 0.008) 25px,
        rgba(14, 42, 98, 0.008) 50px
    );
    pointer-events: none;
}

#about .container {
    position: relative;
    z-index: 1;
}

/* About Badge Enhancement */
#about .text-base-color {
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(221, 22, 82, 0.2);
    position: relative;
    padding-left: 15px;
}

#about .text-base-color::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, #dd1652 0%, #c91449 100%);
    border-radius: 2px;
}

/* About Heading Enhancement */
#about h2 {
    position: relative;
    display: inline-block;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 100%);
    border-radius: 2px;
}

/* About Feature Box Enhancement */
#about .bg-light-blue-gray {
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.08) 0%, rgba(14, 42, 98, 0.05) 100%) !important;
    border: 1px solid rgba(221, 22, 82, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 42, 98, 0.08);
}

#about .bg-light-blue-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dd1652 0%, #c91449 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

#about .bg-light-blue-gray:hover::before {
    transform: scaleY(1);
}

#about .bg-light-blue-gray::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 22, 82, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

#about .bg-light-blue-gray:hover::after {
    width: 400px;
    height: 400px;
}

#about .bg-light-blue-gray:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(221, 22, 82, 0.15);
    border-color: rgba(221, 22, 82, 0.2);
}

/* About Feature Icon Enhancement */
#about .feature-box-icon {
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.1) 0%, rgba(221, 22, 82, 0.05) 100%);
    border-radius: 50%;
    padding: 10px;
}

#about .bg-light-blue-gray:hover .feature-box-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    box-shadow: 0 6px 15px rgba(221, 22, 82, 0.3);
}

#about .bg-light-blue-gray:hover .feature-box-icon img {
    filter: brightness(0) invert(1);
}

/* About Feature Text Enhancement */
#about .feature-box-content span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

#about .bg-light-blue-gray:hover .feature-box-content span {
    color: #dd1652 !important;
}

/* About Images Enhancement */
#about img {
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 42, 98, 0.12);
}

#about img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(14, 42, 98, 0.18);
}

/* Enhanced Need Some Help Section Background */
.overflow-hidden.bg-dark-gray.pt-35px {
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 50%, #0e2a62 100%) !important;
    position: relative;
    overflow: hidden !important;
}

.overflow-hidden.bg-dark-gray.pt-35px::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(221, 22, 82, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(221, 22, 82, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.overflow-hidden.bg-dark-gray.pt-35px::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    pointer-events: none;
}

.overflow-hidden.bg-dark-gray.pt-35px .container {
    position: relative;
    z-index: 1;
}

/* Need Help Icon Enhancement */
.overflow-hidden.bg-dark-gray.pt-35px .feature-box-icon {
    background: white !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box:hover .feature-box-icon::before {
    width: 200px;
    height: 200px;
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box-icon i {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box:hover .feature-box-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(221, 22, 82, 0.4);
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box:hover .feature-box-icon i {
    color: white !important;
    transform: scale(1.1);
}

/* Need Help Text Enhancement */
.overflow-hidden.bg-dark-gray.pt-35px h5 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.overflow-hidden.bg-dark-gray.pt-35px .feature-box:hover h5 {
    color: #dd1652 !important;
    text-shadow: 0 0 12px rgba(221, 22, 82, 0.6);
}

.overflow-hidden.bg-dark-gray.pt-35px a[href^="tel"] {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.overflow-hidden.bg-dark-gray.pt-35px a[href^="tel"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dd1652 0%, #c91449 100%);
    transition: width 0.3s ease;
}

.overflow-hidden.bg-dark-gray.pt-35px a[href^="tel"]:hover {
    color: #dd1652 !important;
}

.overflow-hidden.bg-dark-gray.pt-35px a[href^="tel"]:hover::after {
    width: 100%;
}

/* Support Us Button Enhancement */
.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light:hover::before {
    width: 400px;
    height: 400px;
}

.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light:hover {
    transform: translateY(-3px);
    border-color: #dd1652 !important;
    box-shadow: 0 8px 25px rgba(221, 22, 82, 0.4);
}

.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light i {
    transition: all 0.3s ease;
}

.overflow-hidden.bg-dark-gray.pt-35px .btn-transparent-white-light:hover i {
    transform: scale(1.2) rotate(15deg);
}
/* Video icons */
.video-icon-extra-large .video-icon {
    width: 170px;
    height: 170px;
    font-size: 16px;
}
/* Page title style */
.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.375rem;
}
.down-section {
    bottom: 30px;
}
/* left */
.left-25 {
    left: 25%;
}
/* footer */
footer .footer-logo img {
    max-height: 47px;
}
.footer-dark a:hover {
    color: var(--white);
    opacity: 1;
}
.footer-dark .newsletter-style-02 input::placeholder {
    color: var(--white) !important;
    opacity: 0.5; /* Firefox */
}
.footer-dark .newsletter-style-02 input:-ms-input-placeholder {
    color: var(--white) !important;
}
.footer-dark .newsletter-style-02 input::-ms-input-placeholder {
    color: var(--white) !important;
}
footer ul li {
    margin-bottom: 2px;
}

/* Enhanced Contact Section Background */
#contact .footer-top {
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 50%, #0e2a62 100%) !important;
    position: relative;
    overflow: hidden;
}

#contact .footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(221, 22, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(221, 22, 82, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#contact .footer-top::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    pointer-events: none;
}

#contact .footer-top .container {
    position: relative;
    z-index: 1;
}

/* Contact Icons Enhancement */
#contact .footer-top i {
    color: #dd1652;
    transition: all 0.3s ease;
}

#contact .footer-top .d-flex:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(221, 22, 82, 0.6));
}

/* Contact Form Enhancement */
#contact .bg-white {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(221, 22, 82, 0.1);
    position: relative;
    overflow: hidden;
}

#contact .bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 50%, #dd1652 100%);
}

#contact .form-control:focus {
    border-color: #dd1652;
    box-shadow: 0 0 0 0.2rem rgba(221, 22, 82, 0.15);
}

/* Contact headings enhancement */
#contact h3, #contact h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Enhanced FAQ Section Background */
#faq {
    background: linear-gradient(135deg, #ebeff6 0%, #f5f7fa 50%, #ebeff6 100%) !important;
    position: relative;
    overflow: hidden;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(14, 42, 98, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(221, 22, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(14, 42, 98, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

#faq::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(14, 42, 98, 0.015) 15px,
        rgba(14, 42, 98, 0.015) 30px
    );
    pointer-events: none;
}

#faq .container {
    position: relative;
    z-index: 1;
}

/* FAQ Icon Enhancement */
#faq .fa-plus {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    color: white !important;
    border-radius: 50%;
    font-size: 10px !important;
}

#faq .d-flex:hover .fa-plus {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 12px rgba(221, 22, 82, 0.5);
}

/* FAQ Heading Enhancement */
#faq h2 {
    position: relative;
    display: inline-block;
}

#faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 100%);
    border-radius: 2px;
}

/* FAQ Image Enhancement */
#faq img {
    box-shadow: 0 10px 40px rgba(14, 42, 98, 0.15);
    border: 4px solid white;
    transition: all 0.3s ease;
}

#faq img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(14, 42, 98, 0.2);
}

/* Enhanced Services Section Background */
#services {
    background: linear-gradient(135deg, #ebeff6 0%, #f8f9fc 50%, #ebeff6 100%) !important;
    position: relative;
    overflow: visible !important;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(221, 22, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 42, 98, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(221, 22, 82, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#services::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(14, 42, 98, 0.01) 20px,
        rgba(14, 42, 98, 0.01) 40px
    );
    pointer-events: none;
    z-index: 0;
}

#services .container {
    position: relative;
    z-index: 1;
}

/* Services Heading Enhancement */
#services h2 {
    position: relative;
    display: inline-block;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 100%);
    border-radius: 2px;
}

#services .text-base-color {
    text-shadow: 0 1px 2px rgba(221, 22, 82, 0.2);
}

/* Service Card Enhancement */
#services .bg-white {
    background: white !important;
    border: 1px solid rgba(14, 42, 98, 0.08);
    box-shadow: 0 4px 20px rgba(14, 42, 98, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

#services .bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#services .bg-white:hover::before {
    transform: scaleX(1);
}

#services .bg-white::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 22, 82, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

#services .bg-white:hover::after {
    width: 500px;
    height: 500px;
}

#services .bg-white:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14, 42, 98, 0.15) !important;
    border-color: rgba(221, 22, 82, 0.2);
}

/* Service Icon Enhancement */
#services .icon-extra-large {
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.1) 0%, rgba(221, 22, 82, 0.05) 100%);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

#services .bg-white:hover .icon-extra-large {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(221, 22, 82, 0.3);
}

/* Service Button Enhancement */
#services .btn-base-color {
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(221, 22, 82, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#services .btn-base-color::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

#services .btn-base-color:hover::before {
    width: 300px;
    height: 300px;
}

#services .btn-base-color:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 22, 82, 0.4);
}

/* Service Card Heading Enhancement */
#services .bg-white h4 {
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

#services .bg-white:hover h4 {
    color: #dd1652 !important;
}

/* Enhanced Why Choose Us Section Background */
.bg-dark-gray.pt-60px {
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 50%, #0e2a62 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-dark-gray.pt-60px::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(221, 22, 82, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(221, 22, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bg-dark-gray.pt-60px::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.02) 15px,
        rgba(255, 255, 255, 0.02) 30px
    );
    pointer-events: none;
}

.bg-dark-gray.pt-60px .container {
    position: relative;
    z-index: 1;
}

/* Why Choose Us Plus Icon Enhancement */
.bg-dark-gray .fa-plus {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    color: white !important;
    border-radius: 50%;
    font-size: 11px !important;
    box-shadow: 0 4px 12px rgba(221, 22, 82, 0.3);
}

.bg-dark-gray .d-flex:hover .fa-plus {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 16px rgba(221, 22, 82, 0.5);
}

/* Why Choose Us Heading Enhancement */
.bg-dark-gray h2 {
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bg-dark-gray h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, rgba(221, 22, 82, 0.3) 100%);
    border-radius: 2px;
}

/* Why Choose Us Value Item Enhancement */
.bg-dark-gray .col-lg-6 .d-flex {
    padding: 30px;
    border-radius: 12px;
    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);
    position: relative;
    overflow: hidden;
}

.bg-dark-gray .col-lg-6 .d-flex::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #dd1652 0%, #c91449 100%);
    transition: height 0.4s ease;
}

.bg-dark-gray .col-lg-6 .d-flex:hover::before {
    height: 100%;
}

.bg-dark-gray .col-lg-6 .d-flex::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 22, 82, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.bg-dark-gray .col-lg-6 .d-flex:hover::after {
    width: 500px;
    height: 500px;
}

.bg-dark-gray .col-lg-6 .d-flex:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(221, 22, 82, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Icon Enhancement */
.bg-dark-gray .icon-extra-large {
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.15) 0%, rgba(221, 22, 82, 0.08) 100%);
    border-radius: 50%;
    color: #dd1652 !important;
    position: relative;
    z-index: 1;
}

.bg-dark-gray .col-lg-6 .d-flex:hover .icon-extra-large {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(221, 22, 82, 0.4);
}

/* Why Choose Us Text Enhancement */
.bg-dark-gray h4 {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-dark-gray .col-lg-6 .d-flex:hover h4 {
    color: #dd1652 !important;
    text-shadow: 0 0 10px rgba(221, 22, 82, 0.5);
}

.bg-dark-gray p {
    position: relative;
    z-index: 1;
}

/* Enhanced Footer Background */
footer {
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 50%, #0e2a62 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(221, 22, 82, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(221, 22, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Logo Enhancement */
footer .footer-logo {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

footer .footer-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(221, 22, 82, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

footer .footer-logo:hover::before {
    width: 150px;
    height: 150px;
}

footer .footer-logo img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

footer .footer-logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(221, 22, 82, 0.4));
}

/* Footer Text Enhancement */
footer p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

footer p:hover {
    text-shadow: 0 0 10px rgba(221, 22, 82, 0.5);
}

/* Mobile Scroll to Top Button */
.scroll-to-top-mobile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--base-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top-mobile.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-mobile:hover {
    background-color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-mobile:active {
    transform: translateY(-1px);
}

@media (max-width: 1600px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1345px;
    }
}
@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (max-width: 1199px) {
    .video-icon-extra-large .video-icon {
        width: 140px;
        height: 140px;
    }
    .extra-small-screen {
        height: 300px !important;
    }
    .navbar>.container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (max-width: 991px) {
    .video-icon-extra-large .video-icon {
        width: 120px;
        height: 120px;
    }
    .header-top-left ul,
    .header-top-right ul {
        justify-content: center;
    }
    .header-top-left ul li {
        margin-bottom: 5px;
    }
}
/* Animated Floating Shapes for Home Section */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.floating-circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    top: 15%;
    right: 10%;
    animation: float-1 8s ease-in-out infinite;
}

.floating-circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 100%);
    top: 60%;
    right: 25%;
    animation: float-2 6s ease-in-out infinite;
}

.floating-circle-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    top: 35%;
    right: 5%;
    animation: float-3 7s ease-in-out infinite;
}

.floating-circle-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0e2a62 0%, #1a3a7a 100%);
    top: 75%;
    right: 15%;
    animation: float-4 9s ease-in-out infinite;
}

.floating-square-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.3) 0%, rgba(201, 20, 73, 0.3) 100%);
    border-radius: 15px;
    top: 20%;
    left: 5%;
    animation: rotate-float-1 10s linear infinite;
}

.floating-square-2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(14, 42, 98, 0.3) 0%, rgba(26, 58, 122, 0.3) 100%);
    border-radius: 12px;
    top: 70%;
    left: 8%;
    animation: rotate-float-2 12s linear infinite;
}

.floating-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 45%;
    left: 3%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.floating-dots::before,
.floating-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #dd1652;
    border-radius: 50%;
}

.floating-dots::before {
    top: 0;
    left: 0;
    box-shadow:
        30px 0 0 #dd1652,
        60px 0 0 #dd1652,
        90px 0 0 #dd1652,
        0 30px 0 #0e2a62,
        30px 30px 0 #0e2a62,
        60px 30px 0 #0e2a62,
        90px 30px 0 #0e2a62,
        0 60px 0 #dd1652,
        30px 60px 0 #dd1652,
        60px 60px 0 #dd1652,
        90px 60px 0 #dd1652;
}

/* Glowing orb effect */
.glowing-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 22, 82, 0.2) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    filter: blur(40px);
    animation: glow-pulse 5s ease-in-out infinite;
    z-index: 0;
}

/* Animations */
@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(25px) translateX(-15px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(-25px);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-35px) translateX(15px);
    }
}

@keyframes rotate-float-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate-float-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(-180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Hero image animation */
#home img[alt*="couple"] {
    animation: gentle-sway 6s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Enhanced Stats Section */
#stats-section {
    position: relative;
    z-index: 1;
    margin-top: -30px;
    margin-bottom: 40px;
}

#stats-section .stats-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 50%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow:
        0 20px 60px rgba(14, 42, 98, 0.15),
        0 0 0 1px rgba(221, 22, 82, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
}

#stats-section .stats-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(221, 22, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 42, 98, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#stats-section .stats-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dd1652 0%, #0e2a62 50%, #dd1652 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#stats-section .stats-item {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#stats-section .stats-content {
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s ease;
}

#stats-section .stats-item:hover .stats-content {
    transform: scale(1.08);
}

/* Stats Icon Enhancement */
.stats-icon-wrapper {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(221, 22, 82, 0.1) 0%, rgba(14, 42, 98, 0.05) 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(221, 22, 82, 0.2);
}

.stats-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #dd1652 0%, #c91449 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

#stats-section .stats-item:hover .stats-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.stats-icon {
    font-size: 28px;
    color: #dd1652;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

#stats-section .stats-item:hover .stats-icon {
    color: white;
    transform: scale(1.2) rotate(10deg);
}

/* Stats Number Enhancement */
.stats-number {
    background: linear-gradient(135deg, #dd1652 0%, #0e2a62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem !important;
    text-shadow: 0 4px 12px rgba(221, 22, 82, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

#stats-section .stats-item:hover .stats-number {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(221, 22, 82, 0.5));
}

/* Stars Enhancement */
.stars-wrapper i {
    color: #ffc107;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 1px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

#stats-section .stats-item:hover .stars-wrapper i {
    transform: scale(1.2) rotate(15deg);
    animation: star-twinkle 0.6s ease-in-out;
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

#stats-section .stats-item:hover .stars-wrapper i:nth-child(1) {
    animation-delay: 0s;
}

#stats-section .stats-item:hover .stars-wrapper i:nth-child(2) {
    animation-delay: 0.1s;
}

#stats-section .stats-item:hover .stars-wrapper i:nth-child(3) {
    animation-delay: 0.2s;
}

#stats-section .stats-item:hover .stars-wrapper i:nth-child(4) {
    animation-delay: 0.3s;
}

#stats-section .stats-item:hover .stars-wrapper i:nth-child(5) {
    animation-delay: 0.4s;
}

/* Stats Label Enhancement */
.stats-label {
    color: #5f6b82;
    transition: all 0.3s ease;
    font-size: 15px;
}

#stats-section .stats-item:hover .stats-label {
    color: #dd1652;
    font-weight: 700 !important;
}

/* Border between stats */
#stats-section .border-end {
    border-right: 2px solid rgba(14, 42, 98, 0.1) !important;
    position: relative;
}

#stats-section .border-end::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, #dd1652 0%, #0e2a62 100%);
    transition: height 0.4s ease;
}

#stats-section .stats-item:hover .border-end::after {
    height: 80%;
}

/* Pulse animation for wrapper */
#stats-section .stats-wrapper:hover {
    box-shadow:
        0 25px 70px rgba(14, 42, 98, 0.2),
        0 0 0 1px rgba(221, 22, 82, 0.2),
        0 0 40px rgba(221, 22, 82, 0.1);
    transform: translateY(-5px);
}

/* Badge pulse animation */
#home .bg-gradient-white-bottom-transparent {
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(221, 22, 82, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(221, 22, 82, 0.3);
    }
}

/* Make service card titles smaller on tablets and small laptops to prevent wrapping */
@media (max-width: 1400px) {
    #services .bg-white h4 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
}

/* For smaller laptops like MacBook Air 13" (1280px) */
@media (max-width: 1199px) {
    #services .bg-white h4 {
        font-size: 17px !important;
        line-height: 1.3 !important;
    }
}

/* For tablets */
@media (max-width: 991px) {
    #services .bg-white h4 {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 767px) {
    /* Hide about section images on mobile */
    #about .col-xl-7.col-lg-6 {
        display: none !important;
    }

    /* Hide top bar on mobile to save space */
    .header-top-bar {
        display: none !important;
    }

    /* Reduce header height on mobile */
    body {
        padding-top: 60px !important;
    }

    /* Adjust scroll padding for mobile */
    html {
        scroll-padding-top: 60px !important;
    }

    /* Reduce logo size on mobile */
    header .navbar-brand img {
        max-height: 48px !important;
    }

    /* Adjust navbar padding on mobile */
    header .navbar {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Reduce top spacing for home section on mobile */
    #home {
        padding-top: 80px !important;
        margin-top: -40px !important;
    }

    /* Hide floating shapes on mobile for performance */
    .floating-shape,
    .floating-dots,
    .glowing-orb {
        display: none !important;
    }

    /* Stats section mobile adjustments */
    #stats-section {
        margin-top: 0;
        margin-bottom: 20px;
    }

    #stats-section .stats-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }

    #stats-section .stats-content {
        padding: 20px 10px;
    }

    .stats-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .stats-icon {
        font-size: 22px !important;
    }

    .stats-number {
        font-size: 2.5rem !important;
    }

    #stats-section .stats-item {
        margin-bottom: 20px;
    }

    #stats-section .border-end {
        border-right: none !important;
    }

    /* Make service card titles even smaller on mobile */
    #services .bg-white h4 {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
}