/*--------------------------------------------------------------
# International Telephone Input Customization - Modern 2025 Design
--------------------------------------------------------------*/

.iti {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

/* Modern Input Style */
.iti input {
    width: 100%;
    height: 52px;
    padding-right: 15px;

    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    /* Dark slate text */

    background-color: #66a5ad !important;
    /* Clean White Background */
    border: 1px solid #e5e7eb;
    /* Subtle gray border */
    border-radius: 12px;
    /* Smooth rounded corners */

    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Soft modern shadow */

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Placeholder Styling */
.iti input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1;
    /* Firefox */
}

/* Hover State */
.iti input:hover {
    border-color: #d1d5db;
    background-color: #0A6A6E !important;
    transform: translateY(-1px);
}

/* Focus State */
.iti input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #0A6A6E !important;
    box-shadow: 0 0 0 4px rgba(10, 106, 110, 0.15);
    /* Soft colored ring */
    transform: translateY(-1px);
}

/* Dropdown Menu - Modern Glass Effect */
.iti__country-list {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-top: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 250px !important;
    color: #1f2937;
    z-index: 999;
}

/* Dropdown Items */
.iti__country {
    padding: 10px 15px;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.iti__country:last-child {
    border-bottom: none;
}

/* Hover on Country Item */
.iti__country.iti__highlight {
    background-color: #ecfdf5 !important;
    /* Light accent bg */
    color: #66a5ad !important;
    /* Accent text color */
}

/* Text Colors in Dropdown */
.iti__country-name {
    color: #374151 !important;
    /* Dark gray */
    font-weight: 500;
}

.iti__dial-code {
    color: #6b7280 !important;
    /* Lighter gray */
    font-weight: 400;
}



/* Flag Container Adjustment */
.iti__flag-container {
    padding: 0;
}

.iti__selected-flag {
    padding: 0 12px 0 16px;
    background-color: transparent !important;
    border-radius: 12px 0 0 12px;
    transition: background-color 0.2s;
}

.iti__selected-flag:hover {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

.iti__arrow {
    border-bottom-color: #6b7280;
}

/*--------------------------------------------------------------
# About Section V2 - Clean Tech 2025 Redesign
--------------------------------------------------------------*/
.about-v2-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about-v2-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Image Side */
.about-v2-image-wrap {
    position: relative;
    padding-right: 20px;
}

.about-v2-img-box {
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-v2-img-box:hover {
    transform: scale(1.03);
}

.about-v2-img-box img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: normal;
}

.about-v2-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: rgba(10, 106, 110, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-v2-badge .year {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}

.about-v2-badge .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Content Side */
.about-v2-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
}

.about-v2-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--heading-color);
    margin-bottom: 35px;
}

.about-v2-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #66a5ad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-v2-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 600px;
}

/* Bento Grid */
.about-v2-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.about-v2-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s ease;
    min-height: 150px;
}

.about-v2-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.about-v2-card-highlight {
    grid-column: span 2;
    background: rgba(10, 106, 110, 0.12);
    border-color: rgba(10, 106, 110, 0.2);
    flex-direction: row;
    align-items: center;
}

.about-v2-card-highlight:hover {
    background: rgba(10, 106, 110, 0.18);
    border-color: rgba(10, 106, 110, 0.3);
}

.about-v2-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
}

.about-v2-card-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.about-v2-card-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

/* CTA Button */
.about-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(10, 106, 110, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.about-v2-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s;
}

.about-v2-btn:hover::before {
    left: 100%;
}

.about-v2-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10, 106, 110, 0.35);
    color: #fff;
    background: #0d8387;
}

.about-v2-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.about-v2-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .about-v2-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .about-v2-section {
        padding: 80px 0;
    }

    .about-v2-image-wrap {
        margin-bottom: 60px;
        padding-right: 0;
    }

    .about-v2-title {
        text-align: center;
        font-size: 2.8rem;
    }

    .about-v2-tagline,
    .about-v2-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-v2-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-v2-bento {
        grid-template-columns: 1fr;
    }

    .about-v2-card-highlight {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-v2-title {
        font-size: 2.2rem;
    }

    .about-v2-badge {
        padding: 15px 25px;
        bottom: 20px;
        right: 10px;
    }

    .about-v2-badge .year {
        font-size: 1.8rem;
    }
}

.iti__arrow.iti__arrow--up {
    border-bottom-color: #6b7280;
}

/*--------------------------------------------------------------
# Hero Section V2 - 2025 Modern Design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section V2 - 2025 Modern Glass Design
--------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
}

/* Floating Elements V2 - Deep Glassmorph 2025 */
.hero-v2-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.v2-blob {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(10, 106, 110, 0.08) 100%);
    backdrop-filter: blur(20px);
    /* Deep premium frosting */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Multi-layered 3D volume using #0A6A6E */
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.1),
        inset -5px -5px 15px rgba(10, 106, 110, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    perspective: 1200px;
}

.v2-blob-1 {
    width: 180px;
    /* Reduced from 280px */
    height: 180px;
    top: -20px;
    right: 12%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: glass-volumetric-1 20s infinite ease-in-out;
}

.v2-blob-2 {
    width: 120px;
    /* Reduced from 180px */
    height: 120px;
    bottom: 18%;
    left: 15%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: glass-volumetric-2 15s infinite ease-in-out reverse;
}

.v2-blob-3 {
    width: 150px;
    /* Reduced from 220px */
    height: 150px;
    top: 35%;
    left: 42%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: glass-volumetric-3 18s infinite ease-in-out;
    opacity: 0.85;
}

.v2-blob-4 {
    width: 90px;
    /* Reduced from 140px */
    height: 90px;
    top: 15%;
    left: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: glass-volumetric-1 22s infinite ease-in-out reverse;
}

.v2-blob-5 {
    width: 170px;
    /* Reduced from 260px */
    height: 170px;
    bottom: -20px;
    right: 18%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: glass-volumetric-2 25s infinite ease-in-out;
}

.v2-blob-6 {
    width: 80px;
    /* Reduced from 130px */
    height: 80px;
    top: 55%;
    right: 15%;
    border-radius: 6px;
    transform: rotate(45deg);
    animation: glass-volumetric-3 14s infinite ease-in-out alternate;
}

@keyframes glass-volumetric-1 {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotateX(20deg) rotateY(15deg) scale(1.05);
    }
}

@keyframes glass-volumetric-2 {

    0%,
    100% {
        transform: translate(0, 0) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translate(30px, -20px) rotateX(-25deg) rotateY(25deg) scale(1.1);
    }
}

@keyframes glass-volumetric-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.1) rotateX(0deg);
    }

    50% {
        transform: translate(-25px, 30px) scale(0.9) rotateX(35deg) rotateY(-15deg);
    }
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-v2-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 60px;
}

.hero-v2-btn-primary {
    position: relative;
    padding: 15px 35px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(10, 106, 110, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-v2-btn-primary span {
    position: relative;
    z-index: 2;
}

.hero-v2-btn-primary i {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.hero-v2-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 106, 110, 0.5);
    background: #0d8387;
    color: #fff;
}

/* Shimmer Effect for Primary */
.hero-v2-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s;
}

.hero-v2-btn-primary:hover::before {
    left: 100%;
}

.hero-v2-btn-secondary {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hero-v2-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    color: #fff;
}

.hero-v2-btn-secondary i {
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.hero-v2-btn-secondary:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ============================================
   TRENDING 2026 HERO DESIGN (Ambient Minimal)
   ============================================ */

.hero-badge-trend {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0A6A6E;
    background: linear-gradient(90deg, rgba(102, 165, 173, 0.1) 0%, rgba(10, 106, 110, 0.2) 100%);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(102, 165, 173, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(102, 165, 173, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-trend::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmerBadge 4s infinite linear;
}

.hero-badge-trend:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(102, 165, 173, 0.2);
    border-color: var(--brand-cyan);
    box-shadow: 0 8px 25px rgba(10, 106, 110, 0.3);
}

@keyframes shimmerBadge {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.hero-v2-desc-trend {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 50px auto;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;

    /* Elegant text gradient */
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gravityReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Ambient Halo Lighting behind the text */
.hero-v2-desc-trend::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 106, 110, 0.25) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
    opacity: 0.6;
    animation: haloPulse 6s infinite ease-in-out;
}

@keyframes gravityReveal {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes haloPulse {

    0%,
    100% {
        opacity: 0.4;
        scale: 1;
    }

    50% {
        opacity: 0.7;
        scale: 1.2;
    }
}

@media (max-width: 768px) {
    .typing-heading {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-v2-desc-trend {
        font-size: 0.85rem !important;
        line-height: 1.4;
        padding: 0 10px;
    }

    .hero-badge-trend {
        font-size: 0.55rem !important;
        padding: 4px 12px;
    }
}

@media (max-width: 991px) {
    .hero-v2-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-v2-btn-primary,
    .hero-v2-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Testimonials Section V2 - 2025 Modern Design
--------------------------------------------------------------*/
/* Feature Cards/* card */
.testimonials-v2-card {
    height: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

.testimonials .testimonials-slider {
    width: 100%;
    overflow: visible !important;
    padding: 20px 0 80px;
}

/* Swiper Focus Effect Logic */
.testimonials .swiper-slide {
    width: 450px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: blur(8px);
    opacity: 0.3;
    transform: scale(0.85);
    z-index: 1;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .testimonials .swiper-slide {
        width: 380px;
    }
}

@media (max-width: 575px) {
    .testimonials .swiper-slide {
        width: 280px;
    }
}

.testimonials .swiper-slide-active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.testimonials .swiper-slide-active .testimonials-v2-card {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-teal);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.testimonials-v2-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}

/* rating */
.testimonials-v2-rating {
    margin-bottom: 15px;
    color: #ffcc00;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.testimonials-v2-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonials-v2-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonials-v2-quote {
    font-size: 2.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.testimonials-v2-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.testimonials-v2-avatar-wrap {
    position: relative;
    width: 65px;
    height: 65px;
}

.testimonials-v2-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonials-v2-avatar-wrap::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
    animation: ring-pulse 3s infinite;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.testimonials-v2-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.testimonials-v2-info h4 {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

/* Swiper Customization */
.testimonials-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.3s;
}

.testimonials-slider .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: var(--accent-color);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 767px) {
    .testimonials-v2-card {
        padding: 30px;
    }
}

/*--------------------------------------------------------------
# CTA Section V2 - 2025 Strategic Banner
--------------------------------------------------------------*/
.cta-v2-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Background Pulse Lines */
.cta-v2-bg-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%) rotate(-15deg);
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}

.cta-v2-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: cta-line-pulse 4s linear infinite;
    opacity: 0;
}

@keyframes cta-line-pulse {
    0% {
        transform: scaleX(0) translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: scaleX(1) translateX(0);
        opacity: 1;
    }

    100% {
        transform: scaleX(0) translateX(100%);
        opacity: 0;
    }
}

.cta-v2-banner {
    background: linear-gradient(135deg, rgba(10, 106, 110, 0.95) 0%, rgba(102, 165, 173, 0.85) 100%);
    backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px rgba(10, 106, 110, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
}

/* Decorative Elements - Creative Glass */
.cta-v2-decor {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

.cta-v2-decor-1 {
    width: 80px;
    height: 80px;
    top: -30px;
    left: 2%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: cta-float 7s ease-in-out infinite;
}

.cta-v2-decor-2 {
    width: 50px;
    height: 50px;
    bottom: -15px;
    right: 12%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: cta-float 9s ease-in-out infinite reverse;
}

.cta-v2-decor-3 {
    width: 40px;
    height: 40px;
    top: 15%;
    right: 3%;
    border-radius: 50%;
    animation: cta-float 6s ease-in-out infinite;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent);
}

.cta-v2-decor-4 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: -10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: cta-float 11s ease-in-out infinite;
    opacity: 0.5;
}

.cta-v2-decor-5 {
    width: 45px;
    height: 45px;
    top: -5%;
    right: 30%;
    transform: rotate(45deg);
    border-radius: 8px;
    animation: cta-float 8s ease-in-out infinite reverse;
}

.cta-v2-decor-6 {
    width: 30px;
    height: 30px;
    bottom: 5%;
    left: 45%;
    border-radius: 4px;
    opacity: 0.7;
    animation: cta-float 5s ease-in-out infinite;
}

@keyframes cta-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-25px) rotate(15deg) scale(1.1);
    }
}

.cta-v2-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-v2-btn-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.cta-v2-btn {
    background: #fff;
    color: var(--accent-color);
    padding: 15px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: cta-btn-pulse 2s infinite;
}

@keyframes cta-btn-pulse {
    0% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cta-v2-btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: #f8f8f8;
    color: #0d8387;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: none;
}

.cta-v2-btn i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.cta-v2-btn:hover i {
    transform: translateX(8px);
}

@media (max-width: 991px) {
    .cta-v2-title {
        font-size: 1.8rem;
    }

    .cta-v2-banner {
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {
    .cta-v2-title {
        font-size: 1.6rem;
    }

    .cta-v2-btn {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Footer Section Modern 2025 Design
--------------------------------------------------------------*/
.v2-footer {
    position: relative;
    background: rgba(4, 32, 44, 0.85) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(10, 106, 110, 0.3);
    padding: 100px 0 50px;
    /* Increased padding for larger overall size */
    overflow: hidden;
}

/* Subtle Footer Mesh Light */
.v2-footer::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 106, 110, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.v2-footer .container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    /* Slightly wider container for the larger scale */
}

/* Logo & Resident Pulse */
.v2-footer .footer-logo-wrapper {
    transition: all 0.4s ease;
    padding-right: 30px;
}

.v2-footer .footer-itpark-logo {
    max-width: 180px;
    /* Scaled up logo */
    filter: brightness(0) invert(1) opacity(0.9);
    transition: all 0.4s ease;
}

.v2-footer .footer-logo-wrapper:hover .footer-itpark-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(10, 106, 110, 0.5));
    transform: translateY(-3px);
}

.v2-footer .footer-itpark-note {
    font-size: 14px;
    /* Slightly larger */
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.v2-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 106, 110, 0.3), transparent);
    width: 100px;
    /* Scaled up divider */
    margin: 12px 0;
}

.v2-footer .footer-mini-text {
    font-size: 15px;
    /* Slightly larger */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* High-end Headings */
.v2-footer h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #fff 0%, #66a5ad 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.v2-footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0A6A6E;
    transition: width 0.4s ease;
}

.v2-footer .footer-social h4::after {
    left: auto;
    right: 0;
}

@media (max-width: 991px) {
    .v2-footer .footer-social h4::after {
        right: auto;
        left: 0;
    }
}

/* Link List Refinement */
.v2-footer .footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.v2-footer .footer-links ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.v2-footer .footer-links ul a,
.v2-footer .footer-links ul .current-page {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    /* Increased font size for links */
    transition: all 0.3s ease;
    display: inline-block;
}

.v2-footer .footer-links ul a:hover {
    color: #66a5ad;
    transform: translateX(5px);
}

.v2-footer .footer-links ul .current-page {
    color: #0A6A6E;
    font-weight: 600;
}

/* Contact Details Glass Icons */
.v2-footer .footer-info-block .icon {
    font-size: 1.1rem;
    color: #0A6A6E;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(10, 106, 110, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.v2-footer .footer-info-block div:hover .icon {
    background: rgba(10, 106, 110, 0.1);
    transform: scale(1.1);
    color: #66a5ad;
}

.v2-footer .footer-info-block p {
    font-size: 16px;
    /* Increased for better readability */
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly more vivid */
    line-height: 1.4;
}

/* Social Icon Glows */
.v2-footer .footer-social .social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.8);
}

.v2-footer .footer-social .social-links a:hover {
    background: #0A6A6E;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(10, 106, 110, 0.3);
}

.v2-footer .footer-social .social-links a i {
    font-size: 1.2rem;
}

/* Copyright Glass */
.v2-footer .copyright {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.v2-footer .sitename {
    color: #0A6A6E;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Steps Section v2 - Borderless Tech-Network 2025
--------------------------------------------------------------*/
.v2-tech-network {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 106, 110, 0.08) 0%, transparent 80%);
    position: relative;
    overflow: hidden;
}

.v2-tech-badge {
    display: inline-block;
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #a6ccd0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* Data Flow Track */
.v2-data-flow-track {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 106, 110, 0.3), transparent);
    z-index: 0;
}

.v2-flow-particle {
    position: absolute;
    top: -2px;
    left: 0;
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #0A6A6E, transparent);
    filter: blur(2px);
    animation: particleFlow 4s infinite linear;
}

@keyframes particleFlow {
    0% {
        left: -10%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

/* Tech Nodes */
.v2-tech-node {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}

.v2-node-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-node-pulse-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(10, 106, 110, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: pulseCore 3s infinite ease-in-out;
}

@keyframes pulseCore {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
        box-shadow: 0 0 0 rgba(10, 106, 110, 0);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
        box-shadow: 0 0 40px rgba(10, 106, 110, 0.4);
    }
}

.v2-floating-icon {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(10, 106, 110, 0.8);
    animation: techFloat 4s infinite ease-in-out;
}

@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.v2-node-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    background: #0A6A6E;
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(10, 106, 110, 0.6);
    letter-spacing: 1px;
}

.v2-node-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.v2-node-info p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 250px;
    margin: 0 auto;
}

/* Hover State */
.v2-tech-node:hover .v2-node-pulse-core {
    background: rgba(10, 106, 110, 0.3);
    animation-duration: 1.5s;
}

.v2-tech-node:hover .v2-floating-icon {
    color: #0A6A6E;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .v2-data-flow-track {
        display: none;
    }

    .v2-tech-node {
        margin-bottom: 40px;
    }

    .v2-node-visual {
        width: 100px;
        height: 100px;
    }

    .v2-node-pulse-core {
        width: 70px;
        height: 70px;
    }

    .v2-node-info h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .v2-footer {
        padding: 60px 0 30px;
    }

    .v2-footer h4 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .v2-footer .footer-social {
        text-align: left !important;
    }

    .v2-footer .footer-social .social-links {
        justify-content: flex-start !important;
    }
}

/*--------------------------------------------------------------
# Licenses Page - 2025 Design
--------------------------------------------------------------*/
.v2-licenses-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at 50% 50%, rgba(10, 106, 110, 0.08) 0%, transparent 80%);
}

.v2-licenses-hero h1,
.v2-licenses-cta .cta-v2-title,
.v2-metallic-text {
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffffff 30%, #a6ccd0 60%, #66a5ad 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.v2-hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.v2-licenses-gallery {
    padding: 60px 0 100px;
}

.v2-license-card {
    padding: 25px;
    background: linear-gradient(145deg, rgba(4, 32, 44, 0.8) 0%, rgba(10, 106, 110, 0.5) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 165, 173, 0.3);
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.v2-license-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 165, 173, 0.3);
    border-color: #66a5ad;
}

.v2-license-visual {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.v2-license-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(102, 165, 173, 0.05);
    border: 1px dashed rgba(102, 165, 173, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #66a5ad;
    transition: all 0.3s;
}

.v2-license-card:hover .v2-license-placeholder {
    background: rgba(102, 165, 173, 0.1);
    border-color: #66a5ad;
}

.v2-license-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.6;
}

.v2-license-placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.v2-license-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.v2-license-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.v2-licenses-cta .cta-banner {
    padding: 60px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(10, 106, 110, 0.1) 0%, rgba(4, 32, 44, 0.2) 100%);
    border: 1px solid rgba(10, 106, 110, 0.2);
}

@media (max-width: 991px) {
    .v2-footer {
        padding: 50px 0 25px;
    }

    .v2-footer .footer-social {
        text-align: left !important;
    }

    .v2-footer .social-links {
        justify-content: flex-start !important;
    }
}

/*--------------------------------------------------------------
# Sipuni Page Redesign 2025
--------------------------------------------------------------*/

/* Page Hero V2 */
.page-hero-v2 {
    position: relative;
    padding: 60px 0 100px;
    background: #0f172a;
    /* Deep dark bg base */
    overflow: hidden;
}

.breadcrumbs-v2 {
    margin-bottom: 30px;
}

.breadcrumbs-v2 ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumbs-v2 ol li+li {
    padding-left: 10px;
}

.breadcrumbs-v2 ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.4);
    content: "/";
}

.breadcrumbs-v2 a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.breadcrumbs-v2 a:hover {
    color: var(--brand-teal);
}

.breadcrumbs-v2 .current {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(102, 165, 173, 0.15);
    border: 1px solid rgba(102, 165, 173, 0.3);
    border-radius: 50px;
    color: var(--brand-teal);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .highlight {
    color: var(--brand-teal);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-box {
    position: relative;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--brand-teal);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.hero-main-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    /* animation: float-img 6s ease-in-out infinite; */
}

@keyframes float-img {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float-card 8s ease-in-out infinite;
}

.crm-card {
    top: 10%;
    left: -20px;
    animation-delay: 1s;
}

.record-card {
    bottom: 15%;
    right: -10px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--brand-teal);
}

.floating-card div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.floating-card strong {
    font-size: 1rem;
    color: #fff;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* Feature Cards V2 */
.feature-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle bg */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-v2:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-v2 .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(102, 165, 173, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-teal);
    font-size: 1.5rem;
}

.feature-card-v2 h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card-v2 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Process Steps V2 */
.process-steps-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Sidebar V2 */
.v2-sidebar .sidebar-widget {
    background: #1a2236;
    /* Darker than body */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.v2-sidebar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--brand-teal);
    color: #fff;
}

.project-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-details i {
    font-size: 1.5rem;
    color: var(--brand-teal);
    background: rgba(102, 165, 173, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.project-details div {
    display: flex;
    flex-direction: column;
}

.project-details strong {
    color: #fff;
    font-size: 0.9rem;
}

.project-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.btn-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--brand-teal), #085a5e);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 106, 110, 0.3);
    color: #fff;
}

/* Gallery Shadow */
.glightbox {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-shadow:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Pricing Glass */
.pricing-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-teal);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-glass-card .pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pricing-glass-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-glass-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-teal);
    margin: 15px 0;
}

.pricing-glass-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-glass-card .features-list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-glass-card .features-list i {
    color: var(--brand-teal);
}

.btn-pricing-glass {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    margin-top: 30px;
    text-align: center;
    display: block;
}

.btn-pricing-glass:hover {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: #fff;
}

.pricing-card.featured {
    border: 2px solid var(--brand-teal);
    background: rgba(10, 106, 110, 0.1);
}

/*--------------------------------------------------------------
# Fixed Sidebar & Modal (Hotfix)
--------------------------------------------------------------*/

/* New Sidebar Class */
.sidebar-brand-2025 .sidebar-widget {
    background: #1e293b;
    /* Slate 800 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-brand-2025 h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand-2025 h4::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--brand-teal);
    border-radius: 2px;
}

.sidebar-brand-2025 .sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-brand-2025 .sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.sidebar-brand-2025 .sidebar-menu a:hover,
.sidebar-brand-2025 .sidebar-menu a.active {
    background: var(--brand-teal);
    color: #fff;
    padding-left: 20px;
}

.sidebar-brand-2025 .project-details li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sidebar-brand-2025 .project-details i {
    font-size: 1.2rem;
    color: var(--brand-teal);
    background: rgba(10, 106, 110, 0.2);
    padding: 8px;
    border-radius: 8px;
}

.sidebar-brand-2025 .project-details strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

.sidebar-brand-2025 .project-details span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.sidebar-brand-2025 .cta-content {
    text-align: center;
}

.sidebar-brand-2025 .cta-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}


.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-content-wrapper {
    padding: 40px 30px;
}

.modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.modal-header p {
    color: #94a3b8;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-form .input-wrapper {
    position: relative;
}

.modal-form .input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.modal-form input[type="text"],
.modal-form input[type="tel"] {
    width: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.modal-form .input-wrapper input {
    padding-left: 45px;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--brand-teal);
}

.btn-submit-modal {
    width: 100%;
    background: var(--brand-teal);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-submit-modal:hover {
    background: #0d8387;
    transform: translateY(-2px);
}

.modal-disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.modal-disclaimer a {
    color: var(--brand-teal);
    text-decoration: underline;
}

/* Missing Button Style for Hero */
.btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand-teal);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(10, 106, 110, 0.3);
    text-decoration: none;
    border: none;
}

.btn-primary-v2:hover {
    background: #0d8387;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 106, 110, 0.4);
    color: #fff;
}

.btn-primary-v2 i {
    font-size: 1.2rem;
}

/* Enhanced Modal Effects */
.modal-overlay {
    backdrop-filter: blur(12px) saturate(180%);
    background: rgba(15, 23, 42, 0.8);
}

.modal-container,
.modal-window {
    animation: modal-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #1e293b;
    width: 100%;
    max-width: 480px;
    margin: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

@keyframes modal-enter {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Sidebar Hotfix for Sticky */
.sidebar-brand-2025 {
    position: sticky;
    top: 100px;
    z-index: 10;
}

@media (max-width: 991px) {
    .sidebar-brand-2025 {
        position: static;
        margin-top: 40px;
    }
}