/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Section */
.main-header {
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    background: linear-gradient(90deg, rgb(216 212 254) 7%, rgb(255 255 255) 41%, rgb(254 254 254) 55%, rgb(237 236 255) 97%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo svg {
    display: block;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #032677;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 16px;
    color: #032677;
}

.contact-item:hover {
    color: #ff9500;
}

.contact-item:hover i {
    color: #ff9500;
}

@media (max-width: 767px) {
    .main-header {
        padding: 15px 0;
    }
    
    .header-logo svg {
        width: 140px;
        height: 24px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .contact-item i {
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-sec-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    /* height: 150px; */
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 100%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}



.banner-thanks.hero-section {
    background: url('../images/hero-sec-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 30vh;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.banner-thanks.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.banner-thanks.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    /* height: 150px; */
    background: #ffffff;
    clip-path: ellipse(100% 100% at 50% 100%);
}

.banner-thanks.hero-section .container {
    position: relative;
    z-index: 1;
}


/* Hero Content */
.hero-content {
    color: #ffffff;
    padding-right: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 14px;
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    color: #ffffff;
    font-weight: 500;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #ff9500;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.text-orange {
    color: #ff9500;
}

.underline-text {
    text-decoration: underline;
    text-decoration-color: #ff9500;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.text-gray {
    color: #b8c5d6;
    font-size: 44px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #d1dce8;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    background-size: 200% 200%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 30px;
    border-radius: 12px;
    min-width: 140px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards, waveBackground 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(
        135deg,
        rgba(255, 149, 0, 0.15) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 149, 0, 0.15) 100%
    );
    background-size: 200% 200%;
    animation: fadeInUp 0.6s ease-out forwards, waveBackground 2s ease-in-out infinite;
    border-color: rgba(255, 149, 0, 0.4);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveBackground {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-value {
    font-size:20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
}

.stat-label {
    font-size: 13px;
    color: #b8c5d6;
    font-weight: 500;
}

/* Hero Form Card */
.hero-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin-left: auto;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-icon {
    background: #0a1f44;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon i {
    color: #ffffff;
    font-size: 24px;
}

.form-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #02133C;
    margin-bottom: 0px;
}

.form-title p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Form Styles */
.audit-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #02133C;
    margin-bottom: 8px;
}

.audit-form .form-control,
.audit-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.audit-form .form-control:focus,
.audit-form .form-select:focus {
    border-color: #ff9500;
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.audit-form .form-control::placeholder {
    color: #999;
}

.btn-submit {
    width: 100%;
    background: #ff9500;
    color: #02133C;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #e68600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .text-gray {
        font-size: 36px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-form-card {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    
    .text-gray {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stat-item {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .hero-form-card {
        padding: 25px;
    }
    
    .form-title h3 {
        font-size: 18px;
    }
}

/* Section Animation */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for child elements */
.section-animate.visible > .container > * {
    animation: fadeInUpChild 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.section-animate.visible > .container > *:nth-child(1) {
    animation-delay: 0.1s;
}

.section-animate.visible > .container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.section-animate.visible > .container > *:nth-child(3) {
    animation-delay: 0.3s;
}

.section-animate.visible > .container > *:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUpChild {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: #ffffff;
}

.problem-content {
    padding-right: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problem-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc3545;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    background: #ffe5e9;
    padding: 10px 20px;
    border-radius: 50px;
}

.section-badge i {
    font-size: 18px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #02133C;
    margin-bottom: 25px;
}

.text-blue {
    color: #0d47a1;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: #ff9500;
    border-radius: 2px;
}

/* Problem Cards */
.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ff9500 0%, #0d47a1 100%);
    transition: height 0.4s ease;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background: linear-gradient(90deg, #ff9500, #a8c3eb, #cfba9d); */
    background-size: 200% 100%;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    animation: none;
    transition: opacity 0.3s ease;
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.problem-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.problem-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.problem-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.problem-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: transparent;
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card:hover::after {
    opacity: 1;
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #f5f7fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 24px;
    color: #0d47a1;
    transition: all 0.4s ease;
}

.problem-card:hover .card-icon {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    box-shadow: 0 0 20px rgba(13, 71, 161, 0.5),
                0 0 40px rgba(13, 71, 161, 0.3),
                0 0 60px rgba(13, 71, 161, 0.2);
    transform: scale(1.1);
}

.problem-card:hover .card-icon i {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #02133C  ;
    margin-bottom: 8px;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.card-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff9500;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #999;
    margin-top: 0px;
    /* max-width: 90px; */
}

/* Responsive for Problem Section */
@media (max-width: 991px) {
    .problem-section {
        padding: 60px 0;
    }
    
    .problem-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .divider-line {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
    
    .problem-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px;
    }
    
    .card-stat {
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }
    
    .stat-label {
        max-width: 100%;
    }
}

/* Audit Section */
.audit-section {
    padding: 60px 0;
    background: url('../images/audit-section-bg.webp') center center/cover no-repeat;
}

.audit-badge {
    display: inline-block;
    color: #ff9500;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.audit-title {
    font-size: 48px;
    font-weight: 700;
    color: #02133C;
    line-height: 1.2;
    margin-bottom: 20px;
}

.audit-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}

/* Audit Menu */
.audit-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-menu-item {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.audit-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F9A91F 0%, #032677 100%);
    transition: height 0.4s ease;
}

.audit-menu-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /* background: linear-gradient(90deg, #eeedea, #aaccee, #e7e6e2); */
    background-size: 200% 100%;
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    animation: none;
    transition: opacity 0.3s ease;
}

.audit-menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.audit-menu-item:nth-child(1).visible {
    transition-delay: 0.1s;
}

.audit-menu-item:nth-child(2).visible {
    transition-delay: 0.2s;
}

.audit-menu-item:nth-child(3).visible {
    transition-delay: 0.3s;
}

.audit-menu-item:nth-child(4).visible {
    transition-delay: 0.4s;
}

.audit-menu-item:nth-child(5).visible {
    transition-delay: 0.5s;
}

.audit-menu-item:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(3, 38, 119, 0.15);
    transform: translateY(-5px);
}

.audit-menu-item:hover::before {
    height: 100%;
}

.audit-menu-item:hover::after {
    opacity: 1;
    animation: borderRun 2s linear infinite;
}

.audit-menu-item.active {
    background: #FFFFFF;
    border: 2px solid #e8e8e8;
}

.audit-menu-item.active .menu-icon,
.audit-menu-item.active .menu-content,
.audit-menu-item.active .menu-arrow {
    color: #ffffff;
}

.menu-icon {
    width: 40px;
    height: 40px;
    background: #E0E5EE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #032677;
    transition: all 0.4s ease;
}

.menu-icon svg path {
    stroke: #032677 !important;
    transition: stroke 0.4s ease;
}

.audit-menu-item:hover .menu-icon {
    background: linear-gradient(135deg, #032677 0%, #0d47a1 100%);
    box-shadow: 0 0 20px rgba(3, 38, 119, 0.5),
                0 0 40px rgba(3, 38, 119, 0.3),
                0 0 60px rgba(3, 38, 119, 0.2);
    transform: scale(1.1);
}

.audit-menu-item:hover .menu-icon svg path {
    stroke: #ffffff !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.audit-menu-item.active .menu-icon {
    background: #032677;
    color: #ffffff;
}

.audit-menu-item.active .menu-icon svg path {
    stroke: #ffffff !important;
}

.menu-content {
    flex: 1;
}

.menu-label {
    font-size: 12px;
    font-weight: 700;
    color: #F9A91F;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.audit-menu-item.active .menu-label {
    color: #F9A91F;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
    color: #02133C;
}

.audit-menu-item.active .menu-title {
    color: #02133C;
}

.menu-arrow {
    color: #999;
    transition: all 0.3s ease;
}

.audit-menu-item.active .menu-arrow {
    color: #02133C;
}

/* Audit Details Card */
.audit-details-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 40px 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.watermark-number {
    position: absolute !important;
    top: 0px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(3, 38, 119, 0.03);
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    text-align: right;
}

.audit-details-card > * {
    position: relative;
    z-index: 1;
}

.audit-details-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 0px;
    /* border-bottom: 1px solid #e8e8e8; */
}

.details-icon {
    width: 50px;
    height: 50px;
    background: #032677;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.details-title {
    flex: 1;
}

.details-label {
    font-size: 12px;
    font-weight: 700;
    color: #ff9500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.details-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #02133C;
    margin: 0;
}

.audit-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.audit-details-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 0 0 auto;
    width: 300px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-number {
    width: 32px;
    height: 32px;
    background: #fff5e6;
    color: #ff9500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.audit-details-card:hover .detail-item:nth-child(1) .detail-number {
    animation: glowPulse 0.6s ease-out 0.1s;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                0 0 40px rgba(255, 149, 0, 0.4),
                0 0 60px rgba(255, 149, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.audit-details-card:hover .detail-item:nth-child(2) .detail-number {
    animation: glowPulse 0.6s ease-out 0.2s;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                0 0 40px rgba(255, 149, 0, 0.4),
                0 0 60px rgba(255, 149, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.audit-details-card:hover .detail-item:nth-child(3) .detail-number {
    animation: glowPulse 0.6s ease-out 0.3s;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                0 0 40px rgba(255, 149, 0, 0.4),
                0 0 60px rgba(255, 149, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.audit-details-card:hover .detail-item:nth-child(4) .detail-number {
    animation: glowPulse 0.6s ease-out 0.4s;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                0 0 40px rgba(255, 149, 0, 0.4),
                0 0 60px rgba(255, 149, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.audit-details-card:hover .detail-item:nth-child(5) .detail-number {
    animation: glowPulse 0.6s ease-out 0.5s;
    background: linear-gradient(135deg, #ff9500 0%, #ffb347 100%);
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                0 0 40px rgba(255, 149, 0, 0.4),
                0 0 60px rgba(255, 149, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 149, 0, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 149, 0, 0.8),
                    0 0 60px rgba(255, 149, 0, 0.6),
                    0 0 90px rgba(255, 149, 0, 0.4);
        transform: scale(1.15);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 149, 0, 0.6),
                    0 0 40px rgba(255, 149, 0, 0.4),
                    0 0 60px rgba(255, 149, 0, 0.2);
        transform: scale(1.1);
    }
}

@keyframes timelineFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 200px;
    }
}

.detail-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.audit-image {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}

.audit-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive for Audit Section */
@media (max-width: 991px) {
    .audit-section {
        padding: 60px 0;
    }
    
    .audit-title {
        font-size: 36px;
    }
    
    .audit-menu {
        margin-bottom: 0;
    }
    
    .audit-menu-item {
        margin-bottom: 15px;
    }
    
    .audit-menu-item.active {
        margin-bottom: 0;
    }
    
    .audit-details-card {
        padding: 30px;
        margin-bottom: 15px;
        display: none;
    }
    
    .audit-details-card.mobile-active {
        display: block;
    }
    
    .audit-content-wrapper {
        flex-direction: column;
    }
    
    .audit-details-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .audit-title {
        font-size: 28px;
    }
    
    .audit-subtitle {
        font-size: 14px;
    }
    
    .audit-menu {
        margin-bottom: 0;
    }
    
    .audit-menu-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .audit-menu-item.active {
        margin-bottom: 0;
    }
    
    .menu-title {
        font-size: 14px;
    }
    
    .audit-details-card {
        padding: 20px;
        margin-bottom: 15px;
        display: none;
    }
    
    .audit-details-card.mobile-active {
        display: block;
    }
    
    .details-title h3 {
        font-size: 20px;
    }
    
    .audit-details-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 0;
    background: #ffffff;
}

.works-badge {
    display: inline-block;
    color: #ff9500;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.works-title {
    font-size: 48px;
    font-weight: 700;
    color: #02133C;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dotted #02133C;
    transform: translateX(-50%);
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        #ff9500 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 100% 200px;
    animation: timelineFlow 3s linear infinite;
    opacity: 0.8;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 100px);
    position: relative;
}

.timeline-item.left::before {
    content: '';
    position: absolute;
    right: calc(50% - -50px);
    top: 50%;
    width: 50px;
    height: 2px;
    border-top: 2px dotted #032677;
    transform: translateY(-50%);
}



.timeline-item.left .timeline-card {
    text-align: right;
}

.timeline-item.left .timeline-card {
    flex-direction: row-reverse;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 100px);
    position: relative;
}

.timeline-item.right::before {
    content: '';
    position: absolute;
    left: calc(50% - -50px);
    top: 50%;
    width: 50px;
    height: 2px;
    border-top: 2px dotted #032677;
    transform: translateY(-50%);
}

.timeline-number {
    position: absolute;
    left: calc(50% - 50px);
    transform: translateX(0);
    width: 50px;
    height: 50px;
    background: #032677;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    /* box-shadow: 0 0 0 8px #ffffff; */
}

.timeline-item.left .timeline-number {
    left: calc(50% - 55px);
}

.timeline-item.right .timeline-number {
    left: calc(50% + 5px);
}

.timeline-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 450px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(90deg, #ff9500, #032677, #ff9500);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    z-index: -1;
    animation: none;
    transition: opacity 0.3s ease;
}

.timeline-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1) .timeline-card.visible {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) .timeline-card.visible {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(3) .timeline-card.visible {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(4) .timeline-card.visible {
    transition-delay: 0.4s;
}

.timeline-item:nth-child(5) .timeline-card.visible {
    transition-delay: 0.5s;
}

.timeline-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(3, 38, 119, 0.1);
    transform: translateY(-5px);
}

.timeline-card:hover::before {
    opacity: 1;
    animation: borderRun 2s linear infinite;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #fff5e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-step {
    font-size: 12px;
    font-weight: 700;
    color: #ff9500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.timeline-heading {
    font-size: 20px;
    font-weight: 700;
    color: #02133C;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.btn-cta {
    background: #ff9500;
    color: #02133C;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: #e68600;
    color: #02133C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(5px);
}

/* Responsive for How It Works Section */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .works-title {
        font-size: 36px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item.left::before,
    .timeline-item.right::before {
        display: none;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 90px;
        padding-right: 0;
    }
    
    .timeline-number {
        left: 5px;
        transform: translateX(0);
    }
    
    .timeline-item.left .timeline-number,
    .timeline-item.right .timeline-number {
        left: 5px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .works-title {
        font-size: 28px;
    }
    
    .timeline-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .timeline-heading {
        font-size: 18px;
    }
    
    .timeline-text {
        font-size: 14px;
    }
    
    .btn-cta {
        padding: 16px 30px;
        font-size: 14px;
    }
}

/* Proven Results Section */
.results-section {
    padding: 60px 0;
    background: url('../images/results-section-bg.webp') left center/cover no-repeat;
}

.results-badge {
    display: inline-block;
    color: #ff9500;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.results-title {
    font-size: 48px;
    font-weight: 700;
    color: #02133C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.results-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Case Study Cards */
.case-study-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0 0 0 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff9500, #032677, #ff9500);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.case-study-card > * {
    position: relative;
    z-index: 1;
}

.case-study-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.case-study-card:hover::before {
    opacity: 1;
    animation: borderRun 3s linear infinite;
}

.case-study-card:last-child {
    margin-bottom: 0;
}

.case-content {
    padding: 20px 0;
}

.case-study-card.reverse{
    padding: 0 40px 0 0px;
}

.case-study-card.reverse .case-content {
    padding-left: 0px;
}

.case-label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
    /* text-transform: uppercase; */
}

.case-study-card:hover .case-label {
    color: #ff9500;
    text-shadow: 0 0 10px rgba(255, 149, 0, 0.5),
                 0 0 20px rgba(255, 149, 0, 0.3),
                 0 0 30px rgba(255, 149, 0, 0.2);
    transform: translateX(5px);
}

.case-result {
    font-size: 36px;
    font-weight: 700;
    color: #032677;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.case-study-card:hover .case-result {
    color: #ff9500;
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(255, 149, 0, 0.2);
}

.case-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    /* font-style: italic; */
}

.case-study-card:hover .case-description {
    color: #111;
    transform: translateX(3px);
}

.case-author {
    border-top: 2px solid #e8e8e8;
    padding-top: 20px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #02133C;
    margin-bottom: 5px;
}

.author-title {
    font-size: 12px;
    font-weight: 700;
    color: #062074;
    letter-spacing: 0.5px;
}

.case-image {
    border-radius: 16px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Responsive for Results Section */
@media (max-width: 991px) {
    .results-section {
        padding: 60px 0;
    }
    
    .results-title {
        font-size: 36px;
    }
    
    .case-study-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .case-result {
        font-size: 28px;
    }
    
    .case-study-card.reverse .case-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .case-content {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .results-title {
        font-size: 28px;
    }
    
    .results-subtitle {
        font-size: 14px;
    }
    
    .case-study-card {
        padding: 20px;
    }
    .case-study-card.reverse{
        padding: 20px;
    }
    .case-result {
        font-size: 24px;
    }
    
    .case-description {
        font-size: 14px;
    }
}

/* Who Should Get This Audit Section */
.who-section {
    padding: 60px 0;
    background: url('../images/audit-section-bg.webp') center center/cover no-repeat;
}

.who-title {
    font-size: 48px;
    font-weight: 700;
    color: #02133C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.who-subtitle {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Checklist */
.checklist {
    padding: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.checklist-item:hover {
    background: rgba(255, 149, 0, 0.05);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.1);
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.checklist-item:hover .check-icon {
    transform: scale(1.15) rotate(5deg);
}

.check-icon svg {
    display: block;
    transition: all 0.3s ease;
}

.checklist-item:hover .check-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 149, 0, 0.6));
}

.check-text {
    font-size: 18px;
    color: #02133C;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.checklist-item:hover .check-text {
    color: #ff9500;
}

.check-text .highlight {
    font-weight: 700;
    color: #032677;
    transition: all 0.3s ease;
}

.checklist-item:hover .check-text .highlight {
    color: #ff9500;
    text-shadow: 0 0 10px rgba(255, 149, 0, 0.3);
}

.who-image {
    border-radius: 20px;
    overflow: hidden;
}

.who-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive for Who Section */
@media (max-width: 991px) {
    .who-section {
        padding: 60px 0;
    }
    
    .who-title {
        font-size: 36px;
    }
    
    .who-image {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .who-title {
        font-size: 28px;
    }
    
    .who-subtitle {
        font-size: 14px;
    }
    
    .check-text {
        font-size: 16px;
    }
    
    .checklist-item {
        gap: 15px;
        margin-bottom: 20px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 0;
    background: url('../images/final-cta-section-bg.webp') center center/cover no-repeat;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    padding-right: 40px;
}

.cta-badge {
    display: inline-block;
    color: #ff9500;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-title .highlight-orange {
    color: #ff9500;
}

.btn-cta-orange {
    background: #ff9500;
    color: #02133C;
    border: none;
    padding: 16px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-orange:hover {
    background: #e68600;
    color: #02133C;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
}

.btn-cta-orange svg {
    transition: transform 0.3s ease;
}

.btn-cta-orange:hover svg {
    transform: translateX(5px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(90deg, #ff9500, #032677, #ff9500);
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-cards .stat-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.stat-cards .stat-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.stat-cards .stat-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.stat-card:hover::before {
    opacity: 1;
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon svg {
    display: block;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Responsive for Final CTA Section */
@media (max-width: 991px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .btn-cta-orange {
        padding: 16px 30px;
        font-size: 14px;
    }
}

.help-block.with-errors{
    color: red;
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #001a4d 0%, #032677 50%, #001a4d 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 38, 119, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 149, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta-badge svg {
    flex-shrink: 0;
}

.cta-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-title .text-orange {
    color: #ff9500;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff9500;
    color: #02133C;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.3);
}

.btn-cta:hover {
    background: #ffb347;
    color: #02133C;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 149, 0, 0.4);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Responsive for CTA Section */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cta-card {
        padding: 40px 25px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .cta-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(90deg, #032677 0%, #001a4d 50%, #032677 100%);
    padding: 25px 0;
}

.footer-content {
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 767px) {
    .footer-section {
        padding: 20px 0;
    }
    
    .copyright-text {
        font-size: 13px;
    }

    .card-icon {
    width: 50px;
    height: 50px;
    background: #f5f7fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    margin: 0 auto;
}

    .final-cta-section {
        padding: 60px 0;
        text-align: center;
    }

}