*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#111827;
    background: linear-gradient(
        90deg,
        #fdfbe6,
        #fae9fa,
        #fdffdc,
        #ffdef6,
        #ffe2e2
    );

    background-size: 300% 300%;
    
    animation: gradientMove 15s linear infinite;
    overflow-x:hidden;
    position:relative;
}

/* ---------- NOISE ---------- */

body::before{
    content:'';
    position:fixed;
    inset:0;

    background-image:
    radial-gradient(
        rgba(0,0,0,.06) 1px,
        transparent 1px
    );

    background-size:4px 4px;

    opacity:.12;

    pointer-events:none;
    z-index:-1;
}

body::after{
    content:'';

    position:fixed;
    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(255,255,255,0),
        rgba(255,255,255,.25)
    );

    pointer-events:none;
    z-index:-1;
}

/* =====================================================
   PAGE BACKGROUND DECORATIVE CIRCLES
   Moves naturally with page while scrolling
===================================================== */

.page-circles{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
}

.page-circle{
    position:absolute;
    border-radius:50%;
    background:transparent;
}


/* ---------- TOP LEFT ---------- */

.circle-top-left{
    width:210px;
    height:210px;

    top:-10px;
    left:-100px;

    border:35px solid rgba(139,92,246,.055);
}


/* ---------- TOP RIGHT ---------- */

.circle-top-right{
    width:270px;
    height:270px;

    top:460px;
    right:-110px;

    border:30px solid rgba(236, 43, 43, 0.05);
}


/* ---------- BOTTOM LEFT ---------- */

/* .circle-bottom-left{
    width:180px;
    height:180px;

    top:55%;
    left:-70px;

    border:32px solid rgba(249,115,22,.045);
} */


/* ---------- BOTTOM RIGHT ---------- */

.circle-bottom-right{
    width:640px;
    height:640px;

    bottom:-10px;
    right:-200px;

    border:38px solid rgba(139,92,246,.055);
}


/* ---------- KEEP WEBSITE CONTENT ABOVE ---------- */

.page-circles ~ *{
    position:relative;
    z-index:1;
}


/* ---------- GLOWS ---------- */
/* 
.glow{
    position:fixed;
    border-radius:50%;
    filter:blur(180px);
    pointer-events:none;
    z-index:-2;
}

.glow1{
    width:900px;
    height:900px;

    background:#fffedc;

    top:-350px;
    left:-250px;

    opacity:.65;
}

.glow2{
    width:1000px;
    height:1000px;

    background:#ffc8ea;

    top:-350px;
    right:-350px;

    opacity:.50;
}

.glow3{
    width:800px;
    height:800px;

    background:#feffd4;

    bottom:-250px;
    right:-150px;

    opacity:.45;
}

.glow4{
    width:700px;
    height:700px;

    background:#cbdcff;

    left:25%;
    bottom:-350px;

    opacity:.25;
}
.glow::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -60px;
    bottom: -90px;

    border-radius: 50%;

    border: 35px solid rgba(236,72,153,.06);

} */

/* ---------- NAVBAR ---------- */

/* =====================================
   PREMIUM HEADER
===================================== */

.premium-header{

    position:sticky;
    top:15px;
    z-index:1000;
    width:95%;
    max-width:1450px;
    margin:20px auto;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(30px);
    border:1px solid rgba(255,255,255,.4);
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.header-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 28px;
    gap:30px;
}

/* LOGO */

.logo{

    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    flex-shrink:0;
}

.logo img{

    width:58px;
    height:58px;
    object-fit:contain;
}

.logo-text{

    display:flex;
    flex-direction:column;
}

.sitename{

    font-size:1.55rem;
    font-weight:800;
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.tagline{

    font-size:.8rem;
    color:#6b7280;
}

/* NAVIGATION */

.navmenu{

    flex:1;
    display:flex;
    justify-content:center;
}

.navmenu ul{

    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.navmenu ul li a{

    text-decoration:none;
    color:#111827;
    font-weight:600;
    transition:.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active{

    color:#8b5cf6;
}

/* DESKTOP SOCIAL */

.social-links{

    display:flex;
    gap:10px;
    align-items:center;
    flex-shrink:0;
}

.social-links a{

    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(20px);
    color:#111827;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#8b5cf6;
    color:rgb(255, 255, 255);
    transform:translateY(-4px);
}

/* MOBILE */

.mobile-social{

    display:none;
}

.mobile-nav-toggle{

    display:none;
    font-size:2rem;
    cursor:pointer;
}

@media(max-width:1200px){

    .social-links{
        display:none;
    }

    .mobile-nav-toggle{
        display:block;
    }

    .navmenu{
        display:none;
    }

    .navmenu.active{

        display:block;
        position:absolute;
        top:90px;
        left:15px;
        right:15px;
        background:rgba(255,255,255,.95);
        backdrop-filter:blur(25px);
        border-radius:20px;
        padding:20px;
        box-shadow:0 20px 40px rgba(0,0,0,.08);
    }

    .navmenu.active ul{

        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .mobile-social{

        display:flex;
        gap:12px;
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid rgba(0,0,0,.08);
    }
}

@media(max-width:768px){

    .logo img{

        width:48px;
        height:48px;
    }

    .sitename{

        font-size:1.2rem;
    }

    .header-container{

        padding:14px 18px;
    }
}

/* =====================================================
   PREMIUM MOBILE MENU TOGGLE
===================================================== */

@media (max-width: 991px){

    .mobile-nav-toggle{
        width:46px;
        height:46px;

        display:flex;
        align-items:center;
        justify-content:center;

        position:relative;
        z-index:99999;

        cursor:pointer;

        border-radius:15px;

        background:rgba(255,255,255,.55);
        border:1px solid rgba(139,92,246,.14);

        box-shadow:
            0 8px 25px rgba(139,92,246,.08),
            inset 0 1px 0 rgba(255,255,255,.8);

        backdrop-filter:blur(12px);
        -webkit-backdrop-filter:blur(12px);

        transition:
            transform .3s ease,
            box-shadow .3s ease,
            background .3s ease;
    }


    /* ICON */

    .mobile-nav-toggle i{
        font-size:0;
        width:21px;
        height:16px;

        position:relative;

        display:block;
    }


    /* THREE HAMBURGER LINES */

    .mobile-nav-toggle i::before,
    .mobile-nav-toggle i::after{
        content:"";

        position:absolute;
        left:0;

        width:21px;
        height:2px;

        border-radius:10px;

        background:linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );

        transition:
            transform .35s ease,
            top .35s ease,
            width .35s ease;
    }


    .mobile-nav-toggle i::before{
        top:0;

        box-shadow:
            0 7px 0 #8b5cf6,
            0 14px 0 #ec4899;
    }


    .mobile-nav-toggle i::after{
        display:none;
    }


    /* ---------- OPEN / X ---------- */

    .mobile-nav-toggle.menu-open i::before{

        top:7px;

        transform:rotate(45deg);

        width:22px;

        box-shadow:none;

        background:linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );
    }


    .mobile-nav-toggle.menu-open i::after{

        display:block;

        top:7px;

        width:22px;

        height:2px;

        transform:rotate(-45deg);

        background:linear-gradient(
            90deg,
            #ec4899,
            #f97316
        );
    }


    /* BUTTON HOVER */

    .mobile-nav-toggle:hover{
        transform:translateY(-2px);

        box-shadow:
            0 12px 30px rgba(139,92,246,.14),
            inset 0 1px 0 rgba(255,255,255,.9);
    }


    /* WHEN OPEN */

    .mobile-nav-toggle.menu-open{
        background:rgba(255,255,255,.72);

        border-color:rgba(236,72,153,.18);

        box-shadow:
            0 8px 25px rgba(236,72,153,.10),
            inset 0 1px 0 rgba(255,255,255,.9);
    }

}
/* =====================================================
   COMPACT HERO SECTION
   ===================================================== */

.hero {
    min-height: 68vh;
    padding: 30px 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

/* Badge */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 8px;
    border-radius: 50px;

    background: rgba(255,255,255,.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.7);

    font-size: .82rem;
    font-weight: 600;
}


/* Main Heading */

.hero-title {
    font-size: clamp(2.7rem, 5.5vw, 4.2rem);
    line-height: 1;
    font-weight: 800;
    margin: 10px 0 15px;

    opacity: 0;
    transform: translateY(25px);

    animation: revealUp .9s ease forwards;
}


/* Gradient Text */

.flow-text {
    background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #38bdf8,
        #f97316,
        #8b5cf6
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 10s linear infinite;
}


/* Subtitle */

.hero-subtitle {
    max-width: 720px;
    margin: 12px auto;
    font-size: .95rem;
    line-height: 1.55;
    color: #4b5563;
}


/* Buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    
}

.hero-btn {
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;
    transition: .3s;
}

.primary-btn {
    background: #111827;
    color: #fff;
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: #ec4899;
}

.secondary-btn {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(15px);
    color: #111827;
    border: 1px solid rgba(255,255,255,.5);
}

.secondary-btn:hover {
    transform: translateY(-3px);
    background: #ccecff;
}


/* Stats */

.hero-stats {
    margin-top: 28px;

    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));

    gap: 12px;
}

.stat-card {
    padding: 18px 15px;

    background: rgba(255,255,255,.45);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

.stat-card h3 {
    font-size: 1.9rem;
    margin: 0 0 4px;

   background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #38bdf8,
        #f97316,
        #d2f65c
    );

    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 6s linear infinite;
}

.stat-card span {
    color: #6b7280;
    font-size: .82rem;
    font-weight: 600;
}


/* Floating Badge */

.float-badge {
    display: inline-block;
    animation: floatBadge 4s ease-in-out infinite;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes revealUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes floatBadge {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }

}
/* =====================================================
   MOBILE HERO — SINGLE SCREEN COMPACT
   ===================================================== */

@media (max-width: 768px) {

    .hero {
        min-height: calc(100svh - 70px) !important;
        height: calc(100svh - 70px);
        max-height: 650px;

        padding: 20px 14px !important;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100% !important;
        margin: 0 auto;
    }

    /* Small badge */

    .badge {
        padding: 6px 13px !important;
        margin-bottom: 5px !important;

        font-size: 11px !important;
        line-height: 1.2;
        gap: 5px;
    }


    /* MAIN HERO HEADING */

    .hero-title {
        width: 100%;
        max-width: 360px;

        margin: 5px auto 10px !important;

        font-size: 2.25rem !important;
        line-height: 1.02 !important;

        letter-spacing: -1px;

        text-wrap: balance;
    }


    /* SUBTITLE */

    .hero-subtitle {
        width: 100%;
        max-width: 330px !important;

        margin: 8px auto !important;

        font-size: 12px !important;
        line-height: 1.45 !important;
    }


    /* BUTTONS */

    .hero-buttons {
        margin-top: 12px !important;
        gap: 7px !important;
    }

    .hero-btn {
        padding: 8px 16px !important;

        font-size: 11px !important;
        line-height: 1.2;
    }


    /* STATS */

    .hero-stats {
        margin-top: 16px !important;

        grid-template-columns: repeat(3, 1fr) !important;

        gap: 6px !important;
    }

    .stat-card {
        padding: 9px 4px !important;
        border-radius: 12px !important;
    }

    .stat-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 2px !important;
    }

    .stat-card span {
        font-size: 9px !important;
        line-height: 1.1;
    }
}


/* =====================================================
   VERY SMALL MOBILE
   ===================================================== */

@media (max-width: 400px) {

    .hero {
        min-height: calc(100svh - 65px) !important;
        height: calc(100svh - 65px);

        padding: 15px 10px !important;
    }

    .hero-title {
        max-width: 350px;

        font-size: 2rem !important;
        line-height: 1.02 !important;

        letter-spacing: -1.2px;
    }

    .hero-subtitle {
        max-width: 315px !important;

        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .hero-buttons {
        margin-top: 9px !important;
    }

    .hero-stats {
        margin-top: 12px !important;
    }

    .stat-card {
        padding: 8px 3px !important;
    }

    .stat-card h3 {
        font-size: 1.05rem !important;
    }

    .stat-card span {
        font-size: 8px !important;
    }
}


/* =====================================================
   EXTRA SMALL PHONES
   ===================================================== */

@media (max-width: 360px) {

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 10.5px !important;
    }

    .hero-buttons {
        margin-top: 7px !important;
    }

    .hero-btn {
        padding: 7px 13px !important;
        font-size: 10px !important;
    }

    .hero-stats {
        margin-top: 10px !important;
    }

}
@media (max-width: 380px) {

    .hero {
        min-height: 57vh;
        padding-top: 25px;
    }

    .hero-title {
        font-size: 2.05rem;
    }

    .hero-subtitle {
        font-size: .8rem;
    }

    .stat-card h3 {
        font-size: 1.2rem;
    }

    .stat-card span {
        font-size: .58rem;
    }

}

/* ==========================================
   PREMIUM INITIATIVES CAROUSEL
========================================== */

.slider{

    position:relative;
    width:95%;
    max-width:1400px;
    height:700px;
    margin:80px auto;
    border-radius:35px;
    overflow:hidden;
    box-shadow:
    0 25px 60px rgba(0,0,0,.15);
    
}

/* SLIDES */

.slider .list .item{

    position:absolute;
    inset:0;
    opacity:0;
    transition:1s;
}

.slider .list .item.active{
    opacity:1;
    z-index:1;
}

/* IMAGE */

.slider .list .item img{

    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */

.slider .list .item::before{

    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.1) 100%
    );

    z-index:1;
}

/* CONTENT */

.slider .content{

    position:absolute;
    top:50%;
    left:80px;
    transform:translateY(-50%);
    z-index:2;
    max-width:650px;
    padding:35px;
    border-radius:30px;
    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
    border:
    1px solid rgba(255,255,255,.2);
}

/* SMALL TITLE */

.slider .content p:first-child{

    color:#FFD700 !important;
    font-size:1rem;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:15px;
}

/* MAIN TITLE */

.slider .content h1,
.slider .content h2{

    color:#fff !important;
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

/* DESCRIPTION */

.slider .content p:last-child{

    color:#f5f5f5 !important;
    font-size:1.1rem;
    line-height:1.1;
}
.arrows{

    position:absolute;
    top:40%;
    width:100%;
    z-index:50;
    display:flex;
    justify-content:space-between;
    padding:0 25px;
}

.arrows button{

    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:1.5rem;
    background:
    rgba(255,255,255,.2);
    backdrop-filter:blur(20px);
    color:#fff;
    transition:.3s;
}

.arrows button:hover{

    background:#8b5cf6;
    transform:scale(1.08);
}
.thumbnail{

    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    z-index:99;
    display:flex;
    gap:12px;
    overflow:auto;
    padding:4px;
}

.thumbnail .item{

    width:110px;
    height:70px;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    opacity:.65;
    transition:.3s;
}

.thumbnail .item.active{

    opacity:1;

    transform:scale(1.08);
    border:
    2px solid #8b5cf6;
}

.thumbnail .item img{

    width:100%;
    height:100%;
    object-fit:cover;
}

.thumbnail .content{

    display:none;
}
@media(max-width:768px){

    .slider{

        height:600px;
    }

    .slider .content{

        left:20px;

        right:20px;

        max-width:none;

        padding:25px;
    }

    .slider .content h1,
    .slider .content h2{

        font-size:2rem;
    }

    .slider .content p:last-child{

        font-size:.95rem;
    }

    .thumbnail{

        display:none;
    }
}
.slider .item .content{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;
}

.slider .item.active .content{

    opacity:1;

    transform:translateY(0);
}

.slider .item img{

    transform:scale(1.1);

    transition:transform 8s ease;
}

.slider .item.active img{

    transform:scale(1);
}


/* =========================================================
   ANNIVERSARY — PREMIUM PHOTO COLLAGE
========================================================= */

.anniversary-section {
    padding: 45px 5%;
    position: relative;
    overflow: hidden;
}


/* MAIN CONTAINER */

.anniversary-container {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 45px;

    align-items: center;

    padding: 35px 45px;

    border-radius: 30px;

    background: rgba(255,255,255,.38);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.55);

    box-shadow:
        0 20px 60px rgba(0,0,0,.06);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.anniversary-content {
    position: relative;
    z-index: 5;
}


.anniversary-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 14px;

    margin-bottom: 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.7);

    border: 1px solid rgba(255,255,255,.8);

    color: #475569;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .4px;
}


.anniversary-badge span {

    color: #ec4899;

    font-size: 1rem;
}


/* TITLE */

.anniversary-content h2 {

    margin: 0;

    font-size: clamp(2.5rem, 4vw, 4.2rem);

    line-height: 1.02;

    font-weight: 850;

    letter-spacing: -2px;

    color: #172033;
}


.anniversary-content h2 span {

    display: block;

    margin-top: 5px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899,
            #f97316
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* DESCRIPTION */

.anniversary-content p {

    max-width: 520px;

    margin: 18px 0 0;

    color: #64748b;

    font-size: .95rem;

    line-height: 1.7;
}


/* =========================================================
   VIDEO BUTTON
========================================================= */

.anniversary-buttons {

    margin-top: 22px;
}


.anniversary-video-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 9px 13px 9px 9px;

    text-decoration: none;

    color: #172033;

    background: rgba(255,255,255,.72);

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 50px;

    box-shadow:
        0 10px 25px rgba(0,0,0,.07);

    transition: .35s ease;
}


.anniversary-video-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.11);

    color: #172033;
}


/* PLAY CIRCLE */

.video-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #ec4899
        );

    color: white;

    font-size: 1.25rem;

    box-shadow:
        0 7px 18px rgba(139,92,246,.25);
}


.video-icon i {

    margin-left: 2px;
}


/* BUTTON TEXT */

.video-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;

    font-size: .9rem;

    font-weight: 750;
}


.video-text small {

    color: #94a3b8;

    font-size: .62rem;

    font-weight: 600;

    margin-bottom: 3px;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.arrow-icon {

    margin-left: 5px;

    font-size: .9rem;

    color: #8b5cf6;
}


/* =========================================================
   PHOTO COLLAGE
========================================================= */

.anniversary-gallery {

    position: relative;

    width: 100%;

    height: 430px;

    isolation: isolate;
}


/* GLOW */

.anniversary-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    right: 15%;

    top: 15%;

    background:
        radial-gradient(
            circle,
            rgba(236,72,153,.16),
            transparent 70%
        );

    filter: blur(35px);

    z-index: -2;
}


/* DECORATIVE DOTS */

.anniversary-dot {

    position: absolute;

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #ec4899;

    opacity: .65;
}


.dot-one {

    top: 35px;

    right: 35px;
}


.dot-two {

    bottom: 55px;

    left: 25px;

    background: #8b5cf6;
}


/* DECORATIVE LINE */

.anniversary-line {

    position: absolute;

    width: 100px;

    height: 2px;

    right: 0;

    bottom: 35px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ec4899
        );

    transform: rotate(-25deg);

    opacity: .4;
}


/* =========================================================
   PHOTO BASE
========================================================= */

.anniversary-photo {

    position: absolute;

    overflow: hidden;

    background: white;

    padding: 7px;

    border-radius: 20px;

    box-shadow:
        0 18px 40px rgba(0,0,0,.13);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    z-index: 2;
}


.anniversary-photo img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 14px;
}


.anniversary-photo:hover {

    transform:
        translateY(-8px)
        rotate(0deg)
        scale(1.03);

    box-shadow:
        0 25px 50px rgba(0,0,0,.18);

    z-index: 10;
}


/* =========================================================
   MAIN PHOTO
========================================================= */

.photo-main {

    width: 55%;

    height: 330px;

    left: 20%;

    top: 45px;

    transform: rotate(-2deg);

    z-index: 4;
}


.photo-main img {

    object-position: center;
}


/* LABEL */

.photo-label {

    position: absolute;

    left: 18px;

    bottom: 18px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 11px;

    border-radius: 20px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(10px);

    font-size: .68rem;

    font-weight: 700;

    color: #334155;
}


.photo-label i {

    color: #ec4899;
}


/* =========================================================
   PHOTO ONE
========================================================= */

.photo-one {

    width: 170px;

    height: 145px;

    top: 0;

    right: 0;

    transform: rotate(7deg);

    z-index: 3;
}


/* =========================================================
   PHOTO TWO
========================================================= */

.photo-two {

    width: 160px;

    height: 145px;

    left: 0;

    bottom: 20px;

    transform: rotate(-7deg);

    z-index: 5;
}


/* =========================================================
   PHOTO THREE
========================================================= */

.photo-three {

    width: 155px;

    height: 135px;

    right: 15px;

    bottom: 5px;

    transform: rotate(5deg);

    z-index: 3;
}


/* =========================================================
   FLOATING YEAR
========================================================= */

.anniversary-year {

    position: absolute;

    right: 27%;

    top: 18px;

    width: 70px;

    height: 70px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #ec4899
        );

    color: white;

    box-shadow:
        0 12px 25px rgba(139,92,246,.25);

    transform: rotate(8deg);

    z-index: 8;
}


.anniversary-year strong {

    font-size: 1.35rem;

    line-height: 1;

    font-weight: 850;
}


.anniversary-year span {

    font-size: .5rem;

    letter-spacing: 1px;

    margin-top: 3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .anniversary-container {

        grid-template-columns: 1fr;

        padding: 30px;

    }

    .anniversary-content {

        text-align: center;

    }

    .anniversary-content p {

        margin-left: auto;
        margin-right: auto;

    }

    .anniversary-buttons {

        display: flex;

        justify-content: center;

    }

    .anniversary-gallery {

        max-width: 650px;

        margin: auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .anniversary-section {

        padding: 18px 10px;

    }


    .anniversary-container {

        padding: 20px 15px;

        gap: 15px;

        border-radius: 22px;

    }


    .anniversary-badge {

        font-size: .68rem;

        padding: 6px 11px;

        margin-bottom: 10px;

    }


    .anniversary-content h2 {

        font-size: 2rem;

        letter-spacing: -1px;

    }


    .anniversary-content p {

        font-size: .78rem;

        line-height: 1.5;

        margin-top: 10px;

    }


    .anniversary-buttons {

        margin-top: 14px;

    }


    .anniversary-video-btn {

        padding: 7px 11px 7px 7px;

        gap: 9px;

    }


    .video-icon {

        width: 36px;

        height: 36px;

        font-size: 1rem;

    }


    .video-text {

        font-size: .76rem;

    }


    .video-text small {

        font-size: .52rem;

    }


    /* COLLAGE */

    .anniversary-gallery {

        height: 285px;

        max-width: 430px;

    }


    .photo-main {

        width: 55%;

        height: 215px;

        left: 22%;

        top: 30px;

    }


    .photo-one {

        width: 105px;

        height: 90px;

        top: 5px;

        right: 0;

    }


    .photo-two {

        width: 105px;

        height: 90px;

        left: 0;

        bottom: 10px;

    }


    .photo-three {

        width: 100px;

        height: 85px;

        right: 3px;

        bottom: 0;

    }


    .anniversary-year {

        width: 52px;

        height: 52px;

        right: 28%;

        top: 15px;

    }


    .anniversary-year strong {

        font-size: .95rem;

    }


    .anniversary-year span {

        font-size: .38rem;

    }


    .photo-label {

        left: 10px;

        bottom: 10px;

        padding: 4px 8px;

        font-size: .55rem;

    }


    .anniversary-line {

        display: none;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .anniversary-section {

        padding: 12px 8px;

    }


    .anniversary-container {

        padding: 17px 12px;

        gap: 10px;

    }


    .anniversary-content h2 {

        font-size: 1.75rem;

    }


    .anniversary-content p {

        font-size: .7rem;

    }


    .anniversary-gallery {

        height: 245px;

    }


    .photo-main {

        width: 55%;

        height: 185px;

        left: 22%;

        top: 28px;

    }


    .photo-one {

        width: 90px;

        height: 76px;

    }


    .photo-two {

        width: 90px;

        height: 76px;

    }


    .photo-three {

        width: 85px;

        height: 72px;

    }


    .anniversary-year {

        width: 46px;

        height: 46px;

    }

}


/* =========================================================
   ARCHIVE SECTION — COMPACT
========================================================= */

.archive-section {
    padding: 45px 5%;

    position: relative;
}


/* HEADER */

.archive-header {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 30px;
}

.archive-badge {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.6);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.4);

    font-size: .8rem;

    margin-bottom: 12px;
}

.archive-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);

    font-weight: 800;

    line-height: 1;

    margin: 0;
}

.archive-header h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #f97316
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.archive-header p {
    margin: 14px auto 0;

    max-width: 650px;

    color: #64748b;

    line-height: 1.55;

    font-size: .9rem;
}


/* LAYOUT */

.archive-layout {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline-column {
    width: 100%;

    overflow: hidden;

    position: relative;

    height: 170px;
}

.timeline-track {
    display: flex;

    flex-direction: row;

    gap: 14px;

    width: max-content;
}

.timeline-track img {
    width: 220px;

    height: 150px;

    object-fit: cover;

    border-radius: 18px;

    cursor: pointer;

    transition: .3s;

    box-shadow:
        0 12px 25px rgba(0,0,0,.07);
}

.timeline-track img:hover {
    transform: translateY(-4px) scale(1.02);
}


/* =========================================================
   SHOWCASE
========================================================= */

.showcase-column {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* FEATURED IMAGE */

.featured-image {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: rgba(255,255,255,.4);

    backdrop-filter: blur(15px);

    padding: 7px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.07);
}

.featured-image img {
    width: 100%;

    height: 480px;

    object-fit: cover;

    border-radius: 19px;

    transition: .4s;
}

.featured-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   PHOTO WALL
========================================================= */

.photo-wall {
    columns: 3 200px;

    column-gap: 12px;
}

.photo-wall img {
    width: 100%;

    margin-bottom: 12px;

    border-radius: 16px;

    cursor: pointer;

    break-inside: avoid;

    transition: .3s;

    box-shadow:
        0 12px 25px rgba(0,0,0,.07);
}

.photo-wall img:nth-child(2) {
    height: 330px;

    object-fit: cover;
}

.photo-wall img:nth-child(5) {
    height: 290px;

    object-fit: cover;
}

.photo-wall img:nth-child(7) {
    height: 330px;

    object-fit: cover;
}

.photo-wall img:hover {
    transform: translateY(-5px) scale(1.02);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.95);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 999999;
}

.lightbox.active {
    display: flex;
}

#lightbox-image {
    max-width: 90%;

    max-height: 88vh;

    border-radius: 18px;

    animation: zoomIn .3s ease;
}

.close-lightbox {
    position: absolute;

    top: 15px;

    right: 25px;

    font-size: 2.5rem;

    color: white;

    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    font-size: 1.2rem;

    background: white;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .anniversary-section {
        padding: 25px 3%;
    }

    .anniversary-container {
        gap: 25px;

        padding: 25px;
    }

    .archive-section {
        padding: 35px 4%;
    }

    .timeline-column {
        height: 165px;
    }

    .timeline-track img {
        width: 210px;
        height: 145px;
    }

    .featured-image img {
        height: 360px;
    }

    .photo-wall {
        columns: 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* ANNIVERSARY */

    .anniversary-section {
        padding: 15px 12px !important;
    }

    .anniversary-container {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 18px;

        border-radius: 20px;
    }

    .anniversary-badge {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 7px;
    }

    .anniversary-content h2 {
        font-size: 1.9rem;

        line-height: 1.05;

        margin-bottom: 8px;
    }

    .anniversary-content p {
        font-size: 11.5px;

        line-height: 1.45;
    }

    .anniversary-buttons {
        margin-top: 12px;

        gap: 7px;
    }

    .anniversary-image img {
        max-height: 230px;

        border-radius: 17px;
    }


    /* ARCHIVE */

    .archive-section {
        padding: 25px 12px !important;
    }

    .archive-header {
        margin-bottom: 18px;
    }

    .archive-badge {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 8px;
    }

    .archive-header h2 {
        font-size: 2.15rem;

        line-height: 1.02;
    }

    .archive-header p {
        margin-top: 9px;

        font-size: 11px;

        line-height: 1.45;
    }


    /* TIMELINE */

    .archive-layout {
        gap: 15px;
    }

    .timeline-column {
        height: 125px;
    }

    .timeline-track {
        gap: 9px;

        overflow-x: auto;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .timeline-track::-webkit-scrollbar {
        display: none;
    }

    .timeline-track img {
        min-width: 155px;

        width: 155px;

        height: 110px;

        border-radius: 13px;
    }


    /* FEATURED */

    .showcase-column {
        gap: 13px;
    }

    .featured-image {
        padding: 5px;

        border-radius: 18px;
    }

    .featured-image img {
        height: 250px;

        border-radius: 14px;
    }


    /* PHOTO WALL */

    .photo-wall {
        columns: 2;

        column-gap: 8px;
    }

    .photo-wall img {
        margin-bottom: 8px;

        border-radius: 12px;
    }

    .photo-wall img:nth-child(2),
    .photo-wall img:nth-child(5),
    .photo-wall img:nth-child(7) {
        height: auto;

        object-fit: cover;
    }


    /* LIGHTBOX */

    #lightbox-image {
        max-width: 94%;

        max-height: 85vh;

        border-radius: 12px;
    }

    .close-lightbox {
        top: 10px;

        right: 15px;

        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 38px;

        height: 38px;

        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE — 360/381px
========================================================= */

@media (max-width: 400px) {

    .anniversary-section {
        padding: 10px 9px !important;
    }

    .anniversary-container {
        padding: 14px;

        gap: 11px;

        border-radius: 17px;
    }

    .anniversary-content h2 {
        font-size: 1.7rem;
    }

    .anniversary-content p {
        font-size: 10.5px;

        line-height: 1.4;
    }

    .anniversary-image img {
        max-height: 190px;
    }


    .archive-section {
        padding: 20px 9px !important;
    }

    .archive-header {
        margin-bottom: 14px;
    }

    .archive-header h2 {
        font-size: 1.9rem;
    }

    .archive-header p {
        font-size: 10px;

        line-height: 1.4;
    }

    .timeline-column {
        height: 110px;
    }

    .timeline-track img {
        min-width: 140px;

        width: 140px;

        height: 95px;
    }

    .featured-image img {
        height: 220px;
    }

    .photo-wall {
        columns: 2;

        column-gap: 6px;
    }

}

/* ---------- Anniversary slider---------- */


/* =====================================
   ABOUT SECTION — COMPACT
===================================== */

.about-premium {
    padding: 45px 5%;
}

/* INTRO */

.about-intro {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 30px;
}

.about-pill {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.6);

    backdrop-filter: blur(15px);

    margin-bottom: 10px;

    font-size: .8rem;
}

.about-intro h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);

    font-weight: 800;

    letter-spacing: -1px;

    margin: 0;
}

.about-intro h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #f97316
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro p {
    margin-top: 12px;

    color: #64748b;

    line-height: 1.6;

    font-size: .95rem;
}


/* HERO IMAGE */

.about-hero-image {
    margin-top: 25px;

    margin-bottom: 40px;
}

.about-hero-image img {
    width: 100%;

    height: 450px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}


/* STORY */

.about-story {
    max-width: 800px;

    margin: 0 auto 45px;

    text-align: center;
}

.story-text h3 {
    font-size: 2rem;

    margin-bottom: 12px;
}

.story-text p {
    color: #64748b;

    line-height: 1.7;

    font-size: .95rem;
}


/* IMPACT */

.impact-strip {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 15px;

    margin-bottom: 45px;
}

.impact-card {
    padding: 25px 20px;

    text-align: center;

    border-radius: 22px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(15px);

    transition: .3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card h3 {
    font-size: 2.3rem;

    margin-bottom: 5px;

    color: #8b5cf6;
}


/* INITIATIVES */

.initiative-cloud {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}

.initiative-cloud span {
    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(255,255,255,.65);

    backdrop-filter: blur(15px);

    font-size: .85rem;

    transition: .3s;
}

.initiative-cloud span:hover {
    transform: translateY(-3px);
}


/* =====================================
   HIDDEN / REVEAL
===================================== */

.hidden {
    opacity: 0;

    transform: translateY(35px);

    transition: .7s ease;
}

.show {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================
   ABOUT MANIFESTO — COMPACT
===================================== */

.about-manifesto {
    position: relative;

    padding: 55px 5%;

    overflow: hidden;
}


/* BRUSH GLOW */

.brush-bg {
    position: absolute;

    width: 700px;

    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.12),
            transparent 70%
        );

    top: -200px;

    left: 50%;

    transform: translateX(-50%);

    filter: blur(100px);

    z-index: -1;
}


/* HEADING */

.about-heading {
    text-align: center;

    margin-bottom: 40px;
}

.about-tag {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.6);

    backdrop-filter: blur(15px);

    margin-bottom: 12px;

    font-size: .8rem;
}

.about-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);

    font-weight: 900;

    line-height: 1;

    margin: 0;
}

.about-heading span {
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #f97316
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* GRID */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 40px;

    align-items: center;
}

.quote-line {
    width: 65px;

    height: 4px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );

    margin-top: 15px;

    margin-bottom: 15px;
}

.about-left h3 {
    font-size: 2.3rem;

    line-height: 1.1;

    margin-bottom: 12px;
}

.about-left p {
    color: #64748b;

    line-height: 1.7;

    font-size: .95rem;
}

.about-right p {
    color: #64748b;

    line-height: 1.7;

    margin-bottom: 15px;

    font-size: .95rem;
}


/* =====================================
   ABOUT IMAGES
===================================== */

.about-images {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 45px 0;
}

.about-images img {
    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 22px;

    transition: .3s;
}

.about-images img:hover {
    transform: scale(1.02);
}


/* =====================================
   STORY
===================================== */

.about-story {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.about-story p {
    line-height: 1.7;

    color: #64748b;

    margin-bottom: 15px;

    font-size: .95rem;
}

.about-story h3 {
    margin-top: 25px;

    font-size: 2rem;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =====================================
   INITIATIVE FLOW
===================================== */

.initiative-flow {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 10px;

    margin-top: 30px;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;
}

.initiative-flow span {
    padding: 10px 14px;

    border-radius: 999px;

    background: white;

    box-shadow:
        0 6px 16px rgba(0,0,0,.06);

    text-align: center;

    font-size: .85rem;

    transition: .3s;
}

.initiative-flow span:hover {
    transform: translateY(-3px);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .about-premium {
        padding: 35px 4%;
    }

    .about-manifesto {
        padding: 40px 4%;
    }

    .about-hero-image img {
        height: 380px;
    }

    .about-grid {
        gap: 25px;
    }

    .about-images {
        margin: 35px 0;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .about-premium {
        padding: 20px 12px !important;
    }

    .about-intro {
        margin-bottom: 20px;
    }

    .about-pill {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 7px;
    }

    .about-intro h2 {
        font-size: 1.9rem;

        line-height: 1.05;
    }

    .about-intro p {
        margin-top: 8px;

        font-size: 11px;

        line-height: 1.45;
    }


    /* HERO IMAGE */

    .about-hero-image {
        margin-top: 15px;

        margin-bottom: 25px;
    }

    .about-hero-image img {
        height: 230px;

        border-radius: 18px;
    }


    /* STORY */

    .about-story {
        margin-bottom: 25px;
    }

    .story-text h3 {
        font-size: 1.7rem;

        margin-bottom: 8px;
    }

    .story-text p {
        font-size: 11px;

        line-height: 1.5;
    }


    /* IMPACT */

    .impact-strip {
        grid-template-columns: 1fr;

        gap: 9px;

        margin-bottom: 25px;
    }

    .impact-card {
        padding: 16px;

        min-height: auto;
    }

    .impact-card h3 {
        font-size: 1.9rem;

        margin-bottom: 3px;
    }


    /* INITIATIVES */

    .initiative-cloud {
        gap: 7px;
    }

    .initiative-cloud span {
        padding: 8px 13px;

        font-size: 10px;
    }


    /* =================================
       MANIFESTO MOBILE
    ================================= */

    .about-manifesto {
        padding: 25px 12px !important;
    }

    .about-heading {
        margin-bottom: 25px;
    }

    .about-tag {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 8px;
    }

    .about-heading h2 {
        font-size: 2.2rem;

        line-height: 1;
    }

    .about-heading span {
        margin-top: 5px;
    }


    /* GRID */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .quote-line {
        width: 50px;

        height: 3px;

        margin-top: 8px;

        margin-bottom: 10px;
    }

    .about-left h3 {
        font-size: 1.8rem;

        margin-bottom: 8px;
    }

    .about-left p,
    .about-right p {
        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 10px;
    }


    /* IMAGES */

    .about-images {
        grid-template-columns: 1fr;

        gap: 9px;

        margin: 25px 0;
    }

    .about-images img {
        height: 210px;

        border-radius: 16px;
    }


    /* STORY */

    .about-story h3 {
        font-size: 1.7rem;

        margin-top: 18px;
    }

    .about-story p {
        font-size: 11px;

        line-height: 1.5;

        margin-bottom: 10px;
    }


    /* INITIATIVES */

    .initiative-flow {
        grid-template-columns: 1fr;

        gap: 7px;

        margin-top: 20px;
    }

    .initiative-flow span {
        padding: 8px 12px;

        font-size: 10px;
    }

}


/* =====================================
   VERY SMALL MOBILE
===================================== */

@media (max-width: 400px) {

    .about-premium {
        padding: 15px 9px !important;
    }

    .about-intro h2 {
        font-size: 1.7rem;
    }

    .about-hero-image img {
        height: 190px;
    }

    .about-manifesto {
        padding: 20px 9px !important;
    }

    .about-heading h2 {
        font-size: 1.9rem;
    }

    .about-left h3 {
        font-size: 1.6rem;
    }

    .about-images img {
        height: 180px;
    }

}


/* FEATURED PROGRAMS STARTS */
/* =====================================
   JOURNEY SECTION — COMPACT
===================================== */

.journey-section {
    position: relative;

    padding: 45px 5%;

    overflow: hidden;
}


/* =====================================
   HEADER
===================================== */

.journey-header {
    text-align: center;

    max-width: 800px;

    margin: 0 auto 40px;
}

.journey-badge {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 999px;

    background: rgba(255,255,255,.6);

    backdrop-filter: blur(15px);

    margin-bottom: 10px;

    font-size: .8rem;

    font-weight: 600;
}

.journey-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);

    line-height: 1;

    font-weight: 900;

    margin: 0;
}

.journey-header h2 span {
    display: block;

    margin-top: 6px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899,
            #f97316
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-header p {
    margin-top: 12px;

    color: #64748b;

    line-height: 1.6;

    font-size: .95rem;
}


/* =====================================
   TIMELINE
===================================== */

.journey-section::before {
    content: "";

    position: absolute;

    top: 260px;

    bottom: 50px;

    left: 50%;

    width: 3px;

    background:
        linear-gradient(
            #8b5cf6,
            #ec4899,
            #f97316
        );

    transform: translateX(-50%);

    border-radius: 50px;

    opacity: .25;
}


/* =====================================
   JOURNEY BLOCK
===================================== */

.journey-block {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: center;

    margin-bottom: 65px;

    position: relative;
}

.journey-block:last-child {
    margin-bottom: 10px;
}


/* TIMELINE DOT */

.journey-block::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    width: 18px;

    height: 18px;

    background: white;

    border: 4px solid #8b5cf6;

    border-radius: 50%;

    transform: translate(-50%,-50%);

    z-index: 5;
}


/* =====================================
   REVERSE
===================================== */

.reverse .journey-image {
    order: 2;
}

.reverse .journey-content {
    order: 1;
}


/* =====================================
   JOURNEY IMAGE
   FULL IMAGE — NO CROPPING
===================================== */

.journey-image {
    width: 100%;
    height: auto;
    position: relative;
min-height: 0;
padding: 0;
    overflow: hidden;

    border-radius: 24px;

    background: rgba(255,255,255,.45);

    box-shadow:
        0 18px 40px rgba(0,0,0,.10);

    display: flex;

    align-items: center;

    justify-content: center;
}

.journey-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: .6s;
}

.journey-image:hover img {
    transform: scale(1.02);
}


/* =====================================
   CONTENT
===================================== */

.journey-content {
    padding: 22px;

    background:
        rgba(255,255,255,.45);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.05);
}

.program-tag {
    display: inline-block;

    padding: 7px 14px;

    border-radius: 999px;

    color: white;

    font-size: .75rem;

    margin-bottom: 12px;

    font-weight: 600;
}

.journey-content h3 {
    font-size: 2.2rem;

    margin-bottom: 12px;

    font-weight: 800;
}

.journey-content p {
    color: #64748b;

    line-height: 1.7;

    font-size: .95rem;

    margin-bottom: 0;
}


/* =====================================
   PROGRAM COLORS
===================================== */

.purple {
    background: #8b5cf6;
}

.orange {
    background: #f97316;
}

.blue {
    background: #3b82f6;
}

.green {
    background: #22c55e;
}

.pink {
    background: #ec4899;
}

.gold {
    background: #eab308;
}


/* =====================================
   HOVER
===================================== */

.journey-block:hover .journey-content {
    transform: translateY(-5px);

    transition: .4s;
}

.journey-block:hover .journey-image {
    transform: translateY(-5px);

    transition: .4s;
}


/* =====================================
   BACKGROUND GLOW
===================================== */

.journey-section::after {
    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background: #8b5cf6;

    filter: blur(220px);

    opacity: .06;

    top: -150px;

    right: -250px;

    border-radius: 50%;

    z-index: -1;
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:991px) {

    .journey-section {
        padding: 30px 4%;
    }

    .journey-section::before {
        display: none;
    }

    .journey-block {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 40px;
    }

    .journey-block::before {
        display: none;
    }

    .reverse .journey-image {
        order: 1;
    }

    .reverse .journey-content {
        order: 2;
    }

    .journey-image img {
        width: 100%;

        height: auto;

        max-height: 350px;

        object-fit: contain;
    }

    .journey-content {
        padding: 20px;
    }

    .journey-content h3 {
        font-size: 1.9rem;
    }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:576px) {

    .journey-section {
        padding: 20px 12px !important;
    }

    .journey-header {
        margin-bottom: 25px;
    }

    .journey-badge {
        padding: 6px 12px;

        font-size: 10px;

        margin-bottom: 7px;
    }

    .journey-header h2 {
        font-size: 2.1rem;

        line-height: 1;
    }

    .journey-header p {
        font-size: 11px;

        line-height: 1.5;

        margin-top: 8px;
    }


    /* FULL IMAGE */

    .journey-image {
        border-radius: 18px;
    }

    .journey-image img {
        width: 100%;

        height: auto;

        max-height: 280px;

        object-fit: contain;
    }


    .journey-content {
        padding: 17px;

        border-radius: 18px;
    }

    .program-tag {
        padding: 6px 11px;

        font-size: 10px;

        margin-bottom: 8px;
    }

    .journey-content h3 {
        font-size: 1.65rem;

        margin-bottom: 8px;
    }

    .journey-content p {
        font-size: 11px;

        line-height: 1.5;
    }

    .journey-block {
        gap: 14px;

        margin-bottom: 35px;
    }

}


/* =====================================
   EXTRA SMALL
===================================== */

@media(max-width:400px) {

    .journey-section {
        padding: 18px 9px !important;
    }

    .journey-header h2 {
        font-size: 1.9rem;
    }

    .journey-image img {
        max-height: 240px;
    }

    .journey-content h3 {
        font-size: 1.5rem;
    }

}


/* =====================================
   SCROLL REVEAL
===================================== */

.journey-hidden {
    opacity: 0;

    transition: all .8s ease;
}

.from-left {
    transform: translateX(-80px);
}

.from-right {
    transform: translateX(80px);
}

.journey-show {
    opacity: 1;

    transform: translateX(0);
}


/* =====================================
   ACTIVE TIMELINE
===================================== */

.active-journey::before {
    background: #ec4899 !important;

    border-color: #ffffff;

    box-shadow:
        0 0 0 10px rgba(236,72,153,.15);

    transition: .5s;
}


/* =====================================
   IMAGE SMOOTHNESS
===================================== */

.journey-image img {
    will-change: transform;
}

.journey-block {
    transition: transform .4s ease;
}

.journey-block:hover {
    transform: scale(1.01);
}


/* =====================================
   TITLE ANIMATION
===================================== */

.journey-header h2 {
    animation:
        floatingTitle 6s ease-in-out infinite;
}

@keyframes floatingTitle {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

  /* TESTIMONIALS STARTS */
  
  /* =========================================
   ARIVU BHARAT — VIEWS / TESTIMONIALS
   ISOLATED CSS
========================================= */

#arivu-views {
    position: relative;
    overflow: hidden;
    padding: 65px 0 50px;
    /* background: linear-gradient(135deg, #f8f6ff 0%, #ffffff 50%, #fff6fb 100%); */
}

/* BACKGROUND GLOWS */

.arivu-views-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .12;
}

.arivu-views-glow.glow-left {
    width: 280px;
    height: 280px;
    background: #7c3aed;
    top: -150px;
    left: -100px;
}

.arivu-views-glow.glow-right {
    width: 320px;
    height: 320px;
    background: #ec4899;
    right: -140px;
    bottom: -180px;
}


/* CONTAINER */

.arivu-views-container {
    position: relative;
    width: min(1050px, 90%);
    margin: auto;
}


/* =========================================
   TITLE
========================================= */

.arivu-views-title {
    text-align: center;
    margin-bottom: 32px;
}

.arivu-views-title span {
    display: inline-block;
    color: #7c3aed;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 7px;
}

.arivu-views-title h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.arivu-views-title h2 b {
    background: linear-gradient(90deg, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   SLIDER
========================================= */

.arivu-views-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.arivu-views-track {
    display: flex;
    width: 100%;
    transition: transform .75s cubic-bezier(.22, .61, .36, 1);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.arivu-views-track.dragging {
    cursor: grabbing;
    transition: none;
}

.arivu-views-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}


/* =========================================
   CARD
========================================= */

.arivu-views-card {
    position: relative;
    min-height: 295px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 38px 55px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.96),
            rgba(248,246,255,.90)
        );

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 18px 50px rgba(35,25,70,.09);
}


/* GLOSSY HIGHLIGHT */

.arivu-views-card::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    top: -260px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.9),
            transparent 70%
        );

    pointer-events: none;
}


/* LEFT COLOR ACCENT */

.arivu-views-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 35px;

    width: 4px;
    height: 80px;

    border-radius: 0 10px 10px 0;

    background:
        linear-gradient(
            #7c3aed,
            #db2777
        );
}


/* =========================================
   QUOTE
========================================= */

.arivu-views-quote {
    position: absolute;

    top: -25px;
    left: 30px;

    font-family: Georgia, serif;

    font-size: 145px;
    font-weight: 900;

    line-height: 1;

    color: rgba(124,58,237,.07);

    pointer-events: none;
}


/* =========================================
   TEXT
========================================= */

.arivu-views-text {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 0 24px;

    color: #374151;

    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================
   PERSON
========================================= */

.arivu-views-person {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;
}

.arivu-views-person img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow:
        0 7px 22px rgba(0,0,0,.12);
}

.arivu-views-person h3 {
    margin: 0 0 3px;
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
}

.arivu-views-person span {
    color: #7c3aed;
    font-size: .72rem;
    font-weight: 600;
}


/* =========================================
   CARD NUMBER
========================================= */

.arivu-views-number {
    position: absolute;
    right: 25px;
    bottom: 18px;
    color: rgba(17,24,39,.07);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}


/* =========================================
   CONTROLS
========================================= */

.arivu-views-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.arivu-views-controls button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(124,58,237,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.arivu-views-controls button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(124,58,237,.32);
}

.arivu-views-controls button i {
    pointer-events: none;
}


/* =========================================
   DOTS
========================================= */

#arivu-views-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arivu-views-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #d7d2df;
    cursor: pointer;
    transition:
        width .3s ease,
        background .3s ease;
}

.arivu-views-dot.active {
    width: 22px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #db2777
        );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    #arivu-views {
        padding: 55px 0 45px;
    }

    .arivu-views-card {
        min-height: 310px;
        padding: 35px 40px;
    }

    .arivu-views-text {
        font-size: .94rem;
        line-height: 1.7;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    #arivu-views {
        padding: 48px 0 38px;
    }

    .arivu-views-container {
        width: 91%;
    }

    .arivu-views-title {
        margin-bottom: 24px;
    }

    .arivu-views-title span {
        font-size: .58rem;
        letter-spacing: 2px;
    }

    .arivu-views-title h2 {
        font-size: 2rem;
    }

    .arivu-views-card {
        min-height: 330px;

        padding:
            32px
            24px;

        border-radius: 21px;
    }

    .arivu-views-card::before {
        top: 28px;
        height: 60px;
    }

    .arivu-views-quote {
        left: 14px;
        top: -12px;
        font-size: 105px;
    }

    .arivu-views-text {
        font-size: .86rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .arivu-views-person {
        gap: 12px;
    }

    .arivu-views-person img {
        width: 55px;
        height: 55px;
    }

    .arivu-views-person h3 {
        font-size: .87rem;
    }

    .arivu-views-person span {
        font-size: .62rem;
    }

    .arivu-views-number {
        right: 16px;
        bottom: 12px;
        font-size: 2.2rem;
    }

    .arivu-views-controls {
        margin-top: 17px;
        gap: 15px;
    }

    .arivu-views-controls button {
        width: 37px;
        height: 37px;
    }

}
  /* Testimonial ENds */

  
/* Team Section Satrts */
/* =========================================
   ARIVU BHARAT — TEAM
========================================= */

#arivu-team {

    position: relative;

    overflow: hidden;

    padding: 20px 0 60px;

    /* background:
        linear-gradient(
            135deg,
            #fff9f5,
            #f8f6ff 50%,
            #fff7fb
        ); */

}


/* BACKGROUND GLOWS */

.arivu-team-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .12;

    pointer-events: none;

}

.team-glow-one {

    width: 300px;
    height: 300px;

    /* background: #f59e0b; */

    top: -150px;
    left: -100px;

}

.team-glow-two {

    width: 350px;
    height: 350px;

    background: #8b5cf6;

    right: -160px;
    bottom: -180px;

}


/* CONTAINER */

.arivu-team-container {

    position: relative;

    width: min(1250px, 92%);

    margin: auto;

}


/* =========================================
   TITLE
========================================= */

.arivu-team-title {

    text-align: center;

    margin-bottom: 40px;

}

.arivu-team-title span {

    display: block;

    margin-bottom: 7px;

    color: #8b5cf6;

    font-size: .63rem;

    font-weight: 800;

    letter-spacing: 3px;

}

.arivu-team-title h2 {

    margin: 0;

    color: #171717;

    font-size: clamp(
        2rem,
        4vw,
        3rem
    );

    font-weight: 850;

    letter-spacing: -1.5px;

}

.arivu-team-title h2 b {

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #db2777
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.arivu-team-title p {

    max-width: 550px;

    margin: 10px auto 0;

    color: #737373;

    font-size: .86rem;

    line-height: 1.6;

}


/* =========================================
   GRID
========================================= */

.arivu-team-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 18px;

}


/* =========================================
   MEMBER CARD
========================================= */

.arivu-team-card {

    position: relative;

    text-align: center;

    padding: 18px 10px 16px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.72);

    border:
        1px solid rgba(255,255,255,.9);

    box-shadow:
        0 8px 25px
        rgba(40,30,70,.055);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

    overflow: hidden;

}


/* GLOSSY LIGHT */

.arivu-team-card::before {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    top: -60px;
    right: -30px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.8);

    filter: blur(12px);

    pointer-events: none;

}


/* HOVER */

.arivu-team-card:hover {

    transform:
        translateY(-7px);

    background:
        rgba(255,255,255,.95);

    box-shadow:
        0 18px 40px
        rgba(50,35,90,.13);

}


/* =========================================
   PHOTO
========================================= */

.arivu-team-photo {

    position: relative;
    width: 125px;
    height: 125px;

    margin: 0 auto 13px;

}

.arivu-team-photo::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #ec4899,
            #f59e0b
        );

    opacity: .75;

    transition:
        transform .4s ease;

}

.arivu-team-card:hover
.arivu-team-photo::before {

    transform:
        rotate(25deg);

}

.arivu-team-photo img {

    position: relative;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #fff;

    display: block;

    box-shadow:
        0 7px 20px
        rgba(0,0,0,.10);

    transition:
        transform .4s ease;

}

.arivu-team-card:hover
.arivu-team-photo img {

    transform:
        scale(1.04);

}


/* =========================================
   NUMBER
========================================= */

.arivu-team-photo span {

    position: absolute;

    right: -3px;
    bottom: 3px;

    z-index: 3;

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: .55rem;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #db2777
        );

    border: 3px solid #fff;

    box-shadow:
        0 4px 10px
        rgba(0,0,0,.12);

}


/* =========================================
   NAME
========================================= */

.arivu-team-card h3 {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #202124;

    font-size: .83rem;

    font-weight: 750;

    line-height: 1.3;

}


/* =========================================
   RESPONSIVE
========================================= */


/* LARGE TABLET / LAPTOP */

@media (max-width: 1150px) {

    .arivu-team-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;

    }

}


/* TABLET */

@media (max-width: 800px) {

    #arivu-team {

        padding: 55px 0 45px;

    }

    .arivu-team-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;

    }

    .arivu-team-photo {

        width: 115px;
        height: 115px;

    }

}


/* MOBILE */

@media (max-width: 600px) {

    #arivu-team {

        padding: 48px 0 40px;

    }

    .arivu-team-container {

        width: 92%;

    }

    .arivu-team-title {

        margin-bottom: 28px;

    }

    .arivu-team-title span {

        font-size: .55rem;

        letter-spacing: 2px;

    }

    .arivu-team-title h2 {

        font-size: 2rem;

    }

    .arivu-team-title p {

        font-size: .78rem;

    }

    .arivu-team-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }

    .arivu-team-card {

        padding: 15px 7px 14px;

        border-radius: 17px;

    }

    .arivu-team-photo {

        width: 105px;
        height: 105px;

        margin-bottom: 11px;

    }

    .arivu-team-photo span {

        width: 24px;
        height: 24px;

        font-size: .5rem;

    }

    .arivu-team-card h3 {

        font-size: .76rem;

    }

}


/* VERY SMALL PHONES */

@media (max-width: 380px) {

    .arivu-team-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;

    }

    .arivu-team-photo {

        width: 90px;
        height: 90px;

    }

    .arivu-team-card h3 {

        font-size: .7rem;

    }

}



/* Chief Patrons Starts */


/* =========================================
   ARIVU BHARAT — CHIEF PATRONS
========================================= */

#arivu-patrons {

    position: relative;

    overflow: hidden;

    padding: 65px 0 60px;

    /* background:
        linear-gradient(
            135deg,
            #fffaf6,
            #f8f6ff 50%,
            #fff7fb
        ); */

}


/* BACKGROUND GLOW */

.arivu-patrons-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .11;

    pointer-events: none;

}

.patron-glow-one {

    width: 300px;
    height: 300px;

    background: #f59e0b;

    top: -160px;
    left: -100px;

}

.patron-glow-two {

    width: 350px;
    height: 350px;

    background: #8b5cf6;

    right: -150px;
    bottom: -180px;

}


/* CONTAINER */

.arivu-patrons-container {

    position: relative;

    width: min(1250px, 92%);

    margin: auto;

}


/* =========================================
   TITLE
========================================= */

.arivu-patrons-title {

    text-align: center;

    margin-bottom: 40px;

}

.arivu-patrons-title span {

    display: block;

    color: #8b5cf6;

    font-size: .62rem;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 7px;

}

.arivu-patrons-title h2 {

    margin: 0;

    color: #171717;

    font-size: clamp(
        2rem,
        4vw,
        3rem
    );

    font-weight: 850;

    letter-spacing: -1.5px;

}

.arivu-patrons-title h2 b {

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #db2777
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.arivu-patrons-title p {

    max-width: 600px;

    margin: 10px auto 0;

    color: #737373;

    font-size: .85rem;

    line-height: 1.6;

}


/* =========================================
   GRID
========================================= */

.arivu-patrons-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 18px;

}


/* =========================================
   CARD
========================================= */

.arivu-patron-card {

    position: relative;

    text-align: center;

    padding: 18px 9px 17px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.76);

    border:
        1px solid rgba(255,255,255,.95);

    box-shadow:
        0 8px 25px
        rgba(40,30,70,.055);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.arivu-patron-card::before {

    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    top: -65px;
    right: -35px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.85);

    filter: blur(10px);

    pointer-events: none;

}

.arivu-patron-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(45,30,80,.13);

}


/* =========================================
   PHOTO
========================================= */

.arivu-patron-photo {

    position: relative;

    width: 120px;
    height: 120px;

    margin:
        0 auto 13px;

}

.arivu-patron-photo::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #db2777,
            #f59e0b
        );

    opacity: .7;

    transition:
        transform .4s ease;

}

.arivu-patron-card:hover
.arivu-patron-photo::before {

    transform:
        rotate(25deg);

}

.arivu-patron-photo img {

    position: relative;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #fff;

    box-shadow:
        0 7px 20px
        rgba(0,0,0,.11);

    transition:
        transform .4s ease;

}

.arivu-patron-card:hover
.arivu-patron-photo img {

    transform:
        scale(1.04);

}


/* =========================================
   NUMBER
========================================= */

.arivu-patron-photo span {

    position: absolute;

    z-index: 4;

    right: -3px;
    bottom: 3px;

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: .53rem;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #db2777
        );

    border: 3px solid #fff;

    box-shadow:
        0 4px 10px
        rgba(0,0,0,.12);

}


/* =========================================
   NAME
========================================= */

.arivu-patron-card h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 5px;

    color: #202124;

    font-size: .82rem;

    font-weight: 800;

    line-height: 1.3;

}


/* =========================================
   DESIGNATION
========================================= */

.arivu-patron-card p {

    position: relative;

    z-index: 2;

    margin: 0;

    color: #777;

    font-size: .64rem;

    line-height: 1.4;

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1150px) {

    .arivu-patrons-grid {

        grid-template-columns:
            repeat(4, 1fr);

        gap: 16px;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    #arivu-patrons {

        padding: 55px 0 45px;

    }

    .arivu-patrons-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;

    }

    .arivu-patron-photo {

        width: 112px;
        height: 112px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    #arivu-patrons {

        padding: 48px 0 40px;

    }

    .arivu-patrons-container {

        width: 92%;

    }

    .arivu-patrons-title {

        margin-bottom: 28px;

    }

    .arivu-patrons-title span {

        font-size: .55rem;

        letter-spacing: 2px;

    }

    .arivu-patrons-title h2 {

        font-size: 2rem;

    }

    .arivu-patrons-title p {

        font-size: .76rem;

    }

    .arivu-patrons-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }

    .arivu-patron-card {

        padding:
            15px
            7px
            14px;

        border-radius: 17px;

    }

    .arivu-patron-photo {

        width: 100px;
        height: 100px;

        margin-bottom: 11px;

    }

    .arivu-patron-photo span {

        width: 24px;
        height: 24px;

        font-size: .48rem;

    }

    .arivu-patron-card h3 {

        font-size: .74rem;

    }

    .arivu-patron-card p {

        font-size: .59rem;

    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .arivu-patrons-grid {

        gap: 9px;

    }

    .arivu-patron-photo {

        width: 88px;
        height: 88px;

    }

    .arivu-patron-card h3 {

        font-size: .68rem;

    }

    .arivu-patron-card p {

        font-size: .55rem;

    }

}

/* Chief Patrons Ends */






/* =========================================================
   ARIVU BHARAT — PREMIUM BLOG PAGE
   Works with the HTML provided above
========================================================= */


/* =========================================================
   MAIN BLOG
========================================================= */

#arivu-blog {

    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #ffffff 48%,
            #faf7ff 100%
        );

    color: #202124;

}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.ab-blog-container {

    width: min(1180px, 92%);

    margin: 0 auto;

}


/* =========================================================
   BLOG HERO
========================================================= */

.ab-blog-hero {

    position: relative;

    overflow: hidden;

    padding: 10px 0 55px;

    background:
        linear-gradient(
            135deg,
            #f6f1ff,
            #fff8fb
        );

}


/* BACKGROUND GLOW */

.ab-blog-hero-glow {

    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    right: 5%;
    border-radius: 50%;
    background: #c4b5fd;

    filter: blur(100px);
    opacity: .22;
    pointer-events: none;

}


/* SMALL DECORATIVE CIRCLE */

.ab-blog-hero::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -60px;
    bottom: -90px;

    border-radius: 50%;

    border: 35px solid rgba(236,72,153,.06);

}


/* KICKER */

.ab-blog-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color: #7c3aed;

    font-size: .55rem;

    font-weight: 800;

    letter-spacing: 3px;

}


/* MAIN TITLE */

.ab-blog-hero h1 {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0;

    color: #151515;

    font-size:
        clamp(
            3rem,
            7vw,
            5.4rem
        );

    line-height: .86;

    letter-spacing: -4px;

    font-weight: 900;

}


/* GRADIENT WORD */

.ab-blog-hero h1 span {

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #db2777
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* HERO DESCRIPTION */

.ab-blog-hero p {

    max-width: 620px;

    margin: 24px 0 0;

    color: #68707c;

    font-size: .95rem;

    line-height: 1.8;

}

/* =========================================================
   ARIVU BHARAT — FEATURED STORIES
   COMPLETE STANDALONE VERSION
========================================================= */

.ab-featured-section {
    position: relative;
    width: 100%;
    padding: 45px 0 50px;
    overflow: hidden;
}

.ab-featured-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ab-featured-track {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.ab-featured-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.ab-featured-slide .ab-featured-grid {

    display: grid;

    grid-template-columns:
        1.08fr
        .92fr;

    width: 100%;
    min-height: 420px;

    margin: 0;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    border: 1px solid rgba(255,255,255,.9);

    box-shadow:
        0 20px 60px rgba(40,30,70,.10);
}


/* =========================================================
   IMAGE
========================================================= */

.ab-featured-slide .ab-featured-image {

    position: relative;

    width: 100%;
    height: 420px;

    min-height: 0;

    overflow: hidden;

    background: #eeeeee;
}

.ab-featured-slide .ab-featured-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.ab-featured-slide:hover
.ab-featured-image img {

    transform: scale(1.04);

}


/* IMAGE LABEL */

.ab-featured-slide .ab-featured-label {

    position: absolute;

    left: 22px;
    bottom: 22px;

    z-index: 5;

    padding: 8px 14px;

    border-radius: 50px;

    color: #ffffff;

    background:
        rgba(20,15,30,.70);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    font-size: .58rem;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   CONTENT
========================================================= */

.ab-featured-slide .ab-featured-content {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 42px 45px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fbf9ff
        );

}


/* SMALL GLOW */

.ab-featured-slide .ab-featured-content::after {

    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(124,58,237,.06);

    filter: blur(10px);

    pointer-events: none;
}


/* =========================================================
   META
========================================================= */

.ab-featured-slide .ab-blog-meta {

    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin: 0 0 15px;
}

.ab-featured-slide .ab-blog-meta span {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #7c3aed;

    font-size: .63rem;

    font-weight: 750;

}

.ab-featured-slide .ab-blog-meta i {

    font-size: .7rem;

}


/* =========================================================
   TITLE
========================================================= */

.ab-featured-slide .ab-featured-content h2 {

    position: relative;
    z-index: 2;

    margin: 0 0 17px;

    color: #171717;

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.55rem
        );

    line-height: 1.13;

    letter-spacing: -1.3px;

    font-weight: 850;

}


/* =========================================================
   TEXT
========================================================= */

.ab-featured-slide .ab-featured-content p {

    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #6b7280;

    font-size: .83rem;

    line-height: 1.72;

}

.ab-featured-slide
.ab-featured-content
.ab-featured-intro {

    color: #424957;

    font-weight: 600;

}


/* =========================================================
   READ BUTTON
========================================================= */

.ab-featured-slide .ab-read-story {

    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: 9px;

    padding: 10px 17px;

    border-radius: 50px;

    color: #ffffff;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

    font-size: .67rem;

    font-weight: 800;

    box-shadow:
        0 7px 18px
        rgba(124,58,237,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.ab-featured-slide .ab-read-story:hover {

    color: #ffffff;

    transform:
        translateX(4px);

    box-shadow:
        0 10px 25px
        rgba(124,58,237,.28);

}


/* =========================================================
   CONTROLS
========================================================= */

.ab-featured-controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    height: 38px;

    margin-top: 17px;

}


/* ARROWS */

.ab-featured-controls button {

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    padding: 0;

    margin: 0;

    border: 0;

    outline: none;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

    cursor: pointer;

    box-shadow:
        0 6px 16px
        rgba(124,58,237,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.ab-featured-controls button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px
        rgba(124,58,237,.28);

}

.ab-featured-controls button i {

    pointer-events: none;

    font-size: .75rem;

}


/* =========================================================
   DOTS
========================================================= */

.ab-featured-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    min-width: 25px;

}

.ab-featured-dot {

    width: 5px;
    height: 5px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #d8d3df;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;

}

.ab-featured-dot.active {

    width: 14px;
    height: 5px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #db2777
        );

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ab-featured-section {

        padding: 45px 0;

    }

    .ab-featured-slide .ab-featured-grid {

        grid-template-columns:
            1fr;

    }

    .ab-featured-slide .ab-featured-image {

        height: 300px;

    }

    .ab-featured-slide .ab-featured-content {

        padding: 32px 35px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ab-featured-section {

        padding: 35px 0 40px;

    }

    .ab-featured-slide .ab-featured-grid {

        min-height: 0;

        border-radius: 21px;

    }

    .ab-featured-slide .ab-featured-image {

        height: 220px;

    }

    .ab-featured-slide .ab-featured-label {

        left: 16px;
        bottom: 16px;

        padding: 7px 11px;

        font-size: .52rem;

    }

    .ab-featured-slide .ab-featured-content {

        padding: 25px 21px 28px;

    }

    .ab-featured-slide
    .ab-featured-content h2 {

        margin-bottom: 13px;

        font-size: 1.55rem;

        letter-spacing: -.8px;

    }

    .ab-featured-slide
    .ab-featured-content p {

        font-size: .77rem;

        line-height: 1.65;

    }

    .ab-featured-slide .ab-blog-meta {

        gap: 9px;

        margin-bottom: 11px;

    }

    .ab-featured-slide
    .ab-blog-meta span {

        font-size: .57rem;

    }

    .ab-featured-slide .ab-read-story {

        margin-top: 6px;

        padding: 9px 14px;

        font-size: .61rem;

    }

    .ab-featured-controls {

        margin-top: 13px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .ab-featured-slide .ab-featured-image {

        height: 195px;

    }

    .ab-featured-slide .ab-featured-content {

        padding: 22px 18px 25px;

    }

    .ab-featured-slide
    .ab-featured-content h2 {

        font-size: 1.4rem;

    }

}

/* =========================================================
   MAIN BLOG AREA
========================================================= */

.ab-blog-main {

    padding: 15px 0 70px;

}


.ab-blog-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, .78fr);

    gap: 55px;

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.ab-section-heading {

    display: flex;

    align-items: flex-end;

    gap: 20px;

    margin-bottom: 27px;

}


.ab-section-heading span,
.ab-gallery-heading span {

    display: block;

    color: #7c3aed;

    font-size: .6rem;

    font-weight: 850;

    letter-spacing: 2.5px;

}


.ab-section-heading h2,
.ab-gallery-heading h2 {

    margin: 5px 0 0;

    color: #171717;

    font-size: 2rem;

    line-height: 1;

    letter-spacing: -1px;

    font-weight: 850;

}


.ab-section-heading h2 b,
.ab-gallery-heading h2 b {

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #db2777
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.ab-heading-line {

    flex: 1;

    height: 1px;

    margin-bottom: 7px;

    background:
        #e9e5ed;

}


/* =========================================================
   BLOG POST
========================================================= */

.ab-blog-post {

    display: grid;

    grid-template-columns:
        225px
        minmax(0,1fr);

    gap: 24px;

    padding-bottom: 27px;

    margin-bottom: 27px;

    border-bottom:
        1px solid #ebe7ef;

}


.ab-post-image {

    height: 165px;

    overflow: hidden;

    border-radius: 17px;

    background: #eeeeee;

}


.ab-post-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .55s ease;

}


.ab-blog-post:hover
.ab-post-image img {

    transform:
        scale(1.07);

}


/* POST CONTENT */

.ab-post-content {

    min-width: 0;

}


.ab-post-content .ab-blog-meta {

    margin-bottom: 9px;

}


.ab-post-content h3 {

    margin: 0 0 9px;

    color: #171717;

    font-size: 1.25rem;

    line-height: 1.25;

    letter-spacing: -.5px;

    font-weight: 800;

}


.ab-post-content p {

    margin: 0 0 12px;

    color: #707780;

    font-size: .78rem;

    line-height: 1.65;

}


.ab-post-content > a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #7c3aed;

    text-decoration: none;

    font-size: .68rem;

    font-weight: 800;

    transition:
        gap .25s ease,
        color .25s ease;

}


.ab-post-content > a:hover {

    gap: 11px;

    color: #db2777;

}


/* =========================================================
   PHOTO JOURNAL
========================================================= */

.ab-blog-gallery {

    position: relative;

}


.ab-gallery-heading {

    margin-bottom: 22px;

}


.ab-gallery-heading h2 {

    font-size: 1.8rem;

}


/* =========================================================
   GALLERY GRID
========================================================= */

.ab-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    grid-auto-rows: 125px;

    gap: 9px;

}


.ab-gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    background: #eeeeee;

}


.ab-gallery-item.large {

    grid-row:
        span 2;

}


.ab-gallery-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .55s
        cubic-bezier(.2,.7,.2,1);

}


.ab-gallery-item:hover img {

    transform:
        scale(1.08);

}


/* IMAGE DARK GRADIENT */

.ab-gallery-item::after {

    content: "";

    position: absolute;

    inset: 40% 0 0;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.7)
        );

    pointer-events: none;

}


/* GALLERY LABEL */

.ab-gallery-item span {

    position: absolute;

    z-index: 3;

    left: 11px;
    bottom: 9px;

    color: #ffffff;

    font-size: .59rem;

    font-weight: 750;

}


/* =========================================================
   GALLERY BUTTON
========================================================= */

.ab-gallery-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 13px;

    padding: 11px;

    border-radius: 11px;

    color: #7c3aed;

    text-decoration: none;

    background:
        #f5f1ff;

    font-size: .67rem;

    font-weight: 800;

    transition:
        background .3s ease,
        color .3s ease;

}


.ab-gallery-button:hover {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.ab-blog-message {

    padding: 0 0 65px;

}


.ab-message-box {

    position: relative;

    overflow: hidden;

    padding: 50px 30px;

    border-radius: 27px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #f3efff,
            #fff0f7
        );

}


.ab-message-box::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -110px;
    top: -110px;

    border-radius: 50%;

    border:
        35px solid
        rgba(124,58,237,.05);

}


.ab-message-box span {

    position: relative;

    color: #7c3aed;

    font-size: .6rem;

    font-weight: 850;

    letter-spacing: 2.5px;

}


.ab-message-box h2 {

    position: relative;

    max-width: 650px;

    margin: 10px auto;

    color: #171717;

    font-size:
        clamp(
            1.8rem,
            4vw,
            3rem
        );

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 850;

}


.ab-message-box h2 b {

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #db2777
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.ab-message-box p {

    position: relative;

    margin: 0;

    color: #747983;

    font-size: .82rem;

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .ab-blog-layout {

        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(280px, .75fr);

        gap: 35px;

    }

    .ab-featured-content {

        padding: 38px;

    }

    .ab-blog-post {

        grid-template-columns:
            190px
            minmax(0,1fr);

    }

    .ab-post-image {

        height: 155px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .ab-blog-hero {

        padding: 75px 0 55px;

    }


    .ab-featured-grid {

        grid-template-columns:
            1fr;

    }

    .ab-featured-image {

        min-height: 360px;

    }

    .ab-featured-content {

        padding: 40px;

    }


    .ab-blog-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .ab-blog-gallery {

        max-width: 650px;

    }


    .ab-gallery-grid {

        grid-auto-rows: 145px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ab-blog-container {

        width: 91%;

    }


    /* HERO */

    .ab-blog-hero {

        padding: 60px 0 48px;

    }

    .ab-blog-kicker {

        font-size: .55rem;

        letter-spacing: 2px;

    }

    .ab-blog-hero h1 {

        font-size: 3rem;

        letter-spacing: -2.5px;

    }

    .ab-blog-hero p {

        margin-top: 18px;

        font-size: .82rem;

        line-height: 1.7;

    }


    /* FEATURED */

    .ab-featured-section {

        padding: 38px 0 45px;

    }

    .ab-featured-grid {

        border-radius: 22px;

    }

    .ab-featured-image {

        min-height: 250px;

    }

    .ab-featured-label {

        left: 18px;
        bottom: 18px;

    }

    .ab-featured-content {

        padding: 28px 23px;

    }

    .ab-featured-content h2 {

        font-size: 1.75rem;

    }

    .ab-featured-content p {

        font-size: .8rem;

    }


    /* MAIN BLOG */

    .ab-blog-main {

        padding-top: 0;

    }

    .ab-section-heading {

        margin-bottom: 22px;

    }

    .ab-section-heading h2,
    .ab-gallery-heading h2 {

        font-size: 1.75rem;

    }


    /* POSTS */

    .ab-blog-post {

        grid-template-columns: 1fr;

        gap: 15px;

        padding-bottom: 24px;

        margin-bottom: 24px;

    }

    .ab-post-image {

        width: 100%;

        height: 205px;

        border-radius: 16px;

    }

    .ab-post-content h3 {

        font-size: 1.12rem;

    }

    .ab-post-content p {

        font-size: .76rem;

    }


    /* GALLERY */

    .ab-gallery-grid {

        grid-auto-rows: 105px;

        gap: 7px;

    }

    .ab-gallery-item {

        border-radius: 12px;

    }


    /* MESSAGE */

    .ab-blog-message {

        padding-bottom: 45px;

    }

    .ab-message-box {

        padding: 38px 20px;

        border-radius: 21px;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .ab-blog-hero h1 {

        font-size: 2.6rem;

    }

    .ab-featured-image {

        min-height: 215px;

    }

    .ab-post-image {

        height: 180px;

    }

    .ab-gallery-grid {

        grid-auto-rows: 95px;

    }

}




/* Founder page css starts */

/* =====================================================
   FOUNDER PAGE
===================================================== */

.fb-page {
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #292929;
}

.fb-page * {
  box-sizing: border-box;
}

.fb-container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}


/* =====================================================
   HEADINGS
===================================================== */

.fb-heading {
  text-align: center;
  margin-bottom: 38px;
}

.fb-heading > span,
.fb-text > small,
.fb-books-title > small,
.fb-documentary small,
.fb-info > small {
  display: block;

  /* PURPLE */
  color: #7c3aed;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.fb-heading h2 {
  margin: 6px 0 0;
  color: #222;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.fb-heading h2 b,
.fb-text h2 b,
.fb-books-title h2 b,
.fb-documentary h2 b {

  /* PURPLE → PINK */
  background: linear-gradient(
    90deg,
    #7c3aed,
    #db2777,
    #f97316
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}


/* =====================================================
   INTRO
===================================================== */

.fb-intro {
  padding: 45px 0 55px;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff8fb,
      #fffaf5
    );
}


.fb-profile {
  display: grid;
  grid-template-columns: 380px minmax(0,1fr);
  align-items: center;
  gap: 55px;
}


/* PHOTO */

.fb-photo {
  width: 100%;
}

.fb-photo img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;

  border-radius: 18px;

  box-shadow:
    0 15px 40px
    rgba(124,58,237,.14);
}


/* CONTENT */

.fb-info h1 {
  margin: 7px 0 17px;

  color: #222;

  font-size: 46px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
}

.fb-info p {
  max-width: 650px;
  margin: 0 0 12px;

  color: #666;

  font-size: 14px;
  line-height: 1.8;
}


/* =====================================================
   STATS
===================================================== */

.fb-stats {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.fb-stats div {
  min-width: 115px;

  padding: 13px;

  background: rgba(255,255,255,.85);

  border:
    1px solid
    rgba(124,58,237,.10);

  border-radius: 11px;

  box-shadow:
    0 6px 20px
    rgba(124,58,237,.05);
}

.fb-stats strong {

  display: block;

  /* PINK */
  color: #db2777;

  font-size: 19px;
}

.fb-stats span {
  display: block;

  margin-top: 3px;

  color: #777;

  font-size: 10px;
}


/* =====================================================
   JOURNEY
===================================================== */

.fb-journey {
  padding: 55px 0;

  background: #fff;
}

.fb-journey-grid {
  display: grid;

  grid-template-columns:
    1.3fr .7fr;

  gap: 50px;

  align-items: stretch;
}

.fb-text h2,
.fb-books-title h2,
.fb-documentary h2 {

  margin: 6px 0 15px;

  color: #222;

  font-size: 29px;

  line-height: 1.2;

  font-weight: 800;
}

.fb-text p,
.fb-books-title p,
.fb-documentary p {

  max-width: 700px;

  margin: 0 0 12px;

  color: #6b6b6b;

  font-size: 14px;

  line-height: 1.8;
}


/* =====================================================
   QUOTE
===================================================== */

.fb-quote {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 28px;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff7fb
    );

  border:
    1px solid
    rgba(124,58,237,.10);

  border-radius: 16px;

  box-shadow:
    0 10px 30px
    rgba(124,58,237,.06);
}

.fb-quote i {

  margin-bottom: 7px;

  /* PINK */

  color: #db2777;

  font-size: 24px;
}

.fb-quote p {

  margin: 0 0 12px;

  color: #333;

  font-size: 18px;

  line-height: 1.5;

  font-weight: 600;
}

.fb-quote span {

  color: #777;

  font-size: 11px;
}


/* =====================================================
   WORK
===================================================== */

.fb-work {

  padding: 50px 0;

  background:
    linear-gradient(
      135deg,
      #f8f5ff,
      #fff7fb,
      #fffaf5
    );
}

.fb-work-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 12px;
}

.fb-work-card {

  padding: 20px 17px;

  background:
    rgba(255,255,255,.92);

  border:
    1px solid
    rgba(124,58,237,.08);

  border-radius: 13px;

  transition: .25s ease;

  box-shadow:
    0 5px 20px
    rgba(124,58,237,.04);
}

.fb-work-card:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 12px 28px
    rgba(124,58,237,.10);
}

.fb-work-card i {

  /* PURPLE */

  color: #7c3aed;

  font-size: 21px;
}

.fb-work-card h3 {

  margin: 10px 0 5px;

  color: #292929;

  font-size: 15px;

  font-weight: 700;
}

.fb-work-card p {

  margin: 0;

  color: #777;

  font-size: 11px;

  line-height: 1.6;
}


/* =====================================================
   BOOKS
===================================================== */

.fb-books {

  padding: 55px 0;

  background: #fff;
}

.fb-books-grid {

  display: grid;

  grid-template-columns:
    .65fr 1.35fr;

  gap: 50px;

  align-items: center;
}

.fb-books-list {

  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.fb-books-list span {

  padding: 7px 11px;

  color: #666;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff7fb
    );

  border:
    1px solid
    rgba(124,58,237,.10);

  border-radius: 50px;

  font-size: 11px;

  transition: .2s ease;
}

.fb-books-list span:hover {

  color: #7c3aed;

  border-color:
    rgba(124,58,237,.25);

}


/* =====================================================
   DOCUMENTARIES
===================================================== */

.fb-documentary {

  padding: 42px 0;

  background:
    linear-gradient(
      135deg,
      #f8f5ff,
      #fff7fb
    );
}

.fb-documentary-box {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

.fb-documentary p {

  margin: 0;
}

.fb-youtube {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  padding: 9px 17px;

  color: #fff !important;

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #db2777
    );

  border-radius: 30px;

  text-decoration: none !important;

  font-size: 11px;

  font-weight: 700;

  white-space: nowrap;

  box-shadow:
    0 7px 18px
    rgba(124,58,237,.18);

  transition: .25s ease;
}

.fb-youtube:hover {

  color: #fff !important;

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 24px
    rgba(124,58,237,.25);
}


/* =====================================================
   GALLERY
===================================================== */

.fb-gallery {

  padding: 35px 0 55px;

  background: #fff;
}

.fb-gallery-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 8px;
}

.fb-gallery-grid img {

  width: 100%;

  height: 165px;

  display: block;

  object-fit: cover;

  border-radius: 9px;

  transition: .3s ease;
}

.fb-gallery-grid img:hover {

  transform:
    scale(1.02);

  box-shadow:
    0 8px 25px
    rgba(124,58,237,.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .fb-profile {

    grid-template-columns:
      300px
      minmax(0,1fr);

    gap: 30px;
  }

  .fb-photo img {
    height: 370px;
  }

  .fb-info h1 {
    font-size: 36px;
  }

  .fb-journey-grid {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .fb-books-grid {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .fb-work-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .fb-container {
    width: 90%;
  }

  .fb-intro {
    padding: 35px 0 42px;
  }

  .fb-heading {
    margin-bottom: 28px;
  }

  .fb-heading h2 {
    font-size: 25px;
  }

  .fb-profile {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .fb-photo {

    width: 260px;

    max-width: 100%;

    margin: 0 auto;
  }

  .fb-photo img {
    height: 315px;
  }

  .fb-info h1 {
    font-size: 32px;
  }

  .fb-info p {
    font-size: 13px;
    line-height: 1.7;
  }

  .fb-stats {
    gap: 6px;
  }

  .fb-stats div {

    min-width: 0;

    flex: 1;

    padding: 10px 8px;
  }

  .fb-stats strong {
    font-size: 16px;
  }

  .fb-stats span {
    font-size: 9px;
  }

  .fb-journey,
  .fb-books {
    padding: 42px 0;
  }

  .fb-text h2,
  .fb-books-title h2,
  .fb-documentary h2 {
    font-size: 24px;
  }

  .fb-text p,
  .fb-books-title p,
  .fb-documentary p {
    font-size: 13px;
    line-height: 1.7;
  }

  .fb-quote {
    padding: 22px;
  }

  .fb-quote p {
    font-size: 16px;
  }

  .fb-work {
    padding: 42px 0;
  }

  .fb-work-grid {

    grid-template-columns:
      repeat(2,1fr);

    gap: 8px;
  }

  .fb-work-card {
    padding: 16px 12px;
  }

  .fb-work-card h3 {
    font-size: 14px;
  }

  .fb-work-card p {
    font-size: 10px;
  }

  .fb-documentary-box {

    flex-direction: column;

    align-items: flex-start;
  }

  .fb-gallery {
    padding: 30px 0 45px;
  }

  .fb-gallery-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

  .fb-gallery-grid img {
    height: 130px;
  }

}
/* Founder page css ends */




/* artcicles page start  */

/* =====================================================
   ARIVU BHARAT — ARTICLES
===================================================== */

.ab-articles-page {
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #222;
}

.ab-articles-page * {
  box-sizing: border-box;
}


/* =====================================================
   CONTAINER
===================================================== */

.ab-articles-container {
  width: 92%;
  max-width: 1120px;
  margin: auto;
}

/* for source link */
/* ORIGINAL SOURCE LINK */

.ab-article-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 7px 12px;

  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 10px;

  transition: .25s ease;
}

.ab-article-source:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.ab-article-source img {
  width: 38px;
  height: 38px;

  object-fit: cover;
  border-radius: 50%;

  margin: 0;
}

.ab-article-source a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 11px;

  background: #7c3aed;
  color: #fff;

  border-radius: 7px;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition: .2s ease;
}

.ab-article-source a:hover {
  background: #db2777;
}

.ab-article-source a i {
  font-size: 12px;
}


/* MOBILE */

@media (max-width: 600px) {

  .ab-article-source {
    gap: 7px;
    padding: 6px 9px;
  }

  .ab-article-source img {
    width: 32px;
    height: 32px;
  }

  .ab-article-source a {
    font-size: 10px;
    padding: 6px 9px;
  }

}


/* =====================================================
   PAGE HEADER
===================================================== */

.ab-articles-hero {
  padding: 42px 0 32px;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff7fb,
      #fffaf5
    );
}

.ab-articles-heading {
  text-align: center;
}

.ab-articles-heading > span {
  display: block;

  color: #7c3aed;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.ab-articles-heading h1 {
  margin: 6px 0 8px;

  color: #222;

  font-size: 34px;
  line-height: 1.15;

  font-weight: 800;
}

.ab-articles-heading h1 b,
.ab-archive-title h2 b {
  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #db2777,
      #f97316
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ab-articles-heading p {
  max-width: 560px;

  margin: auto;

  color: #777;

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
   MAIN
===================================================== */

.ab-articles-section {
  padding: 40px 0 60px;
}

.ab-articles-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(300px, .75fr);

  gap: 45px;

  align-items: start;
}


/* =====================================================
   ARTICLE LIST
===================================================== */

.ab-article-list {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


/* =====================================================
   ARTICLE CARD
===================================================== */

.ab-article-card {

  display: grid;

  grid-template-columns:
    90px
    1fr;

  gap: 17px;

  align-items: center;

  padding: 15px;

  background: #fff;

  border:
    1px solid
    #eeeaf3;

  border-radius: 13px;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.ab-article-card:hover {

  transform:
    translateX(4px);

  border-color:
    rgba(124,58,237,.18);

  box-shadow:
    0 10px 28px
    rgba(124,58,237,.07);
}


/* =====================================================
   ARTICLE IMAGE
===================================================== */

.ab-article-image {

  width: 90px;
  height: 82px;

  overflow: hidden;

  border-radius: 9px;

  background: #f3f0f7;
}

.ab-article-image img {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .35s ease;
}

.ab-article-card:hover
.ab-article-image img {

  transform:
    scale(1.07);
}


/* =====================================================
   ARTICLE CONTENT
===================================================== */

.ab-article-content {
  min-width: 0;
}

.ab-article-meta {

  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 4px;
}

.ab-article-meta span {

  color: #7c3aed;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}

.ab-article-meta time {

  color: #aaa;

  font-size: 10px;
}

.ab-article-content h2 {

  margin: 0 0 5px;

  color: #252525;

  font-size: 18px;

  line-height: 1.3;

  font-weight: 750;
}

.ab-article-content p {

  max-width: 650px;

  margin: 0 0 7px;

  color: #707070;

  font-size: 12px;

  line-height: 1.6;
}


/* =====================================================
   READ MORE
===================================================== */

.ab-read-more {

  display: inline-flex;

  align-items: center;

  gap: 5px;

  color: #7c3aed !important;

  text-decoration: none !important;

  font-size: 11px;

  font-weight: 700;
}

.ab-read-more i {

  transition:
    transform .2s ease;
}

.ab-article-card:hover
.ab-read-more i {

  transform:
    translateX(4px);
}


/* =====================================================
   ARCHIVE
===================================================== */

.ab-archive {

  position: sticky;

  top: 100px;
}

.ab-archive-title {

  margin-bottom: 20px;
}

.ab-archive-title > span {

  display: block;

  color: #7c3aed;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.ab-archive-title h2 {

  margin: 5px 0 7px;

  color: #252525;

  font-size: 26px;

  line-height: 1.2;

  font-weight: 800;
}

.ab-archive-title p {

  max-width: 320px;

  margin: 0;

  color: #777;

  font-size: 12px;

  line-height: 1.6;
}


/* =====================================================
   PAPER BOARD
===================================================== */

.ab-paper-board {

  position: relative;

  min-height: 430px;

  overflow: hidden;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff7fb
    );

  border:
    1px solid
    rgba(124,58,237,.09);

  box-shadow:
    inset 0 0 40px
    rgba(124,58,237,.025);
}


/* =====================================================
   PAPER
===================================================== */

.ab-paper {

  position: absolute;

  width: 175px;

  padding: 8px 8px 11px;

  background: #fff;

  border-radius: 3px;

  text-decoration: none !important;

  box-shadow:
    0 8px 25px
    rgba(0,0,0,.10);

  transition:
    transform .3s ease,
    box-shadow .3s ease;

  cursor: pointer;
}

.ab-paper img {

  width: 100%;

  height: 135px;

  display: block;

  object-fit: cover;
}

.ab-paper small {

  display: block;

  padding-top: 7px;

  color: #666;

  font-size: 10px;

  text-align: center;
}


/* =====================================================
   PAPER POSITIONS
===================================================== */

.paper-one {

  top: 30px;
  left: 25px;

  transform:
    rotate(-5deg);
}

.paper-two {

  top: 55px;
  right: 18px;

  transform:
    rotate(6deg);
}

.paper-three {

  bottom: 35px;
  left: 35px;

  transform:
    rotate(4deg);
}

.paper-four {

  bottom: 20px;
  right: 28px;

  transform:
    rotate(-6deg);
}


/* =====================================================
   PAPER HOVER
===================================================== */

.ab-paper:hover {

  z-index: 10;

  transform:
    rotate(0deg)
    scale(1.06);

  box-shadow:
    0 18px 40px
    rgba(124,58,237,.18);
}


/* =====================================================
   PAPER CLIP
===================================================== */

.ab-paper-clip {

  position: absolute;

  z-index: 5;

  top: -11px;

  left: 50%;

  width: 17px;

  height: 31px;

  border:
    2px solid
    #888;

  border-bottom: 0;

  border-radius:
    10px 10px 0 0;

  transform:
    translateX(-50%)
    rotate(5deg);
}

.ab-paper-clip::after {

  content: "";

  position: absolute;

  top: 3px;
  left: 3px;

  width: 8px;
  height: 24px;

  border-left:
    1px solid
    #aaa;

  border-radius: 5px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .ab-articles-layout {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .ab-archive {

    position: relative;

    top: auto;
  }

  .ab-paper-board {

    max-width: 600px;

    margin: auto;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .ab-articles-container {

    width: 90%;
  }

  .ab-articles-hero {

    padding: 34px 0 25px;
  }

  .ab-articles-heading h1 {

    font-size: 28px;
  }

  .ab-articles-heading p {

    font-size: 12px;
  }

  .ab-articles-section {

    padding: 28px 0 45px;
  }


  /* ARTICLE */

  .ab-article-card {

    grid-template-columns:
      68px
      1fr;

    gap: 12px;

    padding: 12px;
  }

  .ab-article-image {

    width: 68px;

    height: 68px;

    border-radius: 8px;
  }

  .ab-article-meta {

    gap: 7px;
  }

  .ab-article-meta span {

    font-size: 8px;
  }

  .ab-article-meta time {

    font-size: 9px;
  }

  .ab-article-content h2 {

    font-size: 15px;

    line-height: 1.3;
  }

  .ab-article-content p {

    font-size: 11px;

    line-height: 1.55;
  }

  .ab-read-more {

    font-size: 10px;
  }


  /* ARCHIVE */

  .ab-archive-title h2 {

    font-size: 23px;
  }

  .ab-archive-title p {

    font-size: 11px;
  }

  .ab-paper-board {

    min-height: 390px;
  }

  .ab-paper {

    width: 145px;
  }

  .ab-paper img {

    height: 112px;
  }

  .paper-one {

    left: 8px;
    top: 30px;
  }

  .paper-two {

    right: 5px;
    top: 48px;
  }

  .paper-three {

    left: 12px;
    bottom: 25px;
  }

  .paper-four {

    right: 8px;
    bottom: 18px;
  }

}

/* Ariticles page ends */




/* sub article css starts */


/* =====================================================
   ARIVU BHARAT — SINGLE ARTICLE PAGE
===================================================== */

.ab-single-article {
  background: #fff;
  color: #252525;
  overflow: hidden;
}

.ab-single-article * {
  box-sizing: border-box;
}

.ab-article-container {
  width: 92%;
  max-width: 1000px;
  margin: auto;
}


/* =====================================================
   MARQUEE
===================================================== */

.ab-article-marquee {
  background: #7c3aed;
  color: #fff;
  overflow: hidden;
}

.ab-article-marquee div {
  width: max-content;
  padding: 7px 0;

  font-size: 11px;
  font-weight: 600;

  animation:
    ab-marquee 18s linear infinite;
}

@keyframes ab-marquee {

  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(-100%);
  }

}


/* =====================================================
   PAGE TITLE
===================================================== */

.ab-article-page-title {
  padding: 35px 0 28px;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #faf7ff,
      #fff7fb,
      #fffaf5
    );
}

.ab-article-page-title span {
  display: block;

  color: #7c3aed;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.ab-article-page-title h1 {
  margin: 5px 0 0;

  color: #252525;

  font-size: 30px;

  font-weight: 800;
}

.ab-article-page-title h1 b {
  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #db2777,
      #f97316
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* =====================================================
   ARTICLE SECTION
===================================================== */

.ab-article-section {
  padding: 35px 0 60px;
}


/* =====================================================
   ARTICLE WRAPPER
===================================================== */

.ab-article-wrapper {
  width: 100%;
}


/* =====================================================
   BACK BUTTON
===================================================== */

.ab-go-back {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 17px;

  color: #7c3aed;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  transition: .2s ease;
}

.ab-go-back:hover {
  color: #db2777;
  transform: translateX(-3px);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.ab-article-hero-image {

  width: 100%;

  height: 390px;

  overflow: hidden;

  border-radius: 15px;

  background: #f4f1f7;

  box-shadow:
    0 15px 40px
    rgba(0,0,0,.07);
}

.ab-article-hero-image img {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* =====================================================
   ARTICLE HEADER
===================================================== */

.ab-article-header {

  max-width: 850px;

  margin: 30px auto 25px;

  text-align: center;
}

.ab-article-date {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  margin-bottom: 10px;

  color: #7c3aed;

  font-size: 11px;

  font-weight: 700;
}

.ab-article-header h1 {

  margin: 0 auto 10px;

  color: #042d7f;

  font-size: 38px;

  line-height: 1.2;

  font-weight: 800;
}

.ab-article-author {

  margin: 0;

  color: #777;

  font-size: 13px;

  line-height: 1.6;

  font-weight: 600;
}


/* =====================================================
   ARTICLE BODY
===================================================== */

.ab-article-body {

  max-width: 820px;

  margin: auto;
}

.ab-article-body p {

  margin: 0 0 18px;

  color: #454545;

  font-size: 14px;

  line-height: 1.9;

  text-align: justify;
}


/* =====================================================
   QUOTE
===================================================== */

.ab-article-body blockquote {

  margin: 24px 0;

  padding: 15px 20px;

  border-left:
    3px solid
    #7c3aed;

  border-radius: 0 9px 9px 0;

  background:
    linear-gradient(
      90deg,
      #faf7ff,
      #fff
    );

  color: #555;

  font-size: 14px;

  line-height: 1.8;

  font-style: italic;
}


/* =====================================================
   ARTICLE SUBTITLE
===================================================== */

.ab-article-body h2 {

  margin: 30px 0 14px;

  color: #042d7f;

  font-size: 22px;

  line-height: 1.3;

  font-weight: 800;
}


/* =====================================================
   INLINE IMAGE
===================================================== */

.ab-article-inline-image {

  width: 48%;

  float: right;

  margin:
    5px 0 20px 28px;
}

.ab-article-inline-image img {

  width: 100%;

  height: 250px;

  display: block;

  object-fit: cover;

  border-radius: 11px;

  box-shadow:
    0 10px 30px
    rgba(0,0,0,.10);
}

.ab-article-inline-image figcaption {

  padding-top: 7px;

  color: #888;

  font-size: 10px;

  text-align: center;

  font-style: italic;
}


/* =====================================================
   BOTTOM NAVIGATION
===================================================== */

.ab-article-bottom {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 15px;

  margin-top: 40px;

  padding-top: 20px;

  border-top:
    1px solid
    #eee;
}

.ab-article-bottom a {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #7c3aed;

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  transition: .2s ease;
}

.ab-article-bottom a:hover {

  color: #db2777;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

  .ab-article-hero-image {
    height: 300px;
  }

  .ab-article-header h1 {
    font-size: 31px;
  }

  .ab-article-body p {
    font-size: 13px;
    line-height: 1.85;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .ab-article-container {
    width: 90%;
  }

  .ab-article-page-title {
    padding: 28px 0 22px;
  }

  .ab-article-page-title h1 {
    font-size: 25px;
  }

  .ab-article-section {
    padding: 25px 0 45px;
  }

  .ab-go-back {
    font-size: 11px;
    margin-bottom: 13px;
  }

  .ab-article-hero-image {
    height: 220px;
    border-radius: 11px;
  }

  .ab-article-header {
    margin: 23px auto 20px;
  }

  .ab-article-date {
    font-size: 10px;
  }

  .ab-article-header h1 {
    font-size: 25px;
    line-height: 1.25;
  }

  .ab-article-author {
    font-size: 11px;
  }

  .ab-article-body p {
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  .ab-article-body blockquote {
    margin: 20px 0;
    padding: 12px 15px;
    font-size: 12px;
    line-height: 1.7;
  }

  .ab-article-body h2 {
    font-size: 19px;
  }

  .ab-article-inline-image {
    width: 100%;
    float: none;
    margin: 20px 0;
  }

  .ab-article-inline-image img {
    height: 210px;
  }

  .ab-article-bottom {
    margin-top: 30px;
  }

  .ab-article-bottom a {
    font-size: 10px;
  }

}

/* ==========================================
   ORIGINAL ARTICLE PAGES
========================================== */

.ab-original-article {
  width: 100%;
  max-width: 760px;
  margin: 35px auto 10px;
}

.ab-original-page {
  width: 100%;
  margin: 0 auto 28px;
  text-align: center;
}

.ab-original-page img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}


/* MOBILE */

@media (max-width: 600px) {

  .ab-original-article {
    width: 100%;
    margin-top: 25px;
  }

  .ab-original-page {
    margin-bottom: 18px;
  }

  .ab-original-page img {
    width: 100%;
    border-radius: 5px;
  }

}



/* Sub article css ends */



/* Magazine css Starts */


/* =========================================================
   ARIVU BHARAT — MAGAZINE PAGE
========================================================= */

.magazine-page{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(139,92,246,.04),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(236,72,153,.035),
            transparent 28%
        );
}


/* =========================================================
   INTRO — COMPACT
========================================================= */

.magazine-intro{
    padding:18px 5% 10px;
    text-align:center;
}

.magazine-intro-inner{
    max-width:680px;
    margin:0 auto;
}

.magazine-kicker{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:5px 12px;

    border-radius:999px;

    background:rgba(139,92,246,.07);
    border:1px solid rgba(139,92,246,.12);

    color:#6d28d9;

    font-size:.58rem;
    font-weight:800;

    letter-spacing:1.3px;
}

.magazine-kicker i{
    font-size:.64rem;
}

.magazine-intro h1{
    margin:7px 0 5px;

    font-size:clamp(1.9rem,3.7vw,2.8rem);
    line-height:1;
    font-weight:800;

    color:#172033;
}

.magazine-intro h1 span{
    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899,
        #f97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.magazine-intro p{
    max-width:570px;

    margin:0 auto;

    color:#64748b;

    font-size:.74rem;
    line-height:1.45;
}


/* =========================================================
   MAIN AREA
========================================================= */

.magazine-section{
    padding:6px 4% 45px;
}

.magazine-layout{
    width:100%;
    max-width:1180px;

    margin:0 auto;

    display:grid;

    grid-template-columns:minmax(0,1fr) 175px;

    gap:32px;

    align-items:stretch;
}


/* =========================================================
   MAGAZINE GRID
========================================================= */

.magazine-list{
    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap:20px;

    align-items:start;
}


/* =========================================================
   MAGAZINE CARD
========================================================= */

.magazine-card{
    position:relative;

    min-width:0;

    padding:8px;

    border-radius:17px;

    background:rgba(255,255,255,.72);

    border:1px solid rgba(139,92,246,.10);

    box-shadow:
        0 10px 28px rgba(31,41,55,.06);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.magazine-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 18px 38px rgba(139,92,246,.11);
}


/* =========================================================
   MAGAZINE COVER
========================================================= */

.magazine-cover{
    position:relative;

    width:100%;

    aspect-ratio:.707 / 1;

    overflow:hidden;

    border-radius:11px;

    background:#f1f5f9;

    box-shadow:
        0 6px 16px rgba(0,0,0,.09);
}

.magazine-cover img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .45s ease;
}

.magazine-card:hover .magazine-cover img{
    transform:scale(1.025);
}


/* =========================================================
   LATEST BADGE
========================================================= */

.latest-badge{
    position:absolute;

    top:8px;
    left:8px;

    z-index:3;

    padding:4px 8px;

    border-radius:999px;

    background:rgba(255,255,255,.9);

    color:#7c3aed;

    font-size:.5rem;
    font-weight:800;

    box-shadow:
        0 3px 10px rgba(0,0,0,.08);

    backdrop-filter:blur(8px);
}


/* =========================================================
   MAGAZINE INFORMATION
========================================================= */

.magazine-info{
    padding:9px 2px 2px;

    text-align:left;
}

.magazine-date{
    margin-bottom:3px;

    color:#8b5cf6;

    font-size:.53rem;
    font-weight:800;

    letter-spacing:.85px;

    text-transform:uppercase;
}

.magazine-info h2{
    margin:0 0 8px;

    color:#172033;

    font-size:.72rem;
    line-height:1.28;

    font-weight:750;

    min-height:30px;
}


/* =========================================================
   PDF BUTTON
========================================================= */

.magazine-pdf-btn{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    gap:6px;

    padding:7px 8px;

    border-radius:8px;

    text-decoration:none;

    color:#5b21b6;

    background:rgba(139,92,246,.065);

    border:1px solid rgba(139,92,246,.11);

    font-size:.6rem;
    font-weight:750;

    transition:.3s ease;
}

.magazine-pdf-btn i:first-child{
    color:#ec4899;
}

.magazine-pdf-btn i:last-child{
    margin-left:auto;

    font-size:.57rem;
}

.magazine-pdf-btn:hover{
    color:white;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    border-color:transparent;

    transform:translateY(-1px);
}

.magazine-pdf-btn:hover i:first-child{
    color:white;
}


/* =========================================================
   DESKTOP SOCIAL PANEL
   SAME HEIGHT AS MAGAZINE ROW
========================================================= */

.magazine-social{
    position:sticky;

    top:100px;

    align-self:stretch;

    width:175px;

    min-height:100%;

    padding:15px;

    box-sizing:border-box;

    display:grid;

    grid-template-columns:1fr 1fr;

    grid-auto-rows:auto;

    align-content:center;

    gap:10px;

    border-radius:20px;

    background:rgba(255,255,255,.76);

    border:1px solid rgba(139,92,246,.11);

    box-shadow:
        0 12px 32px rgba(31,41,55,.07);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}


/* =========================================================
   SOCIAL TITLE
========================================================= */

.social-label{
    grid-column:1 / -1;

    writing-mode:horizontal-tb;

    color:#64748b;

    font-size:.6rem;
    font-weight:800;

    letter-spacing:1.7px;

    text-align:center;
}


/* =========================================================
   SOCIAL LINE
========================================================= */

.social-line{
    grid-column:1 / -1;

    width:55%;
    height:1px;

    margin:0 auto 5px;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #ec4899
    );

    opacity:.55;
}


/* =========================================================
   SOCIAL BUTTONS
========================================================= */

.magazine-social a{
    width:100%;
    height:55px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:4px;

    padding:5px;

    box-sizing:border-box;

    border-radius:12px;

    color:#64748b;

    text-decoration:none;

    background:rgba(248,250,252,.78);

    border:1px solid rgba(139,92,246,.07);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


/* ICON */

.magazine-social a i{
    font-size:1.05rem;

    line-height:1;
}


/* NAME */

.magazine-social a::after{
    font-size:.55rem;

    font-weight:750;

    color:#475569;
}

.magazine-social a:nth-of-type(1)::after{
    content:"YouTube";
}

.magazine-social a:nth-of-type(2)::after{
    content:"Facebook";
}

.magazine-social a:nth-of-type(3)::after{
    content:"Instagram";
}

.magazine-social a:nth-of-type(4)::after{
    content:"X / Twitter";
}


/* HOVER */

.magazine-social a:hover{
    background:rgba(139,92,246,.08);

    color:#8b5cf6;

    transform:translateY(-3px);

    box-shadow:
        0 8px 18px rgba(139,92,246,.08);
}

.magazine-social a:hover::after{
    color:#7c3aed;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width:701px) and (max-width:1050px){

    .magazine-intro{
        padding:25px 5% 12px;
    }

    .magazine-layout{
        max-width:900px;

        grid-template-columns:
            minmax(0,1fr) 140px;

        gap:22px;
    }

    .magazine-list{
        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap:15px;
    }

    .magazine-social{
        width:140px;

        padding:12px;
    }

    .magazine-social a{
        height:48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){

    /* ---------------------------------------------
       LESS TOP SPACE
    --------------------------------------------- */

    .magazine-intro{
        padding:18px 5% 10px;
    }

    .magazine-intro h1{
        margin:6px 0 4px;

        font-size:2.05rem;
    }

    .magazine-intro p{
        font-size:.72rem;

        line-height:1.4;

        max-width:340px;
    }


    .magazine-section{
        padding:6px 5% 40px;
    }


    .magazine-layout{
        display:block;
    }


    /* ---------------------------------------------
       TWO MAGAZINES PER ROW
    --------------------------------------------- */

    .magazine-list{
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:13px;
    }


    .magazine-card{
        padding:7px;

        border-radius:15px;
    }


    .magazine-cover{
        border-radius:10px;
    }


    .magazine-info{
        padding:8px 2px 2px;

        text-align:left;
    }


    .magazine-date{
        font-size:.53rem;

        margin-bottom:3px;
    }


    .magazine-info h2{
        font-size:.69rem;

        line-height:1.28;

        margin-bottom:7px;

        min-height:29px;
    }


    .magazine-pdf-btn{
        padding:7px 6px;

        font-size:.6rem;

        border-radius:8px;
    }


    /* =================================================
       MOBILE SOCIAL RAIL
       ICONS ONLY
    ================================================= */

    .magazine-social{

        position:fixed;

        top:50%;

        right:0;

        transform:translateY(-50%);

        width:34px;

        min-height:auto;

        height:auto;

        padding:7px 4px;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:6px;

        border-radius:13px 0 0 13px;

        z-index:1000;
    }


    /* HIDE FOLLOW TEXT */

    .social-label{
        display:none;
    }


    /* REMOVE THE RECTANGLE */

    .social-line{
        display:none;
    }


    /* ICON BUTTON */

    .magazine-social a{

        width:25px;
        height:25px;

        padding:0;

        display:flex;

        align-items:center;
        justify-content:center;

        border-radius:7px;

        background:transparent;

        border:0;

        box-shadow:none;
    }


    .magazine-social a i{
        font-size:.78rem;

        line-height:1;
    }


    /* REMOVE SOCIAL NAMES */

    .magazine-social a::after{
        display:none;
    }


    .magazine-social a:hover{
        transform:translateX(-2px);

        background:rgba(139,92,246,.08);

        box-shadow:none;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media(max-width:400px){

    .magazine-intro{
        padding:15px 5% 8px;
    }

    .magazine-intro h1{
        font-size:1.9rem;
    }

    .magazine-list{
        gap:10px;
    }

    .magazine-card{
        padding:6px;
    }

    .magazine-info h2{
        font-size:.66rem;

        min-height:27px;
    }

    .magazine-pdf-btn{
        font-size:.57rem;
    }

}

/* =====================================================
   MOBILE — SHOW FOLLOW AGAIN
===================================================== */

@media(max-width:700px){

    .magazine-social{
        width:52px;
        padding:9px 5px;

        gap:6px;

        border-radius:14px 0 0 14px;
    }

    /* SHOW FOLLOW */

    .magazine-social .social-label{
        display:block;

        writing-mode:horizontal-tb;

        font-size:.43rem;
        font-weight:800;

        letter-spacing:1px;

        text-align:center;

        color:#64748b;

        white-space:nowrap;

        margin:0 0 2px;
    }


    /* SMALL LINE UNDER FOLLOW */

    .magazine-social .social-line{
        display:block;

        width:18px;
        height:1px;

        margin:0 auto 2px;

        background:linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );

        opacity:.6;
    }


    /* ICONS */

    .magazine-social a{
        width:28px;
        height:28px;

        padding:0;

        display:flex;

        align-items:center;
        justify-content:center;

        border-radius:8px;

        background:transparent;

        border:0;
    }

    .magazine-social a i{
        font-size:.78rem;
    }


    /* HIDE NAMES */

    .magazine-social a::after{
        display:none;
    }

}




/* Magazine css ends */



  /* footer Starts */
/* =====================================================
   ARIVU BHARAT — FRESH PREMIUM FOOTER
===================================================== */

.ab-footer {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0d1424 0%,
            #121b2d 48%,
            #0b1220 100%
        );

    color: #ffffff;

    padding: 38px 0 0;

}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.ab-footer-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(85px);

    opacity: .12;

}

.ab-footer-glow-1 {

    width: 280px;

    height: 280px;

    background: #7c3aed;

    top: -190px;

    left: -100px;

}

.ab-footer-glow-2 {

    width: 300px;

    height: 300px;

    background: #db2777;

    right: -130px;

    bottom: -180px;

}


/* =====================================================
   CONTAINER
===================================================== */

.ab-footer-container {

    position: relative;

    width: min(1180px, 92%);

    margin: auto;

}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.ab-footer-main {

    display: grid;

    grid-template-columns:
        1.45fr
        1.2fr
        1fr
        .35fr;

    gap: 45px;

    align-items: center;

    padding-bottom: 30px;

}


/* =====================================================
   BRAND
===================================================== */

.ab-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: #ffffff;

    text-decoration: none;

    margin-bottom: 9px;

}

.ab-footer-logo img {

    width: 43px;

    height: 43px;

    object-fit: contain;

}

.ab-footer-logo-text {

    display: flex;

    flex-direction: column;

}

.ab-footer-logo-text strong {

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: -.3px;

}

.ab-footer-logo-text span {

    font-size: .62rem;

    color: #a78bfa;

    letter-spacing: 1.5px;

    margin-top: 2px;

}

.ab-footer-brand > p {

    max-width: 300px;

    margin: 4px 0 14px;

    color: #8996aa;

    font-size: .76rem;

    line-height: 1.55;

}


/* =====================================================
   SOCIAL
===================================================== */

.ab-footer-social {

    display: flex;

    gap: 7px;

}

.ab-footer-social a {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: #aeb9ca;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid rgba(255,255,255,.08);

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;

}

.ab-footer-social a:hover {

    transform: translateY(-3px);

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

}


/* =====================================================
   COLUMN HEADINGS
===================================================== */

.ab-footer-heading {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

}

.ab-footer-heading span {

    width: 20px;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #ec4899
        );

}

.ab-footer-heading h4 {

    margin: 0;

    color: #ffffff;

    font-size: .82rem;

    font-weight: 700;

    letter-spacing: .2px;

}


/* =====================================================
   CONTACT
===================================================== */

.ab-footer-column {

    min-width: 0;

}

.ab-footer-contact {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #8f9bad;

    text-decoration: none;

    font-size: .72rem;

    line-height: 1.45;

    margin-bottom: 9px;

    transition: color .25s ease;

}

.ab-footer-contact:hover {

    color: #ffffff;

}

.ab-footer-contact i {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background:
        rgba(139,92,246,.12);

    color: #a78bfa;
    font-size: .72rem;

}


/* =====================================================
   HOURS
===================================================== */

.ab-hours {

    display: flex;
    flex-direction: column;

}

.ab-hours > div {

    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 7px 0;
    border-bottom:
        1px solid rgba(255,255,255,.07);

}

.ab-hours span {

    color: #7f8b9d;
    font-size: .7rem;

}

.ab-hours strong {

    color: #e5eaf2;
    font-size: .72rem;
    font-weight: 600;

}


/* =====================================================
   SMALL MESSAGE
===================================================== */

.ab-footer-message {

    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #7f8b9d;
    font-size: .68rem;

}

.ab-footer-message i {

    color: #ec4899;
    font-size: .65rem;

}


/* =====================================================
   BACK TO TOP
===================================================== */

.ab-footer-top {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

}

.ab-top-button {

    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #db2777
        );

    box-shadow:
        0 8px 25px rgba(124,58,237,.25);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.ab-top-button i {

    font-size: 1rem;

}

.ab-top-button:hover {

    transform:
        translateY(-5px);
    box-shadow:
        0 13px 30px rgba(124,58,237,.4);

}

.ab-footer-top > span {

    color: #697588;
    font-size: .6rem;

}


/* =====================================================
   DIVIDER
===================================================== */

.ab-footer-divider {

    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.13),
            transparent
        );

}


/* =====================================================
   BOTTOM
===================================================== */

.ab-footer-bottom {

    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

}

.ab-footer-bottom p {

    margin: 0;
    color: #687488;
    font-size: .66rem;

}

.ab-footer-bottom strong {
    color: #b9c3d2;

}

.ab-footer-credit {
    text-align: right;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .ab-footer-main {
        grid-template-columns:
            1fr 1fr;
        gap: 30px;

    }

    .ab-footer-top {
        align-items: flex-start;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .ab-footer {
        padding-top: 30px;

    }

    .ab-footer-main {
        grid-template-columns: 1fr;
        gap: 23px;
        padding-bottom: 23px;

    }

    .ab-footer-brand > p {
        max-width: 100%;

    }

    .ab-footer-top {
        align-items: center;
        padding-top: 2px;

    }

    .ab-footer-bottom {
        min-height: 38px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 4px;
        padding: 10px 0;

    }

    .ab-footer-credit {
        text-align: center;

    }

}
  /* footer Ends */

