/* GLOBAL */
body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s;
    padding: 15px 10px;
}

/* Default transparent */
.navbar.transparent {
    background: transparent;
}

/* On scroll */
.navbar.scrolled {
    background: rgba(0,0,0,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: 10px 0;
}

.navbar-brand {
    color: #fff;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: #ccc !important;
    margin: 0 10px;
    letter-spacing: 1px;
    font-size: 13px;
    white-space: nowrap; /* 🔥 FIX BREAK ISSUE */
}

.navbar-nav .nav-link:hover {
    color: #d4af37 !important;
}
/* ACTIVE */
.navbar-nav .nav-link.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}


/* GOLD BUTTON */
.btn-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
    /* padding: 8px 18px; */
    /* transition: 0.3s; */
    letter-spacing: 1px;
    font-size: 12px;
}

.btn-gold:hover {
    background: #d4af37;
    color: #000;
}

/* HERO */
.hero {
    /* height: 100vh; */
    /* background: url('image/banner_image.png') center/cover no-repeat;
    position: relative;
    padding-top:20px; */

    position: relative;
    padding-top:20px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 30%,
        rgba(0,0,0,0.9) 100%
    ); */
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 120px;
    /* transform: translateY(-50%); */
}

/* banner button start*/
    /* BUTTON CONTAINER */
    .hero-buttons {
        gap: 15px;
    }

    /* GOLD FILLED BUTTON */
    .btn-gold-filled {
        background: #d4af37;
        color: #000;
        padding: 14px 28px;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        border: none;
        transition: 0.3s;
    }

    .btn-gold-filled:hover {
        background: #b8962e;
        color: #000;
    }

    /* GOLD OUTLINE BUTTON */
    .btn-gold-outline {
        border: 1px solid #d4af37;
        color: #d4af37;
        padding: 14px 28px;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: transparent;
        transition: 0.3s;
    }

    .btn-gold-outline:hover {
        background: #d4af37;
        color: #000;
    }

    /* TEXT BUTTON */
    .btn-text {
        color: #aaa;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-text:hover {
        color: #fff;
    }

/* banner button end*/


/* TOP BORDER LINE */
/* STATS OVERLAY SECTION */
.hero-stats {
    position: relative;
    /* bottom: 20; */
    width: 100%;
    z-index: 2;
    /* padding: 30px 0; */
    /* border-top: 1px solid rgba(212,175,55,0.3); */
    /* padding-top: 30px; */
    /* margin-top: 120px; */
}

/* TEXT STYLE */
.hero-stats h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.hero-stats p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    margin: 0;
}

/* SPACING FIX */
.hero-stats .col-md-3 {
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    line-height: 1.2;
}

.hero .gold {
    color: #d4af37;
    font-style: italic;
}

/* BADGE */
.badge-circle {
    position: absolute;
    right: 10%;
    top: 40%;
    width: 150px;
    height: 150px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d4af37;
    z-index: 3;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    transition: 0.4s;
    text-align: center;
    padding-top: 100px;
}

.mobile-menu.active {
    left: 0;
}

/* CLOSE BUTTON */
.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #d4af37;
}

/* HAMBURGER */
.menu-toggle {
    font-size: 26px;
    cursor: pointer;
}

/* add second section css start*/

/* SECTION */
.doctrine-section {
    background: #000;
    padding: 140px 0; /* 👈 exact spacing feel */
}

/* TAG LINE WRAPPER */
.tag-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

/* GOLD LINE */
.tag-wrapper .line {
    width: 50px;
    height: 1px;
    background: #d4af37;
    margin-right: 15px;
}

/* TAG TEXT */
.tag-wrapper .tag-text {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* HEADING (EXACT STYLE) */
.doctrine-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;   /* 👈 bigger like reference */
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -1px;
}

/* RIGHT TEXT */
.doctrine-right {
    padding-left: 40px; /* 👈 spacing like screenshot */
}

.doctrine-right p {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.9;
    max-width: 420px;
}

/*second section css end*/

/* third section css start*/

/* SECTION */
.principles-section {
    background: #000;
}

/* CARD */
.principle-card {
    padding: 70px 60px; /* 👈 exact spacing feel */
    border-right: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    min-height: 300px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* SOFT GOLD GRADIENT GLOW (very subtle) */
.principle-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(212,175,55,0.08),
        transparent 60%
    );
    opacity: 0;
    transition: 0.5s ease;
}

.principle-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: 0.4s ease;
}

.principle-card:hover::after {
    width: 100%;
}
/* HOVER CARD */
.principle-card:hover::before {
    opacity: 1;
}
.principle-card:hover {
    background: rgba(212,175,55,0.03); /* very subtle gold tint */
    transform: translateY(-6px);
}

/* REMOVE EXTRA BORDERS */
.principles-section .col-md-4:nth-child(3n) .principle-card {
    border-right: none;
}

/* ICON BOX */
.icon-box {
    width: 45px;
    height: 48px;
    border: 1px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

/* SVG STYLE */
.icon-box svg {
    width: 18px;
    height: 18px;
}

/* ICON HOVER EFFECT */
.principle-card:hover .icon-box {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

/* NUMBER */
.number {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 10px;
}

/* TITLE */
.principle-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;    
    transition: all 0.4s ease;    
}

.principle-card:hover h3 {
    color: #d4af37;
    transform: translateY(-2px);
}

/* TEXT */
.principle-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
    transition: 0.4s ease;
}

.principle-card:hover p {
    color: #aaa;
}
/*third section css end*/

/* fourth section css start*/
/* SECTION */
.pillars-section {
    background: #000;
    padding: 120px 0;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
    margin-top: 15px;
}

/* SUBTITLE */
.section-subtitle {
    color: #888;
    max-width: 600px;
    margin: 10px auto 50px;
    font-size: 14px;
}

/* CARD */
.pillar-card {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.pillar-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* DARK OVERLAY */
.pillar-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.2)
    );
}

/* CONTENT */
.overlay {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 2;
}

/* SMALL TEXT */
.overlay span {
    font-size: 10px;
    letter-spacing: 3px;
    color: #d4af37;
}

/* TITLE */
.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin: 10px 0;
}

/* LINK */
.overlay a {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    text-decoration: none;
}

/* HOVER EFFECT */
.pillar-card:hover img {
    transform: scale(1.05);
}

.pillar-card:hover a {
    color: #d4af37;
}
/* fourth section css end*/

/* five section css start*/
/* CARD BASE */
.pillar-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* IMAGE */
.pillar-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s ease; /* slow premium zoom */
}

/* DARK OVERLAY */
.pillar-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.2)
    );
    transition: 0.5s ease;
}

/* CONTENT */
.overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    transform: translateY(10px);
    transition: 0.5s ease;
}

/* LINK LINE EFFECT */
.overlay a {
    position: relative;
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    text-decoration: none;
}

/* underline animation */
.overlay a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: 0.4s ease;
}

/* ===== HOVER ===== */
.pillar-card:hover img {
    transform: scale(1.08); /* smooth zoom */
}

.pillar-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98),
        rgba(0,0,0,0.4)
    );
}


/* TEXT LIFT */
.pillar-card:hover .overlay {
    transform: translateY(0);
}

/* LINK COLOR + LINE */
.pillar-card:hover a {
    color: #d4af37;
}

.pillar-card:hover a::after {
    width: 100%;
}

.pillar-card:hover {
    box-shadow: 0 10px 40px rgba(212,175,55,0.08);
}
/*five sction css end*/

/* six section css start*/

/* HEADER */
.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* CARD */
.featured-card {
    border: 1px solid rgba(212,175,55,0.2);
    background: #000;
    transition: 0.5s ease;
    overflow: hidden;
}

/* IMAGE */
.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.8s ease;
}

/* BADGES (PREMIUM FIX) */
.badge {
    position: absolute;
    top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px 10px;
}

.badge.left {
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #d4af37;
}

.badge.right {
    right: 15px;
    border: 1px solid #00ff99;
    color: #00ff99;
}

.badge.closing {
    border-color: #ffcc66;
    color: #ffcc66;
}

/* BODY */
.card-body {
    padding: 28px;
}

/* TITLE */
.featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
}

/* TEXT */
.desc {
    font-size: 13px;
    color: #888;
}

/* PURITY */
.purity {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
    margin-top: 15px;
}

/* PROGRESS LINE */
.progress-line {
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0 15px;
    overflow: hidden;
}

.progress-line span {
    display: block;
    height: 100%;
    background: #d4af37;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stats small {
    font-size: 10px;
    color: #777;
}

.stats strong {
    color: #fff;
}

/* BUTTON */
.btn-gold-full {
    display: block;
    text-align: center;
    background: #d4af37;
    color: #000;
    padding: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

/* ===== PREMIUM HOVER ===== */
.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.08);
}

.featured-card:hover img {
    transform: scale(1.1);
}

/* TEXT MICRO ANIMATION */
.featured-card h3,
.featured-card .desc {
    transition: 0.4s ease;
}

.featured-card:hover h3 {
    color: #d4af37;
}

.featured-card:hover .desc {
    color: #aaa;
}

/* BUTTON HOVER */
.featured-card:hover .btn-gold-full {
    background: #f5d76e;
}

/* PROGRESS GLOW */
.featured-card:hover .progress-line span {
    box-shadow: 0 0 10px #d4af37;
}
/* six section css end*/

/*siven section css start*/
/* SECTION */
.trust-section {
    position: relative;
    background: url('/frontend/images/image_three.png') center/cover no-repeat;
    padding: 120px 0 180px;
    color: #fff;
    backdrop-filter: blur(2px);    
}

/* DARK OVERLAY */
.trust-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

/* CONTENT */
.trust-content {
    position: relative;
    z-index: 2;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* HEADING */
.trust-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-top: 15px;
}

.trust-section h2 span {
    color: #d4af37;
    font-style: italic;
}

/* ===== STATS STRIP ===== */
.trust-stats {
    position: absolute;
    bottom: -60px;
    width: 100%;
    z-index: 2;
}

/* GLASS DARK BAR */
.trust-stats .container {
    background: rgba(0,0,0,0.85);
    padding: 40px 0;
}

/* EACH STAT */
.stat {
    border-right: 1px solid rgba(212,175,55,0.2);
}

.stat:last-child {
    border-right: none;
}

/* NUMBER */
.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* LABEL */
.stat p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
}

/* default */
.counter {
    transition: all 0.4s ease;
}

.counter-done {
    animation: glowPulse 2s ease-in-out;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 0 rgba(212,175,55,0); }
    50% { text-shadow: 0 0 20px rgba(212,175,55,0.6); }
    100% { text-shadow: 0 0 10px rgba(212,175,55,0.3); }
}

/* glow when finished */
.counter.counter-done {
    text-shadow: 0 0 12px rgba(212,175,55,0.5),
                 0 0 25px rgba(212,175,55,0.3);
}

.trust-section::before {
    content: "";
    position: absolute;
    inset: 0;

   background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 30%,
        rgba(0,0,0,0.9) 100%
    );

    z-index: 1;
}

.trust-content,
.trust-stats {
    position: relative;
    z-index: 2;
}
/* siven section css end*/

/*eight section start*/

/* SECTION */
.promise-section {
    background: #000;
    padding: 120px 0;
    position: relative;
    background: url('/frontend/images/image_two.png') center/cover no-repeat;
}

.promise-section::after {
    content: "";
    position: absolute;
    inset: 0;

    background: url('/frontend/images/image_four.png') repeat;
    opacity: 0.05;

    z-index: 1;
}

.promise-section .container {
    position: relative;
    z-index: 2;
}

/* SUBTLE PATTERN (OPTIONAL) */
.promise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); /* 👈 strong for readability */
    /* opacity: 0.05; */
    z-index: 1;
}

/* HEADER */
.promise-header {
    margin-bottom: 60px;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* TITLE */
.promise-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #fff;
    line-height: 1.3;
    margin-top: 15px;
}

/* GOLD TEXT */
.promise-header .gold {
    color: #d4af37;
    font-style: italic;
}

/* DASH */
.promise-header .dash {
    font-size: 40px;
}

/* BOX TITLE */
.box-title {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* ICON */
.box-title .icon {
    width: 28px;
    height: 28px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
}

/* COLORS */
.box-title.red {
    color: #ff4d4d;
}

.box-title.red .icon {
    border-color: #ff4d4d;
}

.box-title.gold {
    color: #d4af37;
}

.box-title.gold .icon {
    border-color: #d4af37;
}

/* LIST */
.promise-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.promise-box li {
    display: flex;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
    font-size: 14px;
}

/* NUMBER */
.promise-box li span {
    font-size: 11px;
    color: #666;
    min-width: 25px;
}

.promise-box li:hover {
    color: #fff;
    transform: translateX(5px);
    transition: 0.3s ease;
}

/* eight section end*/

/*nine section start*/

/* SECTION */
.testimonial-section {
    background: #000;
    padding: 120px 0;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
    margin-top: 10px;
}

/* CARD */
.testimonial-card {
    border: 1px solid rgba(212,175,55,0.2);
    padding: 30px;
    text-align: left;
    position: relative;
    height: 100%;
    transition: 0.4s ease;
}

/* STARS */
.stars {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* QUOTE ICON */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    color: rgba(212,175,55,0.1);
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* NAME */
.user h5 {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* ROLE */
.user span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #d4af37;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.08);
}

.testimonial-card:hover .testimonial-text {
    color: #ccc;
}

.testimonial-card:hover .quote-icon {
    color: rgba(212,175,55,0.3);
}

/*nine section end*/

/*ten section start*/

/* SECTION */
.consult-section {
    background: #000;
    padding: 120px 0;
}

/* BOX BORDER */
.consult-box {
    border: 1px solid rgba(212,175,55,0.3);
    padding: 70px 60px; /* keep this zero */
}

/* LEFT */
.consult-left {
    padding: 80px;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
}

/* TITLE */
.consult-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #fff;
    margin: 15px 0;
    line-height: 1.3;
}

/* GOLD TEXT */
.consult-left h2 span {
    color: #d4af37;
    font-style: italic;
}

/* TEXT */
.consult-left p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
}

/* LIST */
.consult-left ul {
    list-style: none;
    padding: 0;
}

.consult-left li {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 10px;
}

/* RIGHT */
.consult-right {
    padding: 80px 70px;
    /*border-left: 1px solid rgba(212,175,55,0.2);*/
}

/* FORM */
.form-group {
    margin-bottom: 25px;
}

/* LABEL */
label {
    font-size: 10px;
    letter-spacing: 2px;
    color: #777;
}

/* INPUT */
input, select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 8px 0;
    color: #fff;
    outline: none;
}

/* FOCUS */
input:focus, select:focus {
    border-color: #d4af37;
}

/* BUTTON */
.btn-gold {
    width: 100%;
    background: #d4af37;
    color: #000;
    padding: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #f5d76e;
}
/*ten section end*/

/*eleven section start*/
/* SECTION */
.faq-section {
    background: #000;
    padding: 120px 0;
}

/* TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: left;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding: 18px 0;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* TEXT */
.faq-question span {
    color: #ddd;
    font-size: 15px;
}

/* ICON CIRCLE */
.icon {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 14px;
    transition: 0.3s;
}

/* ACTIVE ICON */
.faq-item.active .icon {
    background: #d4af37;
    color: #000;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
    transition: 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

/* ACTIVE TEXT */
.faq-item.active .faq-question span {
    color: #d4af37;
}
/*eleven section end*/

/*whatsapp button start*/
.whatsapp-btn {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #d4af37;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 999;
        }
/*whatsapp button end*/

/*footer start*/

/* SECTION */
.footer-section {
    background: #000;
    color: #aaa;
    padding: 100px 0 30px;
}

/* LOGO */
.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

/* HEADINGS */
.footer-links h6,
.footer-contact h6 {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #d4af37;
    margin-right: 10px;
}

.footer-contact a:hover{
    text-decoration: none;
    /* color: #D4AF37; */
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212,175,55,0.5);
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    color: #d4af37;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #d4af37;
    color: #000;
}

/* DIVIDER */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(212,175,55,0.2);
    margin: 50px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    font-size: 13px;
}

/* ARABIC TEXT */
.arabic {
    color: #d4af37;
    font-size: 14px;
}

/* LINKS */
.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/*footer end*/


/* RESPONSIVE */
@media (max-width: 768px) {

    .navbar-nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .badge-circle {
        display: none;
    }

    .hero {
        height: auto;
        padding-bottom: 120px;
    }
     .hero-stats {
        position: relative;
    }
    
    /* banner button start*/
      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    /* banner button end*/

     .hero-stats h3 {
        font-size: 22px;
    }

    .doctrine-section {
        padding: 90px 0;
    }

    .doctrine-left h2 {
        font-size: 36px;
        line-height: 1.3;
    }

    .doctrine-right {
        padding-left: 0;
        margin-top: 25px;
    }

    .tag-wrapper .line {
        width: 30px;
    }

    /* mobile view css start*/

    .principle-card {
        padding: 40px 25px;
        border-right: none;
    }

    .principles-section .col-md-4 {
        border-bottom: 1px solid rgba(212,175,55,0.2);
    }

    .principle-card h3 {
        font-size: 20px;
    }
    /*mobile view css end*/

    .pillar-card img {
        height: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .row > div {
        margin-bottom: 20px;
    }

     /* SECTION SPACING */
    .pillars-section {
        padding: 70px 15px;
    }

    /* TITLE */
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    /* CARD SPACING */
    .row > div {
        margin-bottom: 20px;
    }

    /* CARD IMAGE */
    .pillar-card img {
        height: 260px; /* 👈 reduce height */
    }

    /* OVERLAY TEXT */
    .overlay {
        bottom: 20px;
        left: 18px;
    }

    .overlay span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .overlay h3 {
        font-size: 18px;
        margin: 6px 0;
    }

    .overlay a {
        font-size: 10px;
    }

     .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-img img {
        height: 180px;
    }

    .stats {
        flex-direction: column;
        gap: 10px;
    }

    /*seven start*/
    .trust-section {
        padding: 80px 0 120px;        
    }

    .trust-section h2 {
        font-size: 28px;
    }

    .trust-stats {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(212,175,55,0.2);
        padding: 15px 0;
    }

    .stat:last-child {
        border-bottom: none;
    }
    /*seven end*/

    /* eight start*/
    .promise-header h2 {
        font-size: 30px;
    }

    .promise-content {
        gap: 30px;
    }

    .promise-box {
        margin-bottom: 20px;
    }
    /*eight end*/

    /*nine* start*/

     .section-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }  
    /*nine end */
    /*ten start*/
      .consult-left {
        padding: 0 30px;
    }

    .consult-left h2 {
        font-size: 28px;
    }

    .consult-box {
        /*border: none;*/
        padding: 30px 20px;
    }
    .consult-right {
        border-left: none;
        border-top: 1px solid rgba(212,175,55,0.2);
        margin-top: 30px;
        padding-top: 30px;
    }
    /*ten end*/
    /* eleven start*/
    .section-title {
        font-size: 28px;
    }

    .faq-question span {
        font-size: 14px;
    }
    /*eleven end*/

    /*footer start*/
   .footer-top {
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        margin-top: 25px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-right {
        text-align: center !important;
        margin-top: 10px;
    }
    /*footer end*/

}