/* =========================
PRELOADER
========================= */

#cf-preloader{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    background:#0f1a2e;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.6s ease;
}

.cf-loader-wrap{
    text-align:center;
}

.cf-loader-circle{
    width:80px;
    height:80px;
    border:4px solid rgba(255,255,255,0.15);
    border-top:4px solid #c9973a;
    border-radius:50%;
    margin:auto;
    animation:cfSpin 1s linear infinite;
}

.cf-loader-wrap h3{
    margin-top:25px;
    color:#fff;
    font-size:22px;
    letter-spacing:2px;
    font-weight:600;
}

@keyframes cfSpin{
    0%{ transform:rotate(0deg); }
    100%{ transform:rotate(360deg); }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #222;
            background: #fff;
            overflow-x: hidden;
            line-height: 1.7;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
        }

        .container {
            width: 95%;
            max-width: 1280px;
            margin: auto;
            position: relative;
            z-index: 2;
        }

        section {
            padding: 90px 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.2;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title span {
            color: #c9973a;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            font-weight: 600;
        }

        .section-title h2 {
            font-size: 52px;
            margin-top: 10px;
            color: #111;
        }

        .btn {
            display: inline-block;
            padding: 15px 32px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            transition: .3s ease;
        }

        .btn-primary {
            background: #c9973a;
            color: #fff;
        }

        .btn-primary:hover {
            background: #0f1a2e;
            color: #fff;
        }

        .btn-outline {
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: #111;
        }

:root{
    --primary:#1f3b6d;
    --secondary:#d4a86a;
    --cream:#f8f4ed;
    --white:#ffffff;
    --text:#2f2f2f;
    --border:#ebe2d5;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.header{
    position:relative;
    /*top:15px;*/
    left:50%;
    transform:translateX(-50%);
    /*width:95%;*/
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    /*border-radius:70px;*/
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.header.scrolled{
    top:10px;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 35px;
}

/* LOGO */

.logo img{
    width:75px;
}

/* MENU */

.nav-menu ul{
    display:flex;
    gap:30px;
}

.nav-menu ul li{
    position:relative;
}

.nav-menu ul li a{
    color:#1d2f5d;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.nav-menu ul li a:hover{
    color:#c9973a;
}

/* DROPDOWN */

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    min-width:220px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
}

/* SOCIAL */

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.social-icons-head{
    display:none;
    gap:10px;
}

.social-icons-head a,
.mobile-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1d2f5d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.social-icons-head a:hover{
    background:#c9973a;
    transform:translateY(-3px);
}

/* MENU BUTTON */

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#1d2f5d;
}

.close-btn{
    display:none;
}

.mobile-social{
    display:none;
}

/* OVERLAY */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* MOBILE */

@media(max-width:991px){

.header{
    width:94%;
    border-radius:18px;
}

.header .container{
    padding:15px 20px;
}

.logo img{
    width:60px;
}

.social-icons{
    display:none;
}

.menu-btn{
    display:block;
}

.nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:340px;
    max-width:90%;
    height:100vh;
    background:#fff;
    z-index:9999;
    transition:.4s;
    padding:25px;
    overflow-y:auto;
}

.nav-menu.active{
    right:0;
}

.close-btn{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.close-btn i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1d2f5d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.nav-menu ul{
    flex-direction:column;
    gap:0;
}

.nav-menu ul li{
    width:100%;
}

.nav-menu ul li a{
    display:block;
    padding:16px 0;
    border-bottom:1px solid #eee;
}

.dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    margin-left:15px;
}

.dropdown.active .dropdown-menu{
    display:block;
}

.mobile-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}
}



.speaking {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 100px 0 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for better text readability */
.speaking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
    z-index: -1;
}












.hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    animation: heroZoom 8s ease-in-out infinite alternate;
    margin-top: -20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01),
        rgba(255,255,255,0.04)
    );
    animation: shineMove 6s linear infinite;
    z-index: 1;
}

.hero-content-1 span {
    display: inline-block;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero-content-1 h1 {
    color: #000;
    /*font-size: 60px;*/
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

.hero-content-1 p {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.4s ease forwards;
    animation-delay: 0.6s;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 0.9s;
}

.hero-btns .btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btns .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transition: 0.5s;
}

.hero-btns .btn:hover::before {
    left: 100%;
}

.hero-btns .btn:hover {
    transform: translateY(-5px) scale(1.03);
}

.btn-primary {
    background: #1a2f5e;
    color: #fff;
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.hero-content-1 {
    animation: floatContent 5s ease-in-out infinite;
    /*margin-top:;*/
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

@keyframes shineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes floatContent {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero { min-height: auto !important; padding: 120px 0; }
    .hero-content-1 h1 { font-size: 48px; }
    .hero-content-1 p br { display: none; }
}

@media (max-width: 768px) {

    .hero{
        min-height: auto;
        padding: 60px 0;
        /*margin-top: 90px;*/
        background-position: left !important;
        animation: none;
    }

    .hero-content-1{
        text-align: center;
        animation: none;
    }

    .hero-content-1 h1{
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-content-1 p{
        font-size: 16px;
        font-weight: 600;
        line-height: 1.6;
    }

    .hero-content-1 p br,
    .hero-content-1 h1 br{
        display:none;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-btns .btn{
        width:100%;
        max-width:320px;
    }
}

@media (max-width: 480px) {
    .hero-content-1 h1 { font-size: 30px; }
    .hero-content-1 span { font-size: 13px;font-weight: 600; }
    .hero-content-1 p { font-size: 15px;font-weight: 600; }
}

        /* ABOUT */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .about-img img {
            border-radius: 20px;
            height: 100%;
            object-fit: cover;
        }

        .about-content h2 {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 18px;
            color: #555;
        }

        /* CARDS */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            transition: .3s;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .card:hover {
            transform: translateY(-8px);
        }

        .card i {
            font-size: 38px;
            color: #c9973a;
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .card p {
            color: #666;
        }

        /* BOOK */
        .book-section {
            background: #f5f0e8;
        }

        .book-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }

        .book-cover img {
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .book-content h2 {
            font-size: 58px;
            margin-bottom: 25px;
        }

        .book-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .book-box {
            background: #fff;
            padding: 25px;
            border-left: 5px solid #c9973a;
            border-radius: 15px;
            margin: 25px 0;
        }

        /* SPEAKING */
        .speaking {
            background:
                linear-gradient(rgba(0, 0, 0, 0.75),
                    rgba(0, 0, 0, 0.75)),
                url('img/home-speaking-bg.jpg') center/cover;
            color: #fff;
        }

        .speaking .section-title h2,
        .speaking .section-title span {
            color: #fff;
        }

        .speaking-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .speak-box {
            background: rgba(255, 255, 255, 0.08);
            padding: 35px;
            border-radius: 20px;
            backdrop-filter: blur(6px);
        }

        .speak-box h3 {
            font-size: 34px;
            margin-bottom: 20px;
        }

        .speak-box ul {
            list-style: none;
        }

        .speak-box ul li {
            margin-bottom: 14px;
            position: relative;
            padding-left: 28px;
        }

        .speak-box ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #d4ab6a;
        }

/* MEDIA GALLERY */
.media-gallery-section {
    padding: 100px 0;
    background: #f8f4ed;
    overflow: hidden;
    position: relative;
}

.section-title p {
    color: #000;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
}

.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-slider {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: autoSlide 35s linear infinite;
}

.gallery-slider:hover {
    animation-play-state: paused;
}

.gallery-slide {
    min-width: 320px;
    height: 430px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

.gallery-slide:hover {
    transform: translateY(-10px);
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

@keyframes autoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.media-gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #0f1a2e, transparent);
    z-index: 2;
}

.media-gallery-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, #0f1a2e, transparent);
    z-index: 2;
}

@media (max-width: 992px) {
    .section-title h2 { font-size: 42px; }
    .gallery-slide { min-width: 280px; height: 380px; }
}

@media (max-width: 768px) {
    .media-gallery-section { padding: 70px 0; }
    .section-title h2 { font-size: 32px; }
    .section-title p { font-size: 15px; }
    .gallery-slider { gap: 15px; }
    .gallery-slide { min-width: 220px; height: 300px; border-radius: 18px; }
    .media-gallery-section::before,
    .media-gallery-section::after { width: 50px; }
}

@media (max-width: 480px) {
    .section-title h2 { font-size: 26px; }
    .gallery-slide { min-width: 190px; height: 260px; }
}

/* TESTIMONIAL */
.testimonial-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.testimonial-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(201, 151, 58, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    top: -150px;
    right: -100px;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-title span {
    color: #c9973a;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.testimonial-title h2 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
}

.testimonial-title p {
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testiSlider 28s linear infinite;
}

.testimonial-slider:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 380px;
    padding: 40px 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 151, 58, 0.4);
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 151, 58, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    color: #c9973a;
    font-size: 28px;
}

.testimonial-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 151, 58, 0.5);
}

.testimonial-user-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.testimonial-user-info span {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

@keyframes testiSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .testimonial-title h2 { font-size: 42px; }
    .testimonial-card { width: 330px; }
}

@media (max-width: 768px) {
    .testimonial-section { padding: 80px 0; }
    .testimonial-title h2 { font-size: 32px; }
    .testimonial-card { width: 280px; padding: 30px 25px; border-radius: 22px; }
    .testimonial-text { font-size: 16px; line-height: 1.8; }
    .quote-icon { width: 60px; height: 60px; }
    .quote-icon i { font-size: 22px; }
}

@media (max-width: 480px) {
    .testimonial-title h2 { font-size: 26px; }
    .testimonial-card { width: 240px; }
}

/* BLOG SLIDER */
.blog-section{
    overflow: hidden;
    padding: 100px 0;
}

.blog-grid{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: blogSlider 28s linear infinite;
}

.blog-grid:hover{
    animation-play-state: paused;
}

.blog-card{
    width: 380px;
    background: #0f1a2e;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    transition: 0.5s ease;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.blog-card:hover{
    transform: translateY(-10px);
}

.blog-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s ease;
}

.blog-card:hover img{
    transform: scale(1.08);
}

.blog-content{
    padding: 30px;
}

.blog-content h3{
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-content .btn{
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

@keyframes blogSlider{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width:768px){
    .blog-card { width: 280px; }
    .blog-card img { height: 200px; }
    .blog-content { padding: 22px; }
    .blog-content h3 { font-size: 22px; }
}

        /* CONTACT */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .contact-info h2 {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 18px;
            color: #555;
        }

        .contact-info-2{
            display:flex;
            flex-direction:column;
            gap:20px;
            align-items:flex-start;
        }
        
        .contact-item-2{
            display:flex;
            align-items:flex-start;
            gap:10px;
        }
        
        @media (max-width:768px){
        
            .contact-info-2{
                display:flex;
                flex-direction:column;
                gap:15px;
                align-items:flex-start;
            }
        
        }

        .contact-form {
            background: #f5f0e8;
            padding: 40px;
            border-radius: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px;
            border: 1px solid #ddd;
            margin-bottom: 18px;
            border-radius: 10px;
            outline: none;
        }

        .contact-form textarea {
            height: 160px;
            resize: none;
        }

/* FOOTER */
.footer-section{
    position:relative;
    background:linear-gradient(180deg,#1a2f5e 0%, #675e2e 100%);
    overflow:hidden;
    padding-top:100px;
    color:#fff;
}

.footer-section::before{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-100px;
    width:420px;
    height:420px;
    background:rgba(255,255,255,0.03);
    border-radius:50%;
}

.footer-section::after{
    content:'';
    position:absolute;
    top:120px;
    right:-120px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.03);
    border-radius:50%;
}

.footer-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:60px;
    padding-bottom:70px;
}

.footer-logo img{
    width:125px;
    margin-bottom:20px;
}

.footer-desc{
    color:#d9d9d9;
    line-height:1.9;
    font-size:15px;
    max-width:320px;
}

.footer-column h3{
    font-size:22px;
    margin-bottom:25px;
    color:#fff;
    position:relative;
    font-family:serif;
}

.footer-column h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:2px;
    background:#c9973a;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-links a{
    text-decoration:none;
    color:#d8d8d8;
    transition:0.3s ease;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-links a:hover{
    color:#c9973a;
    transform:translateX(5px);
}

.footer-contact i{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    color:#c9973a;
    font-size:14px;
}

.social-icons{
    display:flex;
    gap:14px;
    margin-top:30px;
}

.social-icons a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:16px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.08);
}

.social-icons a:hover{
    background:#c9973a;
    color:#0f1a2e;
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
    position:relative;
    z-index:2;
}

.copyright-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.copyright p{
    color:#cfcfcf;
    font-size:14px;
    line-height:1.7;
}

.copyright a{
    color:#c9973a;
    text-decoration:none;
    margin-left:5px;
    font-weight:600;
}

@media(max-width:1100px){
    .footer-grid{ grid-template-columns:1fr 1fr; gap:50px; }
}

@media(max-width:768px){
    .footer-section{ padding-top:80px; }
    .footer-grid{ grid-template-columns:1fr; gap:45px; padding-bottom:50px; }
    .footer-column h3{ font-size:20px; }
    .footer-desc{ max-width:100%; }
    .social-icons{ margin-top:22px; }
    .copyright p{ font-size:13px; }
}

@media(max-width:480px){
    .footer-logo img{ width:150px; }
    .footer-links a{ font-size:14px; }
    .social-icons a{ width:42px; height:42px; }
}

        @media(max-width:992px) {
            .about-grid, .book-wrapper, .speaking-grid, .contact-grid,
            .cards-grid, .gallery-grid, .testimonial-wrap, .blog-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 { font-size: 54px; }
            .section-title h2, .about-content h2, .book-content h2,
            .newsletter h2, .contact-info h2 { font-size: 42px; }
            .nav-links {
                position: absolute;
                top: 80px;
                left: -120%;
                width: 100%;
                background: #0f1a2e;
                flex-direction: column;
                padding: 30px;
                transition: .4s;
            }
            .nav-links.active { left: 0; }
            .menu-btn { display: block; }
        }

        @media(max-width:600px) {
            section { padding: 70px 0; }
            .hero h1 { font-size: 42px; }
            .hero p { font-size: 16px; }
            .section-title h2, .about-content h2, .book-content h2,
            .newsletter h2, .contact-info h2 { font-size: 34px; }
            .btn { width: 100%; text-align: center; }
            .hero-btns { flex-direction: row; }
            .contact-form { padding: 25px; }
        }

/* ABOUT BANNER */
.cf-about-banner{
    position:relative;
     width: 100%;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px 8%;
}

.cf-banner-slider{
    position:absolute;
    inset:0;
    z-index:1;
}

.cf-banner-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:cfSliderAnimation 18s infinite;
    transform:scale(1);
}

.cf-banner-slide:nth-child(1){
    background:
    linear-gradient(rgba(15,26,46,.72),rgba(15,26,46,.72)),
    url('https://images.unsplash.com/photo-1517841905240-472988babdf9?q=80&w=1974&auto=format&fit=crop') center center/cover no-repeat;
    animation-delay:0s;
}

.cf-banner-slide:nth-child(2){
    background:
    linear-gradient(rgba(15,26,46,.70),rgba(15,26,46,.72)),
    url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?q=80&w=1974&auto=format&fit=crop') center center/cover no-repeat;
    animation-delay:6s;
}

.cf-banner-slide:nth-child(3){
    background:
    linear-gradient(rgba(15,26,46,.72),rgba(15,26,46,.75)),
    url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1974&auto=format&fit=crop') center center/cover no-repeat;
    animation-delay:12s;
}

@keyframes cfSliderAnimation{
    0%{ opacity:0; transform:scale(1); }
    8%{ opacity:1; }
    30%{ opacity:1; transform:scale(1.08); }
    38%{ opacity:0; }
    100%{ opacity:0; transform:scale(1); }
}

.cf-about-banner::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(201,151,58,.18),transparent 70%);
    top:-120px;
    right:-100px;
    z-index:2;
    animation:cfGlowMove 8s ease-in-out infinite;
}

.cf-about-banner::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(255,255,255,.08),transparent 70%);
    bottom:-180px;
    left:-120px;
    z-index:2;
    animation:cfGlowMove 7s ease-in-out infinite;
}

@keyframes cfGlowMove{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(25px); }
    100%{ transform:translateY(0px); }
}

.cf-banner-slider .bg-video{
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;
}

.cf-banner-content{
    position:relative;
    z-index:5;
    max-width:850px;
    text-align:center;
    animation:cfFadeUp 1.2s ease;
    padding-top: 20px;
}

.cf-banner-content span{
    display:inline-block;
    color:#000;
    font-size:15px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
}

.cf-banner-content h1{
    font-size:75px;
    line-height:1;
    margin-bottom:10px;
    color:#000;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

.cf-banner-content p{
    color:#000;
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
}

.cf-banner-buttons{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cf-banner-btn{
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.4s ease;
}

.cf-banner-btn-primary{
    background:linear-gradient(135deg,#c9973a,#d4ab6a);
    color:#1a2f5e;
    box-shadow:0 10px 30px rgba(201,151,58,.30);
}

.cf-banner-btn-secondary{
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.08);
}

.cf-banner-btn:hover{
    transform:translateY(-5px);
}

@keyframes cfFadeUp{
    from{ opacity:0; transform:translateY(60px); }
    to{ opacity:1; transform:translateY(0); }
}

@media(max-width:992px){
    .cf-banner-content h1{ font-size:62px; }
    .cf-banner-content p{ font-size:16px; }
}

@media(max-width:768px){
    .cf-about-banner{ min-height:85vh; padding:100px 6%; }
    .cf-banner-content h1{ font-size:48px; margin-bottom:22px;font-weight: 800; }
    .cf-banner-content span{ font-size:13px; letter-spacing:2px;font-weight: 800; }
    .cf-banner-content p{ font-size:15px; line-height:1.8;font-weight: 800; }
    .cf-banner-buttons{ gap:14px; margin-top:35px; }
    .cf-banner-btn{ width:100%; max-width:260px; text-align:center; }
}

@media(max-width:480px){
    .cf-banner-content h1{ font-size:40px; }
    .cf-banner-content p{ font-size:14px; }
}

/* STORY SECTION */
.story-section{
    padding:100px 0;
    background:linear-gradient(to left, #0f1a2e, transparent);
    overflow:hidden;
}

.story-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.story-image{
    flex:1;
    position:relative;
}

.story-image::before{
    content:'';
    position:absolute;
    top:20px;
    right:-25px;
    width:100%;
    height:100%;
    border:2px solid #c9973a;
    border-radius:30px;
    z-index:1;
}

.story-image img{
    width:100%;
    display:block;
    border-radius:30px;
    position:relative;
    z-index:2;
    object-fit:cover;
    min-height:750px;
}

.story-content{
    flex:1;
    position:relative;
    z-index:2;
}

.story-tag{
    color:#c9973a;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:14px;
    margin-bottom:25px;
    font-weight:500;
}

.story-title{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1.05;
    margin-bottom:35px;
    font-weight:600;
    color:#fff;
}

.story-text{
    color:#d2d2d2;
    font-size:18px;
    line-height:2;
    margin-bottom:28px;
    font-weight:300;
}

.story-text strong{
    color:#fff;
    font-weight:600;
}

@media(max-width:1100px){
    .story-wrapper{ gap:40px; }
    .story-title{ font-size:60px; }
    .story-text{ font-size:17px; }
}

@media(max-width:900px){
    .story-section{ padding:70px 0; }
    .story-wrapper{ flex-direction:column; }
    .story-image{ width:100%; }
    .story-image::before{ right:-10px; top:12px; }
    .story-image img{ min-height:auto; }
    .story-content{ width:100%; }
    .story-title{ font-size:52px; }
}

@media(max-width:600px){
    .story-title{ font-size:40px; line-height:1.1; color: black; }
    .story-text{ font-size:18px; line-height:1.9; color: black; }
    .story-text strong{ color:#000; font-weight:600; }
    .story-tag{ font-size:12px; letter-spacing:3px; }
    .story-image::before{ border-radius:20px; }
    .story-image img{ border-radius:20px; }
}

/* SPEAKING SECTION */
.speaking-section{
    padding:110px 0;
    background: linear-gradient(to right, #0f1a2e, transparent);
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    color:#c9973a;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:20px;
    font-weight:500;
}

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    line-height:1;
    font-weight:600;
    color:#f4f4f4;
}

.topics-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.topic-card{
    position:relative;
    background:linear-gradient(145deg,#0f1a2e,#0b1426);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:28px;
    padding:42px 34px;
    min-height:290px;
    transition:.45s ease;
    overflow:hidden;
}

.topic-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition:.7s;
}

.topic-card:hover::before{
    left:100%;
}

.topic-card:hover{
    transform:translateY(-10px);
    border-color:#c9973a;
    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

.topic-number{
    color:#c9973a;
    font-size:15px;
    font-weight:600;
    margin-bottom:28px;
}

.topic-title{
    font-size:22px;
    line-height:1.35;
    margin-bottom:18px;
    font-weight:600;
    color:#fff;
}

.topic-desc{
    color:#d1d1d1;
    font-size:16px;
    line-height:1.9;
    font-weight:300;
}

.fade-up{
    opacity:0;
    transform:translateY(45px);
    transition:1s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1100px){
    .topics-grid{ grid-template-columns:repeat(2,1fr); }
    .section-title{ font-size:65px; }
}

@media(max-width:768px){
    .speaking-section{ padding:80px 0; }
    .topics-grid{ grid-template-columns:1fr; }
    .section-title{ font-size:48px; }
    .topic-card{ min-height:auto; padding:35px 28px; }
    .topic-title{ font-size:26px; }
}

@media(max-width:480px){
    .section-title{ font-size:40px; }
    .topic-title{ font-size:23px; }
    .topic-desc{ font-size:15px; line-height:1.8; }
    .section-tag{ letter-spacing:3px; font-size:12px; }
}

/* MISSION SECTION */
.mission-section{
    background:#fff;
}

.mission-box{
    background:#f5f0e8;
    padding:60px;
    border-radius:30px;
    text-align:center;
}

.mission-box h2{
    font-family:'Playfair Display',serif;
    font-size:54px;
    margin-bottom:25px;
    color:#111;
}

.mission-box p{
    max-width:900px;
    margin:auto;
    color:#555;
    font-size:18px;
}

/* CTA SECTION */
.cta-section{
    padding:120px 20px;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url('https://images.unsplash.com/photo-1507692049790-de58290a4334?q=80&w=1800&auto=format&fit=crop') center center/cover no-repeat;
}

.cta-section h2{
    font-family:'Playfair Display',serif;
    color:#fff;
    font-size:60px;
    max-width:900px;
    margin:auto;
    line-height:1.3;
}

.cta-section p{
    color:#ddd;
    font-size:18px;
    max-width:760px;
    margin:25px auto 40px;
}

.cta-btn{
    display:inline-block;
    background:#c9973a;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#fff;
    color:#1a2f5e;
}

@media(max-width:991px){
    .section-grid{ grid-template-columns:1fr; gap:50px; }
    .speaking-grid{ grid-template-columns:1fr; }
    .hero-content h1{ font-size:54px; }
    .section-content h2, .mission-box h2, .speaking-title h2, .cta-section h2{ font-size:42px; }
}

@media(max-width:767px){
    .about-hero{ padding:100px 20px; }
    .hero-content h1{ font-size:38px; }
    .hero-content p{ font-size:16px; }
    .section{ padding:80px 20px; }
    .section-content h2, .mission-box h2, .speaking-title h2, .cta-section h2{ font-size:32px; }
    .mission-box{ padding:35px 25px; }
    .cta-section{ padding:90px 20px; }
}

/* WRAPPERS */
.cf-wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
    margin-top: 40px;
}

.max-wrapper{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/* SERVICES HERO */
.max-services-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:120px 20px;
    background:
    linear-gradient(rgba(0,0,0,0.78),rgba(0,0,0,0.82)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.max-hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left, rgba(201,151,58,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 25%);
}

.max-glow-ball{
    position:absolute;
    border-radius:50%;
    filter:blur(12px);
    animation:maxFloat 7s ease-in-out infinite;
}

.max-glow-ball.one{
    width:180px;
    height:180px;
    background:rgba(201,151,58,0.18);
    top:10%;
    right:8%;
}

.max-glow-ball.two{
    width:120px;
    height:120px;
    background:rgba(255,255,255,0.08);
    bottom:12%;
    left:8%;
    animation-delay:2s;
}

.max-glow-ball.three{
    width:90px;
    height:90px;
    background:rgba(201,151,58,0.12);
    bottom:25%;
    right:28%;
    animation-delay:4s;
}

@keyframes maxFloat{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-20px); }
    100%{ transform:translateY(0px); }
}

.max-hero-inner{
    position:relative;
    z-index:5;
    max-width:760px;
}

.max-hero-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    color:#c9973a;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
}

.max-hero-inner h1{
    color:#fff;
    font-size:62px;
    line-height:1.1;
    margin-bottom:28px;
    font-weight:800;
}

.max-hero-inner p{
    color:#ddd;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

.max-hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:40px;
}

.max-primary-btn{
    padding:18px 38px;
    background:#c9973a;
    color:#fff;
    border-radius:60px;
    font-weight:600;
    transition:.3s;
}

.max-primary-btn:hover{
    background:#a57c28;
    transform:translateY(-3px);
}

.max-secondary-btn{
    padding:18px 38px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    backdrop-filter:blur(10px);
    transition:.3s;
}

.max-secondary-btn:hover{
    background:#fff;
    color:#111;
}

/* SECTION TITLE */
.max-section-heading{
    text-align:center;
    margin-bottom:70px;
}

.max-section-heading h2{
    font-size:52px;
    margin-bottom:20px;
    color:#111;
}

.max-section-heading p{
    max-width:760px;
    margin:auto;
    line-height:1.9;
    color:#666;
}

/* SERVICES */
.max-service-zone{
    padding:120px 0;
}

.max-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.max-service-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:35px;
    padding:40px 35px;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
    transition:.4s;
}

.max-service-card:hover{
    transform:translateY(-10px);
}

.max-service-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:#f5edd8;
    border-radius:50%;
    top:-90px;
    right:-90px;
}

.max-service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:#c9973a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.max-service-card h3{
    font-size:26px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.max-service-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.max-service-card a{
    color:#c9973a;
    font-weight:600;
    position:relative;
    z-index:2;
}

/* FEATURE SECTION */
.max-impact-section{
    padding:120px 0;
    background:#ede4d4;
    position:relative;
    overflow:hidden;
}

.max-impact-flex{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.max-impact-content span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:#e0d0b8;
    color:#8b6535;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:24px;
    font-weight:600;
}

.max-impact-content h2{
    font-size:56px;
    line-height:1.15;
    margin-bottom:24px;
}

.max-impact-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.max-feature-list{
    margin-bottom:40px;
}

.max-feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.max-feature-item i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#c9973a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-style:normal;
    font-weight:700;
}

.max-feature-item p{
    margin:0;
    color:#222;
    font-weight:500;
}

.max-dark-btn{
    display:inline-block;
    padding:18px 38px;
    background:#0f1a2e;
    color:#fff;
    border-radius:60px;
    transition:.3s;
}

.max-dark-btn:hover{
    background:#c9973a;
}

.max-impact-image{
    position:relative;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.max-impact-image img{
    height:650px;
    object-fit:cover;
    transition:.5s;
}

.max-impact-image:hover img{
    transform:scale(1.05);
}

/* CTA */
.max-cta-section{
    background:#0f1a2e;
    padding:110px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.max-cta-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(201,151,58,0.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
}

.max-cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.max-cta-content h2{
    color:#fff;
    font-size:56px;
    line-height:1.4;
    margin-bottom:25px;
}

.max-cta-content p{
    color:#ccc;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.max-fade{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.max-fade.max-show{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1100px){
    .max-service-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:991px){
    .max-impact-flex{ grid-template-columns:1fr; }
    .max-impact-content{ text-align:center; }
    .max-feature-item{ justify-content:center; }
}

@media(max-width:768px){
    .max-services-hero{ min-height:auto; padding:110px 0; }
    .max-hero-inner{ text-align:center; margin:auto; }
    .max-hero-inner h1{ font-size:42px; }
    .max-hero-inner p{ font-size:16px; }
    .max-hero-btns{ justify-content:center; }
    .max-section-heading h2{ font-size:34px; }
    .max-service-grid{ grid-template-columns:1fr; }
    .max-impact-content h2{ font-size:36px; }
    .max-impact-image img{ height:350px; width:387px; }
    .max-cta-content h2{ font-size:34px; }
    .max-cta-content p{ font-size:16px; }
}

/* CONTACT */
.cf-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding-top: 20px;
}

.cf-contact-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:20px 8%;
}

.cf-contact-hero::before,
.cf-contact-hero::after{
    content:'';
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    animation-duration:18s;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
    z-index:1;
}

.cf-contact-hero::before{
    background:
    linear-gradient(rgba(15,26,46,.76),rgba(15,26,46,.76)),
    url('../img/Meaningful1.jpg') center center/cover no-repeat;
    animation-name:cfHeroFadeOne;
}

.cf-contact-hero::after{
    background:
    linear-gradient(rgba(15,26,46,.78),rgba(15,26,46,.78)),
    url('../img/Meaningful2.jpg') center center/cover no-repeat;
    animation-name:cfHeroFadeTwo;
}

.cf-contact-hero .cf-bg-third{
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(15,26,46,.78),rgba(15,26,46,.78)),
    url('../img/Meaningful3.jpg') center center/cover no-repeat;
    background-size:cover;
    background-position:center;
    animation:cfHeroFadeThree 18s linear infinite;
    z-index:1;
}

@keyframes cfHeroFadeOne{
    0%{opacity:1;transform:scale(1);}
    28%{opacity:1;transform:scale(1.08);}
    34%{opacity:0;}
    100%{opacity:0;}
}

@keyframes cfHeroFadeTwo{
    0%{opacity:0;}
    33%{opacity:0;}
    38%{opacity:1;transform:scale(1);}
    62%{opacity:1;transform:scale(1.08);}
    68%{opacity:0;}
    100%{opacity:0;}
}

@keyframes cfHeroFadeThree{
    0%{opacity:0;}
    66%{opacity:0;}
    72%{opacity:1;transform:scale(1);}
    95%{opacity:1;transform:scale(1.08);}
    100%{opacity:0;}
}

.cf-contact-hero .cf-light-one{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(201,151,58,.18),transparent 70%);
    top:-150px;
    right:-100px;
    z-index:2;
    animation:cfFloatMove 7s ease-in-out infinite;
}

.cf-contact-hero .cf-light-two{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,255,255,.08),transparent 70%);
    bottom:-150px;
    left:-100px;
    z-index:2;
    animation:cfFloatMove 8s ease-in-out infinite;
}

@keyframes cfFloatMove{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(25px); }
    100%{ transform:translateY(0px); }
}

.cf-container{
    width:100%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:5;
}

.cf-hero-content{
    max-width:850px;
    text-align:center;
    margin:auto;
}

.cf-hero-content h5{
    color:#c9973a;
    font-size:15px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
}

.cf-hero-content h1{
    font-size:82px;
    line-height:1.05;
    color:#fff;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
}

.cf-hero-content p{
    color:#f0f0f0;
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
}

.cf-hero-tags{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cf-hero-tags span{
    padding:14px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-size:14px;
    backdrop-filter:blur(10px);
    transition:.4s ease;
}

.cf-hero-tags span:hover{
    background:#c9973a;
    color:#1a2f5e;
    transform:translateY(-4px);
}

@keyframes cfFadeUpHero{
    from{ opacity:0; transform:translateY(60px); }
    to{ opacity:1; transform:translateY(0); }
}

@media(max-width:992px){
    .cf-hero-content h1{ font-size:62px; }
    .cf-hero-content p{ font-size:16px; }
}

@media(max-width:768px){
    .cf-contact-hero{ min-height:90vh; padding:100px 6%; }
    .cf-hero-content h1{ font-size:46px; }
    .cf-hero-content h5{ font-size:13px; letter-spacing:3px; }
    .cf-hero-content p{ font-size:15px; line-height:1.8; }
    .cf-hero-tags{ gap:12px; margin-top:35px; }
    .cf-hero-tags span{ width:100%; max-width:280px; text-align:center; }
}

@media(max-width:480px){
    .cf-hero-content h1{ font-size:38px; }
    .cf-hero-content p{ font-size:14px; }
}

/* CONTACT SECTION */
.cf-contact-section{
    padding:110px 0;
}

.cf-contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:start;
}

.cf-contact-info{
    background:#0f1a2e;
    color:#fff;
    border-radius:35px;
    padding:45px 35px;
    position:relative;
    overflow:hidden;
}

.cf-contact-info::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(201,151,58,0.14);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.cf-contact-info h2{
    font-size:38px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.cf-contact-info p{
    color:#cccccc;
    line-height:1.9;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.cf-info-box{
    display:flex;
    gap:18px;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

.cf-info-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    background:#c9973a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.cf-info-text h4{
    font-size:20px;
    margin-bottom:5px;
}

.cf-info-text span,
.cf-info-text a{
    color:#cccccc;
    line-height:1.7;
    font-size:15px;
}

.cf-form-wrapper-1{
    background:#fff;
    border-radius:35px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.cf-form-wrapper-1::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#f5edd8;
    border-radius:50%;
    top:-100px;
    right:-80px;
}

.cf-form-heading{
    position:relative;
    z-index:2;
    margin-bottom:35px;
}

.cf-form-heading h2{
    font-size:48px;
    margin-bottom:12px;
}

.cf-form-heading p{
    color:#666;
    line-height:1.8;
}

.cf-input-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.cf-input-box{
    position:relative;
    z-index:2;
}

.cf-input-box input,
.cf-input-box select,
.cf-input-box textarea{
    width:100%;
    border:none;
    background:#f5f5f5;
    padding:18px 20px;
    border-radius:18px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.cf-input-box input:focus,
.cf-input-box select:focus,
.cf-input-box textarea:focus{
    background:#ececec;
    transform:translateY(-2px);
}

.cf-input-box textarea{
    height:180px;
    resize:none;
}

.cf-submit-btn{
    border:none;
    background:#c9973a;
    color:#fff;
    padding:18px 45px;
    border-radius:60px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    margin-top:10px;
}

.cf-submit-btn:hover{
    background:#a57c28;
    transform:translateY(-3px);
}

/* MAP */
.cf-map-section{
    padding-bottom:100px;
}

.cf-map-heading{
    text-align:center;
    margin-bottom:40px;
}

.cf-map-heading h2{
    font-size:46px;
    margin-bottom:15px;
}

.cf-map-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.cf-map-box{
    overflow:hidden;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.cf-map-box iframe{
    width:100%;
    height:500px;
    border:0;
}

/* CTA */
.cf-cta-section{
    background:#0f1a2e;
    padding:110px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cf-cta-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(201,151,58,0.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
}

.cf-cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.cf-cta-content h2{
    color:#fff;
    font-size:56px;
    line-height:1.4;
    margin-bottom:25px;
}

.cf-cta-content p{
    color:#ccc;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.cf-cta-btn{
    display:inline-block;
    padding:18px 42px;
    border-radius:60px;
    background:#c9973a;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.cf-cta-btn:hover{
    background:#a57c28;
    transform:translateY(-3px);
}

.cf-animate{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.cf-animate.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:1100px){
    .cf-contact-grid{ grid-template-columns:1fr; }
}

@media(max-width:768px){
    .cf-contact-hero{ min-height:auto; padding:100px 0; }
    .cf-hero-content h1{ font-size:42px; }
    .cf-hero-content p{ font-size:16px; }
    .cf-contact-info, .cf-form-wrapper-1{ padding:35px 25px; }
    .cf-form-heading h2{ font-size:34px; }
    .cf-contact-info h2{ font-size:32px; }
    .cf-input-row{ grid-template-columns:1fr; }
    .cf-map-heading h2{ font-size:34px; }
    .cf-cta-content h2{ font-size:34px; }
    .cf-cta-content p{ font-size:16px; }
    .cf-map-box iframe{ height:350px; }
}

.cf-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    border-radius:60px;
    background:#c9973a;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s ease;
}

.cf-btn:hover{
    transform:translateY(-4px);
    background:#a57c28;
}

/* BREADCRUMB */
.cf-breadcrumb{
    padding:130px 7% 80px;
    position:relative;
    overflow:hidden;
    background:#1a1a2e;
}

.cf-breadcrumb::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(201,151,58,0.12);
    right:-180px;
    top:-220px;
}

.cf-breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.cf-breadcrumb span{
    color:#c9973a;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
}

.cf-breadcrumb h1{
    color:#fff;
    font-size:70px;
    margin-top:20px;
    font-family:'Playfair Display',serif;
}

.cf-breadcrumb p{
    max-width:780px;
    margin:25px auto 0;
    color:#d5d5d5;
    line-height:1.9;
    font-size:18px;
}

/* STORY */
.cf-story-section{
}

.cf-story-box{
    background:#fff;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.cf-story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cf-story-content{
    padding:70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.cf-story-content span{
    color:#c9973a;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.cf-story-content h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
    font-family:'Inter', sans-serif;
}

.cf-story-content p{
    color:#5d5d5d;
    line-height:2;
    font-size:17px;
    margin-bottom:30px;
}

/* FEATURE AREA */
.nx-feature-area{
    width:100%;
    padding:100px 6%;
    background:#f5f0e8;
}

.nx-feature-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.nx-feature-photo{
    flex:1;
    width:100%;
}

.nx-feature-photo img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;
    display:block;
}

.nx-feature-content{
    flex:1;
    width:100%;
}

.nx-feature-tag{
    display:inline-block;
    padding:10px 22px;
    background:#e0d0b8;
    color:#8b6535;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
}

.nx-feature-title{
    font-size:58px;
    line-height:1.1;
    color:#1f1f1f;
    margin-bottom:25px;
    font-weight:700;
}

.nx-feature-text{
    font-size:18px;
    line-height:1.8;
    color:#666666;
    margin-bottom:35px;
}

.nx-feature-btn{
    display:inline-block;
    padding:16px 36px;
    background:#8b6535;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
}

.nx-feature-btn:hover{
    background:#6b4c28;
}

@media(max-width:992px){
    .nx-feature-container{ flex-direction:column; }
    .nx-feature-title{ font-size:44px; }
}

@media(max-width:768px){
    .nx-feature-area{ padding:70px 20px; }
    .nx-feature-photo img{ height:420px; }
    .nx-feature-title{ font-size:34px; }
    .nx-feature-text{ font-size:16px; }
    .nx-feature-btn{ width:100%; text-align:center; }
}

@media(max-width:480px){
    .nx-feature-title{ font-size:28px; }
    .nx-feature-photo img{ height:320px; }
}

/* TESTIMONIALS */
.cf-testimonials{
    padding:50px 7% 2px;
}

.cf-section-title{
    text-align:center;
    margin-bottom:60px;
}

.cf-section-title span{
    color:#c9973a;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.cf-section-title h2{
    font-size:55px;
    margin-top:18px;
    font-family:'Playfair Display',serif;
}

.cf-testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.cf-card{
    background:#fff;
    padding:45px 35px;
    border-radius:28px;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.cf-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:rgba(201,151,58,0.06);
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.cf-card:hover{
    transform:translateY(-12px);
}

.cf-card.active{
    background:#1a2f5e;
}

.cf-card.active p,
.cf-card.active h4,
.cf-card.active span,
.cf-card.active .cf-quote{
    color:#fff;
}

.cf-quote{
    font-size:70px;
    line-height:1;
    color:#c9973a;
    margin-bottom:20px;
    font-family:serif;
}

.cf-card p{
    color:#5b5b5b;
    line-height:1.9;
    margin-bottom:35px;
    font-size:16px;
}

.cf-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.cf-user img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.cf-user h4{
    font-size:18px;
    margin-bottom:5px;
}

.cf-user span{
    color:#777;
    font-size:14px;
}

/* VIDEO HERO */
.vd-hero-section{
    width:100%;
    height:100vh;
    min-height:700px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
}

.vd-bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.vd-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:2;
}

.vd-content{
    position:relative;
    z-index:3;
    max-width:850px;
    text-align:center;
    color:#ffffff;
}

.vd-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:25px;
    backdrop-filter:blur(8px);
}

.vd-title{
    font-size:72px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.vd-text{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.85);
    max-width:750px;
    margin:auto;
}

@media(max-width:992px){
    .vd-title{ font-size:54px; }
}

@media(max-width:768px){
    .vd-hero-section{ min-height:600px; padding:60px 20px; }
    .vd-title{ font-size:38px; }
    .vd-text{ font-size:16px; line-height:1.8; }
}

@media(max-width:480px){
    .vd-title{ font-size:30px; }
    .vd-tag{ font-size:11px; padding:9px 18px; }
    .vd-text{ font-size:15px; }
}

/* CTA BOX */
.cf-cta{
    padding-bottom: 0px;
}

.cf-cta-box{
    background:linear-gradient(135deg,#1a1a2e,#2a2a3e);
    padding:90px 60px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cf-cta-box::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(201,151,58,0.10);
    top:-250px;
    right:-200px;
}

.cf-cta-box span{
    color:#c9973a;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
}

.cf-cta-box h2{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    margin:25px auto;
    max-width:900px;
    font-family:'Playfair Display',serif;
}

.cf-cta-box p{
    max-width:800px;
    margin:auto auto 40px;
    color:#d7d7d7;
    line-height:2;
    font-size:17px;
}

@media(max-width:1100px){
    .cf-story-box{ grid-template-columns:1fr; }
    .cf-story-content{ padding:50px; }
    .cf-testimonial-grid{ grid-template-columns:1fr 1fr; }
}

@media(max-width:768px){
    .cf-breadcrumb{ padding:100px 5% 70px; }
    .cf-breadcrumb h1{ font-size:45px; }
    .cf-breadcrumb p{ font-size:16px; }
    .cf-story-section, .cf-testimonials, .cf-media-section { padding-left:5%; padding-right:5%; }
    .cf-story-content{ padding:40px 30px; }
    .cf-story-content h2, .cf-section-title h2, .cf-media-box h2, .cf-cta-box h2{ font-size:38px; }
    .cf-testimonial-grid{ grid-template-columns:1fr; }
    .cf-media-box{ padding:60px 30px; }
    .cf-cta-box{ padding:70px 30px; }
}

@media(max-width:480px){
    .cf-breadcrumb h1{ font-size:36px; }
    .cf-story-content h2, .cf-section-title h2, .cf-media-box h2, .cf-cta-box h2{ font-size:30px; }
    .cf-card{ padding:35px 25px; }
}

/* GALLERY */
.gx-main-gallery{
    padding:100px 20px;
}

.gx-container{
    max-width:1300px;
    margin:auto;
}

.gx-heading{
    text-align:center;
    margin-bottom:60px;
}

.gx-heading span{
    color:#c9973a;
    font-size:14px;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.gx-heading h1{
    font-size:52px;
    margin-bottom:20px;
}

.gx-heading p{
    max-width:760px;
    margin:auto;
    line-height:1.8;
    color:#666;
    font-size:17px;
}

.gx-filter-wrap{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.gx-filter-item{
    border:none;
    padding:14px 28px;
    border-radius:40px;
    background:#fff;
    cursor:pointer;
    font-size:15px;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.gx-filter-item.active,
.gx-filter-item:hover{
    background:#c9973a;
    color:#fff;
}

.gx-grid-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gx-card-box{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
}

.gx-card-box img{
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gx-card-box:hover img{
    transform:scale(1.1);
}

.gx-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.8), transparent);
    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.5s;
}

.gx-card-box:hover .gx-card-overlay{
    opacity:1;
}

.gx-card-overlay h3{
    color:#fff;
    margin-bottom:10px;
    font-size:24px;
}

.gx-card-overlay p{
    color:#ddd;
    line-height:1.6;
    font-size:15px;
}

.gx-tall-card{
    grid-row:span 2;
}

.gx-lightbox-area{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
    padding:20px;
}

.gx-lightbox-area.active{
    opacity:1;
    visibility:visible;
}

.gx-lightbox-area img{
    max-width:900px;
    width:100%;
    max-height:90vh;
    object-fit:contain;
    border-radius:15px;
}

.gx-close-lightbox{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

@media(max-width:991px){
    .gx-grid-layout{ grid-template-columns:repeat(2,1fr); }
    .gx-heading h1{ font-size:42px; }
}

@media(max-width:768px){
    .gx-grid-layout{ grid-template-columns:1fr; }
    .gx-heading h1{ font-size:32px; }
    .gx-heading p{ font-size:15px; }
    .gx-filter-item{ width:100%; }
    .gx-main-gallery{ padding:70px 15px; }
}

/* BUTTONS */
.cf-btn-group{
    display:flex;
    gap:20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.cf-download-btn{
    padding:18px 35px;
    border:none;
    border-radius:60px;
    background:linear-gradient(to right,#c9973a,#8b6535);
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.4s;
    font-weight:600;
}

.cf-download-btn:hover{
    transform:translateY(-4px);
    background:#fff;
    color:#000;
}

.cf-outline-btn{
    padding:18px 35px;
    border-radius:60px;
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    cursor:pointer;
    transition:.4s;
}

.cf-outline-btn:hover{
    background:#fff;
    color:#000;
}

/* MISSION */
.cf-mission{
    width:100%;
    padding:100px 7%;
    background:#fff;
}

.cf-mission-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:60px;
    align-items:center;
}

.cf-mission-content h2{
    font-size:55px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:25px;
    color:#111;
}

.cf-mission-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.cf-mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.cf-mini-card{
    background:#f5f0e8;
    padding:30px;
    border-radius:18px;
}

.cf-mini-card h3{
    margin-bottom:12px;
    font-size:20px;
    color:#0f1a2e;
}

.cf-mini-card p{
    color:#666;
    line-height:1.7;
    font-size:14px;
}

/* REVIEWS */
.cf-review-section{
    padding:100px 7%;
    background:#f5f0e8;
}

.cf-section-title{
    text-align:center;
    margin-bottom:60px;
}

.cf-section-title span{
    color:#8b6535;
    letter-spacing:2px;
    font-size:14px;
}

.cf-section-title h2{
    font-size:60px;
    font-family:'Cormorant Garamond',serif;
    margin-top:15px;
}

.cf-review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.cf-review-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    transition:.4s;
    position:relative;
}

.cf-review-card:hover{
    transform:translateY(-10px);
}

.cf-stars{
    color:#c9973a;
    margin-bottom:18px;
    font-size:20px;
}

.cf-review-card h3{
    margin-bottom:15px;
    color:#111;
}

.cf-review-card p{
    line-height:1.8;
    color:#666;
    font-size:15px;
}

.cf-review-card::before{
    content:""";
    position:absolute;
    right:20px;
    top:0;
    font-size:120px;
    color:#f5f0e8;
    font-family:serif;
}

/* LEAD CAPTURE */
.cf-lead-section{
    padding:110px 7%;
    background:
    linear-gradient(rgba(15,26,46,.92),rgba(15,26,46,.92)),
    url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2070&auto=format&fit=crop");
    background-size:cover;
    background-position:center;
    text-align:center;
}

.cf-lead-section h2{
    font-size:65px;
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.cf-lead-section p{
    color:#d8d8d8;
    max-width:850px;
    margin:auto;
    line-height:1.9;
    margin-bottom:40px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px){

    .cf-mission,
    .cf-review-section,
    .cf-lead-section{
        padding: 80px 5%;
    }

    .cf-mission-content h2{
        font-size: 42px;
    }

    .cf-section-title h2{
        font-size: 48px;
    }

    .cf-lead-section h2{
        font-size: 50px;
    }

    .cf-mission-box{
        gap: 40px;
    }

    .cf-btn-group{
        gap: 15px;
        flex-wrap: wrap;
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px){

    .cf-mission,
    .cf-review-section,
    .cf-lead-section{
        padding: 60px 20px;
    }

    .cf-mission-content{
        text-align: center;
    }

    .cf-mission-content h2{
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .cf-mission-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .cf-mission-grid{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cf-mini-card{
        padding: 25px;
    }

    .cf-mini-card h3{
        font-size: 18px;
    }

    .cf-section-title{
        margin-bottom: 40px;
    }

    .cf-section-title h2{
        font-size: 36px;
        line-height: 1.2;
    }

    .cf-review-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cf-review-card{
        padding: 25px;
    }

    .cf-review-card::before{
        font-size: 80px;
    }

    .cf-lead-section h2{
        font-size: 38px;
        line-height: 1.2;
    }

    .cf-lead-section p{
        font-size: 15px;
        line-height: 1.8;
    }

    .cf-btn-group{
        flex-direction: column;
        gap: 15px;
    }

    .cf-download-btn,
    .cf-outline-btn{
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 15px 25px;
    }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px){

    .cf-mission-content h2{
        font-size: 28px;
    }

    .cf-section-title h2{
        font-size: 30px;
    }

    .cf-lead-section h2{
        font-size: 30px;
    }

    .cf-mission-content p,
    .cf-review-card p,
    .cf-lead-section p{
        font-size: 14px;
    }

    .cf-mini-card{
        padding: 20px;
    }

    .cf-review-card{
        padding: 20px;
    }

    .cf-download-btn,
    .cf-outline-btn{
        max-width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }
}
/* BUTTON */
.ebook-btn{
    background:#111;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

/* POPUP */
.cf-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:15px;
}

.cf-popup.show{
    display:flex;
}

.cf-popup-box{
    width:100%;
    max-width:650px;
    background:#fff;
    border-radius:20px;
    position:relative;
    overflow:hidden;
}

.cf-close{
    position:absolute;
    top:10px;
    right:18px;
    font-size:35px;
    cursor:pointer;
    z-index:10;
}

#cfFormArea,
.cf-download-box{
    padding:30px;
}

.cf-form-wrapper-2{
    width:100%;
    height:450px;
}

.cf-form-wrapper-2 iframe{
    width:100%;
    height:100%;
    border:none;
}

.cf-download-box{
    display:none;
    text-align:center;
}

.cf-download-box a{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:10px;
    margin-top:15px;
}

/* MOBILE */
@media(max-width:768px){

    .cf-popup-box{
        max-height:90vh;
        overflow-y:auto;
    }

    .cf-form-wrapper-2{
        height:420px;
    }

    #cfFormArea,
    .cf-download-box{
        padding:20px;
    }

    h2{
        font-size:24px;
    }
}


.download-btn{
    background:#111;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

/* ABOUT DV */
.dv-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.dv-about{
    padding:100px 0;
    background:#fff;
}

.dv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.dv-image img{
    border-radius:25px;
    height:100%;
    object-fit:cover;
}

.dv-text span{
    color:#c9973a;
    font-size:14px;
    letter-spacing:2px;
}

.dv-text h2{
    font-size:48px;
    margin:20px 0;
}

.dv-text p{
    margin-bottom:20px;
    color:#555;
}

.dv-stats{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.dv-stat-box{
    background:#0f1a2e;
    color:#fff;
    padding:25px;
    border-radius:20px;
    flex:1;
    text-align:center;
}

.dv-stat-box h3{
    color:#c9973a;
    font-size:35px;
}

/* SERVICES */
.dv-services{
    padding:100px 0;
    background:#f4f4f4;
}

.dv-title{
    text-align:center;
    margin-bottom:70px;
}

.dv-title span{
    color:#c9973a;
    letter-spacing:2px;
    font-size:14px;
}

.dv-title h2{
    font-size:50px;
    margin:20px 0;
}

.dv-title p{
    max-width:750px;
    margin:auto;
    color:#555;
}

.dv-service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.dv-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.dv-card:hover{
    transform:translateY(-10px);
}

.dv-icon{
    font-size:45px;
    margin-bottom:20px;
}

.dv-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.dv-card p{
    color:#666;
}

/* REALISTIC SECTION */
.dv-real{
    padding:100px 0;
    background:linear-gradient(to right, #0f1a2e, transparent);
    color:#fff;
}

.dv-real-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.dv-real-text span{
    color:#c9973a;
    letter-spacing:2px;
    font-size:14px;
}

.dv-real-text h2{
    font-size:46px;
    margin:20px 0;
}

.dv-real-text p{
    color:#ccc;
    margin-bottom:20px;
}

.dv-real-text ul{
    margin-top:30px;
}

.dv-real-text ul li{
    margin-bottom:15px;
    list-style:none;
}

.dv-real-image img{
    border-radius:25px;
}

/* CTA DV */
.dv-cta{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg, #c9973a, #d4ab6a);
}

.dv-cta h2{
    font-size:55px;
    margin-bottom:20px;
    color:#fff;
}

.dv-cta p{
    max-width:700px;
    margin:auto auto 35px;
    font-size:18px;
    color:#fff;
}

@media(max-width:992px){
    .dv-grid, .dv-real-grid, .dv-service-grid{ grid-template-columns:1fr 1fr; }
    .dv-content h1{ font-size:50px; }
}

@media(max-width:768px){
    .dv-grid, .dv-real-grid, .dv-service-grid{ grid-template-columns:1fr; }
    .dv-content h1{ font-size:38px; }
    .dv-text h2, .dv-title h2, .dv-real-text h2, .dv-cta h2{ font-size:34px; }
    .dv-stats{ flex-direction:column; }
    .dv-buttons{ flex-direction:column; }
    .dv-btn-primary, .dv-btn-secondary{ width:100%; text-align:center; }
}


/* POPUP BACKGROUND */
#supportPopupWrap{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    padding:20px;
}

/* SHOW POPUP */
#supportPopupWrap.active{
    display:flex;
}

/* BOX */
#supportPopupBox{
    width:100%;
    max-width:850px;
    background:#fff;
    border-radius:20px;
    position:relative;
    padding:25px;
    overflow:hidden;
}

/* CLOSE */
#closeSupportPopup{
    position:absolute;
    top:10px;
    right:18px;
    font-size:35px;
    cursor:pointer;
}

/* IFRAME */
#supportPopupBox iframe{
    width:100%;
    height:80vh;
    border:none;
    border-radius:12px;
}

/* MOBILE */
@media(max-width:768px){

    #supportPopupWrap{
        padding:12px;
    }

    #supportPopupBox{
        padding:18px;
        border-radius:16px;
    }

    #supportPopupBox iframe{
        height:70vh;
    }

    #supportPopupBox h2{
        font-size:24px;
    }
}