/* ============================================
           REUSABLE BANNER SECTION STYLES
        ============================================ */

.banner-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.banner-content {
    text-align: left;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.banner-content.text-center {
    text-align: center;
}

/* ============================================
           BREADCRUMB STYLES
        ============================================ */

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: var(--font-size-14);
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.breadcrumb-nav .separator {
    color: var(--text-light);
    opacity: 0.6;
    font-size: var(--font-size-12);
}

.breadcrumb-nav .current {
    color: var(--text-white);
    font-size: var(--font-size-14);
    font-weight: 600;
}

/* ============================================
           BANNER TAG & CONTENT
        ============================================ */

.banner-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(21, 105, 253, 0.2);
    border-left: 3px solid var(--primary-color);
    color: var(--text-white);
    font-size: var(--font-size-16);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-54);
    font-weight: var(--heading-xl-weight);
    line-height: 62px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.banner-title .highlight {
    color: var(--primary-color);
}

.banner-description {
    font-family: var(--mulish);
    font-size: var(--text-lg);
    line-height: 28px;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s backwards;
}

.banner-buttons.justify-center {
    justify-content: center;
}

/* Banner Height Variants */
.banner-fullheight {
    min-height: 100vh;
}

.banner-large {
    min-height: 80vh;
}

.banner-medium {
    min-height: 60vh;
}

.banner-small {
    min-height: 40vh;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-section {
        min-height: 50vh;
    }

    .banner-title {
        font-size: var(--font-size-44);
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 45vh;
        padding: 5rem 2rem 3rem;
    }

    .banner-title {
        font-size: var(--font-size-36);
        line-height: 44px;
    }

    .banner-description {
        font-size: var(--font-size-16);
    }

    .banner-buttons {
        gap: 1rem;
    }

    .breadcrumb-nav {
        font-size: var(--font-size-12);
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 40vh;
    }

    .banner-title {
        font-size: var(--font-size-30);
        line-height: 38px;
    }

    .banner-tag {
        font-size: var(--font-size-14);
        padding: 0.4rem 1.2rem;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav .current {
        font-size: var(--font-size-12);
    }
}

/* Equal height for all slides */
.swiper-slide {
    height: auto;
    display: flex;
}

/* Expertise Card Styles */
.expertise-card {
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    box-shadow: 0 12px 40px rgba(21, 105, 253, 0.15);
    transform: translateY(-5px);
}

.card-color-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    position: relative;
}

.card-color-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 21px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.expertise-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.expertise-icon {
    font-size: 32px;
    color: #FFFFFF;
}

.expertise-title {
    font-size: var(--font-size-24);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.card-content-section {
    padding: 2.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expertise-description {
    font-size: var(--font-size-15);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.expertise-subtitle {
    font-size: var(--font-size-15);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    font-size: var(--font-size-15);
    color: var(--text-secondary);
    line-height: 2;
    padding-left: 2rem;
    position: relative;
}

.expertise-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 14px;
}

.expertise-swiper {
    padding: 10px 0;
}


/* Hide Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .expertise-section {
        padding: 60px 0;
    }


}

@media (max-width: 768px) {
    .expertise-section {
        padding: 40px 0;
    }


    .card-color-section {
        padding: 1.5rem;
    }

    .card-content-section {
        padding: 2rem 1.5rem 1.5rem;
    }

    .expertise-icon-box {
        width: 60px;
        height: 60px;
    }

    .expertise-icon {
        font-size: 28px;
    }

    .expertise-title {
        font-size: var(--font-size-20);
    }

    .expertise-description {
        font-size: 14px;
    }

    .expertise-subtitle {
        font-size: 14px;
    }

    .expertise-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-color-section {
        padding: 1.25rem;
    }

    .card-content-section {
        padding: 1.75rem 1.25rem 1.25rem;
    }
}

/* =====================================================
           PILL SHAPED BUTTONS
        ===================================================== */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tool-item {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 105, 253, 0.3);
}

.tool-icon {
    width: 45px;
    height: 45px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-item:hover .tool-icon {
    background: rgba(255, 255, 255, 0.3);
}

.tool-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.tool-item:hover .tool-icon img {
    filter: brightness(0) invert(1);
}

.tool-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.tool-item:hover .tool-name {
    color: #FFFFFF;
}

.design-section {
    background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}

/* =====================================================
           RESPONSIVE STYLES
        ===================================================== */
@media (max-width: 768px) {

    .section-title {
        font-size: 28px;
    }

    .tools-grid {
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {


    .section-title {
        font-size: 24px;
    }

    .tool-name {
        font-size: 14px;
    }
}

/* Version 5: Icon Top with Shadow */
.cards-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
}

.card-v5 {
    background: white;
    padding: 30px 20px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card-v5:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(21, 105, 253, 0.2);
}

.card-v5 .icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 15px;
    color: var(--primary-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(21, 105, 253, 0.3);
}

.card-v5 h3 {
    font-size: var(--font-size-16);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-v5 p {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-v5 {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .cards-v5 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
           DESIGN CTA SECTION
        ============================================ */

.design-cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2d47 100%);
    position: relative;
    overflow: hidden;
}

.design-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.design-cta-wrapper {
    position: relative;
    z-index: 1;
}

.design-cta-content {
    text-align: center;
    margin-bottom: 40px;
}

.design-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: var(--font-size-16);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(21, 105, 253, 0.3);
}

.btn-cta:hover {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 105, 253, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.design-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.design-service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.design-service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(21, 105, 253, 0.3);
    transition: all 0.3s ease;
}

.design-service-card:hover .service-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(21, 105, 253, 0.5);
}

.service-icon-wrapper i {
    font-size: var(--font-size-26);
    color: var(--text-white);
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    font-size: var(--font-size-18);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.service-card-content p {
    font-size: var(--font-size-14);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
           RESPONSIVE STYLES
        ============================================ */

@media (max-width: 991px) {
    :root {
        --heading-lg: var(--font-size-36);
        --section-padding: 60px;
    }

    .design-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --heading-lg: var(--font-size-30);
        --text-lg: var(--font-size-16);
        --section-padding: 50px;
    }

    .design-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .design-service-card {
        padding: 20px;
    }

    .service-icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .service-icon-wrapper i {
        font-size: var(--font-size-22);
    }
}

@media (max-width: 480px) {
    :root {
        --heading-lg: var(--font-size-26);
        --section-padding: 40px;
    }

    .section-tag {
        font-size: var(--font-size-14);
        padding: 0.4rem 1.2rem;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: var(--font-size-14);
    }

    .design-service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .service-icon-wrapper i {
        font-size: var(--font-size-20);
    }

    .service-card-content h3 {
        font-size: var(--font-size-16);
    }

    .service-card-content p {
        font-size: var(--font-size-12);
    }
}

/* ============================================
           DESIGN PROCESS SECTION
        ============================================ */

.our-process-design-process-section {
    background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.our-process-design-process-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 105, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.our-process-design-process-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(11, 60, 93, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.our-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 20px auto 0;
}

.our-process-item {
    position: relative;
    margin-bottom: 20px;
}

.our-process-item:last-child {
    margin-bottom: 0;
}

.our-process-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.our-process-item:nth-child(even) .our-process-content {
    flex-direction: row-reverse;
}

.our-process-step {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.our-process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-32);
    font-weight: 700;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(21, 105, 253, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.our-process-item:hover .our-process-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(21, 105, 253, 0.4);
}

.our-process-number::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: our-process-pulse 2s infinite;
}

@keyframes our-process-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.our-process-line {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.our-process-item:nth-child(odd) .our-process-line {
    left: 100%;
    margin-left: 10px;
}

.our-process-item:nth-child(even) .our-process-line {
    right: 100%;
    margin-right: 10px;
}

.our-process-item:last-child .our-process-line {
    left: 100%;
    margin-left: 10px;
}

.our-process-details {
    flex: 1;
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    transition: all 0.4s ease;
}

.our-process-item:hover .our-process-details {
    border-left: 4px solid var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.our-process-title {
    font-size: var(--font-size-22);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-subtitle {
    font-size: var(--text-md);
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.75rem;
    letter-spacing: 0.5px;
}

.our-process-description {
    font-size: var(--text-md);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.our-process-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.our-process-points li {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    padding: 6px 16px;
    color: var(--primary-color);
    font-weight: 500;
    background: rgb(21 105 252 / 6%);
    border-radius: 20px;
    font-size: var(--font-size-14);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(21, 105, 253, 0.1);
}






.our-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
           RESPONSIVE STYLES
        ============================================ */

@media (max-width: 991px) {
    .our-process-timeline::before {
        display: none;
    }

    .our-process-content {
        gap: 1.5rem;
    }

    .our-process-item:nth-child(even) .our-process-content {
        flex-direction: row;
    }

    .our-process-number {
        width: 70px;
        height: 70px;
        font-size: var(--font-size-28);
    }

    .our-process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .our-process-number {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-24);
    }

    .our-process-details {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .our-process-content {
        gap: 0px;
    }

    .our-process-number {
        display: none;
    }

    .our-process-details {
        padding: 1.25rem 1.5rem;
    }

    .our-process-title {
        font-size: var(--font-size-18);
    }

    .our-process-description {
        font-size: var(--font-size-14);
    }
}

/* ============================================
           ANIMATIONS
        ============================================ */

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].our-process-aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].our-process-aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].our-process-aos-animate {
    opacity: 1;
    transform: translateX(0);
}


/* Stats/Metrics Cards Specific Styles */
.design-5 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--card-gap);
}

.design-5 .stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Hover Shine Effect */
.design-5 .stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -27%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 30%, rgba(21, 105, 253, 0.2), transparent 70%);
    transform: rotate(45deg);
    transition: left 0.8s ease;
}

.design-5 .stat-card:hover::after {
    left: 90%;
}

.design-5 .stat-card:hover {
    border-color: rgba(21, 105, 253, 0.3);
}

.design-5 .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 105, 253, 0.1), rgba(11, 60, 93, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s ease;
    position: relative;
}

.design-5 .stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 30px rgba(21, 105, 253, 0.4);
}

.design-5 .stat-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.design-5 .stat-card:hover .stat-icon i {
    color: white;
}

.design-5 .stat-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.design-5 .stat-card:hover .stat-title {
    color: var(--primary-color);
    transform: scale(1.05);
}

.design-5 .stat-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.design-5 .stat-card:hover .stat-description {
    color: var(--text-dark);
}

/* Section Description */
.design-5 .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

.design-5 .section-footer {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(21, 105, 253, 0.05), rgba(11, 60, 93, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.design-5 .section-footer p {
    font-size: var(--text-lg);
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.design-5 .section-footer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .design-5 .stats-grid {
        grid-template-columns: 1fr;
    }

    .design-5 .stat-icon {
        width: 60px;
        height: 60px;
    }

    .design-5 .stat-icon i {
        font-size: 28px;
    }
}

/* Two Column Split Layout Specific Styles */
.design-3 .split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.design-3 .content-side h3 {
    font-size: var(--heading-md);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.design-3 .content-side p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.design-3 .benefits-side {
    background: linear-gradient(135deg, rgba(21, 105, 253, 0.05), rgba(11, 60, 93, 0.05));
    padding: 50px;
    border-radius: 16px;
    position: relative;
}

.design-3 .benefits-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
}

.design-3 .benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.design-3 .benefit-point:hover {
    transform: translateX(10px);
}

.design-3 .benefit-point i {
    color: var(--primary-color);
    font-size: var(--font-size-24);
    flex-shrink: 0;
    margin-top: 3px;
}

.design-3 .benefit-point span {
    font-size: var(--font-size-16);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .design-3 .split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .design-3 .benefits-side {
        padding: 35px 25px;
    }
}

/* Horizontal Card Layout for Why Cyber Security Section */
.cards-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.card-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #1569FD 0%, #0B3C5D 50%, #1569FD 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.card-horizontal:hover::before {
    opacity: 1;
}

.card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(21, 105, 253, 0.15);
}

.card-horizontal .icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f0fe 0%, #d3e4fd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-horizontal:hover .icon-wrapper {
    background: linear-gradient(135deg, #1569FD 0%, #0B3C5D 100%);
}

.card-horizontal .icon-wrapper i {
    font-size: 28px;
    color: #1569FD;
    transition: all 0.3s ease;
}

.card-horizontal:hover .icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

.card-horizontal .card-content {
    flex: 1;
}

.card-horizontal .card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.card-horizontal .card-content p {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-horizontal {
        gap: 16px;
    }

    .card-horizontal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .card-horizontal .icon-wrapper {
        width: 55px;
        height: 55px;
    }

    .card-horizontal .icon-wrapper i {
        font-size: 24px;
    }

    .card-horizontal .card-content h3 {
        font-size: 18px;
    }

    .card-horizontal .card-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cards-horizontal {
        gap: 14px;
    }

    .card-horizontal {
        padding: 18px;
    }

    .card-horizontal .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .card-horizontal .icon-wrapper i {
        font-size: 22px;
    }

    .card-horizontal .card-content h3 {
        font-size: 17px;
    }

    .card-horizontal .card-content p {
        font-size: 13.5px;
    }
}