/* 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 ================= */
.about-hero{
    height:95vh;
    /* background:url('image/about_banner_img.png') center/cover no-repeat; */
    position:relative;
    display:flex;
    align-items:center;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
}

.about-content{
    position:relative;
    z-index:2;
}

.tag-line{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:11px;
    letter-spacing:3px;
    color:#d4af37;
}

.tag-line .line{
    width:40px;
    height:1px;
    background:#d4af37;
}

.about-content h1{
    font-family:'Playfair Display', serif;
    font-size:70px;
    line-height:1.15;
    margin-top:20px;
}

.gold{
    color:#d4af37;
    font-style:italic;
}

.dash{
    color:#d4af37;
    margin:0 10px;
}

/* banner button end*/

/* ================= TAQWA ================= */
.taqwa-section{
    padding:120px 0;
}

.taqwa-left .mini-tag{
    font-size:11px;
    letter-spacing:3px;
    color:#d4af37;
}

.taqwa-left .arabic{
    font-size:48px;
    color:#d4af37;
    margin:15px 0;
}

.taqwa-left h4{
    font-family:'Playfair Display', serif;
}

.taqwa-left .sub{
    font-size:12px;
    color:#777;
}

.taqwa-right{
    padding-left:40px;
}

.taqwa-right .big-text{
    font-size:18px;
    color:#ddd;
    line-height:1.9;
}

.taqwa-right p{
    font-size:14px;
    color:#888;
}


/* TOP BORDER LINE */

/*why we exist start*/
/* SECTION */
.why-section {
    background: #000;
    padding: 120px 0;
}

/* IMAGE */
.why-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT */
.why-content {
    padding-left: 50px;
}

/* TAG LINE */
.tag-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 20px;
}

.tag-line .line {
    width: 40px;
    height: 1px;
    background: #d4af37;
}

/* TITLE */
.why-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

/* TEXT */
.why-content p {
    font-size: 14px;
    color: #888;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: rgba(212,175,55,0.3);
    margin: 30px 0;
}

/* STATS */
.stats h4 {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 5px;
}

.stats span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}
/*why we exist end*/

/*our philosophy start*/
/* SECTION */
.philosophy-section {
    background: #000;
    padding: 120px 0;
}

/* TAG */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-tag .line {
    width: 40px;
    height: 1px;
    background: #d4af37;
}

/* TITLE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fff;
    margin-top: 20px;
}

/* CARD */
.philo-card {
    border: 1px solid rgba(212,175,55,0.2);
    padding: 40px 25px;
    text-align: left;
    height: 100%;
    transition: 0.4s ease;
}

/* ICON BOX */
.icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212,175,55,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 20px;
}

/* TITLE */
.philo-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.philo-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

/* HIGHLIGHT */
.highlight {
    background: #d4af37;
    color: #000;
    padding: 2px 4px;
}

/* HOVER */
.philo-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

/* BUTTON */
.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 2px;
}

.btn-gold:hover {
    background: #f5d76e;
}
/*our philosophy end*/

/* 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;
}

/*second section css end*/




/*opportunities start*/

/* SECTION */
.opportunities-section {
    background: #000;
    padding: 120px 0;
}

/* FILTER */
.filter-tabs button {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    color: #aaa;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    margin: 5px;
    transition: 0.3s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: #d4af37;
    color: #000;
}

/* CARD */
.opp-card {
    border: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    background: #000;
    transition: .35s ease;
}

/* IMAGE */
.opp-img {
    position: relative;
     overflow: hidden;
}

.opp-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
     transition: transform .6s ease;
}

/* TAG */
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 2px;
}

/* STATUS */
.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    font-size: 10px;
}

.status.open {
    background: rgba(0,255,150,0.15);
    color: #00ffa0;
}

/* LOCATION */
.location {
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-size: 12px;
    color: #ccc;
}

/* CONTENT */
.opp-content {
    padding: 25px;
}

/* TITLE */
.opp-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

/* TEXT */
.opp-content p {
    font-size: 13px;
    color: #777;
}

/* SHARIAH */
.shariah {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin: 15px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 10px;
}

/* STATS */
.stats small {
    font-size: 10px;
    color: #777;
}

.stats h6 {
    font-size: 14px;
}

.gold {
    color: #d4af37;
}

/* BUTTON */
.btn-gold {
    background: #d4af37;
    color: #000;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px;
    margin-top: 15px;
}

.btn-gold:hover {
    background: #f5d76e;
}

/* HOVER */
.opp-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
.opp-card:hover .opp-img img {
  transform: scale(1.08);
}

.status.soon {
  background: rgba(255,200,0,0.15);
  color: #d4af37;
}
/*opportunities end*/

/*why taqwe start*/
/* SECTION */
.principles-section {
    background: #000;
    padding: 80px 0; /* top-bottom spacing */
}

/* GRID BOX */
.principle-box {
    position: relative;
    padding: 70px 50px;
    border: 1px solid rgba(212,175,55,0.15);
    height: 100%;
    transition: 0.4s ease;
    overflow: hidden;
}

/* GRID BORDER LINES */
.principle-box {
    border-right: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* ICON */
.icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212,175,55,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* TITLE */
.principle-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.principle-box p {
    font-size: 14px;
    color: #888;
}

/* BIG NUMBER (BACKGROUND STYLE) */
.number {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 60px;
    color: rgba(255,255,255,0.05);
    font-family: 'Playfair Display', serif;
}

/* 🔥 PREMIUM HOVER EFFECT */
.principle-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.principle-box:hover {
    background: #0a0a0a;
    border-color: #d4af37;
}

/* GLOW EFFECT */
.principle-box:hover::before {
    opacity: 1;
}

/* ICON ANIMATION */
.principle-box:hover .icon-box {
    transform: translateY(-5px) scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* TEXT CHANGE */
.principle-box:hover p {
    color: #ccc;
}

/* TITLE CHANGE */
.principle-box:hover h4 {
    color: #fff;
}

/* NUMBER FADE */
.principle-box:hover .number {
    color: rgba(212,175,55,0.15);
}
/*why taque end*/


  /* legal start*/
    /* SECTION */
.service-section {
    background: #000;
    padding: 120px 0;
}

/* CARD */
.service-card {
    border: 1px solid rgba(212,175,55,0.2);
    padding: 50px 40px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    background: #000;
}

/* ICON */
.icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212,175,55,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    margin-bottom: 25px;
    transition: 0.4s;
}

/* TITLE */
.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* 🔥 GLOW BACKGROUND EFFECT */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* 🔥 HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d4af37;
    background: #0a0a0a;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* SHOW GLOW */
.service-card:hover::before {
    opacity: 1;
}

/* ICON ANIMATION */
.service-card:hover .icon-box {
    transform: translateY(-5px) scale(1.1);
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
}

/* TEXT CHANGE */
.service-card:hover p {
    color: #ccc;
}

/* TITLE ENHANCE */
.service-card:hover h4 {
    color: #fff;
} 

    /*legal end*/

    /*Shariah Advisory Board start*/
    /* SECTION */
.shariah-section {
    background: #000;
    padding: 120px 0;
}

/* BOX */
.shariah-box {
    border: 1px solid rgba(212,175,55,0.3);
    padding: 70px 80px;
    max-width: 100%;
    transition: 0.4s;
}
.shariah-box:hover {
    border-color: #d4af37;
    background: #0a0a0a;
}

/* TAG */
.shariah-box .tags {
    font-size: 11px;
    letter-spacing: 4px;
    color: #d4af37;
    display: inline-block;
    margin-bottom: 20px;
}

/* HEADING */
.shariah-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    max-width: 900px;
}

/* TEXT */
.shariah-box p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    max-width: 750px;
}
    /*Shariah Advisory Board end*/


    /*blog start*/
/* SECTION */
.insights-section {
    background: #000;
    padding: 120px 0;
}

/* FILTER */
.filter-tabs button {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    color: #aaa;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    margin: 5px;
    transition: 0.3s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: #d4af37;
    color: #000;
}

/* CARD */
.blog-card {
    border: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    background: #000;
    transition: 0.4s;
}

/* IMAGE */
.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.6s;
}

/* CONTENT */
.blog-content {
    padding: 25px;
}

/* META */
.meta {
    font-size: 11px;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 10px;
}

.meta span {
    color: #777;
}

/* TITLE */
.blog-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.blog-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* LINK */
.read-link {
    font-size: 11px;
    letter-spacing: 2px;
    color: #d4af37;
    display: inline-block;
    margin-top: 10px;
}

/* 🔥 HOVER EFFECT */
.blog-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

/* IMAGE ZOOM */
.blog-card:hover img {
    transform: scale(1.08);
}

/* TEXT CHANGE */
.blog-card:hover p {
    color: #ccc;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,175,55,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.blog-card:hover::before {
    opacity: 1;
}
/*blog end*/

 /*testimonial start*/

/* SECTION */
.testimonial-section {
    background: #000;
    padding: 120px 0;
}

/* CARD */
.testimonial-card {
    border: 1px solid rgba(212,175,55,0.2);
    padding: 50px 50px;
    position: relative;
    transition: 0.4s ease;
    height: 100%;
}

/* QUOTE ICON */
.quote-icon {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* TEXT */
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 40px;
}

/* FOOTER */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* NAME */
.user h6 {
    margin: 0;
    font-size: 14px;
}

/* ROLE */
.user span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #d4af37;
}

/* STARS */
.stars {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
}

/* 🔥 PREMIUM HOVER */
.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,175,55,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.testimonial-card:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* TEXT HOVER */
.testimonial-card:hover .testimonial-text {
    color: #fff;
}
/*testimonial end*/


/*contact start*/
/* SECTION */
.contact-section {
    background: #000;
    padding: 120px 0;
}

/* INFO BOX */
.info-box {
    display: flex;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.info-box i {
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.info-box span {
    font-size: 10px;
    letter-spacing: 3px;
    color: #d4af37;
}

.info-box h5 {
    font-size: 16px;
    margin: 5px 0;
}

.info-box small {
    color: #777;
}

/* BUTTONS */
.contact-btns {
    margin-top: 30px;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 12px 25px;
    margin-right: 10px;
}

.btn-outline {
    border: 1px solid rgba(212,175,55,0.4);
    color: #fff;
    padding: 12px 25px;
}

/* FORM BOX */
.contact-form {
    border: 1px solid rgba(212,175,55,0.2);
    padding: 50px;
}

/* TAG */
.contact-form .tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
}

/* TITLE */
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
}

/* INPUT STYLE */
.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    color: #fff;
    padding: 10px 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #d4af37;
}

/* LABEL */
.form-group label {
    font-size: 10px;
    letter-spacing: 2px;
    color: #888;
}

/* TEXTAREA */
textarea.form-control {
    height: 80px;
}

/* 🔥 HOVER EFFECT */
.contact-form:hover {
    border-color: #d4af37;
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.info-box:hover i {
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}
/*contact end*/

/*google map start*/
/* SECTION */
.map-section {
    background: #000;
    padding: 100px 0;
}

/* HEADER */
.map-header .tags {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37;
}

.map-header h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
}

/* MAP BOX */
.map-box {
    border: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    transition: 0.4s;
}

/* HOVER EFFECT */
.map-box:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

/* DARK FILTER (OPTIONAL PREMIUM LOOK) */
.map-box iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
}
/*google map end*/


/*opportunities details start*/

        .opportunity-page {
            padding: 140px 0 80px;            

        }

        .container-custom {
            max-width: 1150px;
            margin: auto;
        }

        .back-link {
            color: #d4af37;
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .back-link:hover {
            color: #fff;
            text-decoration: none;
        }

        .image-box {
            position: relative;
            overflow: hidden;
        }

        .image-box img {
            width: 100%;
            height: 540px;
            object-fit: cover;
        }

        .category-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #0f1720;
            color: #d4af37;
            padding: 10px 18px;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .investment-card {
            border: 1px solid var(--border);
            padding: 40px;
            background: #050505;
            height: 100%;
        }

        .label {
            color: #d4af37;
            letter-spacing: 4px;
            font-size: 11px;
            text-transform: uppercase;
        }

        .metric-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .metric-label {
            color: var(--muted);
        }

        .metric-value {
            font-size: 18px;
            font-weight: 600;
        }

        .gold {
            color: var(--gold);
        }

        .progress {
            height: 4px;
            border-radius: 0;
            background: #222;
        }

        .progress-bar {
            background: #d4af37;
        }

        .reserve-btn {
            width: 100%;
            background: #d4af37;
            color: #000;
            border: none;
            padding: 18px;
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .reserve-btn:hover {
            background: #fff;
        }

        .location {
            color: #d4af37;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .opportunity-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .section-title {
            color: #d4af37;
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .overview-text {
            color: #ddd;
            line-height: 2;
            font-size: 18px;
        }

        .highlight-list {
            list-style: none;
            padding: 0;
        }

        .highlight-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 18px;
        }

        .highlight-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #d4af37;
        }

        .sticky-card {
            position: sticky;
            top: 30px;
        }

        .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;
        }

/*opportunities details 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;
}

/* 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;
    }

    .hero {
        height: auto;
        padding-bottom: 120px;
    }
     .hero-stats {
        position: relative;
    }
    
    /* About content start*/
       .about-content h1{
        font-size:34px;
    }

    .about-hero{
        height:70vh;
    }

    .taqwa-right{
        padding-left:10px;
        margin-top:30px;
    }

    .taqwa-left{
        text-align:center;
    }
    /* About content end*/  
    
    /*why we exist start*/
    .why-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .why-content h2 {
        font-size: 26px;
    }

    .tag-line {
        justify-content: center;
    }

    .stats {
        text-align: center;
    }
    /*why we exist end*/

    /*our philosophy start*/
     .section-title {
        font-size: 28px;
    }

    .philo-card {
        text-align: center;
    }

    .icon-box {
        margin: 0 auto 15px;
    }
    /*our philosophy end*/


    /*opportunities start*/
    .opp-img img {
        height: 200px;
    }

    .opp-content {
        padding: 20px;
    }
    /*opportunities end*/


     /* legal start*/  
    .service-card {
        padding: 35px 25px;
        text-align: center;
    }

    .icon-box {
        margin: 0 auto 20px;
    }
    /*legal end*/
    /*Shariah Advisory Board start*/
    .shariah-box {
        padding: 40px 25px;
    }

    .shariah-box h2 {
        font-size: 22px;
    }
    /*Shariah Advisory Board start*/

    /*blog start*/
     .blog-img img {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }
    /*blog end*/

    /*testimonial start*/
     .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    /*testimonila end*/


    /*contact start*/
     .contact-form {
        margin-top: 30px;
        padding: 30px;
    }

    .info-box {
        flex-direction: column;
    }
    /*end*/
    /*google map start*/
      .map-box iframe {
        height: 300px;
    }
    /*google map end */

    /*opportunities details start*/

    .image-box img {
                height: 350px;
            }

            .investment-card {
                margin-top: 25px;
            }

            .opportunity-title {
                font-size: 42px;
            }

            .sticky-card {
                position: relative;
                top: auto;
                margin-top: 30px;
            }

            .opportunity-title {
                font-size: 34px;
            }

            .metric-row {
                flex-direction: column;
            }

            .metric-value {
                margin-top: 5px;
            }
    /*opportunities details 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*/

}