* {
    box-sizing: border-box;
}

html{
    overflow: hidden !important;
    scrollbar-width: none !important;
}

body {
    margin: 0;
    background: #fff;
    font-family: Georgia, serif;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    height: 100vh;
    /* height: 100vw; */
    overflow: hidden !important;
    scrollbar-width: none !important;
    /* background-image: url(https://www.shutterstock.com/image-photo/blurred-interior-view-modern-fitness-600nw-2560304523.jpg); */
    background-image: url(../img/page/bg_1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.book-wrapper {
    width: 100%;
    /* max-width: 1000px; */
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#book {
    width: 80vw;
    height: 95vh;
    transition: transform 0.5s ease-in-out;
}

.page {
    padding: 0px;
    font-size: clamp(16px, 2vw, 22px);
    background: linear-gradient(to right, #fdfcfb, #f2f2f2);
    color: #333;
}

.page:nth-child(even) {
    background: linear-gradient(to left, #fdfcfb, #f2f2f2);
}

.page h1 {
    font-size: clamp(22px, 3vw, 38px);
    margin-top: 0;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: #fff;
    border: none;
    width: 80px;
    height: 120px;
    cursor: pointer;
    transition: 0.3s ease;
    background: none;
    z-index: 1000;
}
button:hover {
    transform: translateY(-50%) scale(1.1);
}

button.left {
    left: -20px;
}

button.right {
    right: -20px;
}

button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* page 1 - Overview start */
/* The Magazine Page */
.poster-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Magazine Style Border Frame */
.magazine-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 1px solid #e2e8f0;
    pointer-events: none; /* Allows clicking through the border */
    z-index: 10;
}

/* Magazine Date/Issue Detail */
.issue-detail {
    position: absolute;
    top: 15px;
    left: 45px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b1b1b1;
    text-transform: uppercase;
    z-index: 11;
    font-family: 'Times New Roman', Times, serif !important;
}

/* Geometric Background Accents */
.circle-accent {
    position: absolute;
    border: 15px solid #e01b0b14;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.top-left-circle { top: -30px; left: -30px; }
.bottom-right-circle { bottom: 80px; right: -50px; }

.dots-grid {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 10px);
    gap: 15px;
}
.dots-1 { top: 350px; left: 60px; }
.dots-2 { bottom: 120px; left: 80px; }

.dot {
    width: 6px;
    height: 6px;
    background-color: #0c860c2b;
    border-radius: 50%;
}

/* Slanted Image Section - Adjusted for Frame */
.image-clip-path {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 480px;
    background: #2c5282;
    /* clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 70%); */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 70%);
    z-index: 2;
}

.main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

/* Typography */
.content-area {
    position: absolute;
    top: 430px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.icon-marker {
    color: #0c860c2b;
    font-size: 40px;
    margin-bottom: 5px;
    opacity: 0.5;
}

.title-main {
    font-weight: 900;
    font-size: 140px;
    line-height: 1;
    margin: 0;
    color: green;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-blue {
    color: #2c5282;
    display: block;
    font-size: 90px;
    letter-spacing: -2px;
}

.content-area .divider {
    width: 250px;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        green,
        green 12px,
        #fff 12px,
        #fff 20px
    );
    margin: 35px 0;
}

.tagline {
    font-size: 22px;
    color: #2d3436;
    font-weight: 500;
    max-width: 60%;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Logo & Footer */
.logo-container {
    position: absolute;
    /* bottom: 75px;
    right: 80px; */
    bottom: 100px;
    right: 45px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 28px;
    color: #2d3436;
    z-index: 11;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: #2c5282;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(3deg, #048504bd, #ff0000);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 45% 100%);
    z-index: 1;
}
/* page 1 - Overview end */

/* contact page - start */
.canvas {
    width: 100%;
    height: 100%;
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* --- Header Shapes --- */
.top-shape-1 {
    position: absolute;
    top: 0; left: 20%;
    width: 60%; height: 50px;
    background: #d9131342;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    opacity: 0.5;
}

.top-shape-2 {
    position: absolute;
    top: 0; left: 30%;
    width: 40%; height: 35px;
    background: #d91313d9;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.stripes-top-right {
    position: absolute;
    top: 10px; right: 20px;
    width: 80px; height: 100px;
    background: repeating-linear-gradient(135deg, transparent, transparent 8px, #de3131 8px, #bd1616 10px);
}

/* --- Main Content --- */
.content-grid {
    margin-top: 80px;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 30px;
}

.column h2 {
    color: #d91313;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: 0;
}

.v-divider {
    background: #ccc;
    height: 250px;
}

/* Social Icons */
.social-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 24px;
    color: green;
}

.social-row i {
    width: 35px;
    height: 35px;
    background: green;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-radius: 4px;
    font-size: 18px;
}

/* Contact Section */
.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

a{
    text-decoration: none !important;
}
.contact-row i {
    font-size: 45px;
    color: green;
    margin-right: 15px;
}

.contact-text div:first-child {
    font-size: 18px;
    color: green;
    font-weight: 500;
}

.contact-text div:last-child {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    font-family: 'Times New Roman', Times, serif;
}

/* --- Price Section --- */
.price-container {
    margin-left: 60px;
    margin-top: 40px;
}

.all-day {
    font-size: 30px;
    font-weight: 900;
    color: #2a528a;
    border-bottom: 4px solid #2a528a;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.price-text {
    font-size: 90px;
    font-weight: 900;
    color: #1b365d;
    display: flex;
    align-items: flex-start;
    line-height: 0.8;
}

.price-text span {
    font-size: 40px;
    margin-right: 10px;
    margin-top: 10px;
}

/* --- Bottom Visuals --- */
.bottom-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 400px;
}

.blue-wedge-large {
    position: absolute;
    bottom: 0; width: 100%; height: 350px;
    background: #1b365d;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.blue-wedge-small {
    position: absolute;
    bottom: 0; width: 100%; height: 380px;
    background: #2a528a;
    clip-path: polygon(0 100%, 0 45%, 100% 85%, 100% 100%);
    z-index: 2;
    opacity: 0.8;
}

.image-frame {
    position: absolute;
    bottom: 60px;
    left: 50px;
    width: 480px;
    height: 320px;
    background: white;
    padding: 10px;
    z-index: 5;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-stripes {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.2) 10px, rgba(255,255,255,0.2) 12px);
    z-index: 6;
}

.circles-deco {
    position: absolute;
    top: 360px;
    right: -40px;
    width: 100px;
    height: 100px;
    border: 15px solid #d9131329;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}
/* contact page - end */

.page-number{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 16px;
    color: #000;
    z-index: 9;
}

.content-area2{
    padding: 55px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.heading{
    width: 100%;
    padding: 5px 0px;
    font-size: 32px !important;
    margin-bottom: 3px;
    font-weight: bold;
    color: #b91d1d;
}

.sub-heading{
    width: 100%;
    font-size: 30px;
    padding: 5px 0px;
    margin-top: 10px;
    margin-bottom: 3px;
    color: #b91d1d;
    z-index: 9;
}
.header-dots {
    display: flex;
    gap: 6px;
    padding: 0px 5px;
    margin-bottom: 2px;
    margin-top: 5px;
}
.header-dot {
    width: 6px;
    height: 6px;
    border: 2.5px solid #b91d1d;
    border-radius: 50%;
}
.icon-marker2{
    position: absolute;
    top: 50%;
    right: 50%;
}
.page-header{
    z-index: 1;
}

/* features start */
.features {
  max-width: 100%;
  width: 100%;
  margin-top: 15px;
  z-index: 9;
}

.features img {
  float: right;
  width: 300px;
  margin-left: 3px;
  margin-top: 10px;
  margin-bottom: 3px;
  border-radius: 8px;
}

.features p {
  margin: 10px 0px 0px 0px;
}

.features h4{
    margin: 10px 0px 0px 0px;
}

.features h5{
    margin: 10px 0px 0px 0px;
}

.features ul{
    margin: 5px 0px;
    padding-left: 35px;
}
/* features end */

@media (992px <= width <= 1400px) {
    p{
        font-size: 14px !important;
    }

    .heading{
        font-size: 28px !important;
    }
    .sub-heading{
        font-size: 18px !important;
    }

    .features img {
        width: 180px !important;
    }

    .features h4{
        font-size: 18px !important;
        margin: 5px 0px 0px 0px;
    }

}

@media (max-width: 991px) {
    #prevBtn{
        display: none !important;
    }
    #nextBtn{
        display: none !important;
    }
}

.title-head{
    z-index: 9 !important;
}

.we-provide2::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg, #87191985, #ff000086);
    bottom:-100px;
    right:-100px;
    border-radius:50%;
    filter:blur(120px);
}

/* Feature Bar */
.trust-bar {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    z-index: 999 !important;
}

.trust-bar .home-highlights{
    font-weight: 500;
}

.trust-bar b { color: green; }



.zz-wrapper {
    max-width: 100%;
    width: 100%;
    margin-top: 25px !important;
}

.zz-card {
    display: flex;
    /* align-items: center; */
    margin-bottom: 10px;
    gap: 25px;
}

/* Zig-Zag Logic */
.zz-card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.zz-image-container {
    position: relative;
    flex-shrink: 0;
}

.zz-circle {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(93, 42, 24, 0.1);
}

.zz-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zz-badge {
    position: absolute;
    top: 15px;
    background-color: green;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'Playfair Display', serif; */
    font-weight: bold;
    border: 3px solid #FDF1EB;
    z-index: 2;
}

.zz-card:nth-child(odd) .zz-badge {
    right: -10px;
    top: -10px;
}

.zz-card:nth-child(even) .zz-badge {
    left: -10px;
    top: -5px;
}

.zz-content {
    flex-grow: 1;
}

.zz-card:not(:first-child) .zz-content::before {
    /* content: ""; */
    display: block;
    width: 100%;
    height: 1px;
    background-color: green;
    opacity: .5;
    margin-bottom: 20px;
}

.zz-content h2 {
    /* font-family: 'Playfair Display', serif; */
    color: green;
    font-size: 26px !important;
    font-weight: bold;
    /* text-transform: uppercase; */
    margin-bottom: 5px;
    margin-top: 5px;
}

.zz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.zz-card:nth-child(even) .zz-tags {
    justify-content: flex-end;
}
.zz-card:nth-child(odd) .zz-tag:first-child {
    padding-left: 0px !important;
}
.zz-card:nth-child(even) .zz-tag:last-child {
    padding-right: 0px !important;
}

.zz-tag {
    /* background-color: #FFD100; */
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    /* border-radius: 3px; */
    border-right: 1px solid #b1b1b1;
    letter-spacing: 0.6px;
}
.zz-tag:last-child{
    border-right: none !important;
}
.zz-content p {
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 450px;
    margin-top: 5px;
    margin-bottom: 0px;
}

.zz-card:nth-child(even) .zz-content p {
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 0px;
}

/* @media (max-width: 768px) {
    .zz-card,
    .zz-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .zz-card:nth-child(even) .zz-tags {
        justify-content: center;
    }

    .zz-card:nth-child(even) p {
        margin: 0 auto;
    }

    .zz-badge {
        right: 0 !important;
        left: auto !important;
    }
} */


.faq-section{
    min-height:100vh;
    background: linear-gradient(rgb(0 0 0 / 79%), rgb(0 0 0 / 71%)), url(../img/page/page_bg_1.jpg) center / cover no-repeat;
}
.faq-section .header-dot {
    border: 2.5px solid #fff !important;
}
/* Floating decorative shapes */
.faq-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg,#ff416c,#ff4b2b);
    top:-100px;
    left:-100px;
    border-radius:50%;
    filter:blur(120px);
}

.faq-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    bottom:-100px;
    right:-100px;
    border-radius:50%;
    filter:blur(120px);
}

.faq-container{
    width:100%;
    position:relative;
    z-index:2;
}

.faq-header{
    text-align:center;
    margin-bottom:40px;
}

.faq-header h1{
    font-size:36px;
    color:#fff;
    margin-bottom:10px;
}

.faq-header p{
    color:#ddd;
    font-size:15px;
}

/* FAQ Item */
.faq-item{
    background:rgb(255 255 255 / 7%);
    backdrop-filter: blur(2px);
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    transition:all .3s ease;
}

.faq-item:hover{
    transform:translateY(-4px);
    /* box-shadow:0 10px 30px rgba(0,0,0,.4); */
}

.faq-question{
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    color:#fff;
}

.faq-question h3{
    font-size:16px;
    font-weight:500;
    font-family: Georgia, serif;
}

.faq-icon{
    width:22px;
    height:22px;
    transition:.4s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    /* background:rgba(0,0,0,.3); */
    padding:0 25px;
}

.faq-answer p{
    padding: 0px 0px 15px 0px;
    font-size:16px;
    color:#eee;
    line-height:1.6;
    font-family: Georgia, serif;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}

/* CTA Section */
.cta{
    text-align:center;
    margin-top:35px;
}

.cta button{
    padding:12px 30px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#ff416c,#ff4b2b);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cta button:hover{
    transform:scale(1.05);
    /* box-shadow:0 10px 30px rgba(255,75,43,.5); */
}

@media(max-width:600px){
    .faq-container{
        padding:30px 20px;
    }
    .faq-header h1{
        font-size:28px;
    }
}


@media (max-width: 575px) {
    .magazine-frame {
        position: absolute;
        top: 25px;
        left: 25px;
        right: 25px;
        bottom: 25px;
        border: 1px solid #e2e8f0;
        pointer-events: none;
        z-index: 10;
    }
    .issue-detail {
        position: absolute;
        top: 7px !important;
        left: 25px !important;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #b1b1b1;
        text-transform: uppercase;
        z-index: 11;
    }
    .image-clip-path {
        position: absolute;
        top: 0;
        right: 0;
        width: 100% !important;
        height: 310px;
        background: #2c5282;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 70%);
        z-index: 2;
    }
    .content-area {
        position: absolute;
        top: 260px !important;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
    }
    .tagline {
        font-size: 15px !important;
        color: #2d3436;
        font-weight: 500;
        max-width: 60%;
        line-height: 1.4;
        letter-spacing: 0.5px;
    }
    .trust-bar {
        position: absolute;
        bottom: 45px !important;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 10px !important;
        color: #555;
        font-size: 10px !important;
        text-transform: none !important;
        letter-spacing: 1px !important;
        width: 100%;
    }
    .trust-bar .home-highlights{
        z-index: 11 !important;
    }

    .logo-container {
        position: absolute;
        bottom: 80px !important;
        right: 30px;
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 28px;
        color: #2d3436;
        z-index: 11;
    }
    .logo-container img{
        width: 100px !important;
    }
}


@media (576px <= width <= 991px) {
    .magazine-frame {
        position: absolute;
        top: 40px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        border: 1px solid #e2e8f0;
        pointer-events: none;
        z-index: 10;
    }
    .issue-detail {
        position: absolute;
        top: 15px;
        left: 40px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #b1b1b1;
        text-transform: uppercase;
        z-index: 11;
    }
    .image-clip-path {
        position: absolute;
        top: 0;
        right: 0;
        width: 100% !important;
        height: 510px;
        background: #2c5282;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 70%);
        z-index: 2;
    }
    .content-area {
        position: absolute;
        top: 460px !important;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 5;
    }
    .title-main{
        font-size: 46px !important;
    }
    .tagline {
        font-size: 26px !important;
        color: #2d3436;
        font-weight: 500;
        max-width: 60%;
        line-height: 1.4;
        letter-spacing: 0.5px;
    }
    .trust-bar {
        position: absolute;
        bottom: 75px !important;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 30px !important;
        color: #555;
        font-size: 18px !important;
        text-transform: none !important;
        letter-spacing: 1px !important;
        width: 100%;
    }
    .trust-bar .home-highlights{
        z-index: 11 !important;
    }

    .logo-container {
        position: absolute;
        bottom: 160px !important;
        right: 70px;
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 28px;
        color: #2d3436;
        z-index: 11;
    }
    .logo-container img{
        width: 150px !important;
    }
}

/* our support section start */

.our-support .heading{
    color: #b91d1d !important;
}

.our-support .header-dot{
    border: 2.5px solid #b91d1d !important;
}
/* Support Blocks */
.support-block{
    margin-bottom:45px;
    position:relative;
    padding-left:25px;
}

/* Vertical Accent Line */
.support-block::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:3px;
    height:20px;
    background:green;
}

.support-block h3{
    font-size:20px;
    letter-spacing:1px;
    font-weight:600;
    margin-bottom:10px;
    color: green;
}

.support-block p{
    font-size:18px;
    line-height:1.5;
    color:#000;
    max-width:380px;
}
/* our support section end */


/* contact page start */
.brochure-contact{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}
.brochure-contact .brochure {
    width: 100%;
    height: 100%;
    background-color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Top Image Section */
.brochure-contact .skyline {
    width: 100%;
    height: 50%;
    background-image: url('../img/cover/contact_page.jpg');
    background-size: cover;
    background-position: center;
    /* opacity: 0.4; */
}

/* Logo Branding */
.brochure-contact .logo {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a367c;
    font-size: 14px;
    font-weight: bold;
    padding: 55px;
}
/* The Slanted Blue Container */
/* We use one div for the cyan line and one for the navy to keep them perfectly parallel */
.brochure-contact .cyan-slope {
    position: absolute;
    top: 38%;
    width: 100%;
    height: 62%;
    background-color: #ec0402;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.brochure-contact .navy-slope {
    position: absolute;
    top: 4px; /* This creates the thin cyan line effect */
    width: 100%;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding-top: 60px;
}

/* Typography */
.brochure-contact h1 {
    font-size: 42px;
    margin: 0;
    letter-spacing: 1px;
    color: green;
    font-weight: bolder;
}

.brochure-contact .divider {
    width: 150px;
    height: 3px;
    background-color: green;
    margin: 10px 0 25px 0;
}

.brochure-contact .social-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 55px;
    font-size: 18px;
    color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Icons Grid */
.brochure-contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    text-align: center;
}

.brochure-contact .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brochure-contact .icon-box {
    width: 45px;
    height: 45px;
    fill: green;
}

.brochure-contact .label {
    font-size: 21px;
    line-height: 1.3;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    color: #000;
}

.brochure-contact p{
    padding: 0px 55px;
    text-align: center;
    line-height: 1.5;
    font-size: 21px;
    color: #000;
}

.brochure-contact .navy-slope::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg,#ff416c,#ff4b2b);
    bottom:-100px;
    right:-100px;
    border-radius:50%;
    filter:blur(120px);
}

.brochure-contact .skyline::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:linear-gradient(135deg,#ff416c,#ff4b2b);
    top:-100px;
    left:-100px;
    border-radius:50%;
    filter:blur(120px);
}
/* contact page end */


/* responsive page start */
.responsive-page .page-header .header-dots .header-dot{
    border: 2.5px solid #b91d1d !important;
}

.responsive-page::after{
    content:'';
    position:absolute;
    width:200px;
    height:100vh;
    /* background:linear-gradient(135deg, #198754, #29ff00); */
    background:linear-gradient(135deg, #871919, #ff0000);
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    border-radius:50%;
    filter:blur(120px);
}

.responsive-page .heading{
    color:#b91d1d !important;
}

.description {
    color: #000;
    line-height: 1.5;
    font-size: 22px;
    margin-bottom: 40px;
}

/* Responsive Feature List */
.feature-item {
    margin-bottom: 25px;
    border-left: 3px solid green;
    padding-left: 20px;
}

.feature-item h3 {
    font-size: 18px;
    color: green;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

.feature-item p {
    font-size: 19px;
    color: #000;
    line-height: 1.5;
    margin: 0px !important;
}
/* responsive page end */


/* pricing1 start */
/* SECTION */
section{
    height:100vh;
    display:flex;
    justify-content:center;
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
    text-align:center;
}

section .overlay{
    position:absolute;
    inset:0;
    z-index:1;
}

section .content{
    position:relative;
    z-index:10;
    max-width:56rem;
    width:100%;
    padding:50px;
    margin-top: 10px;
}

/* CHILD ELEMENTS */
section .content .badge{
    display:inline-block;
    padding:0.375rem 1rem;
    border-radius:9999px;
    font-size:0.75rem;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    border:1px solid transparent;
}

section .content h2{
    margin-top:1.5rem;
    font-size:clamp(3.5rem,10vw,4rem);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:-0.05em;
    line-height:1;
    color: #fff;
}

section .content .sub-text{
    margin-top:1rem;
    font-size:clamp(1.1rem,2vw,1.2rem);
}

section .content .price{
    margin-top:2.5rem;
    font-size:4.5rem;
    font-weight:700;
    letter-spacing:-0.025em;
    color: green;
}

section .content .price span{
    font-size:1.25rem;
    font-weight:400;
    color:#fff;
}

section .content ul{
    margin-top:2.5rem;
    display:inline-block;
    text-align:left;
    list-style:none;
}

section .content ul li{
    margin-bottom:1rem;
    font-size:1.125rem;
    color: #fff;
}

/* PLAN 1 ONLY */
#plan1 .overlay{
    background:linear-gradient(to top, #030712, rgb(3 7 18 / 77%), #030712);
}
#plan1 .content .badge{
    background-color:#fff;
    color:green;
    border-color:green;
}
#plan1 .content h2 span{
    color:green;
}
#plan1 .content .sub-text{
    color:rgba(203,213,225,0.9);
}
#plan1 .content ul li span{
    color:green;
    font-weight: bolder;
    font-size: 22px;
}
/* pricing1 end */


/* pricing2 start */
#plan2 .overlay {
    background: linear-gradient(to bottom, rgb(33 33 33), rgb(38 38 38 / 92%), rgb(0 0 0 / 80%));
}
#plan2 .content .badge {
    background-color: rgb(255, 255, 255);
    color: green;
    border-color: green;
}
#plan2 .content .sub-text{
    color: #fff !important;
}
#plan2 .content h2 span {
    color: green;
}

#plan2 .content .price {
    color: green;
}

#plan2 .content ul {
    color: #f8fafc;
}

#plan2 .content ul li span {
    color: green;
    font-weight: bolder;
    font-size: 22px;
}
/* pricing2 end */

/* pricing3 start */
#plan3 .overlay {
    background: linear-gradient(to top right, rgba(3, 7, 12, 0.95), rgba(69, 10, 10, 0.9), rgba(0, 0, 0, 0.95));
}
#plan3 .content .badge {
    background-color: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: #7f1d1d;
}
#plan3 .content .sub-text{
    color: #fff !important;
}
#plan3 .content h2 span {
    color: #ef4444;
}

#plan3 .content .price {
    color: #ef4444;
}

#plan3 .content ul {
    color: #fef2f2;
}

#plan3 .content ul li span {
    color: #ef4444;
    font-weight: bolder;
    font-size: 22px;
}
/* pricing3 end */

.brochure-contact .item i{
    visibility: hidden !important;
}

/* responsive in mobile start */
@media (max-width: 575px) {

    .book-wrapper {
        width: 100%;
        /* max-width: 1000px; */
        height: 100vh !important;
        display: flex;
        justify-content: center;
        align-items: start !important;
        align-content: flex-start !important;
    }

    #book {
        width: 80vw;
        height: 100dvh !important;
        height: calc(var(--vh) * 100) !important;
        touch-action: pan-y; /* ✅ allow scroll */

        transform: translate3d(0,0,0);
        backface-visibility: hidden;
    }

    /* GPU stability */
    .page {
        width: 100%;
        height: 100%;
        overflow-y: auto !important; /* ✅ enable scroll inside page */
        -webkit-overflow-scrolling: touch !important;
    }



    .content-area2{
        padding: 30px;
    }
    .heading{
        width: 100%;
        padding: 5px 0px;
        font-size: 28px !important;
        margin-bottom: 3px;
        font-weight: bold;
        color: #b91d1d;
    }
    .zz-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(93, 42, 24, 0.1);
    }
    .zz-card {
        display: flex !important;
        /* align-items: center; */
        margin-bottom: 10px;
        /* gap: 0px; */
        width: 100%;
    }
    .zz-image-container {
        position: relative;
        flex-shrink: 0;
        width: 20% !important;
    }
    .zz-content{
        width: 80% !important;
    }
    .zz-tag {
        padding: 5px !important;
        font-size: 11px !important;
    }
    .zz-content h2 {
        font-size: 18px !important;
        margin-bottom: 2.5px;
        margin-top: 2.5px;
    }
    .zz-tags {
        gap: 2px;
        margin-bottom: 10px;
    }
    .hikvision{
        width: 75px !important;
    }
    .essl{
        width: 45px !important;
    }
    .zz-badge {
        position: absolute;
        top: -10px;
        background-color: green;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* font-family: 'Playfair Display', serif; */
        font-weight: bold;
        border: 3px solid #FDF1EB;
        font-size: 12px;
        z-index: 2;
    }
    .we-provide2 .zz-wrapper{
        margin-top: 30px !important;
    }
    .faq-container{
        padding: 5px !important;
        margin-top: 0px !important;
    }
    .faq-question{
        padding:10px 15px !important;
    }
    .faq-answer{
        padding:0 15px !important;
    }
    .faq-icon{
        position: relative;
        right: -10px;
    }
    .faq-question h3{
        font-size:14px !important;
        margin: 0px !important;
    }
    .faq-answer p{
        font-size:14px !important;
    }

    .page-header.our-support{
        margin-bottom: 0px !important;
    }

    .our-support-p{
        margin-bottom: 15px !important;
        font-size: 16px !important;
    }

    .support-block{
        margin-bottom:20px;
    }

    .support-block h3{
        font-size:16px !important;
    }

    .support-block p{
        font-size:15px !important;
        max-width:250px !important;
    }

    .support-block:last-child p {
        max-width: 180px !important;
    }

    .support-block:last-child h3 {
        white-space: normal !important;
        max-width: 180px !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    section .content h2{
        font-size: 28px !important;
    }

    section .content .price{
        margin-top: 25px !important;
        font-size: 30px !important;
    }

    section .content .price span{
        font-size: 14px !important;
    }

    section .content ul{
        margin-top: 20px !important;
    }

    .responsive-page .heading{
        font-size: 22px !important;
    }

    .responsive-page .description{
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .responsive-page .feature-item{
        margin-bottom: 20px !important;
    }
    
    .responsive-page .feature-item h3{
        font-size: 16px !important;
    }
    
    .responsive-page .feature-item p{
        font-size: 15px !important;
    }

    
    .brochure-contact .logo {
        position: absolute;
        top: 0px;
        right: 0px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #1a367c;
        font-size: 14px;
        font-weight: bold;
        padding: 30px;
    }
    
    .brochure-contact .logo img {
        width: 100px !important;
    }
    
    .brochure-contact .navy-slope h1 {
        font-size: 28px !important;
        margin-top: 10px !important;
    }
    
    .brochure-contact .navy-slope p {
        font-size: 18px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .brochure-contact .divider {
        margin: 0px !important;
    }
    
    .brochure-contact .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brochure-contact .item {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        margin: 8px 0px;
    }
    
    .brochure-contact .item i{
        visibility: visible !important;
        color: green;
    }
    
    .brochure-contact .item svg{
        visibility: hidden !important;
    }

    .brochure-contact .item .icon-box{
        display: none !important;
    }

    .brochure-contact .item .label {
        font-size: 18px !important;
    }

    .no-flip {
        pointer-events: auto !important;
        touch-action: auto !important;
    }

}
/* responsive in mobile end */

/* responsive lap start */
@media (992px <= width <= 1600px) {
    .brochure-contact .logo {
        position: absolute;
        top: 0px;
        right: 0px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #1a367c;
        font-size: 14px;
        font-weight: bold;
        padding: 50px;
    }
    
    .brochure-contact .logo img {
        width: 100px !important;
    }
    
    .brochure-contact .navy-slope h1 {
        font-size: 28px !important;
        margin-top: 10px !important;
    }
    
    .brochure-contact .navy-slope p {
        font-size: 18px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .brochure-contact .divider {
        margin: 0px !important;
    }
    
    .brochure-contact .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brochure-contact .item {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        margin: 8px 0px;
    }
    
    .brochure-contact .item i{
        visibility: visible !important;
        color: green;
    }
    
    .brochure-contact .item svg{
        visibility: hidden !important;
    }

    .brochure-contact .item .icon-box{
        display: none !important;
    }

    .brochure-contact .item .label {
        font-size: 18px !important;
    }

    .no-flip {
        pointer-events: auto !important;
        touch-action: auto !important;
    }


    section .content h2{
        font-size: 28px !important;
    }

    section .content .price{
        margin-top: 10px !important;
        font-size: 30px !important;
    }

    section .content .price span{
        font-size: 14px !important;
    }

    section .content ul{
        margin-top: 15px !important;
    }

    section .content ul li{
        margin-bottom: 5px !important;
    }

    .responsive-page .heading{
        font-size: 20px !important;
    }

    .content-area2.responsive-page{
        background-size: 85% !important;
    }

    .responsive-page .description{
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }

    .page-header.our-support{
        margin-bottom: 0px !important;
    }
    
    .responsive-page .feature-item{
        margin-bottom: 10px !important;
    }
    
    .responsive-page .feature-item h3{
        font-size: 16px !important;
    }
    
    .responsive-page .feature-item p{
        font-size: 15px !important;
    }


    .page-header.our-support .heading{
        width: 100%;
        padding: 5px 0px 0px 0px !important;
        font-size: 26px !important;
        margin-bottom: 5px !important;
        font-weight: bold;
        color: #b91d1d;
    }
    .zz-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(93, 42, 24, 0.1);
    }
    .zz-card {
        display: flex !important;
        /* align-items: center; */
        margin-bottom: 10px;
        /* gap: 0px; */
        width: 100%;
    }
    .zz-image-container {
        position: relative;
        flex-shrink: 0;
        width: 14% !important;
    }
    .zz-content{
        width: 80% !important;
    }
    .zz-tag {
        padding: 5px !important;
        font-size: 11px !important;
    }
    .zz-content h2 {
        font-size: 18px !important;
        margin: 2.5px 0px 10px 0px !important;
    }
    .zz-tags {
        gap: 2px;
        margin-bottom: 5px !important;
    }
    .hikvision{
        width: 75px !important;
    }
    .essl{
        width: 45px !important;
    }
    .zz-badge {
        position: absolute;
        top: -10px;
        background-color: green;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* font-family: 'Playfair Display', serif; */
        font-weight: bold;
        border: 3px solid #FDF1EB;
        font-size: 12px;
        z-index: 2;
    }
    .we-provide2 .zz-wrapper{
        margin-top: 30px !important;
    }
    .faq-container{
        padding: 5px 0px !important;
        margin-top: 0px !important;
    }
    .faq-item{
        margin-bottom: 8px !important;
    }
    .faq-question{
        padding:10px 15px !important;
    }
    .faq-answer{
        padding:0 15px !important;
    }
    .faq-icon{
        position: relative;
        right: -10px;
    }
    .faq-question h3{
        font-size:14px !important;
    }
    .faq-answer p{
        font-size:14px !important;
    }

    .page-header.our-support{
        margin-bottom: 5px !important;
    }

    .our-support-p{
        margin-bottom: 15px !important;
        font-size: 16px !important;
    }

    .support-block{
        margin-bottom:5px;
    }

    .support-block h3{
        font-size:16px !important;
    }

    .support-block p{
        font-size:15px !important;
        max-width:250px !important;
        margin-bottom: 10px !important;
    }

    .support-block:last-child p {
        max-width: 180px !important;
    }

    .support-block:last-child h3 {
        white-space: normal !important;
        max-width: 180px !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .we-provide1 .heading{
        font-size: 24px !important;
    }

    .zz-wrapper{
        margin-top: 15px !important;
    }

    .image-clip-path{
        clip-path: polygon(0% 0%, 100% 0%, 170% 100%, 0% 40%);
        height: 380px !important;
    }

    .content-area{
        top: 215px !important;
    }

    .content-area .title-main{
        font-size: 28px !important;
        line-height: 1.1 !important;
    }

    .content-area .divider{
        height: 5px !important;
        margin: 15px 0px 25px 0px !important;
    }

    .trust-bar{
        gap: 15px !important;
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        bottom: 45px !important;
    }

    .cover-page1 .logo-container{
        bottom: 80px !important;
        right: 40px !important;
    }

    .cover-page1 .logo-container img{
        width: 100px !important;
    }

    .cover-page1 .tagline{
        font-size: 18px !important;
    }

    .magazine-frame{
        top: 25px !important;
        bottom: 25px !important;
        left: 25px !important;
        right: 25px !important;
    }

    .issue-detail{
        top: 5px !important;
        left: 25px !important;
    }

    .page-number{
        font-size: 14px !important;
    }

    .content-area2{
        padding: 40px !important;
    }
}

/* responsive lap end */