@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Gotu&family=Kurale&display=swap');

@font-face {
    font-family: 'Quattrocento Sans';
    src: url('fonts/QuattrocentoSans-Bold.eot');
    src: url('fonts/QuattrocentoSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/QuattrocentoSans-Bold.woff') format('woff'),
        url('fonts/QuattrocentoSans-Bold.ttf') format('truetype'),
        url('fonts/QuattrocentoSans-Bold.svg#QuattrocentoSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Samyak Gujarati';
    src: url('fonts/Samyak-Gujarati.eot');
    src: url('fonts/Samyak-Gujarati.eot?#iefix') format('embedded-opentype'),
        url('fonts/Samyak-Gujarati.woff') format('woff'),
        url('fonts/Samyak-Gujarati.ttf') format('truetype'),
        url('fonts/Samyak-Gujarati.svg#Samyak-Gujarati') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



:root {
    --white: #ffffff;
    --black: #000000;
    --drakgray: #4D4D4D;
    --blue: #1A76BD;
    --skyblue: #2BB1D0;
    --offred: #18BC52;
    --gray: #737373;
    --subheding: #0B5626;
    --secondry: #165a6a;
    --Quatt: 'Quattrocento Sans';
    --Cormorant: "Cormorant", serif;
    --kurale: "Kurale", serif;
    --Smyak: "Samyak Gujarati", sans-serif;
    --Gotu: "Gotu", sans-serif;
}

html body:not(.home) .header {
    /* position: relative; */
}

html body.home .header .logo {
    margin-left: auto;
    width: auto;
}

html body .header {
    transition:  all 0.3s ease;
}

html body.scrolled .header {
    background-color: var(--white);
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

body.scrolled:not(.home) .header .social-links,
.header .logo {
    margin-right: auto;
    width: auto;
}

.header .logo {
    width: 130px
}

html body .header .logo img {
    margin-right: 0em;
    width: 100%;
}

ul.sociallink {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.header ul.sociallink li {
    transition: all 0.5s ease;
}

.header ul.sociallink li:nth-of-type(2):hover,
.header ul.sociallink li:nth-of-type(3):hover,
.header ul.sociallink li:nth-of-type(1):hover {
    transform: rotate(12deg);
}

.logo_area {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
}

.custom-container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

html body .hero {
    padding-top: 80px;
    min-height: 84.8vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-title a {
    color: var(--skyblue);
    font-size: 3.906vw;
    font-family: var(--Cormorant);
}

.hero .hero-title a:hover {
    color: var(--secondry);
}

/* Hero word-cloud - spiral packer positions items by weight */
.hero-cloud {
    position: relative;
    width: 100%;
    min-height: 240px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-cloud.is-packed {
    opacity: 1;
}

.hero-cloud.is-packing .hero-cloud-item {
    pointer-events: none;
}

.hero-cloud-item {
    position: absolute;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--hero-item-color, var(--skyblue));
    font-family: var(--Cormorant), var(--Gotu), var(--Smyak), sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: opacity 0.2s ease, filter 0.2s ease;
    z-index: 1;
}

.hero-cloud-item:hover {
    opacity: 0.88;
    filter: brightness(0.92);
    color: var(--hero-item-color, var(--skyblue));
    z-index: 2;
}

/* Size tiers tuned to sample contrast (large heroes + small fillers) */
.hero-cloud-item.size-xl {
    font-size: clamp(2.2rem, 4.4vw, 4.8rem);
    font-weight: 700;
}

.hero-cloud-item.size-lg {
    font-size: clamp(1.7rem, 3.1vw, 3.5rem);
    font-weight: 700;
}

.hero-cloud-item.size-md {
    font-size: clamp(1.35rem, 2.2vw, 2.5rem);
    font-weight: 600;
}

.hero-cloud-item.size-sm {
    font-size: clamp(1.05rem, 1.55vw, 1.75rem);
    font-weight: 600;
}

.hero-cloud-item.size-xs {
    font-size: clamp(0.85rem, 1.15vw, 1.35rem);
    font-weight: 500;
}

.image-container .hero-img {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.image-container .hero-img img {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    border: 1px solid var(--offred);
    box-shadow: 1px 1px 10px 30px rgba(0, 0, 0, 0.05);
}

.image-container .hero-img.active {
    opacity: 1;
    transform: scale(1);
}

.hero-ninth {
    margin: 0px 0 0 0;
}

.hero-tenth {
    margin: 0px 0 0 0;
}

.mobile-nav-toggle {
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-toggle:hover {
    background-color: rgba(11, 86, 38, 0.08);
}

.burger {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 26px;
    padding: 0px;
    cursor: pointer;
    overflow: hidden;
    align-items: flex-end;
}

.burger span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--offred);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger span:nth-child(2) {
    width: 80%;
}

.burger:not(.activated):hover span {
    background-color: var(--secondry);
}

.burger:not(.activated):hover span:nth-child(2) {
    width: 100%;
}

.burger.activated span {
    background-color: var(--subheding);
}

html body.home .burger.activated span {
    background-color: var(--white);
}

.burger.two.activated span:nth-child(1) {
    transform: translateY(11px) rotate(41deg);
}

.burger.two.activated span:nth-child(2) {
    opacity: 0;
}

.burger.two.activated span:nth-child(3) {
    transform: translateY(-11px) rotate(-44deg);
}

.bi-x::before {
    content: none;
}

.page-title h1.pagetitle {
    font-size: 5.208vw;
    font-family: var(--Cormorant);
    font-weight: 500;
    font-style: italic;
    color: var(--skyblue);
    width: 100%;
}

.page-title h2.subtitle {
    font-family: var(--Cormorant);
    color: var(--gray);
    font-size: 2.083vw;
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 100%;
    text-align: center;
}

.page-title .tagline {
    position: relative;
    width: 100%;
    text-align: center;
}

.page-title .tagline span {
    background-color: var(--white);
    position: relative;
    z-index: 10;
    display: block;
    width: 36%;
    margin: 0 auto;
    font-family: var(--Cormorant);
    font-size: 26px;
    color: var(--subheding);
}

.page-title .tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(162, 228, 186, 0) 0%, rgba(162, 228, 186, 0.8) 15%, rgba(162, 228, 186, 1) 19%, rgba(24, 188, 82, 1) 50%, rgba(162, 228, 186, 1) 80%, rgba(162, 228, 186, 1) 81%, rgba(162, 228, 186, 0.8) 85%, rgba(162, 228, 186, 0) 100%);
}

.categorysection {
    position: relative;
}

html body:not(.home) main.main.categorysection {
    padding-top: 0;
}

.copyright a,
.copyright,
.credits ul.link li a,
.getquote blockquote,
p,
.lisoftype .list-title h3,
.listofcategory h2,
.cat-subtitle h2 {
    font-family: var(--Cormorant);
}

.cat-subtitle h2 {
    font-size: 2.188vw;
    color: var(--offred);
    font-weight: 500;
}

.listofcategory h2 {
    font-size: 2.604vw;
    color: var(--skyblue);
    font-weight: 700;
}

.categoryinfomation {
    margin-top: 5em;
}

.lisoftype {
    margin-top: 4.22em;
}

.hero-sixth {
    margin: 0px 0 0 0;
}

.hero-seventh {
    margin: 0px 0 0 0;
}

/* Main CSS */
.grid-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
}

.grid-wrapper>div>a,
.grid-wrapper>div>img,
.grid-wrapper>div>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.grid_item {
    display: flex;
    flex-wrap: wrap;
    width: 49.5%;
    gap: 10px;
}

.grid_wide {
    display: flex;
    gap: 10px;
}

.vertical_wide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 38%;
}

.grid_tall {
    width: 60%;
}

.grid-wrapper .grid_item .fullheight img {
    height: 540px;
}

.wide.halfhight {
    height: 307px;
    overflow: hidden;
}

/* .grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
} */



.lisoftype .list-title h3 {
    font-size: 29px;
    color: var(--offred);
    font-weight: 600;
    position: relative;
    margin-bottom: 1em;
}

.lisoftype .list-title h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 58px;
    height: 2px;
    background-color: var(--blue);
}

.lisoftype .list-title p {
    font-size: 20px;
    color: var(--drakgray);
    line-height: 28px;
    font-weight: 500;
}

.getquote blockquote {
    font-size: 2.188vw;
    font-weight: 700;
    color: var(--offred);
    line-height: 1.3;
    text-align: center;
}

.getquote blockquote a {
    color: var(--skyblue);
}

/*category page end*/


/*footer section*/
html body .footer {
    z-index: 10;
}

html body.home .footer {
    padding: 10px 0;
    position: relative;
    width: 100%;
}

html body .footer::before {
    content: '';
    background: linear-gradient(to right, rgba(162, 228, 186, 0) 0%, rgba(162, 228, 186, 0.8) 15%, rgba(162, 228, 186, 1) 19%, rgba(24, 188, 82, 1) 50%, rgba(162, 228, 186, 1) 80%, rgba(162, 228, 186, 1) 81%, rgba(162, 228, 186, 0.8) 85%, rgba(162, 228, 186, 0) 100%);
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    transform: translateY(0%);
    width: 80%;
    margin: 0 auto;
    height: 2px;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-section .social-links a {
    background-color: rgba(24, 188, 82, 0.10);
    color: var(--black) !important;
}

.credits ul.link {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.credits ul.link li {
    position: relative;
    padding-left: 1em;
}

.credits ul.link li a {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: #0778C0;
}

.credits ul.link li:first-child:before {
    content: none;
}

.credits ul.link li::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: var(--offred);
    border-radius: 50%;
}

.copyright a,
.copyright {
    font-size: 20px;
    color: var(--black);
    line-height: 32px;
    font-weight: 700;
}

.footer ul.link li a:hover {
    color: var(--secondry);
}

/*footer section end*/

@media (max-width:1600px) {

    .hero .hero-title a,
    .hero .hero-title {
        font-size: 3.1rem;
    }

    .hero_third h2 a {
        font-size: 4.5rem;
    }

    .hero-forth h4 a {
        font-size: 4rem;
    }

    .hero-fifth h2 a {
        font-size: 5rem;
    }

    .hero-fifth {
        margin: -38px 0 0 0;
    }

    .hero::after {
        opacity: 0.1;
    }
}

@media (max-width:1580px) {
    .custom-container {
        margin: 0 15px;
    }

    .category-details-page:before {
        top: 5%;
    }
}

@media (max-width:1440px) {
    .category-details-page:before {
        top: 7%;
        width: 18%;
        height: 11%;
    }
}

@media (max-width:1330px) {

    .hero_sec h2,
    .hero .hero-title a,
    .hero .hero-title {
        font-size: 3rem;
    }

    .hero-forth h3,
    .hero_third h2 a {
        font-size: 4rem;
    }

    .hero-forth h4 a {
        font-size: 3.5rem;
    }
}

@media (max-width:1280px) {
    .hero_sec h2 a {
        font-size: 4.5rem;
    }

    .hero_third h2 a {
        font-size: 4rem;
    }

    .hero-forth {
        flex-wrap: wrap;
    }

    .hero-forth h3 {
        font-size: 4rem;
    }
}

@media (max-width:1200px) {
    .col-lg-6.hero-content {
        width: 55%;
    }
}

@media (max-width:1199px) {
    .category-details-page .container {
        max-width: 100%;
    }
}

@media (max-width:1094px) {
    .col-lg-6.hero-content {
        width: 56%;
    }

    .hero-tenth {
        margin: -20px 0 0 0;
    }
}

@media (max-width:1024px) {
    ul.sociallink li a img {
        width: 30px;
    }

    .col-lg-6.hero-content {
        width: 60%;
    }

    .hero-tenth {
        margin: -10px 0 0 0;
    }

    .grid_tall {
        width: 59.5%;
    }

    .grid_item {
        justify-content: space-between;
    }

    .wide.halfhight {
        height: 358px;
    }

    .grid-wrapper img {
        object-fit: cover;
        height: 100%;
    }
}

@media (max-width:1023px) {
    .col-lg-6.hero-content {
        width: 100%;
    }

    .hero .hero-image,
    .col-lg-6.hero-image {
        display: none !important;
    }

    .grid_item .wide,
    .grid_item {
        width: 100%;
    }

}

@media (max-width:768px) {
    .footer-bottom-section {
        flex-direction: column;
        justify-content: center;
    }

    .hero-sixth h3,
    .hero-eighth h2,
    .hero-ninth h2,
    .hero-eighth h2,
    .hero-forth h2 {
        font-size: 4vw;
    }

    .hero-seventh h3,
    .hero-seventh h2,
    .hero-sixth h2,
    .hero-sixth h4 {
        font-size: 7vw;
    }

    html body.home .footer {
        position: relative;
    }

    .hero-tenth,
    .hero-ninth {
        margin: 0;
    }

    .hero-tenth h2 {
        font-size: 5vw;
    }

    .hero-tenth h3 {
        font-size: 6vw;
    }
}

@media (max-width:767px) {
    .header .logo img {
        max-height: none !important;
        width: 100%;
    }

    html body.home .header .logo {
        width: 45%;
    }

    .hero .hero-title,
    .hero_third h2,
    .hero-forth h2,
    .hero-forth h3,
    .hero-forth h4,
    .hero-fifth h2,
    .hero-sixth h2,
    .hero-sixth h3,
    .hero-sixth h4,
    .hero_sec h2,
    .hero-seventh h2,
    .hero-seventh h3,
    .hero-eighth h2,
    .hero-ninth h2,
    .hero-tenth h2,
    .hero-tenth h3,
    .hero_sec h3 {
        font-size: 2rem;
    }

    .hero-sixth {
        flex-wrap: wrap;
    }

    .hero-tenth,
    .hero-ninth {
        margin: 0;
    }

    .hero::after {
        opacity: 0;
    }

    .social-links {
        display: none;
    }

    .category-details-page::after {
        content: none;
    }

    .metrics-strip .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:680px) {
    .hero_third h2 a {
        font-size: 9vw;
    }

    .hero-fifth {
        margin: -20px 0 0 0;
    }

    .hero-fifth h2 a {
        font-size: 14vw;
    }

    .hero-sixth h2 a {
        font-size: 5vw;
    }

    .hero-sixth h2 a,
    .hero-sixth h4 a,
    .hero-forth h3 a {
        font-size: 7.5vw;
    }

    .hero-seventh h3,
    .hero-seventh h2 {
        font-size: 6vw;
    }

    .hero-tenth h2 {
        font-size: 7vw;
    }

    .hero-tenth h3 {
        font-size: 7vw;
    }

    .hero-sixth {
        justify-content: center
    }

    .page-title h1.pagetitle {
        font-size: 10vw;
    }

    .page-title .tagline span {
        font-size: 3.118vw;
    }

    .hero::before {
        opacity: 0.2;
    }

    .hero_sec {
        margin-top: -2em;
    }

    .hero_third {
        margin-top: -0.5em;
    }

    .hero-forth {
        gap: 11px;
    }

    .hero-sixth {
        gap: 5px;
    }

    .hero .hero-content {
        padding: 40px 0;
    }
}

@media (max-width:480px) {

    .hero-fifth,
    .hero_sec,
    .hero_third,
    .hero-sixth {
        padding-left: 0;
    }

    .hero-forth h2 a {
        font-size: 4vw;
    }

    .hero-sixth h2 a,
    .hero-forth h3 a {
        font-size: 9vw;
    }

    .hero-forth h4 a {
        font-size: 8vw;
    }

    .hero-tenth {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vertical_wide {
        width: 37%;
    }

    .getquote blockquote {
        position: relative;
        z-index: 1;
    }

    .listofcategory h2,
    .getquote blockquote,
    .cat-subtitle h2 {
        font-size: 5vw;
    }

    .category-details-page:before {
        top: 8%;
    }

    section p {
        font-size: 20px;
    }
}



/* --- Ticker Marquee Style --- */
.ticker-container {
    background-color: var(--bg-dark-green);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.ticker-wrap {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.asterisk {
    color: var(--accent-lime);
    margin-left: 60px;
    font-size: 1.3rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Team Section Layout --- */
.team-section {
    padding: 0px 0 100px;
    background-color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.badge-dots {
    width: 12px;
    height: 12px;
    background-color: var(--accent-lime);
    border-radius: 50%;
    position: relative;
}

.badge-dots::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    background-color: var(--bg-dark-green);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    left: -2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- Team Grid Layout --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Individual Team Card --- */
.team-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 12px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    position: relative;
}

.img-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 430px;
}

.img-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    /* Matches your black & white design */
    transition: filter var(--transition-speed) ease;
}

/* --- Slide-in Floating Social Sidebar --- */
.social-sidebar {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) translateX(60px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.social-sidebar a {
    width: 36px;
    height: 36px;
    background-color: var(--accent-lime);
    color: var(--bg-dark-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-sidebar a:hover {
    transform: scale(1.15);
    background-color: #ffffff;
}

/* --- Card Info Strip --- */
.card-info {
    padding: 20px 8px 12px 8px;
    transition: color var(--transition-speed) ease;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0778C0;
    font-family: var(--Cormorant);
}

.card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Card Hover & Active States --- */
.team-card:hover,
.team-card.active {
    background-color: var(--bg-dark-green);
    border-color: var(--bg-dark-green);
    box-shadow: 0px 10px 30px rgba(24, 44, 30, 0.15);
}

.team-card:hover .img-container img,
.team-card.active .img-container img {
    filter: grayscale(0%);
    /* Optional: Returns color on hover, remove if strict B&W is needed */
}

.team-card:hover .card-info h3,
.team-card.active .card-info h3 {
    color: var(--accent-lime);
}

.team-card:hover .card-info p,
.team-card.active .card-info p {
    color: #a1a1aa;
}

/* Make social sidebar slide smoothly into view */
.team-card:hover .social-sidebar,
.team-card.active .social-sidebar {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}


/* --- Header Section --- */
.privacy-header {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-lime);
}

.privacy-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-header p {
    color: #a1a1aa;
    font-size: 0.95rem;
}

.privacy-content_header.page-title h1.pagetitle {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Core Structure Grid --- */
.privacy-container {
    display: grid;
    grid-template-columns: 100% 1fr;
    gap: 50px;
    margin-top: 0px;
    align-items: start;
}

/* --- Sidebar Navigation --- */
.privacy-sidebar {
    position: sticky;
    top: 40px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.privacy-sidebar h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}

.privacy-sidebar ul {
    list-style: none;
}

.privacy-sidebar li {
    margin-bottom: 8px;
}

.privacy-sidebar a {
    display: block;
    color: var(--drakgray);
    font-family: var(--Quatt);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.privacy-sidebar a:hover {
    background-color: var(--sidebar-hover);
    color: var(--bg-dark-green);
}

.privacy-sidebar a.active {
    background-color: var(--skyblue);
    color: #ffffff;
    font-weight: 600;
}

/* --- Main Content Layout --- */
.privacy-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.privacy-content section {
    margin-bottom: 0px;
    padding-bottom: 30px;
    scroll-margin-top: 40px;
    /* Prevents text cutting off behind stickies */
    padding-top: 0px;
}

.privacy-content h2 {
    font-size: 29px;
    color: var(--offred);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: var(--Quatt);
}

.privacy-content h3 {
    font-size: 20px;
    color: #0778C0;
    margin: 20px 0 10px 0;
    font-weight: 600;
    font-family: var(--Cormorant);
}

.privacy-content p {
    margin-bottom: 20px;
    color: var(--drakgray);
    font-size: 20px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--drakgray);
}

.privacy-content li {
    margin-bottom: 8px;
    font-family: var(--Cormorant);
    font-size: 20px;
}

/* --- Custom Tables styling --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

table th,
table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-light);
    font-family: var(--Cormorant);
    font-size: 20px;
}

table th {
    background-color: #f9fafb;
    color: var(--text-dark);
    font-weight: 600;
}

/* --- Highlight Blocks --- */
blockquote {
    border-left: 4px solid var(--accent-lime);
    background-color: #f9fafb;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
}

/* --- Contact Details Container --- */
.contact-box {
    background-color: var(--sidebar-hover);
    border: 1px dashed var(--bg-dark-green);
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box i {
    color: var(--bg-dark-green);
    width: 20px;
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 992px) {
    .privacy-container {
        grid-template-columns: 1fr;
        /* Stack sidebar on top */
        gap: 30px;
    }

    .privacy-sidebar {
        position: relative;
        top: 0;
    }

    .privacy-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .privacy-sidebar li {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        padding: 24px 16px;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
        /* Turn table responsive stacked on mobile */
    }

    table th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table td {
        border: none;
        border-bottom: 1px solid var(--border-light);
        position: relative;
        padding-left: 50%;
    }

    table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: bold;
    }
}




/* --- Page Hero Header --- */
.terms-header {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-lime);
}

.terms-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-header p {
    color: #a1a1aa;
    font-size: 0.95rem;
}

/* --- Main Layout Grid --- */
.terms-container {
    display: grid;
    grid-template-columns: 100% 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

/* --- Navigation Sticky Sidebar --- */
.terms-sidebar {
    position: sticky;
    top: 40px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.terms-sidebar h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
    font-family: var(--Cormorant);
}

.terms-sidebar ul {
    list-style: none;
}

.terms-sidebar li {
    margin-bottom: 8px;
}

.terms-sidebar a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.terms-sidebar a:hover {
    background-color: var(--sidebar-hover);
    color: var(--bg-dark-green);
}

.terms-sidebar a.active {
    background-color: var(--bg-dark-green);
    color: #ffffff;
    font-weight: 600;
}

/* --- Content Panel --- */
.terms-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.terms-content section {
    margin-bottom: 0px;
    padding-bottom: 30px;
    scroll-margin-top: 40px;
    padding-top: 0px;
}

.terms-content h2 {
    font-size: 29px;
    color: var(--offred);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: var(--Quatt);
}

#payments blockquote {
    font-family: var(--Cormorant);
    font-size: 20px;
    color: var(--drakgray);
    line-height: 28px;
    font-weight: 500;
}

.terms-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 20px;
}

.terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.terms-content li {
    margin-bottom: 8px;
    font-family: var(--Cormorant);
    font-size: 20px;
}

/* --- Blockquotes & Callouts --- */
blockquote {
    border-left: 4px solid var(--accent-lime);
    background-color: #f9fafb;
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
}

/* --- Informative Data Tables --- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

table th,
table td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--border-light);
    font-family: var(--Cormorant);
    font-size: 20px;
}

table th {
    background-color: #f9fafb;
    color: var(--text-dark);
    font-weight: 600;
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .terms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .terms-sidebar {
        position: relative;
        top: 0;
    }

    .terms-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .terms-sidebar li {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .terms-header h1 {
        font-size: 2.2rem;
    }

    .terms-content {
        padding: 24px 16px;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    table th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table td {
        border: none;
        border-bottom: 1px solid var(--border-light);
        padding-top: 10px;
    }
}





/* --- Top Header Module --- */
.contact-header {
    background: linear-gradient(135deg, var(--subheding), var(--secondry));
    color: var(--white);
    padding: 90px 0 70px 0;
    text-align: center;
    border-bottom: 4px solid var(--skyblue);
}

.contact-header h1 {
    font-family: var(--Cormorant);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Split-View Grid Interface --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 80px;
}

/* --- Column Left: Details & Channels --- */
.contact-info-panel h2 {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--subheding);
    margin-bottom: 22px;
    font-family: var(--Cormorant);
}

.contact-info-panel h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--skyblue));
}

.panel-desc {
    color: var(--drakgray);
    /* font-family: var(--Quatt); */
    margin-bottom: 35px;
    font-size: 20px;

}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(11, 86, 38, 0.1);
    margin-bottom: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--skyblue);
    box-shadow: 0 12px 24px rgba(11, 86, 38, 0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--subheding), var(--secondry));
    color: var(--skyblue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h3 {
    font-family: var(--Quatt);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondry);
    margin-bottom: 2px;
}

.contact-info-panel .info-text p {
    font-family: var(--kurale);
    font-weight: 600;
    color: var(--black);
}

.info-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Social Sub-Block */
.social-hub {
    margin-top: 40px;
}

.social-hub h3 {
    font-family: var(--Quatt);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--subheding);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.contact-info-panel .social-links a {
    background-color: var(--subheding);
}

.social-links a {
    width: 42px;
    height: 42px;
    /* background-color: var(--subheding); */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-panel .social-links a:hover {
    background-color: var(--offred);
    color: var(--white);
    transform: translateY(-4px);
}

/* --- Column Right: User Form Panel --- */
.contact-form-panel {
    background-color: var(--white);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(11, 86, 38, 0.1);
    box-shadow: 0 4px 30px rgba(11, 86, 38, 0.05);
}

.contact-form-panel h2 {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    color: var(--subheding);
    margin-bottom: 34px;
    font-weight: 700;
    font-style: italic;
    font-family: var(--Cormorant);
}

.contact-form-panel h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--skyblue));
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--Quatt);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(11, 86, 38, 0.15);
    background-color: #fafafa;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--drakgray);
    transition: all 0.2s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 118, 189, 0.12);
}

/* Button Mechanics */
.submit-btn {
    background: linear-gradient(135deg, var(--subheding), var(--secondry));
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-family: var(--Quatt);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--offred);
    box-shadow: 0 10px 24px rgba(24, 188, 82, 0.25);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* --- Inline Accordion Module (FAQ) --- */
.faq-strip-section {
    background-color: #f7faf8;
    padding: 80px 0;
    border-top: 1px solid rgba(11, 86, 38, 0.08);
}

.section-title-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-center h2 {
    font-family: var(--Cormorant);
    font-style: italic;
    font-size: 2rem;
    color: var(--subheding);
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid rgba(11, 86, 38, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background-color: var(--white);
    border-color: var(--skyblue);
    box-shadow: 0 12px 24px rgba(11, 86, 38, 0.06);
}

.faq-item summary {
    list-style: none;
    font-family: var(--Quatt);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondry);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove default marker arrows across multiple engine components */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
    color: var(--offred);
}

.faq-item summary i {
    transition: transform 0.2s ease;
    font-size: 0.9rem;
    color: var(--gray);
}

.faq-item p {
    margin-top: 12px;
    color: var(--drakgray);
    font-size: 0.95rem;
}

/* --- Fluid Structural Media Queries --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .contact-header {
        padding: 60px 0 50px 0;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-form-panel {
        padding: 24px 16px;
    }

    .form-row-half {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =====================================================
   --- Blog List Page ---
===================================================== */
.blog-list-section {
    padding: 20px 0 100px;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-grid .blog-card-extra {
    display: none;
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background-color: #f4f8f6;
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.blog-card:hover {
    background-color: var(--subheding);
    box-shadow: 0 20px 40px rgba(11, 86, 38, 0.18);
    transform: translateY(-4px);
}

.blog-card-image-wrap {
    width: 100%;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.08);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-category {
    font-family: var(--Quatt);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondry);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-category {
    color: var(--skyblue);
}

.blog-card-body h3 {
    font-family: var(--Cormorant);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--subheding);
    margin: 0;
    padding-right: 60px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-body h3 {
    color: var(--white);
}

.blog-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--subheding);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
    background-color: var(--offred);
    transform: rotate(-45deg);
}

.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--subheding);
    border: 1px solid var(--subheding);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--Quatt);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--subheding);
    color: var(--white);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-body h3 {
        font-size: 1.15rem;
    }
}

/* =====================================================
   --- Blog Details Page ---
===================================================== */
.post-hero-section {
    padding: 20px 0 100px;
    background-color: var(--white);
}

.post-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin: 40px 0 20px;
}

.post-category-pill {
    background-color: var(--subheding);
    color: var(--white);
    font-family: var(--Quatt);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.post-category-pill:hover {
    background-color: var(--offred);
    color: var(--white);
}

.post-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--Quatt);
    font-size: 0.9rem;
    color: var(--gray);
}

.post-title {
    font-family: var(--Cormorant);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.25;
    color: var(--subheding);
    max-width: 900px;
    margin-bottom: 35px;
}

.post-featured-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 45px;
}

.post-featured-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.post-content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.post-content-wrap img {
    width: 100%;
    border-radius: 30px;
}

.post-content p {
    font-family: var(--Quatt);
    color: var(--drakgray);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.post-content h3 {
    font-family: var(--Cormorant);
    color: var(--subheding);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 18px;
}

.post-blockquote {
    background-color: #f4f8f6;
    border-left: 4px solid var(--offred);
    border-radius: 0 16px 16px 0;
    padding: 30px 35px;
    margin: 35px 0;
}

.post-blockquote p {
    font-family: var(--Cormorant);
    font-style: italic;
    color: var(--secondry);
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.post-blockquote cite {
    font-family: var(--Quatt);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    font-style: normal;
}

.post-highlight-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--subheding), var(--secondry));
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
}

.post-highlight-label {
    font-family: var(--Quatt);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--skyblue);
}

.post-highlight-box h4 {
    font-family: var(--Cormorant);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 8px 0;
}

.post-highlight-box p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--Quatt);
    font-size: 0.95rem;
    margin: 0;
}

.highlight-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--subheding);
    font-family: var(--Quatt);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-btn:hover {
    background-color: var(--offred);
    color: var(--white);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(11, 86, 38, 0.1);
}

.post-tags-label {
    font-family: var(--Quatt);
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.post-tag {
    background-color: #f4f8f6;
    color: var(--secondry);
    font-family: var(--Quatt);
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background-color: var(--subheding);
    color: var(--white);
}

.comments-toggle {
    margin-bottom: 60px;
}

.comments-list {
    margin: 20px 0 30px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(11, 86, 38, 0.08);
}

.comment-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--subheding);
    color: var(--white);
    font-family: var(--Quatt);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.comment-author {
    font-family: var(--Quatt);
    font-weight: 600;
    color: var(--subheding);
    font-size: 0.95rem;
}

.comment-date {
    font-family: var(--Quatt);
    color: var(--gray);
    font-size: 0.8rem;
}

.comment-body p {
    color: var(--drakgray);
    font-size: 0.95rem;
    margin: 0;
}

.comment-form {
    margin-top: 10px;
}

.related-articles {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(11, 86, 38, 0.08);
}

@media (max-width: 600px) {
    .post-title {
        font-size: 1.9rem;
    }

    .post-highlight-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .highlight-btn {
        width: 100%;
        justify-content: center;
    }
}



/* --- Subheading Tag Design --- */
.subheading-tag {
    display: inline-block;
    font-family: var(--kurale);
    color: var(--subheding);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* --- Hero Banner Section --- */
.about-hero {
    background: linear-gradient(135deg, #0e273c 0%, var(--secondry) 100%);
    color: var(--white);
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--skyblue);
    opacity: 0.08;
    border-radius: 50%;
}

.about-hero h1 {
    font-family: var(--Cormorant);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 850px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.85;
    max-width: 650px;
}

/* --- Split Grid Section --- */
.split-approach-section {
    padding: 50px 0 100px;
}

.approach-left h2 {
    font-family: var(--Cormorant);
    font-size: 2.6rem;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--drakgray);
    font-weight: 500;
    margin-bottom: 16px;
}

.approach-left p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Interactive CTA Layout Buttons */
.cta-block {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--offred);
}

.btn-secondary {
    border: 2px solid var(--black);
    color: var(--black);
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Asymmetric Finovate-Style Image Block */
.approach-right .image-wrapper {
    position: relative;
    padding-left: 30px;
}

.approach-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.06);
}

.accent-badge-box {
    position: absolute;
    top: -25px;
    left: 0;
    background-color: var(--offred);
    color: var(--white);
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0px 10px 30px rgba(24, 188, 82, 0.3);
    z-index: 2;
    max-width: 160px;
}

.accent-badge-box h3 {
    font-size: 2.2rem;
    font-family: var(--kurale);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 4px;
}

.accent-badge-box p {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

/* --- Metrics Strip Panel --- */
.metrics-strip {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 60px 0;
}

.stat-card text-align {
    text-align: left;
}

.stat-card h3 {
    font-family: var(--kurale);
    font-size: 3rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 600;
}

.stat-card p {
    color: var(--drakgray);
    font-size: 0.95rem;
    font-weight: 700;
}

/* --- Core Pillars Section --- */
.pillars-section {
    padding: 100px 0;
}

.center-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.center-heading h2 {
    font-family: var(--Cormorant);
    font-size: 2.5rem;
    color: var(--black);
}

.pillar-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 45px 35px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--skyblue);
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-family: var(--Cormorant);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--black);
}

.pillar-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Accent Card Hover Framework */
.pillar-card:hover,
.pillar-card.active-pillar {
    transform: translateY(-8px);
    box-shadow: 0px 20px 40px rgba(22, 90, 106, 0.1);
    border-color: var(--secondry);
}

.pillar-card.active-pillar .pillar-icon {
    color: var(--offred);
}

/* --- Full Fluid Structural Responsive Media Queries --- */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .approach-right .image-wrapper {
        padding-left: 0;
    }

    .approach-right img {
        height: 400px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.6rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-approach-section,
    .pillars-section {
        padding: 60px 0;
    }

    .hero-content {
        justify-content: center;
    }

    .hero-cloud {
        min-height: 200px;
    }

    .hero-cloud-item.size-xl {
        font-size: clamp(1.7rem, 8vw, 3rem);
    }

    .hero-cloud-item.size-lg {
        font-size: clamp(1.4rem, 6.2vw, 2.4rem);
    }

    .hero-cloud-item.size-md {
        font-size: clamp(1.15rem, 5vw, 1.9rem);
    }

    .hero-cloud-item.size-sm {
        font-size: clamp(0.95rem, 4vw, 1.45rem);
    }

    .hero-cloud-item.size-xs {
        font-size: clamp(0.8rem, 3.3vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.1rem;
    }

    .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-block {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }
}

/* Base Responsive Grid Definitions */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .split-approach-section .grid-2 {
        grid-template-columns: 1fr;
    }

    .img-container {
        height: auto;
    }
}

@media (max-width: 767px) {
    .pillars-section .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width:680px) {
    #header ul.sociallink {
        gap: 0;
    }
}
