/* =====================================
ABOUT SECTION
=====================================*/

body {
    background: #efefef;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: auto;
}

.website {
    background: #1d2431;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}


/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #1d2431;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.logo {
    color: #c69b73;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
}

nav ul li a:hover {
    color: #c69b73;
}

.btn {
    background: #b8865c;
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.btn:hover {
    background: #c69b73;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/*==========================
TABLET
==========================*/

@media(max-width:991px) {
    header {
        padding: 18px 25px;
    }
    nav ul {
        gap: 20px;
    }
}


/*==========================
MOBILE
==========================*/

@media(max-width:768px) {
    header {
        flex-wrap: wrap;
    }
    .menu-toggle {
        display: block;
    }
    .contact-btn {
        display: none;
    }
    nav {
        width: 100%;
        display: none;
        margin-top: 20px;
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    nav ul li {
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    nav ul li a {
        display: block;
        padding: 16px 0;
    }
}


/* Hero */

.hero {
    text-align: center;
    padding: 35px 30px;
}

.hero h1 {
    color: #c69b73;
    font-family: 'Cinzel', serif;
    font-size: 70px;
    letter-spacing: 2px;
}

.hero p {
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

.banner {
    width: 100%;
    max-width: 900px;
    margin: 25px auto;
}

.banner img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.exp {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-top: 20px;
}


/* Services */

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.service {
    background: #2a3243;
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 25px;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    transition: .4s;
}

.service:hover {
    background: #b8865c;
    transform: translateY(-5px);
}

.service h3 {
    margin-top: 10px;
    font-family: 'Cinzel', serif;
}


/* Works */

.title {
    text-align: center;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 34px;
    margin-bottom: 30px;
}

.works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}

.card {
    background: #2a3243;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 18px;
}

.card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}


/* Responsive */

@media(max-width:992px) {
    .hero h1 {
        font-size: 45px;
    }
    .services,
    .works {
        grid-template-columns: repeat(2, 1fr);
    }
    header {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width:768px) {
    .services,
    .works {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 34px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.about-section {
    background: #1d2431;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 70px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content span {
    color: #d3a175;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-content h2 {
    font-family: 'Cinzel', serif;
    color: #d3a175;
    font-size: 48px;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.about-content p {
    color: #ddd;
    line-height: 1.9;
    margin-bottom: 25px;
}


/* =====================================
IMPACT
=====================================*/

.impact {
    background: #18202c;
    padding: 70px 20px;
    text-align: center;
}

.impact h2 {
    color: #d3a175;
    font-family: 'Cinzel', serif;
    margin-bottom: 50px;
    font-size: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.impact-box {
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.impact-box:last-child {
    border-right: none;
}

.impact-box h3 {
    font-size: 55px;
    color: #d3a175;
    font-family: 'Cinzel', serif;
}

.impact-box p {
    margin-top: 10px;
    color: #ddd;
}


/* =====================================
QUOTE
=====================================*/

.quote-section {
    background: url("images/lounge.jpg") center center;
    background-size: cover;
    position: relative;
}

.quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.quote-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px;
}

.quote-overlay h2 {
    color: #d3a175;
    font-size: 80px;
    font-family: 'Cinzel', serif;
}

.quote-overlay p {
    color: #fff;
    font-size: 34px;
    font-style: italic;
    font-family: 'Cinzel', serif;
    line-height: 1.5;
}

.quote-overlay span {
    display: block;
    margin-top: 25px;
    color: #d3a175;
    font-size: 24px;
}


/* =====================================
NEWSLETTER
=====================================*/

.newsletter {
    background: #202938;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter h3 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter p {
    color: #ccc;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    width: 360px;
    height: 50px;
    background: #30394b;
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 5px;
}

.newsletter button {
    background: #b8865c;
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 5px;
    cursor: pointer;
}


/* =====================================
FOOTER
=====================================*/

footer {
    background: #111923;
    color: #fff;
    padding: 70px 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 2fr;
    gap: 40px;
}

.footer-grid h3,
.footer-grid h4 {
    color: #d3a175;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.footer-grid p,
.footer-grid li {
    color: #ddd;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid a {
    color: #ddd;
    text-decoration: none;
}

.footer-grid input {
    width: 100%;
    height: 48px;
    background: #2c3545;
    border: none;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    text-align: center;
    color: #bbb;
}


/* =====================================
RESPONSIVE
=====================================*/

@media(max-width:991px) {
    .about-section {
        flex-direction: column;
        padding: 40px 25px;
    }
    .about-content h2 {
        font-size: 34px;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter {
        flex-direction: column;
    }
    .newsletter form {
        width: 100%;
    }
    .newsletter input {
        width: 100%;
    }
}

@media(max-width:767px) {
    .hero h1 {
        font-size: 26px;
    }
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .quote-overlay p {
        font-size: 24px;
    }
    .newsletter form {
        flex-direction: column;
    }
    .newsletter button {
        height: 50px;
    }
}


/*=====================================
ABOUT SECTION
======================================*/

.about-section {
    background: #1d2431;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(198, 155, 115, .08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(198, 155, 115, .05);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    transition: .5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-box {
    position: absolute;
    left: -20px;
    bottom: 30px;
    background: #c69b73;
    color: #fff;
    padding: 22px 28px;
    border-radius: 15px;
    text-align: center;
    min-width: 170px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .30);
}

.experience-box h2 {
    margin: 0;
    font-size: 48px;
    font-family: 'Cinzel', serif;
    color: #fff;
}

.experience-box span {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: 25px;
}

.section-title .subtitle {
    display: inline-block;
    color: #c69b73;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title h2 span {
    color: #c69b73;
}

.about-section p {
    color: #d7d7d7;
    font-size: 17px;
    line-height: 1.9;
}

.highlight-box {
    background: #242d3d;
    border-left: 4px solid #c69b73;
    padding: 30px;
    border-radius: 12px;
    margin: 35px 0;
}

.highlight-box i {
    color: #c69b73;
    font-size: 34px;
    margin-bottom: 15px;
}

.highlight-box p {
    color: #fff;
    margin: 0;
    font-style: italic;
    font-size: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    color: #e6e6e6;
    font-size: 16px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    transition: .3s;
}

.about-list li:hover {
    color: #c69b73;
    transform: translateX(6px);
}

.about-list i {
    color: #c69b73;
    width: 32px;
    margin-top: 3px;
    font-size: 18px;
}

.about-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 40px;
    background: #c69b73;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .4s;
}

.about-btn:hover {
    background: #fff;
    color: #1d2431;
    transform: translateY(-3px);
}


/*=====================================
RESPONSIVE
======================================*/

@media(max-width:991px) {
    .about-section {
        padding: 70px 0;
    }
    .section-title {
        margin-top: 40px;
    }
    .section-title h2 {
        font-size: 38px;
    }
    .experience-box {
        left: 15px;
        bottom: 15px;
        min-width: 140px;
        padding: 18px;
    }
    .experience-box h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {
    .about-section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .about-section p {
        font-size: 16px;
    }
    .highlight-box {
        padding: 22px;
    }
    .about-list li {
        font-size: 15px;
    }
    .experience-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

.page-banner {
    position: relative;
    background: url("assets/images/about-banner.jpg") center center/cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 27, 39, .70), rgba(18, 27, 39, .85));
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner-content .sub-title {
    display: inline-block;
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.banner-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: #d8d8d8;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-item a:hover {
    color: #c69b73;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #c69b73;
}

.breadcrumb-item.active {
    color: #c69b73;
}


/* Decorative Line */

.banner-content::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #c69b73;
    display: block;
    margin: 30px auto 0;
}


/* Responsive */

@media(max-width:991px) {
    .page-banner {
        min-height: 320px;
    }
    .banner-content h1 {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .page-banner {
        min-height: 260px;
    }
    .banner-content .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .banner-content h1 {
        font-size: 30px;
    }
    .breadcrumb-item {
        font-size: 14px;
    }
}


/*==================================================
HOSPITALITY PAGE
==================================================*/

.hospitality-section {
    background: #1d2431;
    padding: 100px 0;
    position: relative;
}

.hospitality-image {
    overflow: hidden;
    border-radius: 20px;
}

.hospitality-image img {
    width: 100%;
    transition: .5s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.hospitality-image:hover img {
    transform: scale(1.05);
}

.section-title span {
    display: inline-block;
    color: #c69b73;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
}

.section-title h2 strong {
    color: #c69b73;
    font-weight: 700;
}

.hospitality-section .lead {
    color: #c69b73;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hospitality-section p {
    color: #d8d8d8;
    line-height: 1.9;
    font-size: 17px;
}


/*==================================================
EXPERTISE
==================================================*/

.expertise-section {
    background: #18202c;
    padding: 100px 0;
}

.sub-heading {
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
}

.expertise-section h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin: 15px 0;
}

.expertise-section p {
    color: #cfcfcf;
}

.expertise-box {
    background: #232c3c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

.expertise-box:hover {
    transform: translateY(-8px);
    background: #c69b73;
}

.expertise-box i {
    font-size: 42px;
    color: #c69b73;
    margin-bottom: 20px;
    transition: .4s;
}

.expertise-box:hover i {
    color: #fff;
}

.expertise-box h4 {
    color: #fff;
    font-size: 21px;
    line-height: 1.5;
    margin: 0;
}


/*==================================================
LEADERSHIP
==================================================*/

.leadership-section {
    background: #1d2431;
    padding: 100px 0;
}

.leadership-section img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.leadership-section p {
    color: #d8d8d8;
    line-height: 1.9;
    font-size: 17px;
}


/*==================================================
PORTFOLIO
==================================================*/

.portfolio-section {
    background: #18202c;
    padding: 100px 0;
}

.portfolio-section h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
}

.portfolio-card {
    background: #232c3c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    background: #c69b73;
}

.portfolio-card h4 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.portfolio-card p {
    color: #d9d9d9;
    margin: 0;
}

.portfolio-card:hover p {
    color: #fff;
}

.upcoming {
    border: 2px dashed #c69b73;
}


/*==================================================
CTA
==================================================*/

.hospitality-cta {
    background: url("../images/cta-bg.jpg") center center/cover;
    position: relative;
    padding: 120px 0;
}

.hospitality-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 22, 32, .78);
}

.hospitality-cta .container {
    position: relative;
    z-index: 2;
}

.hospitality-cta h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 50px;
    margin-bottom: 25px;
}

.hospitality-cta p {
    color: #ddd;
    max-width: 760px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.9;
}

.theme-btn {
    display: inline-block;
    background: #c69b73;
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.theme-btn:hover {
    background: #fff;
    color: #1d2431;
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {
    .hospitality-section,
    .expertise-section,
    .leadership-section,
    .portfolio-section {
        padding: 70px 0;
    }
    .section-title h2 {
        font-size: 34px;
    }
    .expertise-section h2,
    .portfolio-section h2 {
        font-size: 34px;
    }
    .hospitality-cta {
        padding: 80px 0;
    }
    .hospitality-cta h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {
    .section-title h2 {
        font-size: 28px;
    }
    .hospitality-section p,
    .leadership-section p {
        font-size: 15px;
    }
    .expertise-box {
        padding: 30px 20px;
    }
    .expertise-box i {
        font-size: 34px;
    }
    .expertise-box h4 {
        font-size: 18px;
    }
    .portfolio-card {
        padding: 30px 20px;
    }
    .portfolio-card h4 {
        font-size: 20px;
    }
    .hospitality-cta h2 {
        font-size: 28px;
    }
    .hospitality-cta p {
        font-size: 15px;
    }
    .theme-btn {
        padding: 14px 30px;
    }
}


/*=========================================
BOOKS & PUBLICATIONS
==========================================*/

.books-section {
    background: #1d2431;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.books-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(198, 155, 115, .05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.books-section img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.section-title span {
    display: inline-block;
    color: #c69b73;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-title h2 strong {
    color: #c69b73;
}

.books-section .lead {
    color: #c69b73;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.books-section p {
    color: #d6d6d6;
    line-height: 1.9;
    font-size: 17px;
}

.book-quote {
    margin-top: 35px;
    background: #242d3d;
    border-left: 4px solid #c69b73;
    padding: 30px;
    color: #fff;
    font-style: italic;
    border-radius: 10px;
    line-height: 1.8;
}

.book-quote i {
    color: #c69b73;
    font-size: 28px;
    margin-right: 10px;
}


/*=========================================
BOOK GRID
==========================================*/

.published-books {
    background: #18202c;
    padding: 100px 0;
}

.sub-heading {
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
}

.published-books h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 44px;
    margin: 15px 0;
}

.published-books p {
    color: #cfcfcf;
}


/*=========================================
BOOK CARD
==========================================*/

.book-card {
    background: #232c3c;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.book-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: .5s;
}

.book-card:hover img {
    transform: scale(1.05);
}

.book-content {
    padding: 28px;
}

.book-content h4 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin-bottom: 15px;
    transition: .3s;
}

.book-card:hover h4 {
    color: #c69b73;
}

.book-content p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/*=========================================
BOTTOM CTA
==========================================*/

.books-cta {
    background: url("../images/library-bg.jpg") center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.books-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 34, .82);
}

.books-cta .container {
    position: relative;
    z-index: 2;
}

.books-cta h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 50px;
    margin-bottom: 25px;
}

.books-cta p {
    color: #ddd;
    max-width: 760px;
    margin: auto;
    margin-bottom: 35px;
    line-height: 1.9;
}

.theme-btn {
    display: inline-block;
    background: #c69b73;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.theme-btn:hover {
    background: #fff;
    color: #1d2431;
}


/*=========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {
    .books-section,
    .published-books {
        padding: 70px 0;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .published-books h2 {
        font-size: 36px;
    }
    .books-cta {
        padding: 80px 0;
    }
    .books-cta h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {
    .section-title h2 {
        font-size: 30px;
    }
    .books-section .lead {
        font-size: 18px;
    }
    .books-section p {
        font-size: 15px;
    }
    .book-card img {
        height: 300px;
    }
    .book-content {
        padding: 22px;
    }
    .book-content h4 {
        font-size: 20px;
    }
    .books-cta h2 {
        font-size: 28px;
    }
    .books-cta p {
        font-size: 15px;
    }
    .theme-btn {
        padding: 14px 30px;
    }
}


/*=========================================
SPEAKER SECTION
=========================================*/

.speaker-section {
    background: #1d2431;
    padding: 100px 0;
}

.speaker-section img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.section-title span {
    display: inline-block;
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-title h2 strong {
    color: #c69b73;
}

.speaker-section .lead {
    color: #c69b73;
    font-size: 22px;
    margin-bottom: 20px;
}

.speaker-section p {
    color: #d7d7d7;
    line-height: 1.9;
    font-size: 17px;
}


/*=========================================
QUOTE BOX
=========================================*/

.quote-box {
    margin-top: 35px;
    background: #242d3d;
    border-left: 4px solid #c69b73;
    padding: 30px;
    border-radius: 12px;
}

.quote-box i {
    color: #c69b73;
    font-size: 32px;
    margin-bottom: 15px;
}

.quote-box p {
    color: #fff;
    margin: 0;
    font-style: italic;
    line-height: 1.8;
}


/*=========================================
SPEAKING PLATFORMS
=========================================*/

.platform-section {
    background: #18202c;
    padding: 100px 0;
}

.sub-heading {
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
}

.platform-section h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin: 15px 0;
}

.platform-card {
    background: #232c3c;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-8px);
    background: #c69b73;
}

.platform-card i {
    color: #c69b73;
    font-size: 42px;
    margin-bottom: 20px;
    transition: .4s;
}

.platform-card:hover i {
    color: #fff;
}

.platform-card h4 {
    color: #fff;
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
}


/*=========================================
TOPICS
=========================================*/

.topics-section {
    background: #1d2431;
    padding: 100px 0;
}

.topics-section h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.topics-grid span {
    background: #232c3c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
    font-size: 16px;
}

.topics-grid span:hover {
    background: #c69b73;
    transform: translateY(-5px);
}


/*=========================================
RAJ ACADEMY
=========================================*/

.academy-section {
    background: #18202c;
    padding: 100px 0;
}

.academy-section img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.academy-section .lead {
    color: #c69b73;
    font-size: 22px;
    margin-bottom: 20px;
}

.academy-section p {
    color: #d7d7d7;
    font-size: 17px;
    line-height: 1.9;
}


/*=========================================
ACADEMY PROGRAMMES
=========================================*/

.academy-programs {
    background: #1d2431;
    padding: 100px 0;
}

.academy-programs h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
}

.program-card {
    background: #232c3c;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .08);
    height: 100%;
}

.program-card:hover {
    background: #c69b73;
    transform: translateY(-8px);
}

.program-card i {
    font-size: 45px;
    color: #c69b73;
    margin-bottom: 20px;
    transition: .3s;
}

.program-card:hover i {
    color: #fff;
}

.program-card h4 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}


/*=========================================
CTA
=========================================*/

.speaker-cta {
    background: url("../images/speaker-bg.jpg") center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.speaker-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 22, 32, .82);
}

.speaker-cta .container {
    position: relative;
    z-index: 2;
}

.speaker-cta h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 25px;
}

.speaker-cta p {
    color: #ddd;
    max-width: 750px;
    margin: auto;
    line-height: 1.9;
    margin-bottom: 35px;
}

.theme-btn {
    display: inline-block;
    background: #c69b73;
    color: #fff;
    text-decoration: none;
    padding: 15px 42px;
    border-radius: 50px;
    transition: .4s;
    font-weight: 600;
}

.theme-btn:hover {
    background: #fff;
    color: #1d2431;
}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .speaker-section,
    .platform-section,
    .topics-section,
    .academy-section,
    .academy-programs {
        padding: 70px 0;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .platform-section h2,
    .topics-section h2,
    .academy-programs h2 {
        font-size: 34px;
    }
    .speaker-cta {
        padding: 80px 0;
    }
    .speaker-cta h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {
    .section-title h2 {
        font-size: 28px;
    }
    .speaker-section p,
    .academy-section p {
        font-size: 15px;
    }
    .speaker-section .lead,
    .academy-section .lead {
        font-size: 18px;
    }
    .platform-card,
    .program-card {
        padding: 30px 20px;
    }
    .platform-card i,
    .program-card i {
        font-size: 36px;
    }
    .platform-card h4,
    .program-card h4 {
        font-size: 18px;
    }
    .topics-grid {
        gap: 12px;
    }
    .topics-grid span {
        font-size: 14px;
        padding: 12px 18px;
    }
    .speaker-cta h2 {
        font-size: 28px;
    }
    .speaker-cta p {
        font-size: 15px;
    }
    .theme-btn {
        padding: 14px 28px;
    }
}


/*=========================================
CSR SECTION
=========================================*/

.csr-section {
    background: #1d2431;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.csr-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(198, 155, 115, .05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.csr-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    transition: .5s;
}

.csr-image img:hover {
    transform: scale(1.03);
}


/*=========================================
SECTION TITLE
=========================================*/

.section-title span {
    display: inline-block;
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-title h2 strong {
    color: #c69b73;
}

.csr-section .lead {
    color: #c69b73;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.csr-section p {
    color: #d7d7d7;
    line-height: 1.9;
    font-size: 17px;
}


/*=========================================
QUOTE
=========================================*/

.csr-quote {
    background: #232c3c;
    border-left: 4px solid #c69b73;
    padding: 30px;
    border-radius: 12px;
    margin-top: 35px;
}

.csr-quote i {
    color: #c69b73;
    font-size: 30px;
    margin-bottom: 15px;
}

.csr-quote p {
    color: #fff;
    margin: 0;
    font-style: italic;
    line-height: 1.8;
}


/*=========================================
FOCUS AREA
=========================================*/

.csr-focus {
    background: #18202c;
    padding: 100px 0;
}

.sub-heading {
    color: #c69b73;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
}

.csr-focus h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin: 15px 0;
}

.csr-focus p {
    color: #d5d5d5;
}

.csr-card {
    background: #232c3c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

.csr-card:hover {
    transform: translateY(-10px);
    background: #c69b73;
}

.csr-card i {
    color: #c69b73;
    font-size: 45px;
    margin-bottom: 20px;
    transition: .4s;
}

.csr-card:hover i {
    color: #fff;
}

.csr-card h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 18px;
    font-family: 'Cinzel', serif;
}

.csr-card p {
    color: #d6d6d6;
    line-height: 1.8;
}

.csr-card:hover p {
    color: #fff;
}


/*=========================================
VISION
=========================================*/

.csr-vision {
    background: #1d2431;
    padding: 100px 0;
}

.csr-vision img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.csr-vision p {
    color: #d7d7d7;
    line-height: 1.9;
    font-size: 17px;
}


/*=========================================
CTA
=========================================*/

.csr-cta {
    background: url("../images/csr-bg.jpg") center center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.csr-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 35, .82);
}

.csr-cta .container {
    position: relative;
    z-index: 2;
}

.csr-cta h2 {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 25px;
}

.csr-cta p {
    color: #ddd;
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.theme-btn {
    display: inline-block;
    background: #c69b73;
    color: #fff;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.theme-btn:hover {
    background: #fff;
    color: #1d2431;
}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .csr-section,
    .csr-focus,
    .csr-vision {
        padding: 70px 0;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .csr-focus h2 {
        font-size: 36px;
    }
    .csr-cta {
        padding: 80px 0;
    }
    .csr-cta h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {
    .csr-section,
    .csr-focus,
    .csr-vision {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .csr-focus h2 {
        font-size: 30px;
    }
    .csr-section .lead {
        font-size: 18px;
    }
    .csr-section p,
    .csr-vision p {
        font-size: 15px;
    }
    .csr-card {
        padding: 30px 20px;
    }
    .csr-card i {
        font-size: 36px;
    }
    .csr-card h4 {
        font-size: 20px;
    }
    .csr-cta h2 {
        font-size: 28px;
    }
    .csr-cta p {
        font-size: 15px;
    }
    .theme-btn {
        padding: 14px 28px;
    }
}


.container {
            max-width: 1200px;
            margin: -50px auto 50px;
            padding: 0 20px;
            position: relative;
        }
        .card {
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 40px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        /* Leadership Highlights Grid */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: var(--bg-light);
            border-radius: 6px;
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
        }

        .highlight-item i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .highlight-item span {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* Key Achievements List */
        .achievements-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .achievements-list li {
            position: relative;
            padding-left: 30px;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .achievements-list li::before {
            content: '\f091';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-color);
        }

        /* Leadership Philosophy Quote */
        .philosophy-box {
            background: linear-gradient(135deg, var(--primary-color), #2a4365);
            color: var(--white);
            text-align: center;
            padding: 50px 30px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .philosophy-box i {
            font-size: 3rem;
            color: var(--accent-color);
            opacity: 0.4;
            margin-bottom: 20px;
        }

        .philosophy-box blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

    

        /* Responsive Design */
        @media(max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .card { padding: 20px; }
            .philosophy-box blockquote { font-size: 1.1rem; }
        }