:root{
    --primary-color: #2F225B;
    --secondary-color: #01A2DB;
}
body{
    background-image: url(../image/background.webp);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: "Inter", sans-serif !important;
}
.chapter-det{
    background-color: #00274945;
    padding: 22px;
    color: #ffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: auto;
    backdrop-filter: blur(10px);
}
.chapter-num{
color: #76e4ff;
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}
.chapt-sy{
    font-weight: 700;
    letter-spacing: 3px;
    border: 1px solid #ffffff38;
    padding: 10px;
    border-radius: 9px;
    font-size: 16px;
}
.chapter-det h1{
    font-size: 28px;
    border-left: 4px solid #8872cb;
    padding: 9px 12px;
    color: #ffffff;
    letter-spacing: 2px;
    border-radius: 6px;
}
.chapter-content-area{
    border-radius: 10px;
    background: white;
    padding-top: 60px !important;
    padding: 2rem;
    position: relative;
    margin-top: 40px;
    box-shadow: 0px 0px 14px #00f3ff82;
}
.chapter-content-area h3{
    margin-bottom: 0px;
    font-size: 18px;
    color: #ffffff;
}

.chapter-snap{
    background: linear-gradient(45deg, #0074c7, #39038fa8);
    position: absolute;
    top: -8px;
    left: 23px;
    border-radius: 0px 2px 10px 10px;
    padding: 14px 18px;
    align-items: center;
    color: #fff !important;
    border: 0px solid white;
    backdrop-filter: blur(2px);
    box-shadow: inset 0px 0px 8px #ffffff;
}

.chapter-content-area p{
    font-size: 16px;
    color: #323232;
    font-weight: 600;
    margin-bottom: 4px;
}
.snap-icon{
    width: 20px;
}
.cta{
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    min-height: 360px;
    margin-top: 85px;
}
.cta::before{
    content: "";
    background-image: url(../image/pattern1.webp);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    right: 0;
    filter: invert(1);
    opacity: 6%;
    background-position: center;
}
.cta h5{
    font-size: 35px;
    text-shadow: 0px 0px 6px #00dcffa3;
    margin-bottom: 16px;
}
.cta p{
    font-size: 16px;
    color: #a9a4a4;
}
.cta p b {
    color: #ffffff;
    font-size: 15px;

}
.btn-custom{
    padding: 16px 30px !important;
    border-radius: 38px !important;
    border: 1px solid #2f225b !important;
    display: inline-flex !important;
    text-decoration: none !important;
    background: linear-gradient(45deg, #0686a3, #69008b);
    color: #fff !important;
    font-size: 15px !important;
    transition: 0.1s all ease-in-out !important;
    transform: scale(1);
}
.btn-custom:hover{
    transform: scale(1.04);
    border: 1px solid #fff !important;
    box-shadow: 0px 0px 14px #00b8ff;
}
img.cta-char {
    max-width: 150px;
    position: absolute;
    top: 0;
}
img.cta-char.cta-char-2 {
    left: 0;
    max-width: 120px;
    bottom: 0;
}
img.cta-char.cta-char-1 {
    left: 120px;
    top: -110px;
}
.char-wrapper{
    aspect-ratio: 1 / 1;
    background: linear-gradient(45deg, #76ffe6, #38008391);
    border-radius: 100%;
    max-width: 80%;
    box-shadow: 0px 0px 12px #176e9e;
    border: 2px solid white;
}

/* ----- MEDIA QUERYS ----- */
@media (min-width: 1200px) {
    .chapter-wrapper .container{
        max-width: 1000px;
    }
}

@media (max-width: 767px) {
    img.cta-char{
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }
    .char-wrapper{
        text-align: center !important;
    }
    img.cta-char.cta-char-1{
        top:-70px !important;
        max-width: 100px !important;
    }
    img.cta-char-2{
        max-width: 80px !important;
    }
    .char-wrapper {
        background: none !important;
        border: none !important;
        max-width: 100% !important;
        box-shadow: none !important;
        aspect-ratio: 0 !important;
    }
    .cta h5 {
        font-size: 24px;
    }
}
@media (max-width: 568px) {
    .chapt-sy,.chapter-num{
        font-size: 12px !important;
    }
}
@media (max-width: 567px) and (min-width: 400px) {
}

/* Footer Styles */
.site-footer {
    text-align: center;
    color: #6b7280;
    padding: 2rem 0;
    font-size: 0.9rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}