/* =========================================
   1. GLOBAL RESET & BASE STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
   /* background-color: #FAFCFE;*/
    color: #1e293b;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-white-padd1 {
   /* padding-top: 30px;*/
}

.padd-tp{padding-bottom:0;}

#nav {
    box-shadow: 0px 2px 4px 0 rgb(0 0 0 / 30%);
    background-image: linear-gradient(93deg, #2a3e5b, #084050);
}

button a {
    color: inherit;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
}

/* Color Utilities */
.clr-orange { background-color: #ea580c; }
.clr-blue { background-color: #1e3a8a; }
.clr-green { background-color: #1e8a5f; }
.clr-limegreen { background-color: #a8ca39; }

.clr-orange-text { color: #ea580c; }
.clr-blue-text { color: #1e3a8a; }
.clr-green-text { color: #1e8a5f; }
.clr-limegreen-text { color: #a8ca39; }

/* Fixed outline button state colors */
.clr-orange-btntext { color: #ea580c; border-color: #ea580c; }
.clr-blue-btntext { color: #1e3a8a; border-color: #1e3a8a; }
.clr-green-btntext { color: #1e8a5f; border-color: #1e8a5f; }
.clr-limegreen-btntext { color: #a8ca39; border-color: #a8ca39; }


/* =========================================
   2. MAIN SECTION & HERO
   ========================================= */
#pdf-prep-section {
    padding-top: 40px;
    /*padding-bottom: 40px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle at 90% 10%, rgba(224, 242, 254, 0.5) 0%, transparent 40%);
}

.pdf-prep-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.pdf-prep-hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.pdf-prep-main-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.pdf-prep-title-blue {
    position: relative;
    color: #1e3a8a;
    display: inline-block;
    font-size: 42px;
    line-height:1.2;
}

.pdf-prep-title-purple {
    position: relative;
    color: #4c1d95;
    display: block;
    font-size: 42px;
}

.pdf-prep-title-purple::after, 
.pdf-prep-title-blue::after {
    content: '';
    width: 98%;
    height: 4px;
    display: block;
    background: #4c1d95;
    margin-top: 8px;
    border-radius: 2px;
}

.pdf-prep-subtitle {
    font-weight: 600;
    color: #334155;
    font-size: 18px;
    line-height: 1.5;
}

/* Feature List Grid */
.pdf-prep-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 8px 0;
}

.pdf-prep-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #0f172a;
}

.pdf-prep-feature-item .img-bx {
    display: flex;
    width: 32px;
    height: 32px;
    background: #E0F5FB;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.pdf-prep-feature-item .img-bx img {
    width: 18px;
    height: 18px;
}

.pdf-prep-btn-primary {
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.2);
    background: #194C99;
    font-size: 18px;
}

.pdf-prep-btn-primary:hover {
    background-color: #172554;
    transform: translateY(-2px);
}

.pdf-prep-hero-graphic {
    /*width: 100%;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-prep-hero-graphic img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   3. CARDS & CAROUSEL
   ========================================= */
.continuous-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.continuous-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    width: max-content;
}

.continuous-carousel-track.is-animating {
    animation: continuousScroll 25s linear infinite;
}

.continuous-carousel-track.is-animating:hover {
    animation-play-state: paused;
}

@keyframes continuousScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(var(--scroll-distance, -1000px), 0, 0); }
}

.pdf-prep-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.pdf-prep-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 340px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 0 0 1px #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.pdf-prep-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 0 0 1px #e2e8f0;
}

.pdf-prep-card-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-prep-card-icon-wrap img {
    width: 50px;
    height: auto;
}

.pdf-prep-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(2 * 1.3em);

}

.pdf-prep-card-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.pdf-prep-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdf-prep-btn-outline {
    background-color: #ffffff;
    border: 2px solid;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
}

.pdf-prep-btn-outline:hover {
    filter: brightness(0.95);
}

/* =========================================
   CAROUSEL WRAPPER & BUTTONS
   ========================================= */

/* Parent container holding viewport and buttons */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.continuous-carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Base button styles */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    z-index: 10;
    
    /* Perfect centering of icons/text */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.25s ease;
    outline: none;
}

/* Hover effect */
.carousel-btn:hover {
    background: #194C99;
    color: #ffffff;
    border-color: #194C99;
    box-shadow: 0 6px 16px rgba(25, 76, 153, 0.3);
}

/* Button Positioning */
.carousel-btn.prev {
    left: -20px; /* Positioned neatly on the outer left edge */
}

.carousel-btn.next {
    right: -20px; /* Positioned neatly on the outer right edge */
}


/* =========================================
   4. BENEFITS SECTION
   ========================================= */
.pdf-prep-benefits-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.pdf-prep-benefits-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

.pdf-prep-benefits-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdf-prep-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.pdf-prep-benefit-icon-box {
    width: 56px;
    height: 56px;
    background-color: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdf-prep-benefit-icon-box img {
    width: 28px;
    height: 28px;
}

.pdf-prep-benefit-text {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}


/* =========================================
   5. RESPONSIVE BREAKPOINTS
   ========================================= */

/* Desktop (min-width: 992px) */
@media (min-width: 991px) {
    	#pdf-prep-section {
        padding-top: 60px;
    }

    .pdf-prep-hero {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .pdf-prep-hero-text {
        width: 55%;
    }

    .pdf-prep-hero-graphic {
        width: 40%;
    }

    .pdf-prep-main-title {
        font-size: 42px;
    }

    .pdf-prep-title-blue, 
    .pdf-prep-title-purple {
        font-size: 48px;
    }

    .pdf-prep-subtitle {
        font-size: 20px;
    }

    .pdf-prep-card {
        width: 360px;
    }

    .pdf-prep-benefits-title {
        font-size: 28px;
    }

    .pdf-prep-benefits-row {
        flex-direction: row;
        justify-content: center;
    }

    .pdf-prep-benefit-item {
        flex: 1;
        max-width: 350px;
        background: transparent;
        box-shadow: none;
    }
}

/* Tablet (max-width: 991px) and (min-width: 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .pdf-prep-hero-text {
        text-align: left;
        align-items: flex-start;
    }

	.padd-tp {padding-top: 120px;}
    .pdf-prep-title-purple::after, 
    .pdf-prep-title-blue::after {
        margin: 8px auto 0 auto;
    }

    .pdf-prep-benefits-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pdf-prep-benefit-item {
        width: 45%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    #pdf-prep-section {
        padding-top: 20px;
    }
.padd-tp {padding-top: 50px;}
    

    .pdf-prep-main-title {
        font-size: 28px;
    }

    .pdf-prep-title-blue, 
    .pdf-prep-title-purple {
        font-size: 32px;
    }

    .pdf-prep-subtitle {
        font-size: 16px;
    }

    .pdf-prep-btn-primary {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .pdf-prep-card {
        width: 280px;
        padding: 20px;
    }

    .pdf-prep-card-title {
        font-size: 18px;
	line-height: 1.3;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;

        min-height: calc(2 * 1.3em);
    }

    .pdf-prep-card-subtitle {
        font-size: 14px;
    }

    .pdf-prep-benefits-title {
        font-size: 20px;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    /* Bring buttons slightly inside on mobile so they don't touch screen edges */
    .carousel-btn.prev {
        left: 0px;
    }

    .carousel-btn.next {
        right: 0px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .pdf-prep-feature-list {
        grid-template-columns: 1fr; /* Single column feature list */
    }

    .pdf-prep-title-blue, 
    .pdf-prep-title-purple {
        font-size: 28px;
    }

    .pdf-prep-card {
        width: 82vw; /* Cards scale proportionally with phone viewport */
    }
}
