* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    overflow-x: hidden;
}

section {
    position: relative;
    overflow: hidden;
}

/* =========================
                NAVBAR
        ========================= */

:root {
    --gold: #B28E4A;
    --dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--dark);
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand img {
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

/* Animated Nav Links */
.nav-link {
    color: #fff !important;
    font-weight: 400;
    margin: 0 15px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* Gold Gradient Button */
.btn-gold {
    background: linear-gradient(45deg, #b8860b, #B28E4A);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    /* Sharp legal look */
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* Mobile Menu Toggler */
.navbar-toggler {
    border-color: var(--gold);
    padding: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(212, 175, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: #B28E4A;
    cursor: pointer;
}

/* =========================
                HERO
        ========================= */

.about-hero {

    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, .92),
            rgba(0, 0, 0, .75),
            rgba(212, 175, 55, .08)),

        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1600&auto=format&fit=crop');

    background-size: cover;
    background-position: center;

    background-attachment: fixed;

    position: relative;
}

/* GOLD GLOW */

.about-hero::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -150px;
    right: -120px;

    background:
        radial-gradient(rgba(212, 175, 55, .18),
            transparent 70%);

    filter: blur(20px);

    animation: floatGlow 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content span {

    color: #B28E4A;

    letter-spacing: 3px;

    font-size: 15px;

    font-weight: 600;
}

.hero-content h1 {

    color: #fff;

    font-size: 74px;

    line-height: 1.2;

    margin: 25px 0;
}

.hero-content p {

    color: #d7d7d7;

    line-height: 2;

    font-size: 17px;

    margin-bottom: 35px;

    max-width: 700px;
}

/* HERO IMAGE */

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {

    width: 100%;

    border-radius: 40px;

    animation: floatImage 5s ease-in-out infinite;
}

/* FLOAT CARD */

.floating-card {

    position: absolute;

    bottom: 20px;
    left: -40px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(212, 175, 55, .12);

    border-radius: 20px;

    padding: 20px 25px;

    display: flex;
    align-items: center;

    gap: 15px;
}

.floating-card i {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #B28E4A;

    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.floating-card h4 {
    color: #fff;
    margin-bottom: 5px;
}

.floating-card p {
    color: #d7d7d7;
    margin: 0;
    font-size: 14px;
}


/* =========================
      ABOUT BREADCRUMB
========================= */

.about-breadcrumb {
    position: relative;
    padding: 130px 0 90px;
    background: linear-gradient(135deg, #050505 0%, #0d0d0d 100%);
    overflow: hidden;
    z-index: 1;
}

/* Glow Effect */
.breadcrumb-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(178, 142, 74, 0.18) 0%,
            transparent 70%);
    top: -180px;
    right: -120px;
    z-index: -1;
}

/* Circle Border */
.breadcrumb-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(178, 142, 74, 0.18);
    border-radius: 50%;
    right: -180px;
    top: -120px;
    z-index: -1;
}

/* Content */
.breadcrumb-content {
    text-align: center;
}

.breadcrumb-subtitle {
    display: inline-block;
    color: #B28E4A;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb-subtitle::before,
.breadcrumb-subtitle::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: #B28E4A;
    top: 50%;
}

.breadcrumb-subtitle::before {
    left: -65px;
}

.breadcrumb-subtitle::after {
    right: -65px;
}

.about-breadcrumb h1 {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-breadcrumb h1 span {
    color: #B28E4A;
}

/* Links */
.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.breadcrumb-links a {
    color: #B28E4A;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-links a:hover {
    color: #fff;
}

.breadcrumb-links span {
    color: #888;
}

.breadcrumb-links .active {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .about-breadcrumb {
        padding: 110px 0 70px;
    }

    .about-breadcrumb h1 {
        font-size: 42px;
    }

    .breadcrumb-subtitle::before,
    .breadcrumb-subtitle::after {
        width: 30px;
    }

    .breadcrumb-subtitle::before {
        left: -40px;
    }

    .breadcrumb-subtitle::after {
        right: -40px;
    }
}

/* =========================
              SECTION TITLE
        ========================= */

.section-title {

    text-align: center;

    margin-bottom: 80px;
}

.section-title span {

    color: #B28E4A;

    letter-spacing: 3px;

    font-size: 15px;

    font-weight: 600;
}

.section-title h2 {

    color: #fff;

    font-size: 58px;

    margin: 20px 0;
}

.section-title p {

    color: #d7d7d7;

    max-width: 760px;

    margin: auto;

    line-height: 2;
}

/* =========================
                ABOUT
        ========================= */

.about-section {

    padding: 120px 20px;

    background:
        linear-gradient(135deg,
            #000,
            #0a0a0a,
            #000);
}

.about-grid {

    /* display: grid; */

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.about-card {

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .03),
            rgba(255, 255, 255, .01));

    border:
        1px solid rgba(212, 175, 55, .08);

    border-radius: 35px;

    overflow: hidden;

    transition: .5s;
}

.about-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 22px 45px rgba(212, 175, 55, .10);
}

.about-card-img {

    height: 260px;

    overflow: hidden;
}

.about-card-img img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1s;
}

.about-card:hover img {
    transform: scale(1.1);
}

.about-card-content {
    padding: 35px;
}

.about-card-content h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 18px;
}

.about-card-content p {

    color: #d7d7d7;

    line-height: 1.9;
}

/* =========================
            VISION SECTION
        ========================= */

.vision-section {

    padding: 120px 20px;
}

.vision-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    align-items: center;
}

.vision-card {

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(212, 175, 55, .08);

    border-radius: 30px;

    padding: 40px;

    margin-bottom: 30px;

    transition: .5s;
}

.vision-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(212, 175, 55, .12);
}

.vision-icon {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, .12);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.vision-icon i {

    color: #B28E4A;

    font-size: 36px;
}

.vision-card h3 {

    color: #fff;

    font-size: 34px;

    margin-bottom: 20px;
}

.vision-card p,
.vision-card li {

    color: #d7d7d7;

    line-height: 2;
}

.vision-card ul {
    padding-left: 20px;
}

.vision-right img {

    width: 100%;

    border-radius: 40px;
}

/* =========================
              WHY EXIST
        ========================= */

.exist-section {

    padding: 120px 20px;

    background:
        linear-gradient(135deg,
            #050505,
            #0b0b0b,
            #050505);
}

.exist-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}

.exist-image img {

    width: 100%;

    border-radius: 40px;
}

.exist-content span {

    color: #B28E4A;

    letter-spacing: 3px;

    font-size: 15px;

    font-weight: 600;
}

.exist-content h2 {

    color: #fff;

    font-size: 58px;

    margin: 25px 0;
}

.exist-content p {

    color: #d7d7d7;

    line-height: 2;

    margin-bottom: 20px;
}

.exist-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}

.exist-feature i {
    color: #B28E4A;
}

.exist-feature span {

    color: #fff;

    font-size: 16px;

    letter-spacing: 0;
}

/* =========================
                STATS
        ========================= */

.stats-section {

    padding: 100px 20px;

    background: #000;
}

.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.stats-box {

    text-align: center;

    background:
        rgba(255, 255, 255, .03);

    border:
        1px solid rgba(212, 175, 55, .08);

    border-radius: 30px;

    padding: 40px 25px;

    transition: .5s;
}

.stats-box:hover {

    transform: translateY(-10px);
}

.stats-box h3 {

    color: #B28E4A;

    font-size: 52px;

    margin-bottom: 12px;
}

.stats-box p {

    color: #fff;

    margin: 0;
}

/* =========================
                    CTA
        ========================= */

.cta-section {

    padding: 120px 20px;
}

.cta-box {

    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .12),
            rgba(255, 255, 255, .03));

    border:
        1px solid rgba(212, 175, 55, .10);

    border-radius: 40px;

    padding: 90px 50px;

    text-align: center;
}

.cta-box h2 {

    color: #fff;

    font-size: 60px;

    margin-bottom: 25px;
}

.cta-box p {

    color: #d7d7d7;

    max-width: 760px;

    margin: auto auto 35px;

    line-height: 2;
}

/* =========================
                FOOTER
        ========================= */
/* ================= FOOTER ================= */
/* ================= FOOTER ================= */




.main-footer {
    background: #050505;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(212, 166, 74, .12);
}

/* LOGO */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            var(--gold),
            #9f7421);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 28px;
    box-shadow:
        0 12px 35px rgba(212, 166, 74, .25);
}

.footer-about h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 48px;
    margin: 0;
}

.footer-about h2 span {
    color: var(--gold-light);
}

.footer-about p {
    color: #a9a9a9;
    line-height: 2;
    font-size: 15px;
    max-width: 360px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #111;
    border: 1px solid rgba(212, 166, 74, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.footer-social a:hover {
    background:
        linear-gradient(135deg,
            var(--gold),
            #9f7421);
    color: #000;
    transform: translateY(-4px);
}

/* LINKS */

.footer-links h5,
.footer-contact h5 {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    font-size: 34px;
    margin-bottom: 28px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: #bfbfbf;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .35s;
}

.footer-links ul li a i {
    color: var(--gold);
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* CONTACT */

.footer-info {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: #111;
    border: 1px solid rgba(212, 166, 74, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.footer-info span {
    color: #bdbdbd;
    line-height: 1.8;
}

/* SUPPORT */
/* =========================
        SUPPORT BOX
========================= */

.support-box {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 22px;

    padding: 14px 18px;

    background:
        rgba(212, 175, 55, 0.08);

    border:
        1px solid rgba(212, 175, 55, 0.18);

    border-radius: 14px;

    width: fit-content;

    max-width: 100%;
}

/* ICON */

.support-box i {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #B28E4A;

    color: #000;

    font-size: 18px;

    flex-shrink: 0;
}

/* TEXT */

.support-box small {

    display: block;

    color: #B28E4A;

    font-size: 13px;

    margin-bottom: 2px;
}

.support-box h6 {

    color: #fff;

    margin: 0;

    font-size: 16px;

    font-weight: 600;
}

/* BOTTOM */

/* =========================
      FOOTER BOTTOM INLINE
========================= */

.footer-bottom {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 35px;

    text-align: center;

    margin-top: 50px;
    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    flex-wrap: wrap;
}

/* COPYRIGHT TEXT */

.footer-bottom p {

    color: #B28E4A;

    margin: 0;

    font-size: 15px;

    letter-spacing: 1px;
}

/* LINKS */

.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 20px;
}

/* LINKS STYLE */

.footer-bottom-links a {

    color: #fff;

    text-decoration: none;

    transition: .3s;
}

.footer-bottom-links a:hover {

    color: #B28E4A;
}

/* MOBILE */

@media(max-width:768px) {

    .footer-bottom {

        flex-direction: column;

        gap: 15px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px) {

    .services-title {
        font-size: 48px;
    }

    .services-section {
        padding: 90px 0;
    }

}

@media(max-width:768px) {

    .services-title {
        font-size: 36px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .service-card h4 {
        font-size: 30px;
    }

    .footer-about h2 {
        font-size: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

/* =========================
            SECTION SEPARATOR
        ========================= */

section::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -14px;

    width: 24px;
    height: 24px;

    background:
        linear-gradient(135deg,
            #B28E4A,
            #fff,
            #B28E4A);

    transform:
        translateX(-50%) rotate(45deg);

    border-radius: 4px;

    box-shadow:
        0 0 20px rgba(212, 175, 55, .35);
}

/* =========================
                ANIMATION
        ========================= */

@keyframes floatGlow {

    0% {
        transform:
            translateY(0px);
    }

    50% {
        transform:
            translateY(-20px);
    }

    100% {
        transform:
            translateY(0px);
    }
}

@keyframes floatImage {

    0% {
        transform:
            translateY(0px);
    }

    50% {
        transform:
            translateY(-15px);
    }

    100% {
        transform:
            translateY(0px);
    }
}

/* =========================
                    MOBILE
        ========================= */

@media(max-width:991px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .about-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .vision-wrapper,
    .exist-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .exist-content h2,
    .cta-box h2 {
        font-size: 38px;
    }

    .floating-card {

        position: relative;

        left: 0;
        bottom: 0;

        margin-top: 25px;
    }
}

@media(max-width:768px) {

    .about-hero {

        background-attachment: scroll;

        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-title h2,
    .exist-content h2,
    .cta-box h2 {
        font-size: 30px;
    }

    .about-card-content h3,
    .vision-card h3 {
        font-size: 28px;
    }

    .cta-box {
        padding: 60px 25px;
    }
}
