
body {
    margin: 0;
}


.abthro-about-section {
    padding: 10px 0 0px;
}

@media (min-width: 1024px) {
    .abthro-about-section {
        padding: 20px 0 0px;
    }
}

/* Hero Header */
.abthro-hero-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10px 60px 0px;
    margin-bottom: 30px;
    align-items: start;
}

@media (min-width: 1024px) {
    .abthro-hero-header {
        grid-template-columns: 1fr 1fr;
    }
}

.abthro-hero-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abthro-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #006591;
}

.abthro-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 768px) {
    .abthro-hero-title {
        font-size: 35px;
    }
}

.abthro-btn-primary {
    display: inline-block;
    background-color: #006591;
    color: #ffffff;
    padding: 12px 48px;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .abthro-btn-primary:hover {
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .abthro-btn-primary:active {
        transform: scale(0.95);
    }

.abthro-hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abthro-hero-description {
    font-size: 17px;
    color: #45464d;
    line-height: 1.6;
}

/* Bento Grid */
.abthro-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 10px 60px 0px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .abthro-bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.abthro-visual-element {
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .abthro-visual-element {
        grid-column: span 7;
    }
}

.abthro-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.abthro-visual-element:hover .abthro-visual-image {
    transform: scale(1.05);
}

.abthro-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 27, 46, 0.6), transparent);
}

.abthro-pillars-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .abthro-pillars-col {
        grid-column: span 5;
    }
}

.abthro-pillar-card {
    padding: 32px;
    background-color: #eff4ff;
    border: 1px solid #c6c6cd;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

    .abthro-pillar-card:hover {
        transform: translateY(-4px);
        border-top: 2px solid #006591;
        box-shadow: 0 12px 24px -10px rgba(0, 101, 145, 0.15);
    }

.abthro-pillar-icon {
    color: #006591;
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.abthro-pillar-text {
    font-size: 18px;
    color: #0b1c30;
    line-height: 1.5;
}

/* Statistics */
.abthro-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-top: 1px solid rgba(198, 198, 205, 0.3);
    background-color: #0d1b2a;
    color: white;
}

@media (min-width: 1024px) {
    .abthro-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.abthro-stat-item {
    text-align: center;
    padding: 2px;
}

.abthro-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.abthro-stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.abthro-animate-pulse {
    animation: abthro-pulse 1s cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes abthro-pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/**======SECOND SECTION STARTS HERE============**/
.abtsnd-why-choose-section {
    background-color: #041C44;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Decorative Elements */
.abtsnd-decor-blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
    z-index: 0;
}

.abtsnd-decor-blob-1 {
    top: 0;
    right: 0;
    transform: translate(25%, -50%);
    background-color: rgba(57, 184, 253, 0.05);
}

.abtsnd-decor-blob-2 {
    bottom: 0;
    left: 0;
    transform: translate(-25%, 50%);
    background-color: rgba(19, 27, 46, 0.1);
}

.abtsnd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.abtsnd-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.abtsnd-section-overline {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.abtsnd-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    max-width: 896px;
    margin: 0 auto 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .abtsnd-section-title {
        font-size: 35px;
    }
}

.abtsnd-section-description {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.abtsnd-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .abtsnd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.abtsnd-feature-card {
    background-color: #0a2659;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 5px;
    transition: all 0.3s ease;
    border-top: 2px solid transparent;
    display: flex;
    gap: 24px;
}

    .abtsnd-feature-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
        transform: translateY(-4px);
        border-top-color: #39b8fd;
    }

.abtsnd-icon-container {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: rgba(57, 184, 253, 0.2);
    color: #39b8fd;
}

.abtsnd-card-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.abtsnd-card-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.5;
}

/**==========THIRD SECTION STARTS HERE**/

/* Testimonial Section Base Style */
.abttst-testimonial-section {
    background-color: #041C44;
    padding: 30px 24px 80px 24px;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #0b1c30;
    line-height: 1.5;
    box-sizing: border-box;
}

    .abttst-testimonial-section * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

/* Material Symbols */
.abttst-material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Material Symbols Outlined';
}

/* Decorative Elements */
.abttst-deco-blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 33%;
    background: rgba(0, 101, 145, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.abttst-deco-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 25%;
    background: rgba(19, 27, 46, 0.4);
    filter: blur(100px);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.abttst-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Heading Block */
.abttst-heading-block {
    text-align: center;
    margin-bottom: 80px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.abttst-section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #39b8fd;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.abttst-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.abttst-section-description {
    font-size: 18px;
    color: rgba(124, 131, 155, 0.8);
    line-height: 1.6;
}

/* Slider Container */
.abttst-slider-container {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    height: 300px;
}

@media (max-width: 768px) {
    .abttst-slider-container {
        height: 400px;
    }

    .abttst-section-title {
        font-size: 32px;
    }
}

/* Testimonial Card */
.abttst-testimonial-card {
    position: absolute;
    inset: 0;
    transition: all 0.7s ease-in-out;
    background: rgba(19, 27, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .abttst-testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
}

.abttst-testimonial-active {
    opacity: 1;
    transform: scale(1);
    z-index: 20;
}

.abttst-testimonial-inactive {
    opacity: 0;
    transform: scale(0.95);
    z-index: 10;
    pointer-events: none;
}

.abttst-avatar-container {
    flex-shrink: 0;
}

.abttst-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #39b8fd;
    padding: 4px;
}

.abttst-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.abttst-card-content {
    flex-grow: 1;
}

.abttst-quote-icon {
    color: #39b8fd;
    font-size: 64px;
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.abttst-testimonial-text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.abttst-author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.abttst-author-title {
    font-size: 12px;
    font-weight: 500;
    color: #39b8fd;
}

/* Navigation Controls */
.abttst-slider-controls {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
}

.abttst-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .abttst-nav-btn:hover {
        background-color: #39b8fd;
        color: #0b1c30;
    }

.abttst-dots-container {
    display: flex;
    gap: 4px;
}

.abttst-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .abttst-slider-dot.abttst-active {
        width: 32px;
        background-color: #39b8fd;
        border-radius: 9999px;
    }
/**===========THIRD SECTION ENDS HERE===============**/


/**==========FOURTH SECTION STARTS HERE=============**/

/* Process Section Base & Scoped Layout Styles */
.abtfrth-process-section {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 24px;
    background-color: #ffffff;
    color: #0b1c30;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

    .abtfrth-process-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

@media (min-width: 1024px) {
    .abtfrth-process-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.abtfrth-process-header {
    max-width: 1358px;
    margin-bottom: 80px;
}

.abtfrth-process-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #006591;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-left: 2px solid #006591;
    padding-left: 16px;
}

.abtfrth-process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #0b1c30;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .abtfrth-process-title {
        font-size: 35px;
    }
}

.abtfrth-process-description {
    font-size: 18px;
    line-height: 1.6;
    color: #45464d;
    max-width: 1400px;
}

.abtfrth-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .abtfrth-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .abtfrth-process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.abtfrth-process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 13px;
    background-color: #eff4ff;
    border: 1px solid #c6c6cd;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.7s ease, translate 0.7s ease;
}

    .abtfrth-process-card:hover {
        transform: translateY(-8px);
    }

.abtfrth-card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background-color: #c6c6cd;
    transition: all 0.5s ease;
}

.abtfrth-process-card:hover .abtfrth-card-top-line {
    width: 100%;
    background-color: #006591;
}

.abtfrth-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.abtfrth-step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #cbdbf5;
    transition: color 0.3s ease;
}

.abtfrth-process-card:hover .abtfrth-step-number {
    color: #006591;
}

.abtfrth-icon-container {
    padding: 8px;
    background-color: rgba(57, 184, 253, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abtfrth-material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #006591;
    font-family: 'Material Symbols Outlined';
}

.abtfrth-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: #0b1c30;
    margin-bottom: 12px;
}

.abtfrth-card-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #45464d;
    flex-grow: 1;
}

/* Animation Classes */
.abtfrth-reveal {
    opacity: 0;
    transform: translateY(40px);
}

    .abtfrth-reveal.abtfrth-active {
        opacity: 1;
        transform: translateY(0);
    }

/**==========FOURTH SECTION ENDS HERE===============**/

/**==========CTA SECTION STARTS HERE================**/
.svcta-main-section {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem;
}

/* Banner Section Container */
.svcta-cta-banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main Banner Wrapper */
.svcta-cta-banner-container {
    position: relative;
    background-color: #0d1b2a;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Content Areas */
.svcta-cta-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    z-index: 10;
}

.svcta-cta-visual {
    position: relative;
    flex: 1;
    min-height: 250px;
}

/* Typography */
.svcta-cta-heading {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Image Styling */
.svcta-cta-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

/* Button Overlay & Style */
.svcta-cta-button-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.svcta-cta-button {
    display: inline-block;
    background-color: #0d1b2a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .svcta-cta-button:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .svcta-cta-banner-container {
        flex-direction: row;
        align-items: stretch;
    }

    .svcta-cta-content {
        padding: 0 0 0 3rem;
    }

    .svcta-cta-heading {
        font-size: 2.25rem;
    }

    .svcta-cta-visual {
        min-height: auto;
    }

    .svcta-cta-button {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .svcta-cta-content {
        padding-left: 4rem;
    }

    .svcta-cta-heading {
        font-size: 2rem;
    }

    .svcta-cta-button-wrapper {
        justify-content: flex-start;
        padding-left: 5rem;
    }

    .svcta-heading-break {
        display: block;
    }
}

@media (min-width: 1280px) {
    .svcta-cta-content {
        padding-left: 3rem;
    }
}

.svcta-heading-break {
    display: none;
}
/**==========CTA SECTION ENDS HERE=================***/


<!-- CSS Section Starts Here -->
/* ===== SECTION 5: TEAM MEMBERS ===== */
.abtteam-section {
    padding: 80px 20px;
    background: #0a0a0f;
}

.abtteam-container {
    max-width: 1200px;
    margin: 0 auto;
}

.abtteam-header {
    text-align: center;
    margin-bottom: 56px;
}

.abtteam-overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #188bf6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abtteam-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.abtteam-description {
    font-size: 16px;
    color: #9ca3af;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.abtteam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.abtteam-card {
    background: #13131a;
    border: 1px solid #1e1e2e;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .abtteam-card:hover {
        border-color: #188bf6;
        transform: translateY(-4px);
    }

.abtteam-avatar-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #188bf6 0%, #0d5fa8 100%);
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #188bf633;
}

.abtteam-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.abtteam-role {
    font-size: 13px;
    color: #188bf6;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== SECTION 6: PRICING PLAN ===== */
.abtprc-section {
    padding: 80px 20px;
    background: #0d0d14;
    position: relative;
    overflow: hidden;
}

    .abtprc-section::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #188bf622 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.abtprc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.abtprc-header {
    text-align: center;
    margin-bottom: 56px;
}

.abtprc-overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #188bf6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abtprc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.abtprc-description {
    font-size: 16px;
    color: #9ca3af;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.abtprc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: start;
}

.abtprc-card {
    background: #13131a;
    border: 1px solid #1e1e2e;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .abtprc-card:hover {
        transform: translateY(-4px);
        border-color: #188bf6;
    }

    .abtprc-card.abtprc-featured {
        border-color: #188bf6;
        background: linear-gradient(145deg, #13131a 0%, #0e1d2e 100%);
    }

.abtprc-badge {
    display: inline-block;
    background: #188bf6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.abtprc-plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.abtprc-plan-tag {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 28px 0;
}

.abtprc-divider {
    border: none;
    border-top: 1px solid #1e1e2e;
    margin: 0 0 24px 0;
}

.abtprc-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

    .abtprc-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: #d1d5db;
        margin-bottom: 12px;
        line-height: 1.5;
    }

        .abtprc-features-list li .material-symbols-outlined {
            font-size: 18px;
            color: #188bf6;
            flex-shrink: 0;
            margin-top: 1px;
        }

.abtprc-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid #188bf6;
    background: transparent;
    color: #188bf6;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.abtprc-card.abtprc-featured .abtprc-btn {
    background: #188bf6;
    color: #fff;
}

.abtprc-btn:hover {
    background: #188bf6;
    color: #fff;
}

/* ===== SECTION 7: OUR BLOG ===== */
.abtblg-section {
    padding: 80px 20px;
    background: #0a0a0f;
}

.abtblg-container {
    max-width: 1200px;
    margin: 0 auto;
}

.abtblg-header {
    text-align: center;
    margin-bottom: 56px;
}

.abtblg-overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #188bf6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.abtblg-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.abtblg-description {
    font-size: 16px;
    color: #9ca3af;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.abtblg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.abtblg-card {
    background: #13131a;
    border: 1px solid #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: block;
}

    .abtblg-card:hover {
        border-color: #188bf6;
        transform: translateY(-4px);
    }

.abtblg-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0d1b3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .abtblg-card-img-placeholder .material-symbols-outlined {
        font-size: 48px;
        color: #188bf633;
    }

.abtblg-card-body {
    padding: 24px;
}

.abtblg-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #188bf6;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.abtblg-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.abtblg-card-excerpt {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.abtblg-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #188bf6;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

    .abtblg-read-more .material-symbols-outlined {
        font-size: 16px;
        transition: transform 0.2s ease;
    }

.abtblg-card:hover .abtblg-read-more .material-symbols-outlined {
    transform: translateX(4px);
}

/* ===== SECTION 2 STATS ===== */
.abtsnd-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.abtsnd-stat-block {
    text-align: center;
}

.abtsnd-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 6px 0;
}

    .abtsnd-stat-number span {
        color: #188bf6;
    }

.abtsnd-stat-label {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
}

/* ===================================================
                                       ===== RESPONSIVE STYLES (FOR ALL SCREEN SIZES) =====
                                       =================================================== */

/* 1. Tablets / iPads (max-width: 992px) */
@@media (max-width: 992px) {
    .abthro-hero-header {
        flex-direction: column;
        gap: 32px;
    }

    .abthro-hero-left-col, .abthro-hero-right-col {
        max-width: 100% !important;
        width: 100% !important;
    }

    .abthro-bento-grid {
        grid-template-columns: 1fr !important;
    }

    .abtprc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .abtprc-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* 2. Mobile Landscape / Small Tablets (max-width: 768px) */
@@media (max-width: 768px) {
    .abthro-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .abtsnd-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .abtsnd-stats-row {
        gap: 40px;
    }

    .abtfrth-process-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .abtteam-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abtprc-grid {
        grid-template-columns: 1fr;
    }

    .abtprc-card:last-child {
        grid-column: span 1;
    }

    .abtblg-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svcta-cta-banner-container {
        flex-direction: column !important;
        text-align: center;
        gap: 32px;
    }

    .svcta-cta-content {
        padding-right: 0 !important;
    }

        .svcta-cta-content p {
            margin: 16px auto 0 auto;
        }

    .svcta-cta-visual {
        width: 100% !important;
    }
}

/* 3. Portrait Phones (max-width: 480px) */
@@media (max-width: 480px) {
    .abthro-about-section,
    .abtsnd-why-choose-section,
    .abtfrth-process-section,
    .abttst-testimonial-section,
    .abtteam-section,
    .abtprc-section,
    .abtblg-section {
        padding: 48px 16px;
    }

    .abthro-hero-title,
    .abtsnd-section-title,
    .abtfrth-process-title,
    .abttst-section-title,
    .abtteam-title,
    .abtprc-title,
    .abtblg-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .abthro-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .abtteam-grid {
        grid-template-columns: 1fr;
    }

    .abtsnd-stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .abtsnd-stat-number {
        font-size: 44px;
    }

    .svcta-cta-image {
        height: 200px !important;
    }
}
