/* ===================================
   GENERAL STYLES & ROOT VARIABLES
   =================================== */

:root {
    --primary-color: #e40f15;
    --primary-blue: #0066ff;
    --dark-blue: #001a4d;
    --light-blue: #0099ff;
    --dark-bg: #0f1419;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --secondary-dark: #1a1f2e;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    /* IMPROVISATION: Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: 10px;
}


/* Dark Mode */

body.dark-mode {
    --dark-bg: #0f1419;
    --light-bg: #1a1f2e;
    --text-dark: #f5f5f5;
    --text-light: #1a1a1a;
}


/* Light Mode */

body.light-mode {
    --dark-bg: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
    cursor: default;
}


/* ===================================
   IMPROVISATION: SCROLL PROGRESS BAR
   =================================== */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    width: 0%;
    z-index: 99999;
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.1s;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar-custom {
    background: transparent !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding: 10px 0 !important;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
}

.navbar-custom.scrolled {
    background: rgba(15, 20, 25, 0.95) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.logo-brand {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b6b 0%, #e40f15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-brand:hover {
    transform: translateY(-2px);
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 8px rgba(228, 15, 21, 0.3));
}

.logo-brand:hover .navbar-logo {
    filter: drop-shadow(0 6px 16px rgba(228, 15, 21, 0.5));
    transform: scale(1.08) rotate(-5deg);
}

li.nav-item {
    padding: 0px 10px;
}

.nav-link {
    position: relative;
    color: #d4d4d8 !important;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px !important;
    margin: 0 4px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    outline: 0;
    transition: transform ease-in 0.1s, background-color ease-in 0.1s, box-shadow ease-in 0.25s;
}


/* Hover State */

.nav-link:hover {
    color: #ffffff !important;
    border-color: #e40f15;
    background: #e40f15;
}


/* Active State - Click Effect */

.nav-link.active::before {
    content: '';
    position: absolute;
    left: -2em;
    right: -2em;
    top: -2em;
    bottom: -2em;
    pointer-events: none;
    transition: ease-in-out .5s;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), /*  */
    radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%, 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
    background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    animation: bubbles ease-in-out .75s forwards;
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
    border-color: #e40f15;
    box-shadow: 0 0 20px rgba(228, 15, 21, 0.6), 0 0 40px rgba(255, 107, 107, 0.3), inset 0 0 10px rgba(228, 15, 21, 0.2);
    background: #e40f15;
    transform: scale(0.95);
}

.nav-link:not(.active)::before {
    animation: none;
    background-size: 0;
}

@keyframes bubbles {
    0% {
        background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    }
    50% {
        background-position: 10% 44%, 0% 20%, 15% 5%, 30% 0%, 42% 0%, 62% -2%, 75% 0%, 95% -2%, 0% 80%, 95% 55%, 7% 100%, 24% 100%, 41% 100%, 55% 95%, 68% 96%, 95% 100%;
    }
    100% {
        background-position: 5% 44%, -5% 20%, 7% 5%, 23% 0%, 37% 0, 58% -2%, 80% 0%, 100% -2%, -5% 80%, 100% 55%, 2% 100%, 23% 100%, 42% 100%, 60% 95%, 70% 96%, 100% 100%;
        background-size: 0% 0%;
    }
}


/* Theme Toggle */

.theme-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgb(255 255 255 / 28%);
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    background: rgba(228, 15, 21, 0.05);
    cursor: pointer;
}

.theme-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 15, 21, 0.3);
}

.nav-center {
    margin: auto;
    margin-right: 0;
}


/* ===================================
   CUSTOM NAVBAR TOGGLER (Desktop - Hidden)
   =================================== */

.custom-toggler {
    display: none;
}

.toggler-icon {
    display: none;
}

.toggler-close {
    display: none;
}


/* Navigation - Centered for Desktop */

.nav-center {
    text-align: center;
    gap: 0;
}


/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    overflow: hidden;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroCanvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.hero-text-wrapper {
    padding-right: 40px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 72px;
    color: #ffffff;
    letter-spacing: -2px;
    word-spacing: 0.1em;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease;
    margin-bottom: 12px;
}

.title-line.highlight {
    color: #fff;
    animation: slideInUp 0.8s ease 0.2s both;
    font-weight: 600!important;
}


/* IMPROVISATION: Gradient Text */

.gradient-text {
    background-size: 300% auto;
    background-clip: text;
    animation: gradientShine 4s linear infinite;
}

@keyframes gradientShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}


/* IMPROVISATION: Damion Font Styling */

.damion-font {
    font-family: 'Damion', cursive !important;
    font-size: 5.5rem !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    /* text-shadow: 0 4px 20px rgba(228, 15, 21, 0.4), 0 8px 40px rgba(228, 15, 21, 0.2); */
    transform: skewY(-2deg);
    animation: slideInUp 0.8s ease 0.2s both, textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%,
    100% {
        text-shadow: 0 4px 20px rgba(228, 15, 21, 0.4), 0 8px 40px rgba(228, 15, 21, 0.2);
        transform: skewY(-2deg);
    }
    50% {
        text-shadow: 0 6px 30px rgba(228, 15, 21, 0.6), 0 12px 50px rgba(228, 15, 21, 0.3), 0 0 40px rgba(255, 107, 107, 0.3);
        transform: skewY(-2deg) scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #c0c0c0;
    line-height: 1.7;
    animation: fadeIn 1s ease 0.4s both;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.btn-gradient {
    background: linear-gradient(135deg, #e40f15 0%, #ff6b6b 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 24px rgba(228, 15, 21, 0.35);
    line-height: normal;
    height: fit-content;
}

.btn-gradient:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(228, 15, 21, 0.5) !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #e40f15 100%) !important;
    color: #ffffff !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 5px 20px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    line-height: normal;
    height: fit-content;
}

.btn-outline-light:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transform: translateY(-4px) !important;
}

.hero-play {
    gap: 12px;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: rgba(228, 15, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover .play-icon {
    background: rgba(228, 15, 21, 0.4);
    transform: scale(1.1);
}


/* Hero Metrics */

.hero-metrics {
    margin-top: 30px !important;
    flex-wrap: nowrap !important;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    padding: 10px !important;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.8s ease 1s both;
    transition: all 0.3s ease;
}

.hero-metrics:hover {
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(228, 15, 21, 0.1), 0 0 40px rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 30px;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.metric:hover {
    transform: scale(1.08);
}

.metric:first-child {
    padding-left: 0;
}

.metric:last-child {
    padding-right: 0;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: -1px;
    justify-content: center;
    transition: all 0.3s ease;
}

.metric:hover .metric-number {
    color: var(--primary-color);
    font-size: 2.4rem;
    transform: scale(1.1);
}

.metric-unit {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease;
}

.metric:hover .metric-unit {
    font-size: 18px;
    font-weight: 600;
}

.metric-label {
    font-size: 0.80rem;
    color: #c0c0c0;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.metric:hover .metric-label {
    color: #ffffff;
    font-weight: 500;
}


/* Metric Pulse Animation */

@keyframes metricPulse {
    0%,
    100% {
        text-shadow: 0 0 0 0 rgba(228, 15, 21, 0.4);
    }
    50% {
        text-shadow: 0 0 0 10px rgba(228, 15, 21, 0);
    }
}

.metric:hover .metric-number {
    animation: metricPulse 1.5s ease-out;
}


/* ===================================
   SERVICE MODAL/POPUP
   =================================== */

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeInModal 0.3s ease-out;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.service-modal-content {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(30, 40, 50, 0.95) 100%);
    border: 2px solid rgba(228, 15, 21, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(228, 15, 21, 0.2);
    animation: slideUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

body.light-mode .service-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-color: rgba(228, 15, 21, 0.2);
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid rgba(228, 15, 21, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

body.light-mode .modal-title {
    color: #1a1a1a;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: rgba(228, 15, 21, 0.8);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #e40f15;
    transform: rotate(90deg);
}

.service-modal-body {
    padding: 30px;
}

.modal-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
}

body.light-mode .modal-description {
    color: rgba(0, 0, 0, 0.8);
}


/* Scrollbar styling for modal */

.service-modal-content::-webkit-scrollbar {
    width: 8px;
}

.service-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.service-modal-content::-webkit-scrollbar-thumb {
    background: rgba(228, 15, 21, 0.4);
    border-radius: 4px;
}

.service-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(228, 15, 21, 0.6);
}


/* Mobile responsive modal */

@media (max-width: 768px) {
    .service-modal-content {
        max-width: 90%;
        max-height: 70vh;
        border-radius: 15px;
    }
    .service-modal-header {
        padding: 20px 20px;
    }
    .modal-title {
        font-size: 1.5rem;
    }
    .modal-close-btn {
        font-size: 2rem;
    }
    .service-modal-body {
        padding: 20px;
    }
    .modal-description {
        font-size: 0.95rem;
    }
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .hero-metrics {
        margin-top: 30px !important;
        flex-wrap: wrap !important;
        padding: 25px !important;
        gap: 20px !important;
    }
    .metric {
        padding: 15px 0;
        flex: 1 1 calc(50% - 10px);
        gap: 8px;
    }
    .metric:first-child {
        flex: 1 1 100%;
    }
    .metric:last-child {
        flex: 1 1 calc(50% - 10px);
    }
    .metric-number {
        font-size: 1.8rem;
    }
    .metric-unit {
        font-size: 0.75rem;
    }
    .metric-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-metrics {
        margin-top: 25px !important;
        padding: 20px !important;
        gap: 15px !important;
    }
    .metric {
        padding: 12px 0;
        flex: 1 1 100% !important;
        gap: 6px;
    }
    .metric-number {
        font-size: 1.6rem;
    }
    .metric-unit {
        font-size: 0.7rem;
    }
    .metric-label {
        font-size: 0.8rem;
    }
    .hero-metrics {
        border-radius: 15px;
    }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s both;
}

.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
    padding: 16px 45px !important;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    z-index: 0;
}

.btn-hover:hover::before {
    left: 100%;
}

.btn-hover span {
    position: relative;
    z-index: 1;
}

.btn-danger {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b) !important;
    border: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(228, 15, 21, 0.4);
}

.btn-danger:hover {
    box-shadow: 0 15px 50px rgba(228, 15, 21, 0.6);
    transform: translateY(-4px);
}

.btn-outline-danger {
    color: #ffffff !important;
    border: 2px solid #fff !important;
    background: transparent;
    box-shadow: 0 0 20px rgba(228, 15, 21, 0.2), inset 0 0 0 0 var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline-danger:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 50px rgba(228, 15, 21, 0.5);
    transform: translateY(-4px);
}


/* Hero Image Section */

.hero-image-section {
    position: relative;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    margin-top: 50px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 520px;
    object-fit: contain;
    border-radius: 25px;
    display: block;
    will-change: transform;
    cursor: grab;
    transition: box-shadow 0.3s ease;
}


/* Hero Swiper Slider */

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 500px;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-width: 520px;
    object-fit: contain;
    border-radius: 25px;
}


/* Hero Pagination */

.hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #e40f15;
    width: 28px;
    border-radius: 6px;
}


/* Hero Navigation Buttons */

.hero-next,
.hero-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(228, 15, 21, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-next:hover,
.hero-prev:hover {
    background: #e40f15;
    box-shadow: 0 0 20px rgba(228, 15, 21, 0.6);
}

.hero-next {
    right: 20px;
}

.hero-prev {
    left: 20px;
}

.hero-next::after,
.hero-prev::after {
    color: #ffffff;
    font-size: 20px;
}

.hero-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 800px;
    min-height: 100vh;
    background-color: #0a052a;
}

.hero-section:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../images/home-5-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* .hero-main-image.glass-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(228, 15, 21, 0.25) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
} */


/* Hero Content Slider */

.hero-content-slider {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.content-swiper {
    width: 100%;
    height: 100%;
}

.content-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.content-slide-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
}

.content-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    animation: slideInFade 0.6s ease-out;
}


/* Content Pagination */

.content-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 10;
}

.content-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-pagination .swiper-pagination-bullet-active {
    background: #e40f15;
    width: 28px;
    border-radius: 6px;
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-color);
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    margin-top: 15px;
}

.scroll-arrow i {
    display: block;
    animation: bounce 2.5s ease-in-out infinite;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.6;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 3D Carousel Slider with Coverflow Effect */

.slider-3d-set {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 5, 42, 0.3), rgba(15, 20, 25, 0.3));
    overflow: hidden;
}

.slider-3d-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    perspective: 1200px;
}

.slider-3d-swiper {
    width: 100%;
    padding: 60px 0;
    perspective: 1200px;
}

.slider-3d-swiper .swiper-wrapper {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.slider-3d-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 480px;
    transform-style: preserve-3d;
    filter: brightness(0.7);
    opacity: 0.8;
}

.hero-carousel-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.hero-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


/* Active slide - center position */

.slider-3d-swiper .swiper-slide-active {
    filter: brightness(1);
    opacity: 1;
    transform: translateZ(0) rotateY(0deg) scale(1);
    z-index: 10;
}

.slider-3d-swiper .swiper-slide-active .hero-carousel-image {
    box-shadow: 0 40px 100px rgba(228, 15, 21, 0.5);
}


/* Previous slide - left side */

.slider-3d-swiper .swiper-slide-prev {
    filter: brightness(0.8);
    opacity: 0.85;
    transform: translateZ(-150px) rotateY(35deg) scale(0.95);
    z-index: 5;
}


/* Next slide - right side */

.slider-3d-swiper .swiper-slide-next {
    filter: brightness(0.8);
    opacity: 0.85;
    transform: translateZ(-150px) rotateY(-35deg) scale(0.95);
    z-index: 5;
}


/* Slides further back */

.slider-3d-swiper .swiper-slide:nth-child(n+3) {
    filter: brightness(0.6);
    opacity: 0.6;
    transform: translateZ(-300px) rotateY(60deg) scale(0.85);
}

.slider-3d-swiper .swiper-slide:nth-last-child(n+3) {
    filter: brightness(0.6);
    opacity: 0.6;
    transform: translateZ(-300px) rotateY(-60deg) scale(0.85);
}


/* 3D Navigation Buttons */

.slider-3d-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.slider-3d-prev,
.slider-3d-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #e40f15;
    background: transparent;
    color: #e40f15;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.slider-3d-prev::before,
.slider-3d-next::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #e40f15;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.slider-3d-prev:hover,
.slider-3d-next:hover {
    color: #ffffff;
    border-color: #ff6b6b;
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(228, 15, 21, 0.6);
}

.slider-3d-prev:hover::before,
.slider-3d-next:hover::before {
    opacity: 1;
}


/* Responsive 3D Carousel */

@media (max-width: 1024px) {
    .slider-3d-swiper .swiper-slide {
        width: 320px;
        height: 420px;
    }
    .slider-3d-swiper .swiper-slide-prev {
        transform: translateZ(-150px) rotateY(40deg) scale(0.92);
    }
    .slider-3d-swiper .swiper-slide-next {
        transform: translateZ(-150px) rotateY(-40deg) scale(0.92);
    }
}

@media (max-width: 768px) {
    .slider-3d-set {
        padding: 60px 0;
    }
    .slider-3d-swiper {
        padding: 40px 0;
    }
    .slider-3d-swiper .swiper-slide {
        width: 260px;
        height: 350px;
    }
    .slider-3d-swiper .swiper-slide-prev {
        transform: translateZ(-100px) rotateY(45deg) scale(0.88);
    }
    .slider-3d-swiper .swiper-slide-next {
        transform: translateZ(-100px) rotateY(-45deg) scale(0.88);
    }
    .slider-3d-prev,
    .slider-3d-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .slider-3d-nav {
        bottom: 10px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slider-3d-swiper .swiper-slide {
        width: 220px;
        height: 300px;
    }
    .slider-3d-prev,
    .slider-3d-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.slider-3d-prev,
.slider-3d-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e40f15;
    background: transparent;
    color: #e40f15;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-3d-prev:hover,
.slider-3d-next:hover {
    background: #e40f15;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(228, 15, 21, 0.5);
}


/* 3D Slider Pagination */

.slider-3d-pagination {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.slider-3d-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-3d-pagination .dot.active {
    background: #e40f15;
    width: 30px;
    border-radius: 6px;
}


/* Responsive 3D Slider */

@media (max-width: 768px) {
    .slider-3d-swiper .swiper-slide {
        width: 220px;
        height: 300px;
    }
    .slider-3d-nav {
        bottom: -50px;
        gap: 15px;
    }
    .slider-3d-prev,
    .slider-3d-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .slider-3d-pagination {
        bottom: -80px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================================
   SECTION STYLES
   =================================== */

section {
    position: relative;
    background-color: var(--dark-bg);
    color: var(--text-dark);
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.title-line {
    margin: 25px auto 0;
    border-radius: 3px;
}


/* ===================================
   IMPROVISATION: GLASSMORPHISM UI
   =================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(228, 15, 21, 0.15);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(228, 15, 21, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(228, 15, 21, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.glass-card-sm {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 15, 21, 0.1);
    border-radius: 14px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-card-sm:hover {
    border-color: var(--primary-color);
    background: rgba(228, 15, 21, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(228, 15, 21, 0.25);
}


/* ===================================
   ABOUT SECTION
   =================================== */


/* ============================================
   ABOUT SECTION - 3D CREATIVE LAYOUT
   ============================================ */

.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 20, 25, 1) 0%, rgba(30, 40, 50, 0.5) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
    z-index: 1;
}

body.light-mode .about-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.8) 100%);
}


/* Background Effects */

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 2;
}


/* Image Wrapper with 3D */

.about-image-wrapper {
    position: relative;
    perspective: 1000px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 3D Image Card */

.about-image {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 380px;
    height: 380px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    transform: rotate(25deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 340px;
    height: 340px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 35px;
    transform: rotate(-20deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
    transform: rotate(30deg) scale(1.05);
}

.about-image:hover::after {
    border-color: rgba(255, 255, 255, 0.28);
    transform: rotate(-25deg) scale(1.05);
}

.about-img {
    width: 100%;
    height: 100%;
    max-width: 420px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(255, 255, 255, 0.15), 0 0 50px rgba(0, 102, 255, 0.1), inset 0 0 40px rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    animation: float 4s ease-in-out infinite;
}

.about-image:hover .about-img {
    transform: translateY(-15px) rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 50px 120px rgba(255, 255, 255, 0.2), 0 0 70px rgba(0, 102, 255, 0.2), inset 0 0 50px rgba(255, 255, 255, 0.12);
}


/* Badge */

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.15), rgba(228, 15, 21, 0.08));
    padding: 20px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(228, 15, 21, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 15, 21, 0.2);
    animation: slideInUp 0.8s ease 0.4s both;
    z-index: 10;
    transition: all 0.5s ease;
}

body.light-mode .about-badge {
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.08), rgba(228, 15, 21, 0.04));
    border-color: rgba(228, 15, 21, 0.15);
    box-shadow: 0 20px 50px rgba(228, 15, 21, 0.08);
}

.badge-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    transition: color 0.5s ease;
}

body.light-mode .badge-number {
    color: var(--primary-color);
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.5s ease;
}

body.light-mode .badge-text {
    color: #333333;
}


/* Content Section */

.about-content {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    animation: fadeInUp 0.9s ease 0.1s both;
}

.about-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
}

body.light-mode .about-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.about-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .about-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .about-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .services-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.services-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 30%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .services-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .services-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* -----------projects-section------------------------- */

.projects-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.projects-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .projects-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.projects-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 30%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .projects-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .projects-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* --------End--------------------- */


/* ------------------------customers-section-------------------------- */

.customers-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.customers-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .customers-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.customers-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 40%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .customers-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .customers-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* -----------------End---------------------------- */

.about-section .section-subtitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    display: block;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.3px;
    transition: color 0.5s ease;
}

body.light-mode .about-section .section-subtitle {
    color: rgba(26, 26, 26, 0.9);
}

.about-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
}

body.light-mode .about-section .section-subtitle::after {
    background: rgba(228, 15, 21, 0.25);
}

.about-section .section-subtitle::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .about-section .section-subtitle::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

@keyframes moveCircle {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(110px);
    }
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.95;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.88);
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    letter-spacing: 0.2px;
    transition: all 0.4s ease;
    padding: 15px 0;
}

body.light-mode .about-text {
    color: rgba(26, 26, 26, 0.85);
}

.about-text:hover {
    color: rgba(255, 255, 255, 0.95);
}

body.light-mode .about-text:hover {
    color: rgba(26, 26, 26, 0.95);
}


/* Features - Horizontal Layout */

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}


/* -------------- blog-section---------------------------*/

.blog-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.blog-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .blog-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.blog-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 36%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .blog-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .blog-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* -------------------End--------------------------------- */


/* ---------------------------------------offers-section------------------------------ */

.offers-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.offers-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .offers-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.offers-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 38%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

.section-subtitle2 {
    color: #bdbdbf!important;
}


/* ----------------------------End---------------------------------------------- */


/* ---------------------------------------------contact-section---------------- */

.contact-section .section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    letter-spacing: -0.5px;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 18px;
    display: inline-block;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: expandWidth 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transition: background 0.5s ease;
    right: 0;
    margin: auto;
}

body.light-mode .contact-section .section-title::after {
    background: rgba(228, 15, 21, 0.25);
}

.contact-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 30%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    animation: moveCircle 3s linear infinite;
    z-index: 2;
}

body.light-mode .contact-section .section-title::before {
    background: #e40f15;
    box-shadow: 0 2px 8px rgba(228, 15, 21, 0.4);
}

body.light-mode .contact-section .section-title {
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* -------------End--------------------------------- */

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.dark-mode .feature-item {
    background: rgba(30, 40, 50, 0.85);
    border-color: rgba(228, 15, 21, 0.15);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 15, 21, 0.08), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(228, 15, 21, 0.02), transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:nth-child(1) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.4s;
}

.feature-item:nth-child(4) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.5s;
}

.feature-item:nth-child(5) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.6s;
}

.feature-item:nth-child(6) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.7s;
}

.feature-item:nth-child(7) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.8s;
}

.feature-item:nth-child(8) {
    animation: slideInUp 0.7s ease forwards;
    animation-delay: 0.9s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(228, 15, 21, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(228, 15, 21, 0.12);
}

body.dark-mode .feature-item:hover {
    background: rgba(40, 55, 70, 0.95);
    border-color: rgba(228, 15, 21, 0.4);
    box-shadow: 0 12px 32px rgba(228, 15, 21, 0.15);
}


/* Feature Icon Wrapper */

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e40f15 0%, #ff3d42 100%);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(228, 15, 21, 0.4);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(228, 15, 21, 0.5);
}


/* Icon */

.feature-item i {
    font-size: 26px !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.feature-item:hover i {
    transform: scale(1.1) !important;
    color: #ffffff !important;
}


/* Feature Content */

.feature-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
}

.feature-item h5 {
    font-weight: 700;
    margin-bottom: 3px;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

body.dark-mode .feature-item h5 {
    color: #ffffff;
}

.feature-item:hover h5 {
    color: #e40f15;
}

body.dark-mode .feature-item:hover h5 {
    color: #ff6b72;
}

.feature-item p {
    margin: 0;
    color: #666666;
    font-size: 0.8rem;
    line-height: 1.3;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

body.dark-mode .feature-item p {
    color: rgba(255, 255, 255, 0.65);
}

.feature-item:hover p {
    color: #e40f15;
}

body.dark-mode .feature-item:hover p {
    color: #ff6b72;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease;
}

.service-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8888);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-details h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.service-details p {
    font-size: 0.95rem;
    color: #c0c0c0;
    margin: 0;
    line-height: 1.6;
}


/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 20, 25, 1) 0%, rgba(30, 40, 50, 0.5) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
    z-index: 1;
}

body.light-mode .services-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.8) 100%);
}


/* Background Effects for Services Section */

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 2;
}


/* Services Split Layout */

.services-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 60px;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 350px;
    position: relative;
    will-change: transform, opacity;
}

.service-card-split:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}


/* Sticky Scroll Effect */

.service-card-split.sticky-scroll {
    position: sticky;
    top: 80px;
    z-index: 5;
}

.service-card-split.sticky-scroll.fade-out {
    opacity: 0;
    pointer-events: none;
}


/* Alternate layout - Image on right for every other card */

.service-card-split.alternate {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-split:hover .service-image {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E40F15;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(228, 15, 21, 0.4);
    z-index: 2;
}

.service-content-wrapper {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-content-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #E40F15;
    transition: width 0.4s ease;
}

.service-card-split:hover .service-content-wrapper::before {
    width: 6px;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

body.light-mode .service-title {
    color: #1a1a1a;
}

.service-description {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 24px;
    line-height: 1.6;
}

body.light-mode .service-description {
    color: rgba(0, 0, 0, 0.6);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(228, 15, 21, 0.1);
    border-color: rgba(228, 15, 21, 0.3);
}

.service-features i {
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-btn {
    background: linear-gradient(135deg, #E40F15 0%, #B30812 100%);
    color: white !important;
    border: none;
    padding: 20px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn::before {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #B30812 0%, #E40F15 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(228, 15, 21, 0.4);
    color: white;
}

.service-btn:hover::before {
    opacity: 1;
}

.service-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-btn:hover i {
    transform: translateX(4px);
}


/* Light Mode - Services Section */

body.light-mode .service-card-split {
    box-shadow: 0 8px 32px rgba(228, 15, 21, 0.1);
}

body.light-mode .service-card-split:hover {
    box-shadow: 0 12px 48px rgba(228, 15, 21, 0.2);
}

body.light-mode .service-content-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 15, 21, 0.15);
}

body.light-mode .service-title {
    color: #1a1a1a !important;
}

body.light-mode .service-description {
    color: #333333 !important;
}

body.light-mode .service-features li {
    color: #1a1a1a;
    background: rgba(228, 15, 21, 0.05);
    border: 1px solid rgba(228, 15, 21, 0.15);
}

body.light-mode .service-features li:hover {
    background: rgba(228, 15, 21, 0.12);
    border-color: rgba(228, 15, 21, 0.3);
}

body.light-mode .service-features i {
    color: #E40F15 !important;
}

body.light-mode .service-badge {
    background: #E40F15;
    color: white;
    box-shadow: 0 4px 15px rgba(228, 15, 21, 0.3);
}

body.light-mode .service-btn {
    background: linear-gradient(135deg, #E40F15 0%, #B30812 100%);
    color: white !important;
}

body.light-mode .service-btn:hover {
    color: white !important;
    box-shadow: 0 8px 24px rgba(228, 15, 21, 0.3);
}


/* Service Details - Expandable Section */

.service-details {
    margin-top: 20px;
    padding: 18px 0;
    border-top: 2px solid rgba(228, 15, 21, 0.3);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

.service-details.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 18px 0;
}

.details-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
}

body.light-mode .details-text {
    color: rgba(0, 0, 0, 0.8);
}

.service-toggle-btn[data-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.service-toggle-btn[data-expanded="false"] i {
    transition: transform 0.3s ease;
}


/* Responsive */

@media (max-width: 1024px) {
    .service-card-split {
        height: auto;
        flex-direction: column !important;
    }
    .service-card-split.alternate {
        flex-direction: column !important;
    }
    .service-image-wrapper {
        flex: 0 0 200px;
    }
    .service-content-wrapper {
        flex: 1;
        padding: 30px 35px;
    }
    .service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        gap: 25px;
    }
    .service-card-split {
        height: auto;
    }
    .service-image-wrapper {
        flex: 0 0 180px;
    }
    .service-content-wrapper {
        padding: 25px 20px;
    }
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    .service-features {
        gap: 10px;
    }
    .service-features li {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    .service-btn {
        padding: 11px 28px;
        font-size: 0.9rem;
    }
}


/* ===================================
   PROJECTS SECTION - GALLERY VIEW
   =================================== */


/* Background Shape Inside Projects Section */

.contact-bg-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.contact-shape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}


/* -----------projects-section */

.projects-gallery-wrapper {
    width: 100%;
    overflow: visible;
    padding: 10px 0 40px 0;
}

.projects-carousel {
    display: flex;
    gap: 10px;
    margin-top: 60px;
    padding: 0 20px;
}

.owl-carousel.projects-carousel {
    width: 100%;
}

.owl-carousel.projects-carousel .owl-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: auto;
}

.project-item {
    width: 350px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.projects-section {
    padding: 100px 0;
}


/* Masonry Height Effect */


/* Masonry Height Effect - Different heights for each item */

.owl-carousel.projects-carousel .owl-item .project-item {
    height: 450px;
}

.project-item:hover {
    box-shadow: 0 25px 80px rgba(228, 15, 21, 0.5), inset 0 0 30px rgba(228, 15, 21, 0.1);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(228, 15, 21, 0.6);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.project-item:hover .project-img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1);
}


/* Project Overlay - Content on Hover */

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #e40f15;
}

.project-overlay p {
    font-size: 0.9rem;
    color: #000;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: #e0e0e0;
    line-height: 1.4;
}


/* ===================================
   PROJECTS SECTION RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .projects-section .section-title {
        font-size: 2.8rem;
        margin-bottom: 18px;
        padding-bottom: 16px;
    }
    .projects-section .section-title::after {
        width: 100px;
        height: 4px;
    }
    .projects-gallery-wrapper {
        padding: 8px 0 30px 0;
    }
    .projects-carousel {
        gap: 8px;
        margin-top: 50px;
        padding: 0 15px;
    }
    .project-item {
        width: 320px;
        height: 350px;
        border-radius: 12px;
    }
    .project-overlay h4 {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }
    .project-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .projects-section {
        padding-top: 80px;
    }
    .projects-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    .projects-gallery-wrapper {
        padding: 6px 0 25px 0;
    }
    .projects-carousel {
        gap: 6px;
        margin-top: 45px;
        padding: 0 12px;
    }
    .project-item {
        width: 280px;
        height: 320px;
        border-radius: 10px;
    }
    .project-item:hover {
        transform: translateY(-10px) scale(1.01);
    }
    .project-overlay {
        padding: 25px 18px;
    }
    .project-overlay h4 {
        font-size: 1.1rem;
    }
    .project-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .section-header .section-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    .section-header .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .projects-gallery-wrapper {
        padding: 4px 0 20px 0;
    }
    .projects-carousel {
        gap: 5px;
        margin-top: 40px;
        padding: 0 10px;
    }
    .project-item {
        width: 240px;
        height: 280px;
        border-radius: 8px;
    }
    .project-item:hover {
        transform: translateY(-8px) scale(1.005);
        box-shadow: 0 15px 50px rgba(228, 15, 21, 0.4);
    }
    .project-overlay {
        padding: 20px 15px;
    }
    .project-overlay h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .project-overlay p {
        font-size: 0.75rem;
    }
    .contact-bg-shape-top {
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .section-header {
        margin-bottom: 25px;
    }
    .section-header .section-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }
    .section-header .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
        color: #b7b6b6;
    }
    .projects-gallery-wrapper {
        padding: 2px 0 15px 0;
    }
    .projects-carousel {
        gap: 4px;
        margin-top: 35px;
        padding: 0 8px;
    }
    .project-item {
        width: 200px;
        height: 240px;
        border-radius: 8px;
    }
    .project-item:hover {
        transform: translateY(-6px) scale(1.003);
        box-shadow: 0 12px 40px rgba(228, 15, 21, 0.35);
    }
    .project-img {
        filter: brightness(0.9);
    }
    .project-item:hover .project-img {
        filter: brightness(1.05);
    }
    .project-overlay {
        padding: 18px 12px;
    }
    .project-overlay h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        font-weight: 600;
    }
    .project-overlay p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding-top: 45px;
        padding-bottom: 25px;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .section-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        letter-spacing: -0.2px;
    }
    .section-header .section-title::after {
        width: 60px;
        height: 3px;
    }
    .section-header .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .projects-gallery-wrapper {
        padding: 0 0 12px 0;
    }
    .projects-carousel {
        gap: 3px;
        margin-top: 30px;
        padding: 0 5px;
    }
    .project-item {
        width: 170px;
        height: 200px;
        border-radius: 6px;
    }
    .project-item:hover {
        transform: translateY(-4px) scale(1.002);
        box-shadow: 0 10px 30px rgba(228, 15, 21, 0.3);
    }
    .project-img {
        filter: brightness(0.88);
    }
    .project-item:hover .project-img {
        transform: scale(1.12) rotate(0.5deg);
        filter: brightness(1.02);
    }
    .project-overlay {
        padding: 15px 10px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.98) 100%);
    }
    .project-overlay h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
        font-weight: 600;
    }
    .project-overlay p {
        font-size: 0.65rem;
        color: #333;
    }
    .contact-bg-shape-top {
        display: none;
    }
}

@media (max-width: 360px) {
    .projects-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .section-header .section-title {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }
    .section-header .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .projects-carousel {
        gap: 2px;
        margin-top: 25px;
        padding: 0 3px;
    }
    .project-item {
        width: 150px;
        height: 180px;
    }
    .project-overlay h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    .project-overlay p {
        font-size: 0.6rem;
    }
}


/* Modal Styles */

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(228, 15, 21, 0.5);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: #e4000f;
}

.modal-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.modal-info {
    padding: 40px;
    color: white;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.modal-info p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0;
}


/* Responsive Gallery */

@media (max-width: 1600px) {
    .gallery-item {
        width: 260px;
        height: 340px;
    }
}

@media (max-width: 1400px) {
    .gallery-item {
        width: 240px;
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .projects-gallery {
        gap: 20px;
        padding: 0 20px;
    }
    .gallery-item {
        width: 220px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .projects-gallery {
        gap: 15px;
        padding: 0 15px;
        min-height: 420px;
    }
    .project-item {
        width: 280px;
        height: 280px!important;
    }
}

@media (max-width: 768px) {
    .project-item {
        width: 250px;
        height: 250px!important;
    }
    .project-overlay h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .project-overlay p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .project-item {
        width: 200px;
        height: 200px;
    }
    .project-overlay h4 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .project-overlay p {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }
}


/* ===================================
   CUSTOMERS SECTION
   =================================== */

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(79, 172, 254, 0.5);
    }
}

.customers-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto 0;
    padding: 0 20px;
}


/* ===== AVATARS SECTION ===== */

.testimonials-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.testimonials-avatars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/testimonial/service-rot.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: rotateSlow 30s linear infinite;
}

.avatars-container {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 2;
}


/* Orbit animation container */

.avatars-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px dashed rgb(245 133 136 / 60%);
    border-radius: 50%;
    z-index: 1;
    animation: rotateFast 25s linear infinite reverse;
}

.avatars-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background-image: url('images/testimonial/test-shape.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Decorative floating circle */

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-top {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4) 0%, rgba(79, 172, 254, 0.2) 100%);
    top: 30px;
    right: 20px;
    animation: float 4s ease-in-out infinite, rotateCircle 8s linear infinite;
}

.circle-bottom {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3) 0%, rgba(147, 51, 234, 0.2) 100%);
    bottom: 40px;
    left: 10px;
    animation: float 5s ease-in-out infinite reverse, rotateCircle 10s linear infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateFast {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Avatar circles - centered single profile */

.avatars-container>div[class*="avatar-circle"] {
    display: none;
}

.avatar-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 20px 50px rgba(228, 15, 21, 0.2), 0 0 30px rgba(228, 15, 21, 0.1);
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}


/* Avatar animation - slide in from left */

.avatar-circle.animate-in {
    animation: avatarSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes avatarSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(100px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) translateX(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.avatar-circle:hover {
    box-shadow: 0 30px 60px rgba(228, 15, 21, 0.3), 0 0 40px rgba(228, 15, 21, 0.2);
    transform: translate(-50%, -50%) scale(1.05) rotateY(5deg);
}

.avatar-circle:hover img {
    transform: scale(1.1);
}

.avatar-circle-1 {
    display: block;
}

.avatar-circle-2 {
    display: none;
}

.avatar-circle-3 {
    display: none;
}

.avatar-circle-4 {
    display: none;
}


/* Tooltip removed - using 3D effect instead */


/* ===== TESTIMONIAL CONTENT CARD ===== */

.testimonials-content {
    display: flex;
    justify-content: center;
}

.testimonial-display-card {
    background: #ffffff;
    border: 1px solid #e40f15;
    border-radius: 20px;
    padding: 50px 40px;
    min-height: 350px;
    box-shadow: 0 20px 50px rgba(73, 73, 73, 0.2), 0 0 30px rgba(228, 15, 21, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100%;
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.testimonial-display-card:hover {
    box-shadow: 0 30px 70px rgba(73, 73, 73, 0.3), 0 0 40px rgba(228, 15, 21, 0.15);
    border-color: #e40f15;
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: #e40f15;
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-quote-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-weight: 500;
    margin: 0 0 25px 0;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 0 0;
}

.author-avatar-small {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.author-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-small {
    flex: 1;
}

.author-name-small {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
}

.author-role-small {
    margin: 3px 0 0 0;
    font-size: 0.8rem;
    color: #e40f15;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 8px;
}

.testimonial-rating i {
    font-size: 1rem;
    color: #e40f15;
}

.testimonial-nav-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000000;
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    border-color: #e40f15;
    background: #e40f15;
    color: #ffffff;
    transform: scale(1.08);
}

.nav-arrow:active {
    transform: scale(0.95);
}


/* Dark Mode */

body.dark-mode .customers-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

body.dark-mode .testimonial-display-card {
    background: #1a1a1a;
    border-color: #ffffff;
    color: #ffffff;
}

body.dark-mode .testimonial-display-card:hover {
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.15);
}

body.dark-mode .testimonial-quote-text {
    color: #ffffff;
}

body.dark-mode .quote-icon {
    color: #ffffff;
    opacity: 0.7;
}

body.dark-mode .author-name-small {
    color: #ffffff;
}

body.dark-mode .author-role-small {
    color: #ffffff;
}

body.dark-mode .testimonial-rating i {
    color: #e40f15;
}

body.dark-mode .nav-arrow {
    border-color: #ffffff;
    background: transparent;
    color: #ffffff;
}

body.dark-mode .nav-arrow:hover {
    border-color: #e40f15;
    background: #e40f15;
    color: #ffffff;
}

body.dark-mode .avatar-circle:hover {
    box-shadow: 0 30px 60px rgba(228, 15, 21, 0.4), 0 0 40px rgba(228, 15, 21, 0.25);
}

body.dark-mode .testimonial-display-card {
    background: linear-gradient(135deg, #141923 0%, #131821 100%);
    border-color: #ffffff;
}

body.dark-mode .testimonial-display-card:hover {
    box-shadow: 0 30px 70px rgb(42 42 42 / 40%), 0 0 40px rgba(228, 15, 21, 0.2);
}


/* Tablet Responsive */

@media (max-width: 1200px) {
    .testimonials-wrapper {
        gap: 60px;
    }
    .avatars-container {
        width: 350px;
        height: 350px;
    }
    .avatars-container::before {
        width: 280px;
        height: 280px;
    }
    .avatars-container::after {
        width: 340px;
        height: 340px;
    }
    .avatar-circle {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-avatars {
        height: 400px;
    }
    .testimonials-avatars::before {
        opacity: 0.1;
    }
    .avatars-container {
        width: 300px;
        height: 300px;
    }
    .avatars-container::before {
        width: 240px;
        height: 240px;
    }
    .avatars-container::after {
        width: 290px;
        height: 290px;
        animation: rotate 22s linear infinite;
    }
    .avatar-circle {
        width: 95px;
        height: 95px;
    }
    .testimonial-display-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonials-avatars {
        height: 350px;
    }
    .testimonials-avatars::before {
        opacity: 0.08;
    }
    .avatars-container {
        width: 250px;
        height: 250px;
    }
    .avatars-container::before {
        width: 200px;
        height: 200px;
        border-width: 1.5px;
    }
    .avatars-container::after {
        width: 250px;
        height: 250px;
        animation: rotate 24s linear infinite;
    }
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    .decorative-circle {
        display: none;
    }
    .testimonial-display-card {
        padding: 30px 25px;
        min-height: 300px;
    }
    .testimonial-quote-text {
        font-size: 1rem;
    }
    .author-avatar-small {
        width: 50px;
        height: 50px;
    }
    .author-name-small {
        font-size: 0.9rem;
    }
    .author-role-small {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 15px;
        gap: 25px;
    }
    .testimonials-avatars {
        height: 300px;
    }
    .testimonials-avatars::before {
        opacity: 0.06;
    }
    .avatars-container {
        width: 200px;
        height: 200px;
    }
    .avatars-container::before {
        width: 160px;
        height: 160px;
        border-width: 1px;
    }
    .avatars-container::after {
        width: 200px;
        height: 200px;
        animation: rotate 25s linear infinite;
    }
    .avatar-circle {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    .testimonial-display-card {
        padding: 25px 20px;
        min-height: 280px;
    }
    .testimonial-quote-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    .author-avatar-small {
        width: 45px;
        height: 45px;
    }
    .author-name-small {
        font-size: 0.85rem;
    }
    .author-role-small {
        font-size: 0.75rem;
    }
    .testimonial-rating i {
        font-size: 0.8rem;
    }
    .testimonial-nav-section {
        gap: 8px;
    }
    .nav-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        gap: 30px;
    }
    .testimonial-display-card {
        padding: 30px 25px;
        min-height: auto;
    }
    .testimonial-quote-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    .avatars-container {
        width: 250px;
        height: 250px;
    }
    .testimonials-avatars {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-display-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    .testimonial-quote-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .avatar-circle {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    .avatars-container {
        width: 200px;
        height: 200px;
    }
    .testimonials-avatars {
        height: 250px;
    }
}


/* Dark Mode */

body.dark-mode .customers-section {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
}

body.dark-mode .testimonial-card-slide {
    background: #1a1f2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.15);
}

body.dark-mode .testimonial-text-slide {
    color: #ccc;
}

body.dark-mode .author-details h5 {
    color: #ffffff;
}

body.dark-mode .author-details p {
    color: #aaa;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .testimonial-swiper {
        padding: 30px 0;
    }
    .swiper-slide {
        opacity: 1;
    }
    .swiper-slide:not(.swiper-slide-active) .testimonial-card-slide {
        transform: scale(1);
    }
    .testimonial-card-slide {
        padding: 30px 20px;
        min-height: 280px;
    }
    .testimonial-text-slide {
        font-size: 0.9rem;
    }
    .avatar-img {
        width: 45px;
        height: 45px;
    }
    .author-details h5 {
        font-size: 0.9rem;
    }
    .author-details p {
        font-size: 0.75rem;
    }
    .rating-stars {
        font-size: 16px;
    }
}


/* Blog Section */


/* Swiper Navigation */

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(228, 15, 21, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white !important;
}

.swiper-pagination-bullet {
    background: rgba(228, 15, 21, 0.3) !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 30px !important;
    border-radius: 10px !important;
}


/* ===================================
   BLOG SECTION
   =================================== */

.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.blog-card {
    /* Glass card handles base styles */
    overflow: hidden;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #ffffff;
    /* Adjusted for glass bg */
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-excerpt {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}


/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 100px 0 100px;
    background: #f9f9f9;
}

body.dark-mode .contact-section {
    background: #1a1a1a;
}


/* Contact Wrapper - Two Column Layout */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 60px;
    margin-bottom: 80px;
    min-height: 550px;
}


/* LEFT SIDE: Contact Info Cards */

.contact-info-side {
    background: linear-gradient(135deg, #e40f15 0%, #ff6b6b 100%);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    height: 100%;
    transform: translateY(-2px);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    margin: 0px 20px;
}

.contact-info-card:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding: 25px 20px 30px 20px;
}

@keyframes rotateDashedBorder {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-info-card.border-none {
    border: none;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px dashed #ffffffad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    animation: rotateDashedBorder 8s linear infinite;
}

.contact-info-icon i {
    animation: rotateDashedBorder 8s linear infinite reverse;
}

.contact-info-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.contact-info-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-info-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin: 0;
}

.contact-info-image {
    margin-top: 20px;
    text-align: center;
}

.contact-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    width: 100%;
}


/* RIGHT SIDE: Contact Form */

.contact-form-side {
    display: flex;
    align-items: stretch;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-side::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('../images/map-image.png');
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    animation: rotateBackground 20s linear infinite;
    z-index: 10;
    pointer-events: none;
    opacity: 0.4;
}

.contact-form-side>* {
    position: relative;
    z-index: 1;
}

@keyframes rotateBackground {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.contact-form-card {
    border-radius: 20px;
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.95);
}

.b24-form-wrapper {
    border-radius: 20px;
}

body.dark-mode .contact-form-card {
    background: #1a1a1abf;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

body.dark-mode .contact-form-title {
    color: #f5f5f5;
}

.contact-form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

body.dark-mode .contact-form-subtitle {
    color: #b0b0b0;
}


/* Modern Form Styling */

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-label-modern {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-mode .form-label-modern {
    color: #e0e0e0;
}

.form-input-modern {
    padding: 14px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
    transition: all 0.35s ease;
}

body.dark-mode .form-input-modern {
    background: #1a1a1a;
    border-color: #555;
    color: #f5f5f5;
}

.form-input-modern:focus {
    outline: none;
    background: white;
    border-color: #2563eb;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

body.dark-mode .form-input-modern:focus {
    background: #4a4a4a;
    border-color: #2563eb;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.form-input-modern::placeholder {
    color: #999;
}

body.dark-mode .form-input-modern::placeholder {
    color: #777;
}

.textarea-modern {
    min-height: 120px;
    resize: vertical;
}

.form-select-modern {
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 36px !important;
    cursor: pointer;
}

body.dark-mode .form-select-modern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23f5f5f5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
}

.form-select-modern option {
    background: white;
    color: #1a1a1a;
    padding: 8px;
}

body.dark-mode .form-select-modern option {
    background: #3a3a3a;
    color: #f5f5f5;
}

.form-help-text {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 12px;
    text-align: center;
}

body.dark-mode .form-help-text {
    color: #777;
}


/* Submit Button */

.btn-submit-modern {
    background: linear-gradient(135deg, #E40F15 0%, #B30812 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 53, 53, 0.3);
    background: linear-gradient(90deg, #B30812 0%, #E40F15 100%);
}

.btn-submit-modern i {
    font-size: 12px;
}


/* Map Section */

.map-section-wrapper {
    margin-top: 0;
}

.map-container-modern {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
}


/* RESPONSIVE: Contact Section */

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    .contact-info-side {
        padding: 40px 30px;
        min-height: 400px;
    }
    .contact-form-side {
        min-height: 500px;
    }
    .contact-form-card {
        padding: 40px 30px;
    }
    .contact-form-title {
        font-size: 24px;
    }
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 60px;
    }
    .contact-wrapper {
        margin-top: 40px;
        margin-bottom: 40px;
        gap: 30px;
    }
    .contact-info-side {
        border-radius: 15px;
        padding: 30px 20px;
        min-height: auto;
    }
    .contact-info-card {
        margin: 0 !important;
        padding: 18px 0 !important;
        gap: 15px;
    }
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .contact-info-card:last-of-type {
        padding: 20px 0 !important;
        margin-bottom: 0;
    }
    .contact-form-side {
        min-height: 450px;
        border-radius: 15px;
    }
    .contact-form-card {
        border-radius: 15px;
        padding: 30px 20px;
    }
    .contact-form-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .contact-form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .form-row-modern {
        margin-bottom: 15px;
    }
    .form-label-modern {
        font-size: 13px;
    }
    .form-input-modern {
        font-size: 14px;
        padding: 10px 12px;
    }
    .map-container-modern {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-wrapper {
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contact-info-side {
        border-radius: 12px;
        padding: 20px 15px;
        min-height: auto;
    }
    .contact-info-card {
        padding: 15px 0 !important;
        gap: 12px;
    }
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .contact-info-label {
        font-size: 11px;
    }
    .contact-info-text {
        font-size: 13px;
    }
    .contact-form-side {
        border-radius: 12px;
        min-height: 400px;
    }
    .contact-form-card {
        border-radius: 12px;
        padding: 20px 15px;
    }
    .contact-form-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .contact-form-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .form-group-modern {
        gap: 6px;
    }
    .form-label-modern {
        font-size: 12px;
    }
    .form-input-modern {
        font-size: 13px;
        padding: 9px 10px;
    }
    .btn-submit-modern {
        padding: 10px 16px;
        font-size: 13px;
    }
    .map-container-modern {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 40px;
    }
    .contact-wrapper {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .contact-info-side {
        border-radius: 12px;
        padding: 25px 20px;
    }
    .contact-info-card {
        margin-bottom: 25px;
    }
    .contact-info-label {
        font-size: 14px;
    }
    .contact-info-text {
        font-size: 14px;
    }
    .contact-form-card {
        border-radius: 12px;
        padding: 25px 20px;
    }
    .contact-form-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .contact-form-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .form-label-modern {
        font-size: 12px;
    }
    .form-input-modern {
        padding: 12px 14px;
        font-size: 13px;
    }
    .btn-submit-modern {
        padding: 12px 20px;
        font-size: 13px;
    }
    .map-container-modern {
        height: 250px;
        border-radius: 12px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(228, 15, 21, 0.1);
    border: 1px solid rgba(228, 15, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    /* Glass card handles shadow */
}

.map-container iframe {
    width: 100%;
    height: 100%;
}


/* ===================================
   FOOTER
   =================================== */


/* ===================================
   FOOTER SECTION - PREMIUM DESIGN
   =================================== */

.footer-section {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 25%, #0d1823 50%, #1a1f2e 75%, #0f1419 100%);
    color: #d4d8e0;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgb(228 15 21 / 23%), transparent) 1;
}


/* Animated Floating Orbs */

.footer-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(228, 15, 21, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    animation: orb-float 8s ease-in-out infinite;
    filter: blur(40px);
}

.footer-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: orb-float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

@keyframes orb-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(0, -80px) scale(1);
    }
    75% {
        transform: translate(-30px, -40px) scale(1.1);
    }
}


/* Additional Animated Shapes */

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 153, 255, 0.1), rgba(228, 15, 21, 0.1));
    top: 50%;
    right: 10%;
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    filter: blur(60px);
    pointer-events: none;
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}


/* Footer Title Styling */

.footer-title {
    color: white;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: white;
    border-radius: 2px;
    animation: slide-in 0.8s ease-out;
}

@keyframes slide-in {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}


/* Links List */

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 0px;
}

.footer-links li::before {
    content: '➜';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    opacity: 0;
    animation: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

.footer-links a {
    color: #d4d8e0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0 5px 0px;
    font-weight: 500;
}

.footer-links li:hover a {
    color: white;
    transform: translateX(25px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0) rotate(0);
}


/* Social Links */

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.1), rgba(0, 153, 255, 0.1));
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50%;
}

.footer-social a::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue), transparent);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.4s ease;
    z-index: -2;
    filter: blur(10px);
}

.footer-social a:hover {
    border-color: #fff;
    color: white;
    transform: translateY(-10px) scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(228, 15, 21, 0.4), inset 0 0 20px rgba(228, 15, 21, 0.2);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover::after {
    opacity: 0.5;
    animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}


/* Footer Contact Info */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-contact-item i {
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 182, 182, 0.1) 0%, rgba(183, 182, 182, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(183, 182, 182, 0.15), inset 0 0 20px rgba(183, 182, 182, 0.08);
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.footer-contact-item span {
    color: #d4d8e0;
    line-height: 1.5;
}

.footer-contact-item:hover i {
    transform: translateX(5px) scale(1.15);
    color: #b7b6b6;
    background: linear-gradient(135deg, rgba(183, 182, 182, 0.2) 0%, rgba(183, 182, 182, 0.1) 100%);
    border-color: #b7b6b6;
    box-shadow: 0 8px 25px rgba(183, 182, 182, 0.3), inset 0 0 20px rgba(183, 182, 182, 0.15);
}


/* Background Shape */

.footer-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
    /* animation: slow-zoom 10s ease-in-out infinite; */
}

@keyframes slow-zoom {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* Divider */

.footer-divider {
    border: none;
    height: 1px;
    margin: 60px 0 50px 0;
    background: linear-gradient(90deg, #ffffffa6, rgb(255 255 255 / 40%), rgb(255 255 255 / 30%), #ffffff45);
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(228, 15, 21, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(228, 15, 21, 0);
    }
}


/* ===================================
   FOOTER RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .footer-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-social {
        gap: 12px;
    }
    .footer-social a {
        width: 50px;
        height: 50px;
    }
    .footer-contact-info {
        margin-top: 20px;
    }
}

@media (max-width: 1024px) {
    .footer-section {
        padding-top: 70px;
        padding-bottom: 35px;
    }
    .footer-content .container .row {
        row-gap: 40px;
    }
    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }
    .footer-title::after {
        width: 40px;
    }
    .footer-links li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    .footer-links a {
        font-size: 0.9rem;
    }
    .footer-social {
        gap: 10px;
        margin-bottom: 20px;
    }
    .footer-social a {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .footer-contact-item {
        margin-bottom: 12px;
        font-size: 0.85rem;
    }
    .footer-contact-item i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .footer-divider {
        margin: 50px 0 40px 0;
    }
    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .footer-links-bottom {
        gap: 18px;
    }
    .footer-links-bottom a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .footer-content .container {
        padding: 0 15px;
    }
    .footer-content .container .row {
        row-gap: 35px;
    }
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 18px;
        letter-spacing: 1.3px;
        font-weight: 700;
    }
    .footer-title::after {
        width: 35px;
        height: 3px;
        animation: slide-in 0.8s ease-out;
    }
    .footer-links li {
        margin-bottom: 9px;
        font-size: 0.85rem;
    }
    .footer-links a {
        font-size: 0.85rem;
        color: #d4d8e0;
    }
    .footer-links a:hover {
        color: white;
    }
    .footer-social {
        gap: 8px;
        margin-bottom: 15px;
    }
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .footer-contact-info {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-contact-item {
        margin-bottom: 10px;
        font-size: 0.8rem;
        gap: 10px;
    }
    .footer-contact-item i {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    .footer-contact-item a {
        font-size: 0.8rem;
        color: white;
    }
    .footer-divider {
        margin: 40px 0 35px 0;
        height: 1px;
    }
    .footer-divider::before {
        width: 8px;
        height: 8px;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .footer-links-bottom {
        gap: 15px;
        justify-content: center;
    }
    .footer-links-bottom a {
        font-size: 0.75rem;
        padding: 6px 0;
    }
    .footer-links-bottom a:not(:last-child)::before {
        right: -8px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding-top: 50px;
        padding-bottom: 25px;
    }
    .footer-content .container {
        padding: 0 12px;
    }
    .footer-content .container .row {
        row-gap: 30px;
    }
    .col-lg-3 {
        width: 100%;
        margin-bottom: 25px;
    }
    .col-md-6 {
        width: 100%;
    }
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
        letter-spacing: 1px;
        font-weight: 700;
        padding-bottom: 12px;
    }
    .footer-title::after {
        width: 30px;
        height: 3px;
        bottom: 0;
    }
    .footer-links {
        padding-left: 0;
    }
    .footer-links li {
        margin-bottom: 8px;
        font-size: 0.8rem;
        padding-left: 0;
    }
    .footer-links li::before {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .footer-links li:hover::before {
        opacity: 1;
    }
    .footer-links a {
        font-size: 0.8rem;
        color: #d4d8e0;
        display: inline-block;
        padding: 4px 0;
    }
    .footer-social {
        gap: 8px;
        margin-bottom: 12px;
    }
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
    .footer-contact-info {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-contact-item {
        margin-bottom: 8px;
        font-size: 0.75rem;
        gap: 10px;
    }
    .footer-contact-item i {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .footer-contact-item a {
        font-size: 0.75rem;
        color: white;
    }
    .footer-contact-item a:hover {
        color: #b7b6b6;
    }
    .footer-contact-item span {
        font-size: 0.75rem;
        color: #d4d8e0;
    }
    .footer-divider {
        margin: 30px 0 25px 0;
        height: 1px;
    }
    .footer-divider::before {
        width: 6px;
        height: 6px;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom p {
        font-size: 0.75rem;
        margin-bottom: 8px;
        color: #b0b0b0;
    }
    .footer-links-bottom {
        gap: 12px;
        justify-content: center;
        flex-direction: column;
    }
    .footer-links-bottom a {
        font-size: 0.7rem;
        padding: 4px 0;
        color: white;
    }
    .footer-links-bottom a:not(:last-child)::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding-top: 45px;
        padding-bottom: 20px;
    }
    .footer-section::before,
    .footer-section::after {
        display: none;
    }
    .footer-content .container {
        padding: 0 10px;
    }
    .footer-content::before {
        display: none;
    }
    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
        font-weight: 700;
    }
    .footer-title::after {
        width: 25px;
        height: 2px;
    }
    .footer-links li {
        margin-bottom: 7px;
        font-size: 0.75rem;
    }
    .footer-links a {
        font-size: 0.75rem;
    }
    .footer-social {
        gap: 6px;
        margin-bottom: 10px;
    }
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    .footer-contact-info {
        margin-top: 10px;
        padding-top: 10px;
    }
    .footer-contact-item {
        margin-bottom: 6px;
        font-size: 0.7rem;
        gap: 8px;
    }
    .footer-contact-item i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .footer-divider {
        margin: 25px 0 20px 0;
    }
    .footer-bottom p {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    .footer-links-bottom {
        gap: 8px;
    }
    .footer-links-bottom a {
        font-size: 0.65rem;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-bottom p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #c9cfd8;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-bottom p:hover {
    color: white;
}


/* Footer Links Bottom */

.footer-links-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links-bottom a {
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.85rem;
    position: relative;
    padding: 8px 0;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-blue));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links-bottom a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-links-bottom a:hover::after {
    width: 100%;
}


/* Separator Animation */

.footer-links-bottom a:not(:last-child)::before {
    content: '|';
    position: absolute;
    right: -14px;
    color: rgb(255 255 255 / 40%);
    transition: color 0.3s ease;
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        gap: 25px;
    }
    .hero-image-section {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    /* MOBILE NAVBAR STYLES */
    .custom-toggler {
        display: flex !important;
        border: 2px solid var(--primary-color) !important;
        padding: 8px 12px !important;
        border-radius: 8px;
        background: rgba(228, 15, 21, 0.08);
        position: relative;
        width: 50px;
        height: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    .custom-toggler:hover {
        background: rgba(228, 15, 21, 0.15);
        box-shadow: 0 6px 20px rgba(228, 15, 21, 0.2);
    }
    .toggler-icon {
        display: block !important;
        width: 24px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }
    .toggler-close {
        display: block !important;
        position: absolute;
        font-size: 24px;
        color: var(--primary-color);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    .custom-toggler[aria-expanded="true"] .toggler-icon {
        opacity: 0;
        transform: rotate(180deg);
    }
    .custom-toggler[aria-expanded="true"] .toggler-close {
        opacity: 1;
    }
    .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
        transform: rotate(45deg) translate(12px, 12px);
        opacity: 0;
    }
    .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
        opacity: 0;
    }
    .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        opacity: 0;
    }
    /* Mobile Menu */
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(15, 20, 25, 0.99), rgba(26, 31, 46, 0.99));
        border-radius: 12px;
        margin-top: 15px;
        padding: 20px 0;
        animation: slideInRight 0.4s ease;
    }
    .nav-center {
        flex-direction: column !important;
        gap: 5px;
        padding: 20px 0;
        text-align: left;
    }
    .nav-link {
        padding: 12px 20px !important;
        margin: 5px 0 !important;
        border: 1px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    .theme-toggle {
        margin-left: 0 !important;
        padding-left: 0 !important;
        border-left: none;
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid rgba(228, 15, 21, 0.2);
        justify-content: center;
    }
    /* Hero Section */
    .hero-section {
        padding: 70px 20px 50px;
        min-height: auto;
        margin-top: -60px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-text-wrapper {
        padding-right: 0;
    }
    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
        line-height: 60px;
    }
    .damion-font {
        font-size: 3.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    .hero-buttons {
        gap: 15px;
        flex-wrap: wrap;
    }
    .btn-hover {
        padding: 14px 35px !important;
        font-size: 0.95rem;
    }
    .hero-image-section {
        min-height: 350px;
        margin-top: 40px;
    }
    .hero-main-image.glass-card {
        padding: 25px;
    }
    .hero-metrics {
        gap: 15px;
        padding: 12px !important;
    }
    .metric {
        padding: 0 15px;
        flex: auto;
    }
    .metric:first-child {
        padding-left: 0;
    }
    .metric:last-child {
        padding-right: 0;
    }
    .metric-number {
        font-size: 1.8rem;
        gap: 5px;
    }
    .metric-label {
        font-size: 0.75rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-header {
        margin-bottom: 10px;
    }
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    .about-image-wrapper {
        height: 420px;
        margin-bottom: 30px;
    }
    .about-image {
        max-width: 100%;
        height: 380px;
        padding: 0 15px;
    }
    .about-image::before {
        width: 250px;
        height: 250px;
        top: -15px;
        right: -15px;
    }
    .about-image::after {
        width: 220px;
        height: 220px;
        bottom: -20px;
        left: -20px;
    }
    .about-badge {
        bottom: -12px;
        left: 15px;
        padding: 16px 22px;
    }
    .badge-number {
        font-size: 1.8rem;
    }
    .badge-text {
        font-size: 0.8rem;
    }
    .about-section .section-title {
        font-size: 2rem;
    }
    .about-section .section-subtitle {
        font-size: 1.15rem;
    }
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .feature-item {
        padding: 16px 14px;
        gap: 10px;
        border-radius: 40px;
    }
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .feature-item i {
        font-size: 22px !important;
    }
    .feature-item h5 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    .feature-item p {
        font-size: 0.7rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .nav-link {
        margin: 0 10px;
    }
    .services-section,
    .projects-section,
    .blog-section,
    .customers-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    .project-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 10px;
        padding: 50px 12px 40px;
        min-height: auto;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1;
        letter-spacing: -0.5px;
    }
    .damion-font {
        font-size: 2.2rem !important;
        letter-spacing: 1px !important;
    }
    .title-line {
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-hover {
        width: 100%;
        text-align: center;
        padding: 12px 25px !important;
        font-size: 0.9rem;
    }
    .btn-lg {
        width: 100%;
    }
    .btn-outline-light {
        width: 100%;
        padding: 12px 20px !important;
    }
    .hero-image-section {
        height: 250px;
        margin-top: 25px;
    }
    .hero-main-image {
        max-width: 100%;
    }
    .hero-main-image.glass-card {
        padding: 15px;
    }
    .hero-metrics {
        margin-top: 20px !important;
        gap: 8px;
        padding: 8px !important;
        flex-wrap: wrap;
    }
    .metric {
        padding: 0 10px;
        flex: 1 1 calc(50% - 8px);
    }
    .metric:first-child {
        padding-left: 0;
    }
    .metric:last-child {
        padding-right: 0;
    }
    .metric:nth-child(1),
    .metric:nth-child(2) {
        margin-bottom: 8px;
    }
    .metric-number {
        font-size: 1.4rem;
        gap: 3px;
    }
    .metric-unit {
        font-size: 13px;
    }
    .metric-label {
        font-size: 0.65rem;
    }
    /* About Section Mobile */
    .about-section {
        padding: 50px 0;
    }
    .about-image-wrapper {
        height: auto;
        margin-bottom: 35px;
    }
    .about-image {
        max-width: 100%;
        height: 300px;
        padding: 0 10px;
    }
    .about-image::before {
        width: 180px;
        height: 180px;
        top: -10px;
        right: -10px;
    }
    .about-image::after {
        width: 150px;
        height: 150px;
        bottom: -15px;
        left: -15px;
    }
    .about-badge {
        bottom: -8px;
        left: 12px;
        padding: 14px 18px;
    }
    .badge-number {
        font-size: 1.5rem;
    }
    .badge-text {
        font-size: 0.75rem;
        margin-top: 3px;
    }
    .about-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .about-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .about-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 10px 0;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    .feature-item {
        padding: 14px 12px;
        gap: 12px;
        border-radius: 35px;
    }
    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    .feature-item i {
        font-size: 20px !important;
    }
    .feature-item h5 {
        font-size: 0.8rem;
        margin-bottom: 2px;
        font-weight: 600;
    }
    .feature-item p {
        font-size: 0.65rem;
        margin: 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-header {
        margin-bottom: 10px;
    }
    .about-image {
        max-width: 100%;
        height: 300px;
        padding: 0 10px;
    }
    .about-image::before {
        display: none;
    }
    .about-image::after {
        display: none;
    }
    .about-badge {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 14px 18px;
        text-align: center;
        bottom: auto;
        left: auto;
    }
    .badge-number {
        font-size: 1.6rem;
    }
    .badge-text {
        font-size: 0.78rem;
    }
    .about-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .about-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .about-text {
        font-size: 0.92rem;
        margin-bottom: 25px;
        line-height: 1.65;
    }
    .feature-item {
        padding: 18px 14px;
        gap: 10px;
    }
    .feature-item i {
        width: 44px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 22px !important;
        text-align: center;
    }
    .feature-item h5 {
        font-size: 0.88rem;
    }
    .feature-item p {
        font-size: 0.73rem;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
    .service-card {
        padding: 30px 20px;
    }
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .swiper-slide {
        padding: 15px;
    }
    .testimonial-card {
        padding: 25px 20px;
    }
    .project-card {
        height: 250px;
    }
    .scroll-indicator {
        bottom: 30px;
        font-size: 0.9rem;
    }
}


/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================================
   UTILITIES
   =================================== */

.smooth-scroll {
    scroll-behavior: smooth;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Cursor - Theme Aware */


/* Dark Mode Cursor */

body.dark-mode {
    cursor: auto;
}


/* Light Mode Cursor - White/Light cursor for light background */

body.light-mode {
    cursor: auto;
}


/* Default cursor for links and buttons */

a,
button {
    cursor: pointer;
}


/* ===================================
   DARK/LIGHT MODE ADJUSTMENTS (IMPROVISED)
   =================================== */

body.light-mode section:nth-child(even) {
    background-color: #f8f9fa;
}


/* Update Glass effect for Light Mode */

body.light-mode .glass-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .glass-card:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .glass-card-sm {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .form-floating>.form-control {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

body.light-mode .form-floating>label {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .card-title,
body.light-mode .feature-item h5,
body.light-mode .contact-details h4,
body.light-mode .blog-content h3 {
    color: #1a1a1a;
}

body.light-mode .about-text,
body.light-mode .service-list li,
body.light-mode .testimonial-text,
body.light-mode .contact-details p,
body.light-mode .blog-meta,
body.light-mode .blog-excerpt {
    color: #555;
}


/* ===== ENHANCED BLUE THEME HERO ===== */

.blue-theme-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #001a4d 0%, #003d99 50%, #001a4d 100%);
    transition: all 0.5s ease;
}

body.light-mode .blue-theme-hero {
    background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 50%, #e8f4ff 100%);
}

.hero-blue-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease;
}

body.light-mode .hero-blue-title {
    color: #001a4d;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-blue {
    color: #0066ff;
    background: linear-gradient(135deg, #0066ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .highlight-blue {
    color: #0052cc;
    -webkit-text-fill-color: unset;
    background: none;
}

.hero-blue-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

body.light-mode .hero-blue-subtitle {
    color: rgba(0, 26, 77, 0.85);
}

.hero-social-icons-blue {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.hero-social-icons-blue a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(100, 180, 255, 0.2);
    color: #64b4ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(100, 180, 255, 0.3);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
}

body.light-mode .hero-social-icons-blue a {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    border: 2px solid rgba(0, 102, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.08);
}

.hero-social-icons-blue a:hover {
    background: rgba(100, 180, 255, 0.4);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(100, 180, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

body.light-mode .hero-social-icons-blue a:hover {
    background: rgba(0, 102, 255, 0.2);
    color: #0052cc;
    border-color: rgba(0, 102, 255, 0.5);
}

.hero-blue-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff, #0099ff);
    border: none;
    border-radius: 25px;
    padding: 13px 35px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052cc, #0080ff);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

body.light-mode .btn-primary {
    background: linear-gradient(135deg, #0052cc, #0080ff);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

body.light-mode .btn-primary:hover {
    background: linear-gradient(135deg, #003a99, #0066ff);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.45);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #0066ff;
    border-radius: 25px;
    padding: 11px 33px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: #0066ff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    border-color: #0066ff;
}

body.light-mode .btn-outline-primary {
    border-color: #0052cc;
    color: #0052cc;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.15);
}

body.light-mode .btn-outline-primary:hover {
    background: #0052cc;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.35);
}

.hero-scroll-indicator-blue {
    animation: slideInUp 0.8s ease 0.6s both;
}

.hero-scroll-indicator-blue span {
    color: rgba(100, 180, 255, 0.8);
}

.hero-scroll-indicator-blue .scroll-arrow i {
    color: #0066ff;
}

body.light-mode .hero-scroll-indicator-blue span {
    color: rgba(0, 52, 153, 0.7);
}

body.light-mode .hero-scroll-indicator-blue .scroll-arrow i {
    color: #0052cc;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   =================================== */


/* Extra Small Devices (Mobile: < 360px) */

@media (max-width: 359px) {
    html {
        font-size: 13px;
    }
    body {
        padding-top: 55px;
    }
    .container {
        padding: 0 10px;
    }
    .hero-section {
        padding: 40px 10px 30px;
    }
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    .damion-font {
        font-size: 1.8rem !important;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .hero-metrics {
        gap: 5px;
        padding: 6px !important;
    }
    .metric {
        padding: 0 5px;
        flex: 1 1 calc(50% - 5px);
    }
    .metric-number {
        font-size: 1.2rem;
    }
    .metric-label {
        font-size: 0.6rem;
    }
    .about-section {
        padding: 40px 0;
    }
    .about-features {
        gap: 10px;
    }
    .feature-item {
        padding: 12px 10px;
        gap: 10px;
        border-radius: 30px;
    }
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .feature-item h5 {
        font-size: 0.75rem;
    }
    .feature-item p {
        font-size: 0.6rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .btn-hover {
        padding: 10px 20px !important;
        font-size: 0.85rem;
    }
}


/* Small Mobile (360px - 480px) */

@media (min-width: 360px) and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    body {
        padding-top: 55px;
    }
    .container {
        padding: 0 12px;
    }
    .hero-section {
        padding: 45px 12px 35px;
        min-height: auto;
    }
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }
    .damion-font {
        font-size: 2rem !important;
        letter-spacing: 0.5px !important;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    .hero-buttons {
        gap: 8px;
    }
    .btn-hover {
        width: 100%;
        padding: 11px 24px !important;
        font-size: 0.88rem;
    }
    .hero-image-section {
        height: 280px;
        margin-top: 20px;
    }
    .hero-metrics {
        margin-top: 18px !important;
        gap: 6px;
        padding: 7px !important;
    }
    .metric {
        padding: 0 8px;
    }
    .metric-number {
        font-size: 1.3rem;
    }
    .metric-label {
        font-size: 0.65rem;
    }
    .about-section {
        padding: 45px 0;
    }
    .about-image-wrapper {
        height: auto;
        margin-bottom: 30px;
    }
    .about-image {
        height: 280px;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }
    .feature-item {
        padding: 13px 12px;
        border-radius: 32px;
    }
    .feature-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    .feature-item i {
        font-size: 19px !important;
    }
    .feature-item h5 {
        font-size: 0.78rem;
    }
    .feature-item p {
        font-size: 0.65rem;
    }
    .section-title {
        font-size: 1.45rem;
    }
    .about-section .section-title {
        font-size: 1.5rem;
    }
}


/* Medium Mobile (481px - 640px) */

@media (min-width: 481px) and (max-width: 640px) {
    html {
        font-size: 14px;
    }
    body {
        padding-top: 60px;
    }
    .container {
        padding: 0 14px;
    }
    .hero-section {
        padding: 50px 14px 40px;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }
    .damion-font {
        font-size: 2.4rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }
    .hero-buttons {
        gap: 10px;
    }
    .btn-hover {
        width: 100%;
        padding: 12px 28px !important;
        font-size: 0.9rem;
    }
    .hero-image-section {
        height: 300px;
        margin-top: 25px;
    }
    .hero-metrics {
        margin-top: 20px !important;
        gap: 8px;
        padding: 8px !important;
    }
    .metric-number {
        font-size: 1.5rem;
    }
    .metric-label {
        font-size: 0.7rem;
    }
    .about-section {
        padding: 50px 0;
    }
    .about-image {
        height: 310px;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .feature-item {
        padding: 14px 13px;
        border-radius: 34px;
    }
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    .feature-item i {
        font-size: 20px !important;
    }
    .feature-item h5 {
        font-size: 0.8rem;
    }
    .feature-item p {
        font-size: 0.67rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
}


/* Tablet (641px - 1024px) */

@media (min-width: 641px) and (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    body {
        padding-top: 60px;
    }
    .container {
        max-width: 95%;
        padding: 0 16px;
    }
    .hero-section {
        padding: 60px 16px 50px;
        min-height: 90vh;
        height: 100%!important;
    }
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.25;
        margin-bottom: 18px;
    }
    .damion-font {
        font-size: 3.4rem !important;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    .hero-buttons {
        gap: 12px;
        flex-wrap: wrap;
    }
    .btn-hover {
        padding: 13px 32px !important;
        font-size: 0.95rem;
    }
    .hero-image-section {
        min-height: 400px;
        margin-top: 35px;
    }
    .hero-metrics {
        margin-top: 25px !important;
        gap: 12px;
        padding: 10px !important;
    }
    .metric {
        padding: 0 18px;
    }
    .metric-number {
        font-size: 1.9rem;
    }
    .metric-label {
        font-size: 0.75rem;
    }
    .about-section {
        padding: 70px 16px;
    }
    .about-image-wrapper {
        height: 480px;
        margin-bottom: 0;
    }
    .about-image {
        height: 420px;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 35px;
    }
    .feature-item {
        padding: 16px 15px;
        border-radius: 38px;
    }
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .feature-item i {
        font-size: 23px !important;
    }
    .feature-item h5 {
        font-size: 0.85rem;
    }
    .feature-item p {
        font-size: 0.7rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-section .section-title {
        font-size: 2.2rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


/* Laptop (1025px - 1440px) */

@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    .hero-section {
        padding: 80px 20px 60px;
        min-height: 100vh;
    }
    .hero-title {
        font-size: 4rem;
        line-height: 70px;
    }
    .damion-font {
        font-size: 4.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    .hero-metrics {
        margin-top: 30px !important;
        gap: 16px;
        padding: 10px !important;
    }
    .metric {
        padding: 0 28px;
    }
    .metric-number {
        font-size: 2rem;
    }
    .about-section {
        padding: 80px 20px;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .feature-item {
        padding: 18px 28px;
        border-radius: 50px;
    }
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    .feature-item i {
        font-size: 26px !important;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}


/* Large Desktop (1441px - 1920px) */

@media (min-width: 1441px) and (max-width: 1920px) {
    .container {
        max-width: 1320px;
    }
    .hero-section {
        padding: 100px 20px 70px;
        min-height: 100vh;
    }
    .hero-title {
        font-size: 4.5rem;
        line-height: 75px;
    }
    .damion-font {
        font-size: 5.2rem !important;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 45px;
    }
    .hero-metrics {
        margin-top: 35px !important;
        gap: 20px;
    }
    .metric {
        padding: 0 32px;
    }
    .metric-number {
        font-size: 2.2rem;
    }
    .about-section {
        padding: 100px 20px;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .feature-item {
        padding: 10px 28px;
        border-radius: 52px;
    }
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .section-title {
        font-size: 2.6rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}


/* Ultra Wide (> 1920px) */

@media (min-width: 1921px) {
    .container {
        max-width: 1400px;
    }
    .hero-section {
        padding: 120px 20px 80px;
        min-height: 110vh;
    }
    .hero-title {
        font-size: 5rem;
        line-height: 85px;
        letter-spacing: -2.5px;
    }
    .damion-font {
        font-size: 5.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 50px;
    }
    .hero-metrics {
        margin-top: 40px !important;
        gap: 24px;
        padding: 12px !important;
    }
    .metric {
        padding: 0 36px;
    }
    .metric-number {
        font-size: 2.4rem;
    }
    .about-section {
        padding: 120px 20px;
    }
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .feature-item {
        padding: 22px 32px;
        border-radius: 54px;
    }
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .feature-item i {
        font-size: 32px !important;
    }
    .section-title {
        font-size: 3rem;
    }
    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}


/* ===== OFFERS SECTION BACKGROUND ===== */

.offers-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.offers-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 0 center;
    animation: marqueeSlide 60s linear infinite;
    -webkit-animation: marqueeSlide 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.offers-section .pattern-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@keyframes marqueeSlide {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: -100% center;
    }
}

@-webkit-keyframes marqueeSlide {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: -100% center;
    }
}

.bg-color-1 {
    background-color: #f5f5f5;
}

.offers-section>.container {
    position: relative;
    z-index: 1;
}

.offers-section .offers-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.offers-section .section-header {
    position: relative;
    z-index: 2;
}

.offers-section .offers-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}


/* ===== PRICING TOGGLE ===== */

.pricing-toggle-wrapper {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-toggle-group {
    display: inline-flex;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(228, 15, 21, 0.2);
    border-radius: 50px;
    padding: 8px;
    gap: 8px;
}

.toggle-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 15px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #e40f15, #ff6b6b);
    color: white;
    box-shadow: 0 8px 20px rgba(228, 15, 21, 0.3);
}

.toggle-btn:hover:not(.active) {
    color: #e40f15;
}

.save-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    animation: float 3s ease-in-out infinite;
}

.save-badge svg {
    color: #fff;
}


/* ===== OFFERS GRID NEW DESIGN ===== */

.offers-section .offers-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}


/* Offer Card - New Design */

.offer-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    border: 2px solid rgba(228, 15, 21, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(73, 73, 73, 0.08);
    display: flex;
    flex-direction: column;
    min-height: auto;
    color: #1a1a1a;
}


/* Dark Mode - Offer Card */

body.dark-mode .offer-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.95), rgba(35, 35, 35, 0.92));
    border-color: rgba(228, 15, 21, 0.2);
    color: #f0f0f0;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(73, 73, 73, 0.15);
    border-color: rgba(228, 15, 21, 0.2);
}


/* Featured Card (Middle Card) */

.offer-card-featured {
    transform: scale(1.03);
    background: linear-gradient(135deg, #e40f15 0%, #ff6b6b 100%);
    color: white;
}

.offer-card-featured:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 25px 60px rgba(228, 15, 21, 0.4);
}


/* body.dark-mode .offer-card-featured {
    background: linear-gradient(135deg, #cc0a12 0%, #e40f15 100%);
    color: white;
} */

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e40f15;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
}

body.light-mode .featured-badge {
    background: #ff6b6b;
    border: 1px solid rgba(228, 15, 21, 0.3);
}


/* Offer Header Pricing */

.offer-header-pricing {
    text-align: center;
    margin-bottom: 25px;
}

.offer-icon-pricing {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.15), rgba(255, 107, 107, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 36px;
    color: #e40f15;
    transition: all 0.35s ease;
}

body.dark-mode .offer-icon-pricing {
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.25), rgba(255, 107, 107, 0.25));
    color: #ff6b6b;
}

.offer-card-featured .offer-icon-pricing {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.icon-featured {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.offer-card:hover .offer-icon-pricing {
    transform: scale(1.15) rotate(5deg);
}

.offer-title-pricing {
    font-size: 19px;
    font-weight: 700;
    color: inherit;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.offer-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 0;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: inherit;
    letter-spacing: -1px;
}

.price-period {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    opacity: 0.85;
}

.offer-card-featured .price-amount,
.offer-card-featured .price-period {
    color: white;
}


/* Offer Description Pricing */

.offer-description-pricing {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin: 6px 0;
    text-align: center;
    letter-spacing: -0.3px;
}

body.dark-mode .offer-description-pricing {
    color: #b0b0b0;
}

.offer-card-featured .offer-description-pricing {
    color: rgba(255, 255, 255, 0.95);
}


/* Offer Features Pricing */

.offer-features-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
    flex-grow: 1;
}

.feature-item-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    padding: 6px 0;
}

body.dark-mode .feature-item-pricing {
    color: #d0d0d0;
}

.feature-item-pricing i {
    color: #e40f15;
    font-size: 16px;
    flex-shrink: 0;
}

body.dark-mode .feature-item-pricing i {
    color: #ff6b6b;
}

.offer-card-featured .feature-item-pricing {
    color: rgba(255, 255, 255, 0.95);
}

.offer-card-featured .feature-item-pricing i {
    color: rgba(255, 255, 255, 0.9);
}


/* Offer Button Pricing */

.btn-offer-pricing {
    background: linear-gradient(135deg, #e40f15, #ff6b6b);
    color: white;
    border: 2px solid transparent;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(228, 15, 21, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    text-align: center;
}

body.dark-mode .btn-offer-pricing {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .btn-offer-pricing:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
}

.btn-offer-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.btn-offer-pricing:hover::before {
    left: 100%;
}

.btn-offer-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(228, 15, 21, 0.4);
}

.btn-featured {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn-featured:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .offer-card-featured .btn-offer-pricing {
    background: linear-gradient(135deg, #cc0a12, #e40f15) !important;
    border: 2px solid transparent !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

body.dark-mode .offer-card-featured .btn-offer-pricing:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}


/* ===== RESPONSIVE PRICING ===== */

@media (max-width: 1200px) {
    .offers-section .offers-grid {
        gap: 30px;
        margin: 50px 0;
    }
    .offer-card {
        padding: 35px 25px;
        min-height: 480px;
    }
    .offer-card-featured {
        transform: scale(1.03);
    }
    .offer-card-featured:hover {
        transform: scale(1.06) translateY(-8px);
    }
    .price-amount {
        font-size: 38px;
    }
    .offer-title-pricing {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-toggle-wrapper {
        margin-bottom: 50px;
        gap: 20px;
    }
    .pricing-toggle-group {
        padding: 6px;
    }
    .toggle-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .save-badge {
        font-size: 14px;
        gap: 8px;
    }
    .offers-section .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    .offer-card {
        padding: 30px 20px;
        min-height: auto;
    }
    .offer-card-featured {
        transform: scale(1);
    }
    .offer-card-featured:hover {
        transform: translateY(-8px);
    }
    .offer-icon-pricing {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    .offer-title-pricing {
        font-size: 18px;
    }
    .price-amount {
        font-size: 32px;
    }
    .offer-description-pricing {
        font-size: 14px;
    }
    .feature-item-pricing {
        font-size: 14px;
    }
    .btn-offer-pricing {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-toggle-wrapper {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 15px;
    }
    .toggle-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .offers-section .offers-grid {
        gap: 20px;
        margin: 30px 0;
    }
    .offer-card {
        padding: 25px 15px;
    }
    .offer-icon-pricing {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .offer-title-pricing {
        font-size: 16px;
    }
    .price-amount {
        font-size: 28px;
    }
    .price-period {
        font-size: 14px;
    }
    .btn-offer-pricing {
        padding: 11px 18px;
        font-size: 13px;
    }
}


/* ===== OFFERS CTA SECTION ===== */

.offers-section .offers-cta {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.08), rgba(255, 107, 107, 0.08));
    border: 2px solid rgba(228, 15, 21, 0.2);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.offers-cta:hover {
    border-color: rgba(228, 15, 21, 0.4);
    box-shadow: 0 20px 40px rgba(228, 15, 21, 0.15);
}

.offers-cta h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.offers-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.offers-cta .btn {
    padding: 16px 40px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.offers-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.offers-cta .btn:hover::before {
    left: 100%;
}

.offers-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(228, 15, 21, 0.4);
}


/* ===== RESPONSIVE OFFERS DESIGN ===== */

@media (max-width: 1200px) {
    .owl-carousel.projects-carousel .owl-item .project-item {
        height: 100%;
    }
    .owl-nav {
        display: none;
    }
    .offers-section .offers-grid {
        gap: 25px;
        margin: 50px 0;
    }
    .offer-card {
        padding: 35px 25px;
    }
    .offer-title {
        font-size: 20px;
    }
    .offers-cta h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-links-bottom {
        gap: 0;
    }
    .offers-section .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    .offer-card {
        padding: 30px 20px;
    }
    .offer-badge {
        right: 15px;
        top: -12px;
        padding: 10px 20px;
    }
    .offer-badge .badge-text {
        font-size: 12px;
    }
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .offer-title {
        font-size: 18px;
    }
    .offer-description {
        font-size: 14px;
    }
    .offers-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }
    .offers-cta h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .offers-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .offers-section .offers-grid {
        margin: 30px 0;
    }
    .offer-card {
        padding: 25px 15px;
    }
    .offer-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .offer-title {
        font-size: 16px;
    }
    .sale-price {
        font-size: 24px;
    }
    .btn-offer {
        padding: 12px 24px;
        font-size: 14px;
    }
    .offers-cta h3 {
        font-size: 20px;
    }
    .offers-cta p {
        font-size: 14px;
    }
}


/* ===================================
   POLICY PAGES STYLING
   =================================== */

.policy-page {
    background: var(--dark-bg);
    color: var(--text-dark);
    transition: background-color 0.5s ease, color 0.5s ease;
    padding-bottom: 60px;
}

.policy-header {
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 60px;
    transition: background-color 0.5s ease;
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: color 0.5s ease;
}

.policy-header h1 i {
    font-size: 3rem;
}

.policy-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    transition: color 0.5s ease;
}

.p_banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.p_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.p_banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.p_banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.p_banner-content h1 i {
    font-size: 3rem;
}

.p_banner-content p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .p_banner {
        height: 300px;
    }
    .p_banner-content h1 {
        font-size: 2.5rem;
    }
    .p_banner-content p {
        font-size: 1.1rem;
    }
}

.policy-container {
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.5) 0%, rgba(37, 45, 61, 0.3) 100%);
    border: 2px solid rgba(228, 15, 21, 0.2);
    border-radius: 20px;
}

body.light-mode .policy-container {
    background: inherit!important;
}

body.light-mode .policy-section:hover {
    box-shadow: none!important;
}

.policy-section {
    padding: 60px 70px;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}


/* body.dark-mode .policy-section {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.5) 0%, rgba(37, 45, 61, 0.3) 100%);
    border: 2px solid rgba(228, 15, 21, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(228, 15, 21, 0.1);
}

body.dark-mode .policy-section:hover {
    border-color: rgba(228, 15, 21, 0.4);
    box-shadow: 0 20px 50px rgba(228, 15, 21, 0.2), inset 0 1px 0 rgba(228, 15, 21, 0.15);
}

.policy-section:hover {
    border-color: rgba(228, 15, 21, 0.35);
    box-shadow: 0 20px 50px rgba(228, 15, 21, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
} */

.policy-section h2 {
    font-size: 2.1rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 900;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.5px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-section:hover h2::after {
    width: 180px;
}

.policy-section h2 i {
    font-size: 1.9rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(228, 15, 21, 0.25));
}

.policy-section:hover h2 i {
    transform: scale(1.2) rotate(12deg);
    filter: drop-shadow(0 6px 12px rgba(228, 15, 21, 0.4));
}

.policy-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    letter-spacing: -0.3px;
}

.policy-section:hover h3::before {
    height: 30px;
    box-shadow: 0 0 12px rgba(228, 15, 21, 0.4);
}

body.dark-mode .policy-section h3 {
    color: #ffffff;
}

.policy-section p {
    font-size: 1.12rem;
    line-height: 1.95;
    color: var(--text-dark);
    margin-bottom: 18px;
    opacity: 0.9;
    transition: all 0.3s ease;
    word-spacing: 0.05em;
}

body.dark-mode .policy-section p {
    color: #e8e8e8;
}

.policy-section p strong {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(228, 15, 21, 0.3);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.policy-section p:hover strong {
    text-decoration-color: var(--primary-color);
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.policy-section ul li {
    font-size: 1.12rem;
    line-height: 1.95;
    color: var(--text-dark);
    padding-left: 45px;
    margin-bottom: 16px;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-section ul li:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 55px;
    transform: translateX(5px);
}

body.dark-mode .policy-section ul li {
    color: #e8e8e8;
}

body.dark-mode .policy-section ul li:hover {
    color: #ff7b7b;
}

.policy-section ul li::before {
    content: "▶";
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.8;
    top: 7px;
}

.policy-section ul li:hover::before {
    color: #ff4444;
    transform: scale(1.3) translateX(-3px);
    opacity: 1;
}

.policy-section strong {
    color: var(--primary-color);
    font-weight: 800;
}

.policy-footer-links {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid var(--primary-color);
    margin-top: 60px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode .policy-footer-links {
    background: #1a1f2e;
    color: #f5f5f5;
}

.policy-footer-links p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.5s ease;
}

body.dark-mode .policy-footer-links p {
    color: #f5f5f5;
}

.policy-footer-links a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.policy-footer-links a:hover {
    background: linear-gradient(135deg, #ff4444, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(228, 15, 21, 0.4);
}

.policy-footer-links a i {
    margin-right: 8px;
}

.last-updated {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.95rem;
}

.last-updated i {
    margin-right: 8px;
    color: var(--primary-color);
}


/* Light Mode Policy Styles */

body.light-mode .policy-page {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-mode .policy-header {
    background: linear-gradient(135deg, rgba(228, 15, 21, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-bottom: 3px solid #e40f15;
    color: #1a1a1a;
}

body.light-mode .policy-header h1 {
    color: #e40f15;
}

body.light-mode .policy-header p {
    color: #1a1a1a;
}

body.light-mode .policy-section {
    background: #fff;
    color: #1a1a1a;
}

body.light-mode .policy-section h2 {
    color: #e40f15;
}

body.light-mode .policy-section h2 i {
    color: #e40f15;
}

body.light-mode .policy-section h3 {
    color: #1a1a1a;
}

body.light-mode .policy-section p {
    color: #1a1a1a;
}

body.light-mode .policy-section ul li {
    color: #1a1a1a;
}

body.light-mode .policy-section strong {
    color: #e40f15;
}

body.light-mode .policy-section:hover {
    background: #ffffff;
}

body.light-mode .policy-footer-links {
    background: #f8f9fa;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(228, 15, 21, 0.1);
    border-top: 3px solid #e40f15;
}

body.light-mode .policy-footer-links p {
    color: #1a1a1a;
}

body.light-mode .last-updated {
    color: #1a1a1a;
}

body.light-mode .last-updated i {
    color: #e40f15;
}


/* Responsive Design */

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.2rem;
    }
    .policy-header h1 i {
        font-size: 1.8rem;
    }
    .policy-header p {
        font-size: 1.1rem;
    }
    .policy-container {
        padding: 0 15px;
    }
    .policy-section {
        padding: 25px;
        margin-bottom: 25px;
    }
    .policy-section h2 {
        font-size: 1.4rem;
        gap: 10px;
    }
    .policy-section h2 i {
        font-size: 1.2rem;
    }
    .policy-section h3 {
        font-size: 1.1rem;
    }
    .policy-section p {
        font-size: 0.95rem;
    }
    .policy-section ul li {
        font-size: 0.95rem;
    }
    .policy-footer-links {
        padding: 25px;
    }
    .policy-footer-links a {
        display: block;
        margin: 8px 0;
    }
}


/* ===================================
   COOKIE TABLE STYLING
   =================================== */

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
}

.cookie-table thead {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: none;
}

body.dark-mode .cookie-table thead {
    background: var(--primary-color);
}

.cookie-table tbody tr {
    border-bottom: 1px solid rgba(228, 15, 21, 0.1);
    transition: all 0.3s ease;
}

body.dark-mode .cookie-table tbody tr {
    border-bottom: 1px solid rgba(228, 15, 21, 0.2);
}

.cookie-table tbody tr:hover {
    background: rgba(228, 15, 21, 0.06);
    transform: scale(1.01);
}

body.dark-mode .cookie-table tbody tr:hover {
    background: rgba(228, 15, 21, 0.15);
}

.cookie-table tbody td {
    padding: 16px 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

body.dark-mode .cookie-table tbody td {
    color: #e0e0e0;
}

.cookie-table tbody td:first-child {
    font-weight: 700;
    color: var(--primary-color);
}

body.dark-mode .cookie-table tbody td:first-child {
    color: #ff7b7b;
}

.cookie-table tbody td:nth-child(2) {
    font-weight: 600;
    background: rgba(228, 15, 21, 0.05);
    border-radius: 6px;
    padding: 12px 14px;
}

body.dark-mode .cookie-table tbody td:nth-child(2) {
    background: rgba(228, 15, 21, 0.12);
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: 0.9rem;
    }
    .cookie-table thead th {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    .cookie-table tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    .cookie-table tbody tr:hover {
        transform: scale(1);
    }
}