@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
}
.playfair-display-<uniquifier> {
  font-family: "Playfair Display", serif;
}

/* -------------------- BASE -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
    color: #fff;
    overflow-x: hidden;
}
/************/

/* ---------- Footer Section ---------- */

.ft-section {
    padding: 80px 20px 50px;
    background: linear-gradient(to bottom, #0a1b2f, #041021);
    text-align: center;
    color: #d8d8d8;
	Background:#1c2c4c;
}

.ft-container {
    max-width: 750px;
    margin: auto;
}

/* Logo */
.ft-logo {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.ft-logo .dot {
    color: #d4a34f;
    font-size: 38px;
    margin-left: 4px;
}

/* Tagline */
.ft-text {
    font-size: 15px;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* Navigation */
.ft-links {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-bottom: 35px;
}

.ft-links a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 15px;
}

.ft-links a:hover {
    color: #f0c980;
    transition: 0.3s;
}

/* Divider Line */
.ft-line {
    width: 70%;
    margin: 0 auto 25px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Copyright */
.ft-copy {
    font-size: 13px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 600px) {
    .ft-links {
        gap: 20px;
    }
}



/* ----------- Philosophy Section ----------- */

.ph-section {
    padding: 120px 20px;
    background: #f7f7f7;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Soft Circle Background */
.ph-section::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle, 
        rgba(0,0,0,0.05) 0%, 
        rgba(0,0,0,0) 70%
    );
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.ph-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

/* Quote Icon */
.ph-quote-icon {
    font-size: 115px;
    line-height: 0.5;
    color: #d4a34f;
    opacity: 0.3;
    margin-bottom: 20px;
}

/* Main Text */
.ph-text {
    font-family: 'Playfair Display';
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1f1f1f;
}

.highlight {
    color: #d4a34f;
    font-weight: 400;
    font-family: 'Playfair Display';
}

/* Divider */
.ph-divider {
    margin: 35px 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.ph-divider span {
    width: 50px;
    height: 1px;
    background: #cdb073;
}

.ph-divider .dot {
    width: 10px;
    height: 10px;
    background: #c29b4f;
    border-radius: 50%;
}

/* Subtext */
.ph-sub {
    letter-spacing: 3px;
    margin-top: 5px;
    font-size: 13px;
    color: #6a6a6a;
}

/* Responsive */
@media (max-width: 768px) {.about-right.fade-in-more {
    display: none;
}
    .ph-text {
        font-size: 25px;
    }

}




/* ---- Section ---- */
.cf-section {
	    margin: 0;
  font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #0a1b3d, #041024);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.cf-subtitle {
    letter-spacing: 3px;
    color: #d9a84e;
    font-size: 14px;
}

.cf-title {
    font-size: 60px;
    margin: 10px 0 20px;
    font-family: 'Playfair Display';
    font-weight: 400;
}

.cf-desc {
    opacity: 0.7;
    max-width: 740px;
    margin: auto;
    font-size: 20px;
    font-weight: 100;
}

/* ---- Cards Wrapper ---- */
.cf-wrapper {
    display: flex;
    gap: 30px;
    padding: 0 0;
    flex-wrap: wrap;
    max-width: 1010px;
    margin: 60px auto 0;
}

/* ---- Cards ---- */
.cf-card {
    text-align: left;
    width: 48%;
    position: relative;
    padding: 35px 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.cf-card:hover {
    transform: translateY(-8px);
    transition: 0.4s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

/* ---- Number Background ---- */
.cf-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 95px;
    opacity: 0.05;
    font-weight: 700;
    font-family: 'Playfair Display';
}

/* ---- Icon ---- */
.cf-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 180, 60, 0.2);
    color: #f2b35d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 26px;
    margin-bottom: 20px;
}

/* ---- Text ---- */
.cf-card-title {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: 'Playfair Display';
}

.cf-card-text {
    font-size: 18px;
    opacity: 0.6;
    line-height: 1.6;
    font-weight: 200;
}

/* ---- Animation ---- */
@keyframes fadeUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}



/* ------------------- MAIN SECTION ------------------- */

.value-section {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 120px 8%;
    background: #f4f5f7;
}

.value-left {
    width: 52%;
    position: relative;
    padding-left: 30px;
}

.gold-line {
    width: 3px;
    height: 180px;
    background: #d4a544;
    border-radius: 6px;
    margin-bottom: 25px;
    position: absolute;
    left: 0;
}

.value-text {
    font-size: 17px;
    color: #44506a;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 550px;
}

/* ------------------- Feature Cards ------------------- */

.value-right {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
     transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.feature-number {
    width: 64px;
    height: 64px;
    padding: 0 20px;
    background: #f9eccc;
    color: #d4a544;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.feature-content h3 {
    font-size: 20px;
    color: #1a1e2e;
    margin-bottom: 8px;
    font-family: 'Playfair Display';
    font-weight: 500;
}

.feature-content p {
    color: #4d586b;
    line-height: 1.6;
}

/* ------------------- Bottom Boxes ------------------- */

.bottom-boxes {
    display: flex;
    gap: 22px;
    margin: 45px 0;
}

.bottom-boxes .box {
    width: 200px;
    border: 1px solid #e4e6ec;
    background: #eff0f3;
    padding: 28px 20px;
    border-radius: 12px;
    transition: .3s;
    text-align: left;
}

.bottom-boxes .box:hover {
    transform: translateY(-6px);
}

.bottom-boxes .box h2 {
    font-family: Georgia, serif;
    font-size: 32px;
    margin-bottom: 6px;
    color: #0f1a32;
}

.bottom-boxes .box span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #7c899f;
}

/* ------------------- Explore Link ------------------- */

.explore-link {
    font-size: 17px;
    font-weight: 600;
    color: #d4a544;
    text-decoration: none;
    transition: .3s;
}

.explore-link:hover {
    padding-left: 8px;
}

/* ------------------- ANIMATIONS ------------------- */

.slide-left {
    opacity: 0;
    transform: translateX(-45px);
    animation: slideLeft 1.2s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.3s forwards;
}

.fade-in {
    opacity: 0;
    animation: fade .9s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade 1.2s forwards;
}

.fade-in-more {
    opacity: 0;
    animation: fade 1.5s forwards;
}

.fade-in-more2 {
    opacity: 0;
    animation: fade 1.8s forwards;
}

@keyframes fade { to { opacity: 1; } }

@keyframes slideLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------- RESPONSIVE ------------------- */

@media (max-width: 992px) {
.value-section {
    flex-direction: column;
    text-align: left;
    padding: 0 20px 80px;
    gap: 0;
}
    .value-left, .value-right {
        width: 100%;
    }
	a.explore-link.slide-up {
    margin: 10px 0 0;
    text-align: center;
}
}

@media (max-width: 600px) {
    .bottom-boxes {
        align-items: flex-start;
    }
    .bottom-boxes .box {
        width: 50%;
    }

}



/* ---------------- ABOUT SECTION ---------------- */

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    background: #f5f6f8;
    position: relative;
    gap: 40px;
}

.about-left {
    width: 75%;
}

.about-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-title .line {
    width: 45px;
    height: 3px;
    background: #d4a544;
    border-radius: 2px;
}

.about-heading {
    margin-top: 18px;
     font-family: "Playfair Display", serif;
    font-size: 60px;
    line-height: 1.25;
    color: #0e1a33;
}

.about-heading .gold {
    color: #d4a544;
	     font-family: "Playfair Display", serif;
    font-size: 60px;
    line-height: 1.25;
}

.about-text {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.7;
    color: #505868;
    max-width: 520px;
}

/* ------ Right Decorative Circle ------ */

.about-right {
    width: 25%;
    display: flex;
    justify-content: center;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(212, 165, 68, 0.35);
    background: transparent;
    opacity: 0.35;
}

/* ---------------- ANIMATIONS ---------------- */

.fade-in {
    opacity: 0;
    animation: fade 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade 1.4s ease forwards;
}

.fade-in-more {
    opacity: 0;
    animation: fade 1.7s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(35px);
    animation: slideUp 1.2s ease forwards;
}

@keyframes fade {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
    .about-section {
    flex-direction: column;
    padding: 60px 20px;
}
    .about-left, .about-right {
        width: 100%;
    }
    .circle {
        width: 200px;
        height: 200px;
    }
    .about-heading {
        font-size: 36px;
    }
	.about-heading .gold {
    font-size: 36px;
}
}

@media (max-width: 500px) {
    .about-heading {
        font-size: 30px;
    }
    .circle {
        width: 150px;
        height: 150px;
    }
}



/*************/

section.navhero{
   background: #F9E7E5;
   background: linear-gradient(268deg,rgba(249, 231, 229, 1) 0%, rgba(48, 53, 64, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

/* -------------------- NAVBAR -------------------- */
.navbar {
    width: 100%;
    padding: 22px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
  font-family: "Playfair Display", serif;
}

.dot {
    color: #d99726;
    margin: 0 0 0 2px;
}
.top-badge span.dot {
    margin: 0 6px 0 0;
    font-size: 17px;
    font-weight: bolder;
    font-family: monospace;
}
.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* -------------------- HERO SECTION -------------------- */
.hero {
    text-align: center;
    padding: 0 10% 120px;
}

.top-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.9;
    color: #d99726;
    border-color: #d99726;
    background: #d997261a;
}

.hero-title {
    margin-top: 45px;
    font-size: 72px;
  font-family: "Playfair Display", serif;
    line-height: 1.2;
    font-weight: 400;
}

.gold {
    font-family: "Playfair Display", serif;
    color: #e5a63a;
    font-size: 72px;
    font-weight: 400;
}

.italic {
    font-style: italic;
	font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 400;
}

.divider {
    width: 50px;
    height: 2px;
    background: #e5a63a;
    margin: 25px auto;
}

.hero-subtext {
    max-width: 620px;
    margin: 25px auto;
    opacity: 0.8;
    line-height: 1.5;
    color: #faf8f599;
    font-weight: 200;
}

.cta-btn {
    margin-top: 45px;
    padding: 15px 40px;
    background: #e5a63a;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}

.cta-btn:hover {
    background: #ffbb49;
    transform: translateY(-3px);
}

/* -------------------- ANIMATIONS -------------------- */

.fade-in {
    opacity: 0;
    animation: fade 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade 1.3s ease forwards;
}

.fade-in-more {
    opacity: 0;
    animation: fade 1.6s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1.2s ease forwards;
}

@keyframes fade {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------- RESPONSIVE -------------------- */


@media (max-width: 992px) {
.ph-section,
.cf-section {
    padding: 80px 20px;
}
}

@media(max-width: 800px) {
    .hero-title {
        font-size: 40px;
    }
    .gold {
        font-size: 52px;
    }
    .italic {
        font-size: 34px;
    }
	.hero {
    padding: 40px 10% 80px;
}
}
@media(max-width: 800px) {
	.cf-card {
    width: 100%;
}
}

@media(max-width: 500px) {
    .hero-title {
        font-size: 34px;
    }
    .gold {
        font-size: 42px;
    }
    .italic {
        font-size: 28px;
    }
.cta-btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
}

}
