/*
Theme Name: BRAS Theme
Author: Bhupesh
Version: 1.0
Description: Professional Agency Theme
*/

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {

    font-family: 'Poppins', sans-serif;

    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,0.08),
    transparent 20%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,0.06),
    transparent 20%),

    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8,
    #ffffff);

    color: #000;

    padding-top: 80px;

    overflow-x: hidden;
}

html {
    overflow-y: scroll; /* 🔥 SCROLL SHIFT FIX */
}

/* ===== PREMIUM NAVBAR ===== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:82px;

    display:flex;
    align-items:center;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(212,175,55,.08);

    box-shadow:
    0 10px 35px rgba(0,0,0,.04);

    transition:.35s ease;

    z-index:99999;
}

/* ===== WRAPPER ===== */
.nav-wrapper{

    width:100%;

    max-width:1380px;

    margin:auto;

    padding:0 45px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}
/* ===== LOGO ===== */
.logo img{

    height:56px;

    width:auto;

    transition:.35s ease;
}

/* ===== MENU ===== */
.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a{

    text-decoration:none;

    color:#111;

    font-size:16px;

    font-weight:600;

    letter-spacing:.3px;

    position:relative;

    transition:.3s;
}

/* underline hover */
.menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:#D4AF37;

    transition:.35s ease;
}

.menu a:hover{

    color:#D4AF37;
}

.menu a:hover::after{

    width:100%;
}

/* ===== DROPDOWN ===== */

.dropdown{
    position:relative;
}

/* Premium Dropdown Box */

.dropdown-box{

    position:absolute;

    top:calc(100% + 18px);

    left:0;

    min-width:280px;

    padding:12px 0;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.12);

    border-radius:20px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(18px);

    transition:all .35s ease;

    z-index:9999;
}

/* Hover Bridge */

.dropdown::after{

    content:"";

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    height:20px;
}

/* Show Dropdown */

.dropdown:hover .dropdown-box{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

/* Dropdown Items */

.dropdown-box a{

    display:flex;

    align-items:center;

    padding:14px 22px;

    margin:4px 10px;

    border-radius:12px;

    text-decoration:none;

    color:#222;

    font-size:15px;

    font-weight:500;

    transition:all .25s ease;
}

/* Hover */

.dropdown-box a:hover{

    background:#faf6ea;

    color:#D4AF37;

    padding-left:28px;
}

/* ===== SERVICES DROPDOWN ===== */

.services-box{

    min-width:340px;
}

/* Divider */

.service-divider{

    border:none;

    border-top:1px solid rgba(0,0,0,.08);

    margin:12px 18px;
}

/* View All Services */

.view-all-services{

    font-weight:600 !important;

    color:#111 !important;
}

.view-all-services:hover{

    color:#D4AF37 !important;
}

/* ===== CTA BUTTON ===== */

.quote-btn{

    background:#111;

    color:#fff;

    padding:14px 30px;

    border-radius:60px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    border:1px solid rgba(212,175,55,.35);

    transition:all .35s ease;
}

.quote-btn:hover{

    background:#D4AF37;

    color:#111;

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(212,175,55,.28);
}

/* ===== FOOTER ===== */
.footer {
    background: #160230;
    color: #ffffff;
    padding: 70px 0 25px;
}

/* CONTAINER */
.footer-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 60px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

/* ===== LOGO ===== */
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
}

/* ===== HEADINGS ===== */
.footer-col h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

/* ===== TEXT ===== */
.footer-col p {
    font-size: 15px;
    color: #e2e8f0; /* soft white for readability */
    line-height: 1.7;
    max-width: 300px;
}

/* ===== LINKS ===== */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-col {
    margin-left: 10px;
} 

/* hover effect */
.footer-col ul li a:hover {
    color: #7b61ff;
    padding-left: 5px; /* subtle premium movement */
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5f5;
}

/* ===== FOOTER EXTRA BAR ===== */
.footer-extra {
    max-width: 1320px;
    margin: 40px auto 0;
    padding: 20px 40px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #7b61ff;
    transform: translateY(-3px);
}

/* ===== RATINGS ===== */
.footer-ratings {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* circle image */
.rating-item img {
    width: 35px;
    height: 35px;
    border-radius: 50%; /* 🔥 circle */
    object-fit: cover;
    background: #fff;
    padding: 5px;
}

.rating-item span {
    font-size: 14px;
    color: #ffffff;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-container {
    position: fixed;
    bottom: 200px;
    right: 15px;
    z-index: 9999;
}

/* button */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn img {
    width: 45px;
}

/* chat box */
.whatsapp-box {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* header */
.whatsapp-header {
    background: #25D366;;
    padding: 15px;
    color: #fff;
}

.whatsapp-header h4 {
    margin: 8px 0 5px;
}

.whatsapp-header p {
    font-size: 13px;
}

/* body */
.whatsapp-body {
    padding: 10px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.chat-option img {
    width: 35px;
}

.chat-option:hover {
    background: #e9e9e9;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 120px 7%;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 48px;
    color: #0f172a;
    margin: 15px 0;
    font-weight: 700;
}

.section-title p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.service-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    text-decoration: none;
    transition: 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #6a5cff;
}

/* IMAGE */

.service-card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* TITLE */

.service-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* TEXT */

.service-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 140px 7% 80px;
    background: #f3f7ff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 78px;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-left h1 span {
    color: #6a5cff;
}

.hero-left p {
    font-size: 22px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn {
    background: linear-gradient(135deg, #7b61ff, #00c6ff);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
}

.hero-btn-outline {
    border: 2px solid #6a5cff;
    color: #6a5cff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
}

.hero-right {
    width: 50%;
    text-align: right;
}

.hero-right img {
    width: 100%;
    max-width: 700px;
}

/* =========================
   PREMIUM FAQ SECTION
========================= */

.premium-faq-section {

    padding: 100px 7% 60px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8,
    #ffffff);

    position: relative;

    overflow: hidden;
}

/* GOLD GLOW */

.premium-faq-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.10),
    transparent 70%);

    top: -180px;
    left: -180px;

    z-index: 0;
}

.premium-faq-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.08),
    transparent 70%);

    bottom: -120px;
    right: -120px;

    z-index: 0;
}

/* KEEP CONTENT ABOVE */

.premium-faq-heading,
.premium-faq-container {

    position: relative;

    z-index: 2;
}

/* =========================
   HEADING
========================= */

.premium-faq-heading {

    text-align: center;

    margin-bottom: 70px;
}

.premium-faq-heading span {

    display: inline-block;

    color: #b68b1f;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.premium-faq-heading h2 {

    font-size: 62px;

    color: #000;

    font-weight: 700;

    line-height: 1.1;
}

/* =========================
   CONTAINER
========================= */

.premium-faq-container {

    max-width: 1100px;

    margin: auto;
}

/* =========================
   FAQ ITEM
========================= */

.premium-faq-item {

    background:
    rgba(255,255,255,0.82);

    backdrop-filter: blur(12px);

    border:
    1px solid rgba(212,175,55,0.12);

    border-radius: 28px;

    margin-bottom: 24px;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.03);
}

.premium-faq-item:hover {

    transform: translateY(-6px);

    border-color: #d4af37;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.06);
}

/* =========================
   QUESTION
========================= */

.premium-faq-question {

    padding: 32px 38px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: 0.3s;
}

.premium-faq-question h3 {

    font-size: 25px;

    color: #000;

    font-weight: 600;

    line-height: 1.5;
}

/* PLUS ICON */

.premium-faq-question span {

    min-width: 46px;
    height: 46px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #000,
    #d4af37);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;

    transition: 0.4s ease;
}

/* =========================
   ANSWER
========================= */

.premium-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: 0.5s ease;

    padding: 0 38px;
}

.premium-faq-answer p {

    padding-bottom: 35px;

    color: #555;

    font-size: 17px;

    line-height: 1.9;
}

/* =========================
   ACTIVE STATE
========================= */

.premium-faq-item.active {

    border-color: #d4af37;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.06);
}

.premium-faq-item.active .premium-faq-answer {

    max-height: 300px;
}

.premium-faq-item.active .premium-faq-question span {

    transform: rotate(45deg);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 768px) {

    .premium-faq-section {

        padding: 80px 5% 40px;
    }

    .premium-faq-heading h2 {

        font-size: 42px;
    }

    .premium-faq-question {

        padding: 24px;
    }

    .premium-faq-question h3 {

        font-size: 19px;
    }

    .premium-faq-answer {

        padding: 0 24px;
    }

}

/* =====================================
   PREMIUM CONTACT PAGE
===================================== */

.premium-contact-section {

    padding: 60px 7% 120px;

    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,0.10),
    transparent 25%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,0.08),
    transparent 25%),

    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8,
    #ffffff);

    overflow: hidden;

    position: relative;
}

/* GOLD GLOW */

.premium-contact-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.10),
    transparent 70%);

    top: -220px;
    left: -220px;

    z-index: 0;
}

.premium-contact-section::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.08),
    transparent 70%);

    bottom: -180px;
    right: -180px;

    z-index: 0;
}

/* KEEP CONTENT ABOVE */

.premium-contact-heading,
.premium-contact-container,
.premium-map {

    position: relative;

    z-index: 2;
}

/* =====================================
   HEADING
===================================== */

.premium-contact-heading {

    text-align: center;

    max-width: 950px;

    margin: auto auto 90px;
}

.premium-contact-heading span {

    display: inline-block;

    color: #b68b1f;

    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 22px;
}

.premium-contact-heading h2 {

    font-size: 76px;

    line-height: 1.08;

    color: #000;

    font-weight: 700;

    margin-bottom: 30px;
}

.premium-contact-heading p {

    font-size: 20px;

    line-height: 1.9;

    color: #555;
}

/* =====================================
   MAIN LAYOUT
===================================== */

.premium-contact-container {

    max-width: 1400px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 60px;
}

/* =====================================
   LEFT SIDE
===================================== */

.premium-contact-left {

    width: 40%;
}

/* CARD */

.premium-info-card {

    background:
    rgba(255,255,255,0.85);

    backdrop-filter: blur(12px);

    border:
    1px solid rgba(212,175,55,0.15);

    border-radius: 30px;

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 25px;

    transition: 0.4s ease;

    position: relative;

    overflow: hidden;
}

.premium-info-card:hover {

    transform: translateY(-8px);

    border-color: #d4af37;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */

.premium-icon {

    min-width: 70px;

    height: 70px;

    border-radius: 22px;

    background:
    linear-gradient(
    135deg,
    #000,
    #d4af37);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    box-shadow:
    0 12px 30px rgba(212,175,55,0.15);
}

/* TEXT */

.premium-info-card h4 {

    font-size: 24px;

    color: #000;

    margin-bottom: 6px;
}

.premium-info-card p {

    color: #666;

    font-size: 16px;
}

/* =====================================
   RIGHT SIDE
===================================== */

.premium-contact-right {

    width: 55%;
}

/* FORM */

.premium-form {

    background:
    rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    border-radius: 38px;

    padding: 55px;

    border:
    1px solid rgba(212,175,55,0.15);

    box-shadow:
    0 30px 80px rgba(0,0,0,0.06);

    position: relative;

    overflow: hidden;
}

.premium-form::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.08),
    transparent 70%);

    top: -120px;
    right: -120px;
}

/* FORM GROUP */

.premium-form-group {

    margin-bottom: 24px;
}

/* INPUTS */

.premium-form input,
.premium-form textarea {

    width: 100%;

    padding: 20px 24px;

    border-radius: 18px;

    border: 1px solid #ddd;

    background: #fafafa;

    font-size: 16px;

    font-family: 'Poppins', sans-serif;

    transition: 0.3s ease;

    outline: none;
}

.premium-form textarea {

    height: 180px;

    resize: none;
}

.premium-form input:focus,
.premium-form textarea:focus {

    border-color: #d4af37;

    background: #fff;

    box-shadow:
    0 0 0 5px rgba(212,175,55,0.08);
}

/* BUTTON */

.premium-form button {

    width: 100%;

    padding: 20px;

    border: none;

    border-radius: 18px;

    background:
    linear-gradient(
    135deg,
    #000,
    #1a1a1a,
    #d4af37);

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s ease;
}

.premium-form button:hover {

    transform: translateY(-4px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}

/* =====================================
   MAP
===================================== */

.premium-map {

    margin-top: 90px;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.08);

    border:
    1px solid rgba(212,175,55,0.12);
}

.premium-map iframe {

    display: block;
}

/* =====================================
   SUCCESS POPUP
===================================== */

.success-popup {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    rgba(0,0,0,0.7);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999;

    padding: 20px;
}

/* BOX */

.success-popup-content {

    width: 100%;
    max-width: 520px;

    background: #fff;

    border-radius: 38px;

    padding: 50px;

    text-align: center;

    position: relative;

    overflow: hidden;

    animation: popupShow 0.4s ease;
}

/* GLOW */

.success-popup-content::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.15),
    transparent 70%);

    top: -100px;
    right: -100px;
}

/* ICON */

.success-icon {

    width: 95px;
    height: 95px;

    margin: auto auto 25px;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    #000,
    #d4af37);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 38px;
}

/* TITLE */

.success-popup-content h3 {

    font-size: 38px;

    color: #000;

    margin-bottom: 18px;
}

/* TEXT */

.success-popup-content p {

    color: #555;

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 35px;
}

/* BUTTONS */

.success-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

/* WHATSAPP BUTTON */

.popup-whatsapp {

    background:
    linear-gradient(
    135deg,
    #000,
    #d4af37);

    color: #fff;

    padding: 16px 28px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.popup-whatsapp:hover {

    transform: translateY(-4px);
}

/* CLOSE BUTTON */

#closePopup {

    padding: 16px 28px;

    border-radius: 60px;

    border: 1px solid #ddd;

    background: #fff;

    cursor: pointer;

    font-weight: 600;

    transition: 0.3s ease;
}

#closePopup:hover {

    background: #f5f5f5;
}

/* POPUP ANIMATION */

@keyframes popupShow {

    from {

        opacity: 0;
        transform: scale(0.85);
    }

    to {

        opacity: 1;
        transform: scale(1);
    }

}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width: 992px) {

    .premium-contact-container {

        flex-direction: column;
    }

    .premium-contact-left,
    .premium-contact-right {

        width: 100%;
    }

    .premium-contact-heading h2 {

        font-size: 46px;
    }

    .premium-form {

        padding: 35px;
    }

}

@media(max-width: 768px) {

    .premium-contact-section {

        padding: 40px 5% 80px;
    }

    .premium-contact-heading h2 {

        font-size: 38px;
    }

    .premium-contact-heading p {

        font-size: 16px;
    }

    .success-popup-content {

        padding: 35px;
    }

    .success-popup-content h3 {

        font-size: 28px;
    }

}

/* =====================================
   ABOUT PAGE
===================================== */

.about-hero-section {

    padding: 80px 7% 120px;

    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,0.10),
    transparent 25%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,0.08),
    transparent 25%),

    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8,
    #ffffff);

    overflow: hidden;

    position: relative;
}

/* HERO CONTAINER */

.about-hero-container {

    max-width: 1400px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}

/* LEFT */

.about-hero-left {

    width: 50%;
}

.about-hero-left span {

    display: inline-block;

    color: #b68b1f;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.about-hero-left h1 {

    font-size: 78px;

    line-height: 1.08;

    color: #000;

    margin-bottom: 30px;

    font-weight: 700;
}

.about-hero-left p {

    font-size: 20px;

    line-height: 1.9;

    color: #555;
}

/* RIGHT */

.about-hero-right {

    width: 45%;

    position: relative;
}

.about-hero-right img {

    width: 100%;

    border-radius: 35px;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
}

/* FLOATING CARD */

.about-floating-card {

    position: absolute;

    top: -20px;
    left: -20px;

    background: #fff;

    padding: 25px 35px;

    border-radius: 28px;

    border:
    1px solid rgba(212,175,55,0.15);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.about-floating-card h3 {

    font-size: 42px;

    color: #000;
}

.about-floating-card p {

    color: #666;
}

/* =====================================
   STORY SECTION
===================================== */

.about-story-section {

    padding: 120px 7%;
}

.about-story-container {

    max-width: 1400px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}

/* LEFT */

.about-story-left {

    width: 45%;
}

.about-story-left img {

    width: 100%;

    border-radius: 35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* RIGHT */

.about-story-right {

    width: 50%;
}

.about-story-right span {

    display: inline-block;

    color: #b68b1f;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 22px;
}

.about-story-right h2 {

    font-size: 58px;

    line-height: 1.1;

    color: #000;

    margin-bottom: 30px;
}

.about-story-right p {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 20px;
}

/* =====================================
   MISSION
===================================== */

.about-mission-section {

    padding: 0 7% 120px;
}

.about-mission-container {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

/* BOX */

.mission-box {

    background:
    linear-gradient(
    135deg,
    #000,
    #1a1a1a,
    #2b2b2b);

    color: #fff;

    padding: 50px;

    border-radius: 35px;

    position: relative;

    overflow: hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}

.mission-box::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.12),
    transparent 70%);

    top: -120px;
    right: -120px;
}

.mission-box h3 {

    font-size: 38px;

    margin-bottom: 25px;

    position: relative;

    z-index: 2;
}

.mission-box p {

    line-height: 1.9;

    color: #ddd;

    position: relative;

    z-index: 2;
}

/* =====================================
   COMMON HEADING
===================================== */

.about-section-heading {

    text-align: center;

    margin-bottom: 70px;
}

.about-section-heading span {

    display: inline-block;

    color: #b68b1f;

    letter-spacing: 3px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.about-section-heading h2 {

    font-size: 64px;

    color: #000;

    line-height: 1.1;
}

/* =====================================
   FEATURES
===================================== */

.about-features-section {

    padding: 0 7% 120px;
}

.about-features-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

/* CARD */

.about-feature-card {

    background:
    rgba(255,255,255,0.85);

    backdrop-filter: blur(12px);

    border:
    1px solid rgba(212,175,55,0.15);

    padding: 40px;

    border-radius: 30px;

    transition: 0.4s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.04);
}

.about-feature-card:hover {

    transform: translateY(-8px);

    border-color: #d4af37;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

.about-feature-card h3 {

    font-size: 28px;

    margin-bottom: 18px;

    color: #000;
}

.about-feature-card p {

    color: #666;

    line-height: 1.8;
}

/* =====================================
   FOUNDERS
===================================== */

.founders-section {

    padding: 0 7% 120px;
}

.founders-container {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

/* CARD */

.founder-card {

    background: #fff;

    padding: 45px;

    border-radius: 35px;

    text-align: center;

    border:
    1px solid rgba(212,175,55,0.12);

    transition: 0.4s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.05);
}

.founder-card:hover {

    transform: translateY(-10px);

    border-color: #d4af37;
}

.founder-card img {

    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 25px;

    border: 5px solid #f3f3f3;
}

.founder-card h3 {

    font-size: 34px;

    color: #000;

    margin-bottom: 10px;
}

.founder-card span {

    display: inline-block;

    color: #b68b1f;

    margin-bottom: 20px;

    font-weight: 600;
}

.founder-card p {

    color: #666;

    line-height: 1.8;
}

/* =====================================
   STATS
===================================== */

.about-stats-section {

    padding: 0 7% 120px;
}

.about-stats-container {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

/* BOX */

.stats-box {

    background:
    linear-gradient(
    135deg,
    #000,
    #1a1a1a);

    color: #fff;

    padding: 50px;

    border-radius: 30px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.stats-box::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.15),
    transparent 70%);

    top: -80px;
    right: -80px;
}

.stats-box h2 {

    font-size: 58px;

    margin-bottom: 12px;

    position: relative;

    z-index: 2;
}

.stats-box p {

    color: #ddd;

    position: relative;

    z-index: 2;
}

/* =====================================
   QUOTE
===================================== */

.about-quote-section {

    padding: 0 7% 120px;
}

.about-quote-container {

    max-width: 1200px;

    margin: auto;

    background:
    linear-gradient(
    135deg,
    #000,
    #111,
    #1f1f1f);

    border-radius: 40px;

    padding: 90px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.about-quote-container::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.15),
    transparent 70%);

    top: -180px;
    right: -180px;
}

.about-quote-container h2 {

    font-size: 54px;

    line-height: 1.4;

    color: #fff;

    position: relative;

    z-index: 2;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width: 992px) {

    .about-hero-container,
    .about-story-container {

        flex-direction: column;
    }

    .about-hero-left,
    .about-hero-right,
    .about-story-left,
    .about-story-right {

        width: 100%;
    }

    .about-features-grid,
    .about-stats-container {

        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission-container,
    .founders-container {

        grid-template-columns: 1fr;
    }

    .about-hero-left h1 {

        font-size: 52px;
    }

    .about-story-right h2,
    .about-section-heading h2 {

        font-size: 42px;
    }

    .about-quote-container h2 {

        font-size: 38px;
    }

}

@media(max-width: 768px) {

    .about-features-grid,
    .about-stats-container {

        grid-template-columns: 1fr;
    }

    .about-hero-left h1 {

        font-size: 42px;
    }

    .about-quote-container {

        padding: 60px 30px;
    }

}

/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio-section{
    padding:80px 7%;
}

.portfolio-heading{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.portfolio-heading span{
    color:#b68b1f;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.portfolio-heading h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.portfolio-heading p{
    color:#666;
    font-size:18px;
}

.portfolio-tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:60px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.portfolio-tab{

    border:none;
    padding:18px 30px;
    border-radius:50px;

    background:#f3f3f3;

    cursor:pointer;

    font-size:16px;
    font-weight:600;

    transition:.4s;
}

.portfolio-tab.active{

    background:#000;
    color:#fff;
}

.portfolio-banner{

    margin-bottom:50px;
}

.portfolio-banner img{

    width:100%;

    border-radius:30px;

    display:block;
}

.portfolio-content{

    display:none;

    animation:fadeIn .5s ease;
}

.portfolio-content.active{

    display:block;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:40px;
}

.portfolio-category-info{

    text-align:center;

    max-width:900px;

    margin:40px auto;
}

.portfolio-category-info h2{

    font-size:42px;

    margin-bottom:15px;
}

.portfolio-category-info p{

    font-size:18px;

    color:#666;

    line-height:1.8;
}

.portfolio-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #eee;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.portfolio-card:hover{

    transform:translateY(-10px);
}

.portfolio-card img{

    width:100%;
    height:240px;

    object-fit:cover;
}

.portfolio-card h3{

    font-size:24px;

    padding:20px 20px 10px;
}

.portfolio-card p{

    padding:0 20px;

    color:#666;
}

.portfolio-card a{

    display:inline-block;

    margin:20px;

    padding:12px 24px;

    border-radius:50px;

    text-decoration:none;

    background:#000;

    color:#fff;

    transition:.4s;
}

.portfolio-card a:hover{

    background:#b68b1f;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .portfolio-heading h1{

        font-size:42px;
    }

}

/* =========================
   WHY BRAS
========================= */

.why-bras-section{

    padding:120px 7%;

    background:#fff;
}

.why-bras-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    margin-top:60px;
}

.why-card{

    background:#fff;

    padding:40px;

    border-radius:30px;

    text-align:center;

    border:1px solid #eee;

    transition:.4s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.why-icon{

    font-size:48px;

    margin-bottom:20px;
}

.why-card h3{

    font-size:28px;

    margin-bottom:15px;
}

.why-card p{

    color:#666;

    line-height:1.8;
}

/* =========================
   STATS SECTION
========================= */

.stats-section{

    padding:100px 7%;

    background:
    linear-gradient(
    135deg,
    #000,
    #111,
    #1f1f1f);

    position:relative;

    overflow:hidden;
}

.stats-section::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.12),
    transparent 70%);

    top:-150px;
    right:-150px;
}

.stats-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    position:relative;

    z-index:2;
}

.stat-box{

    text-align:center;

    padding:40px 20px;
}

.stat-box h2{

    font-size:72px;

    color:#d4af37;

    margin-bottom:12px;

    font-weight:700;
}

.stat-box p{

    color:#fff;

    font-size:18px;

    letter-spacing:1px;
}

/* =========================
   FEATURED PORTFOLIO
========================= */

.featured-portfolio{

    padding:120px 7%;

    background:#fff;
}

.featured-portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.featured-project{

    border-radius:30px;

    overflow:hidden;

    background:#fff;

    border:1px solid #eee;

    transition:.4s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.featured-project:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.featured-project img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;
}

.project-content{

    padding:25px;
}

.project-content h3{

    font-size:28px;

    margin-bottom:10px;
}

.project-content p{

    color:#666;
}

.portfolio-btn-wrap{

    text-align:center;

    margin-top:60px;
}

.project-btn{

    display:inline-block;

    margin-top:18px;

    padding:12px 24px;

    border-radius:50px;

    background:#000;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.4s ease;
}

.project-btn:hover{

    background:#d4af37;

    transform:translateY(-3px);
}

.portfolio-btn{

    display:inline-block;

    padding:18px 35px;

    background:#000;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    transition:.4s ease;
}

.portfolio-btn:hover{

    background:#d4af37;
}

/* =========================
   FOUNDERS SECTION
========================= */

.founders-section{

    padding:120px 7%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    background:#fff;
}

.founders-left{

    flex:1;
}

.founders-left span{

    color:#d4af37;

    font-weight:600;

    letter-spacing:3px;
}

.founders-left h2{

    font-size:52px;

    line-height:1.2;

    margin:20px 0;
}

.founders-left p{

    color:#666;

    font-size:18px;

    line-height:1.9;
}

.founders-btn{

    display:inline-block;

    margin-top:30px;

    padding:18px 35px;

    background:#000;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    transition:.4s ease;
}

.founders-btn:hover{

    background:#d4af37;
}

.founders-right{

    flex:1;

    display:flex;

    gap:30px;
}

.founder-card{

    flex:1;

    text-align:center;

    padding:30px;

    border-radius:30px;

    background:#fff;

    border:1px solid #eee;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.4s;
}

.founder-card:hover{

    transform:translateY(-10px);
}

.founder-card img{

    width:100%;

    max-width:250px;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:20px;
}

.founder-card h3{

    font-size:26px;

    margin-bottom:10px;
}

.founder-card p{

    color:#666;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section{

    padding:120px 7%;

    background:
    linear-gradient(
    135deg,
    #000,
    #111,
    #1a1a1a);

    position:relative;

    overflow:hidden;

    text-align:center;
}

/* GOLD GLOW */

.final-cta-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.12),
    transparent 70%);

    top:-250px;
    right:-250px;
}

.final-cta-content{

    max-width:900px;

    margin:auto;

    position:relative;

    z-index:2;
}

.final-cta-content span{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;
}

.final-cta-content h2{

    font-size:72px;

    color:#fff;

    margin:25px 0;
}

.final-cta-content p{

    color:#cfcfcf;

    font-size:19px;

    line-height:1.9;

    max-width:750px;

    margin:auto;
}

.final-cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* PRIMARY */

.cta-primary{

    background:#d4af37;

    color:#000;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.4s ease;
}

.cta-primary:hover{

    transform:translateY(-5px);
}

/* SECONDARY */

.cta-secondary{

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.4s ease;
}

.cta-secondary:hover{

    background:#fff;

    color:#000;
}

/* =========================
   SERVICES PAGE
========================= */

.services-page-hero{

    padding:120px 7% 80px;

    text-align:center;

    max-width:1100px;

    margin:auto;
}

.services-page-hero span{

    color:#d4af37;

    letter-spacing:3px;

    font-weight:600;
}

.services-page-hero h1{

    font-size:72px;

    line-height:1.1;

    margin:20px 0;
}

.services-page-hero p{

    font-size:20px;

    color:#666;

    line-height:1.8;
}

.services-overview{

    padding:0 7% 120px;
}

/* PROCESS */

.services-process{

    padding:120px 7%;

    background:#000;

    border-radius:40px;

    margin:80px 7%;
}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;
}

.process-card{

    background:#111;

    border:1px solid rgba(255,255,255,.1);

    padding:40px;

    border-radius:25px;

    text-align:center;

    transition:.4s;
}

.process-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;
}

.process-card h3{

    font-size:60px;

    color:#d4af37;

    margin-bottom:15px;
}

.process-card p{

    color:#fff;

    font-size:20px;

    font-weight:600;
}

.services-process .section-title h2{

    color:#fff;
}

.services-process .section-title span{

    color:#d4af37;
}

.service-divider{

    border:none;

    border-top:1px solid #e5e5e5;

    margin:12px 0;
}

.view-all-services{

    display:block;

    font-weight:600;

    color:#000;

    transition:.3s;
}

.view-all-services:hover{

    color:#d4af37;
}

/* HOME SERVICES BUTTON */

.services-btn-wrap{

    text-align:center;

    margin-top:60px;
}

.services-btn{

    display:inline-block;

    padding:18px 35px;

    background:#000;

    color:#fff;

    text-decoration:none;

    border-radius:60px;

    font-weight:600;

    transition:.4s ease;
}

.services-btn:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-4px);
}

/* =========================
   CASE STUDIES COMING SOON
========================= */

.case-studies-coming-soon{

    min-height:70vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:120px 7%;

    background:
    linear-gradient(
    135deg,
    #fff,
    #fafafa
    );
}

.case-studies-content{

    max-width:850px;
}

.case-studies-content span{

    color:#d4af37;

    font-weight:600;

    letter-spacing:3px;
}

.case-studies-content h1{

    font-size:72px;

    margin:25px 0;
}

.case-studies-content p{

    font-size:20px;

    color:#666;

    line-height:1.9;
}

.case-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.case-primary-btn{

    padding:18px 35px;

    background:#000;

    color:#fff;

    text-decoration:none;

    border-radius:60px;
}

.case-secondary-btn{

    padding:18px 35px;

    border:1px solid #000;

    color:#000;

    text-decoration:none;

    border-radius:60px;
}

/* =========================
   CAREERS PAGE
========================= */

.careers-hero{

    padding:120px 7%;

    text-align:center;

    max-width:1000px;

    margin:auto;
}

.careers-hero span{

    color:#d4af37;

    font-weight:600;

    letter-spacing:3px;
}

.careers-hero h1{

    font-size:72px;

    margin:20px 0;
}

.careers-hero p{

    font-size:20px;

    color:#666;

    line-height:1.8;
}

.future-opportunities{

    padding:100px 7%;
}

.opportunities-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;
}

.opportunity-card{

    padding:35px;

    border:1px solid #eee;

    border-radius:20px;

    text-align:center;

    font-weight:600;

    background:#fff;

    transition:.4s;
}

.opportunity-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;
}

.resume-section{

    padding:120px 7%;

    background:#000;

    text-align:center;
}

.resume-content h2{

    color:#fff;

    font-size:52px;

    margin-bottom:20px;
}

.resume-content p{

    color:#ccc;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

.resume-btn{

    display:inline-block;

    margin-top:35px;

    padding:18px 35px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    border-radius:60px;

    font-weight:600;
}