* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* HEADER */
.header {
    width: 100%;
    background: #FBF4EE;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 90px;
    width: auto;
    max-height: 100%;
    object-fit: contain;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* NAV */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color:  #C93A32;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

/* underline hover */
.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #C93A32;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* CONTACT BUTTON */
.contact-btn {
    background: #ebb584;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.4s ease;
}

/* disable underline */
.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: #fff;
    color: #C93A32;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE MENU */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: #0d0d0d;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #FBF4EE;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav.active {
        transform: translateX(0);
    }

    .contact-btn {
        margin-top: 10px;
        text-align: center;
    }
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
    }
}


/*   <============= HERO SECTION ================> */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* 🎥 Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Optional Dark Overlay for Better Text Visibility */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Content Above Video */
.hero-content {
    position: relative;
    z-index: 1;
}

/* 🔥 GLASS CARD EFFECT */
.hero-content {
    max-width: 900px;
    padding: 60px 40px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    animation: heroFadeUp 1s ease;
}

/* Heading */
.hero h1 {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
}

.hero h1 span {
    color: #623b2e;
}

/* Sub-heading */
.hero p {
    color: #000;
    margin-top: 20px;
    font-size: 30px;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: bold;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Apply Loan */
.primary-btn {
    background: #fff;
    color: #C93A32;
}

.primary-btn:hover {
    color: #C67326;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #C93A32;
    background: #fff;
}

.whatsapp-btn:hover {
    /* background: #fff; */
    color: #C67326;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 25px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* HERO ANIMATION */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ============ PAGE BANNER SECTION ========== */
/* PAGE BANNER */
.page-banner {
    position: relative;
    width: 100%;
    height: 320px;

    background-image: url("Images/bg\ image.png"); /* apni image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(198,115,38,0.65),
        rgba(201,58,50,0.65)
    );
}

/* CONTENT */
.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.page-banner-content h1 {
    font-size: 54px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }

    .page-banner-content h1 {
        font-size: 36px;
    }
}



/* ========= ABOUT SECTION ======== */
/* ABOUT SECTION */
.about-section {
    padding: 80px 20px;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
}

.about-wrapper {
    max-width: 1100px;
    width: 100%;
    animation: fadeUp 1s ease;
}

/* HEADER */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 36px;
    color: #C67326;
    margin-top: -40px;
}

.about-line {
    width: 140px;
    height: 4px;
    background: #C93A32;
    display: inline-block;
    border-radius: 5px;
}

/* CONTENT */
.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

/* Highlight line */
.about-highlight {
    font-weight: bold;
    font-size: 18px;
    color: #C93A32;
    text-align: center;
    margin-top: 35px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15.5px;
    }
}



/* =========== Stats Section ========= */
/* STATS SECTION */
.stats-section {
    padding: 90px 20px;
    background: linear-gradient(
        90deg,
        #C67326 0%,
        #C93A32 100%
    );
}

.stats-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* STAT BOX */
.stat-box {
    color: #ffffff;
}

.stat-box h2 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.stat-box hr {
    width: 100%;
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 18px;
}

.stat-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}



/* ============ SERVICES SECTION  ========= */
/* SERVICES SECTION */
.services-section {
    padding: 110px 20px;
    background: #fff;
}

/* SERVICES HEADER */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 38px;
    color: #C67326;
    margin-top: -40px;
}

.services-line {
    width: 200px;
    height: 4px;
    background: #C93A32;
    display: inline-block;
    border-radius: 5px;
}

/* GRID */
.services-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* FLIP CARD */
.flip-card {
    perspective: 1400px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 430px;               /* ⬅️ CARD HEIGHT BADI */
    transition: transform 0.9s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 22px;         /* ⬅️ Thoda aur rounded */
    padding: 50px;               /* ⬅️ Padding badi */
}

/* FRONT */
.flip-front {
    background: #f4f1e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-number {
    font-size: 60px;             /* ⬅️ Number bada */
    color: #9b9b9b;
    margin-bottom: 35px;
}

.flip-front h3 {
    font-size: 36px;             /* ⬅️ Title bada */
    letter-spacing: 2px;
}

/* BACK */
.flip-back {
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-back h4 {
    font-size: 30px;
    margin-bottom: 18px;
}

.flip-back ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 30px;
}

.flip-back ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

/* BUTTON */
.card-btn {
    align-self: flex-start;
    background: #fff;
    color: #C93A32;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.services-cta {
    width: 100%;
    margin-top: 70px;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical safety */
}

/* Circle Button */
.circle-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #C67326, #C93A32); */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    transition: all 0.4s ease;
    box-shadow: 0 20px 45px rgba(198, 115, 38, 0.35);
}

.circle-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 60px rgba(201, 58, 50, 0.45);
    background: linear-gradient(135deg, #C67326, #C93A32);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .flip-inner {
        height: 360px;
    }
}



/* ========== SLIDES SECTION ======== */
/* LOGO SLIDER SECTION */
.logo-slider-section {
    background: linear-gradient(
        90deg,
        #C67326 0%,
        #C93A32 100%
    );
    padding: 80px 0;
    overflow: hidden;
}

.slider-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #fff; /* brand primary */
}

/* SLIDER CONTAINER */
.slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

/* TRACK */
.slide-track {
    display: flex;
    width: calc(250px * 10);
    gap: 25px;
}

/* LOGO BOX */
.slide {
    width: 250px;
    height: 120px;
    background: #ffffff; /* clean card look */
    border: 1px solid rgba(198, 115, 38, 0.35); /* brand tint */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    font-size: 20px;
    color: #C93A32; /* brand secondary */
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* LOGO IMAGE */
.slide img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/* Optional hover polish */
.slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}

/* LEFT TO RIGHT */
.left {
    animation: scroll-left 25s linear infinite;
}

/* RIGHT TO LEFT */
.right {
    animation: scroll-right 25s linear infinite;
}

/* ANIMATIONS */
@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide {
        width: 200px;
        height: 100px;
        font-size: 16px;
    }
}

/* HOVER PAUSE SLIDER */
.slider:hover .slide-track {
    animation-play-state: paused;
}



/* =============== Pricing Section ============ */
/* ================= PRICING SECTION ================= */
.pricing-section {
    padding: 110px 20px;
    background: #ffffff;
    text-align: center;
}

/* HEADER – SAME AS SERVICES */
.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.pricing-header h2 {
    font-size: 38px;
    color: #C67326;
    margin-top: -40px;
    font-weight: bold;
}

.pricing-line {
    width: 100px;
    height: 4px;
    background: #C93A32;
    display: inline-block;
    border-radius: 5px;
}

/* GRID */
.pricing-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* CARD – SAME FEEL AS SERVICES */
.pricing-card {
    background: #f4f1e9; /* SAME AS SERVICES CARD */
    padding: 45px 35px;
    border-radius: 18px;

    border: 1px solid rgba(198, 115, 38, 0.25);
    box-shadow: 0 18px 40px rgba(198, 115, 38, 0.25);

    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* HOVER (SERVICES-STYLE LIFT) */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(201, 58, 50, 0.35);
}

/* TEXT */
.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #C93A32;
}

.price {
    font-size: 52px;
    font-weight: bold;
    color: #C67326;
}

.price-note {
    display: block;
    margin-bottom: 22px;
    color: #555;
}

/* BUTTON */
.pricing-btn {
    margin-top: auto;
    margin-bottom: 30px;

    padding: 12px 34px;
    border-radius: 30px;

    border: 2px solid #C67326;
    background: transparent;
    color: #C67326;

    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin-bottom: 12px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header h2 {
        font-size: 32px;
    }
}


/* ========== FAQ Section ========== */
/* FAQ SECTION */
.faq-section {
    padding: 110px 20px;
    background: #ffffff;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header h2 {
    font-size: 38px;
    color: #C67326;
    font-weight: bold;
    margin-top: -100px;
}

.faq-header h2 span {
    color: #C93A32;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: stretch; /* ⬅️ IMPORTANT */
}

/* RIGHT FAQ HEIGHT CONTROL */
.faq-right {
    max-height: 520px;        /* ⬅️ SAME AS LEFT CARD */
    overflow-y: auto;         /* ⬅️ SCROLL INSIDE */
    padding-right: 8px;       /* scrollbar space */
}

/* CUSTOM SCROLLBAR */
.faq-right::-webkit-scrollbar {
    width: 6px;
}

.faq-right::-webkit-scrollbar-track {
    background: transparent;
}

.faq-right::-webkit-scrollbar-thumb {
    background: rgba(198, 115, 38, 0.5);
    border-radius: 10px;
}


/* LEFT CARD */
.faq-card {
    background: #f4f1e9; /* same as services */
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 18px 40px rgba(198, 115, 38, 0.25);
}

.faq-card h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 25px;
}

.faq-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.faq-phone span {
    /* background: #C67326; */
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ring 1.2s infinite;
}

/* Phone vibration rotation */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0); }
    100% { transform: rotate(0); }
}


.faq-phone a {
    color: #C67326;
    text-decoration: none;
}

/* LEFT FAQ CARD – BIGGER VERSION */
.faq-card {
    position: relative;
    min-height: 520px;              /* ⬅️ pehle 420px tha */

    background-image: url("Images/FAQ.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 26px;            /* ⬅️ thoda aur smooth */
    padding: 45px;                  /* ⬅️ zyada space */

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.faq-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.25)
    );
    z-index: 1;
}

.faq-card h3,
.faq-phone {
    position: relative;
    z-index: 2;
}

.faq-card h3 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 26px;
    line-height: 1.3;
}

.faq-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.faq-phone span {
    background: #C67326;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-phone a {
    color: #ffffff;
    text-decoration: none;
}


/* FAQ ITEMS */
.faq-item {
    background: #f4f1e9;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(198,115,38,0.25);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ACTIVE QUESTION */
.faq-item.active .faq-question {
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
}

/* ICON */
.faq-question .icon {
    background: #fff;
    color: #C67326;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 18px 22px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .faq-card {
        min-height: 420px;   /* ⬅️ pehle 340px */
        padding: 35px;
    }

    .faq-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .faq-right {
        max-height: none;
        overflow: visible;
    }
}


/* ============ FOOTER STYLES ========== */
/* FOOTER SECTION */
.footer {
    background: #f4f1e9; /* SAME AS OUR SERVICES */
    padding: 90px 20px 40px;
    color: #333;
}

/* GRID */
.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 32px;
    color: #C67326;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #555;
    line-height: 1.7;
    max-width: 420px;
}

/* HEADINGS */
.footer h4 {
    font-size: 20px;
    color: #C67326;
    margin-bottom: 22px;
    position: relative;
}

.footer h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #C93A32;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #C93A32;
}

/* CONTACT */
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #555;
    line-height: 1.6;
}

.footer-contact i {
    color: #C67326;
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C93A32;
    text-decoration: none;
}


/* SOCIAL */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #C67326;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(198, 115, 38, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;  
}

.footer-social a:hover {
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
    transform: translateY(-4px);
    text-decoration: none;  
}

/* DIVIDER */
.footer-divider {
    margin: 50px 0 25px;
    height: 1px;
    background: rgba(198, 115, 38, 0.25);
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 14px;
}

.footer-bottom a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #C93A32;
    text-decoration: none;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}


/* ============ SCROLL TO TOP BUTTON ======== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 52px;
    height: 52px;
    border-radius: 50%;

    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;

    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    cursor: pointer;

    box-shadow: 0 12px 30px rgba(198, 115, 38, 0.35);
    transition: all 0.3s ease;

    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

/* SHOW BUTTON */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER EFFECT */
#scrollTopBtn:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(201, 58, 50, 0.45);
}




/* ================== ABOUT.html SECTION START =================== */
/* ========= ABOUT CREATIVE SECTION ========= */
/* ABOUT CREATIVE SECTION */
.about-creative-section {
    padding: 120px 20px;
    background: #ffffff;
}

.about-creative-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.about-creative-left {
    position: relative;
}

.about-image {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(198,115,38,0.25);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* RIGHT */
.about-tag {
    color: #C93A32;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.about-creative-right h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #333;
}

.about-creative-right h2 span {
    color: #C67326;
}

.about-creative-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
    max-width: 560px;
}

/* HIGHLIGHT */
.about-highlight-box {
    margin: 28px 0;
    padding: 22px 26px;
    background: #f4f1e9;
    border-left: 5px solid #C67326;
    border-radius: 14px;
    font-weight: bold;
    color: #333;
}

/* FEATURES */
.about-features {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.feature h4 {
    color: #C67326;
    margin-bottom: 6px;
}

.feature p {
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 40px;
    background: #f4f1e9;
    color: #C67326;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(198,115,38,0.25);
    transition: all 0.3s ease;
}

.about-btn span {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-btn:hover {
    transform: translateY(-4px);
}

/* ROTATION */
@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-creative-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 380px;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }
}



/* ============== APPROACH SECTION ========== */
/* APPROACH SECTION */
.approach-section {
    padding: 120px 20px;
    background: #ffffff;
}

/* HEADER */
.our-approach-header{
    text-align: center;
    margin-bottom: 50px;
    font-size: 25px;
    color: #C67326;
    margin-top: -120px;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-tag {
    color: #C93A32;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 14px;
}

.approach-header h2 {
    font-size: 42px;
    line-height: 1.25;
    color: #333;
}

.approach-header h2 span {
    color: #C67326;
}

/* IMAGE WRAP */
.approach-image-wrap {
    max-width: 1200px;
    margin: auto;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(198,115,38,0.25);
}

.approach-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* GOAL OVERLAY */
.approach-goal {
    position: absolute;
    bottom: 25px;
    left: 25px;
    max-width: 420px;
    background: rgba(244,241,233,0.95);
    padding: 22px 26px;
    border-radius: 18px;
}

.approach-goal span {
    color: #C93A32;
    font-weight: bold;
    font-size: 13px;
}

.approach-goal h4 {
    margin-top: 8px;
    color: #333;
    font-size: 18px;
    line-height: 1.4;
}

/* CARDS */
.approach-cards {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.approach-card {
    background: #f4f1e9;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(198,115,38,0.25);
    transition: all 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(201,58,50,0.35);
}

.card-tag {
    color: #C93A32;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.approach-card h3 {
    color: #C67326;
    margin-bottom: 12px;
    font-size: 22px;
}

.approach-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .approach-header h2 {
        font-size: 34px;
    }

    .approach-image-wrap img {
        height: 300px;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .approach-goal {
        position: static;
        margin: 20px;
    }
}



/* ======== BENEFITS SECTION ======== */
/* BENEFITS SECTION */
.benefits-section {
    padding: 120px 20px;
    background: #ffffff;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.our-benefits-header{
    text-align: center;
    margin-bottom: 50px;
    font-size: 25px;
    color: #C67326;
    margin-top: -120px;
}

/* LEFT SIDE */
.benefits-left {
    position: relative;
}

.benefit-img {
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(198,115,38,0.25);
}

.img-one {
    width: 80%;
    height: 260px;
    background-image: url("Images/Ads\ Meta.png");
    transform: rotate(-5deg);
}

.img-two {
    width: 100%;
    height: 300px;
    margin-top: -80px;
    background-image: url("Images/Loan\ Services\ 1.png");
}

/* EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    top: 40%;
    right: -30px;
    background: #C67326;
    color: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: badgeFloatRotate 6s ease-in-out infinite;
    transform-origin: center;
}

.experience-badge h3 {
    font-size: 34px;
    margin-bottom: 4px;
}

.experience-badge span {
    font-size: 14px;
    line-height: 1.3;
}

/* RIGHT SIDE */
.benefits-tag {
    color: #C93A32;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.benefits-right h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #333;
}

.benefits-right h2 span {
    color: #C67326;
}

.benefits-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

/* LIST */
.benefits-list {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 26px;
    color: #333;
}

.benefits-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #C67326;
    font-size: 18px;
}

/* BUTTON */
.benefits-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border-radius: 40px;
    background: #f4f1e9;
    color: #C67326;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(198,115,38,0.25);
    transition: all 0.3s ease;
}

.benefits-btn span {
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-btn:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-left {
        order: 2;
    }

    .benefits-right {
        order: 1;
    }

    .benefits-list {
        flex-direction: column;
        gap: 20px;
    }

    .experience-badge {
        right: 0;
    }
}

@keyframes badgeFloatRotate {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(3deg) translateY(-6px);
    }
    50% {
        transform: rotate(0deg) translateY(0);
    }
    75% {
        transform: rotate(-3deg) translateY(-6px);
    }
    100% {
        transform: rotate(0deg) translateY(0);
    }
}




/* ========= TEAM SECTION ======== */
/* TEAM SECTION */
.team-section {
    padding: 120px 20px;
    background: #ffffff;
}

/* HEADER */
.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.our-team-header{
    text-align: center;
    margin-bottom: 50px;
    font-size: 25px;
    color: #C67326;
    margin-top: -40px;
}

.team-tag {
    color: #C93A32;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.team-header h2 {
    font-size: 42px;
    color: #333;
}

.team-header h2 span {
    color: #C67326;
}

/* GRID */
.team-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */
.team-card {
    position: relative;
    background: #f4f1e9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(198,115,38,0.25);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(201,58,50,0.35);
}

/* IMAGE */
.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.08);
}

/* INFO */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 22px;
    text-align: center;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0)
    );

    color: #fff;
}


.team-info h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.team-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header h2 {
        font-size: 32px;
    }
}








/* ==========================Services.html Section Start========================== */
/* stack-section */
/* STACK SECTION */
.stack-section {
    padding: 160px 20px;
    background: #ffffff;
}

.stack-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* CARD */
.stack-card {
    background: #fff;
    backdrop-filter: blur(10px);

    border-radius: 26px;
    padding: 60px;
    min-height: 340px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    box-shadow: 0 12px 30px rgba(198,115,38,0.18);
    border: 1px solid rgba(198,115,38,0.25);

    position: sticky;
    top: 140px;

    transform: translateY(80px);
    opacity: 0;
    transition: all 0.8s ease;
}

.stack-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.stack-card {
  cursor: pointer;
}

.stack-card {
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.stack-card:hover {
  background: #f4f1e9; /* hover color */
  transform: translateY(-6px);
}

.stack-card-link:hover h2 {
  color: #C93A32; /* heading hover color */
}

.stack-card-link:hover p {
  color: #C93A32; /* paragraph hover color */
}


/* ACTIVE ON SCROLL */
.stack-card.active {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 16px 36px rgba(198,115,38,0.22);
}

/* TEXT */
.stack-content h2 {
    font-size: 36px;
    color: #2f2f2f;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.stack-content p {
    color: #605f5f;
    max-width: 460px;
    font-size: 16px;
    line-height: 1.7;
}

/* IMAGE */
.stack-image video {
    max-width: 280px;
    filter: drop-shadow(0 14px 24px rgba(198,115,38,0.25));
}

/* CARD SPACING */
.stack-card:not(:first-child) {
    box-shadow: 0 8px 22px rgba(198,115,38,0.12);
}

.stack-card:not(:last-child) {
    margin-bottom: 140px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .stack-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .stack-content p {
        max-width: 100%;
    }

    .stack-image video {
        max-width: 220px;
    }
}



/* ================ PRICING.html SECTION Start =============== */
/* ============ PRICING SECTION ========== */
.pricing-group {
    margin-bottom: 100px;
}

.pricing-group-title {
    text-align: center;
    font-size: 32px;
    color: #C67326;
    margin-bottom: 50px;
    position: relative;
}

/* .pricing-group-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #C93A32;
    display: block;
    margin: 14px auto 0;
    border-radius: 4px;
} */

/* CTA WORK SECTION */
.cta-work-section {
    position: relative;
    padding: 120px 20px;
    background: #fff; /* services background */
    text-align: center;
    overflow: hidden;
    width: 100vw;          /* full screen width */
    left: 50%;
    right: 50%;
    margin-left: -50vw;   /* trick to stretch bg */
    margin-right: -50vw;
    margin-top: -40px;
}

/* TOP TAG */
.cta-tag {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #C93A32;
}

/* BIG TEXT */
.cta-text {
    position: relative;
}

.cta-text h1 {
    font-size: 120px;
    font-weight: 800;
    line-height: 1.05;
    color: #333;
}

.cta-text h1 span {
    color: #C67326; /* primary brand */
}

/* CIRCLE BUTTON */
.cta-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 140px;
    height: 140px;
    border-radius: 50%;

    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-weight: bold;
    text-decoration: none;
    gap: 6px;

    box-shadow: 0 25px 60px rgba(198,115,38,0.45);
    transition: all 0.4s ease;
}

.cta-circle span {
    font-size: 20px;
}

/* HOVER EFFECT */
.cta-circle:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 35px 80px rgba(201,58,50,0.55);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cta-text h1 {
        font-size: 64px;
    }

    .cta-circle {
        width: 110px;
        height: 110px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-text h1 {
        font-size: 48px;
    }
}






/* ================= BLOG.html SECTION Start =============== */
/* ============ BLOG SECTION ========== */
/* BLOG SECTION */
.blog-section {
    padding: 120px 20px;
    background: #ffffff;
}

.blog-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.blog-card {
    background: #f4f1e9; /* services section color */
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 20px 45px rgba(198,115,38,0.25);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(201,58,50,0.35);
}

/* IMAGE */
.blog-img {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
}

.blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* TITLE */
.blog-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* READ MORE */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    font-weight: 600;

    color: #C67326; /* services section color */
    text-decoration: none;

    transition: color 0.3s ease;
}

/* ARROW */
.read-more .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.read-more:hover {
    color: #C93A32;
}

.read-more:hover .arrow {
    transform: translateX(6px); /* ➜ smooth right move */
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
    }
}






/* ================= CONTACT.html SECTION Start ================= */
/* ============ CONTACT SECTION ========== */
/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 120px 20px 80px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* LEFT INFO */
.contact-info {
    background: #f4f1e9;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 25px 60px rgba(198,115,38,0.25);
}

.info-item {
    flex: 1 1 250px;
}

.info-item i {
    font-size: 28px;
    color: #C67326;
    margin-bottom: 12px;
}

.info-item h4 {
    color: #C93A32;
    margin-bottom: 6px;
}

.info-item p {
    color: #333;
    line-height: 1.6;
}

/* clickable info */
.info-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #C93A32;
}

/* ================= FORM ================= */
.contact-form-box {
    background: #111;
    border-radius: 24px;
    padding: 60px;
    border: 4px solid #C67326;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.contact-form-box h2 {
    color: #C67326;
    font-size: 36px;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

.contact-form button {
    margin-top: 10px;
    padding: 16px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #C67326, #C93A32);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,58,50,0.45);
}

/* ================= MAP SECTION ================= */
.map-section {
    padding: 60px 20px 120px;
    /* background: #ffffff; */
    position: relative;
    z-index: 1;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-frame {
    border-radius: 26px;
    overflow: hidden;
    border: 6px solid #C67326;
    box-shadow: 0 30px 80px rgba(198,115,38,0.35);
    background: #f4f1e9;
    transition: all 0.4s ease;
}

.map-frame iframe {
    width: 100%;
    height: 420px;
    border: none;
}

.map-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(201,58,50,0.45);
    border-color: #C93A32;
}

/* ================= POPUP ================= */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    max-width: 350px;
    width: 90%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .map-frame iframe {
        height: 320px;
    }
}







/* ================= Developer.html SECTION Start ================= */
/* Developer Image Section */
.developer-image-section {
    padding: 80px 20px;
    background: #ffffff; /* services section jaisa */
}

.developer-image-wrapper {
    max-width: 1200px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(198,115,38,0.25);
}

.developer-image-wrapper img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}


/* MOBILE OPTIMIZATION SECTION */
.mobile-opt-section {
    padding: 120px 20px;
    background: #ffffff;
}

.mobile-opt-wrapper {
    max-width: 1000px;
    margin: auto;
}

/* HEADING */
.mobile-opt-wrapper h2 {
    font-size: 46px;
    line-height: 1.25;
    color: #333;
    margin-bottom: 30px;
}

.mobile-opt-wrapper h2 span {
    color: #C67326; /* services primary */
}

/* INTRO */
.mobile-opt-wrapper .intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* BULLET POINTS */
.mobile-points {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.mobile-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #333;
    font-size: 16px;
}

.mobile-points li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #C93A32; /* services secondary */
    font-size: 18px;
}

/* DESCRIPTION */
.mobile-opt-wrapper .desc {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    border-top: 1px solid rgba(198,115,38,0.25);
    padding-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mobile-opt-wrapper h2 {
        font-size: 32px;
    }
}


.mobile-opt-section {
    padding: 120px 20px;
    background: #ffffff;
}

.mobile-opt-wrapper {
    max-width: 1000px;
    margin: auto;
}

/* PARAGRAPHS */
.mobile-opt-wrapper .para {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 26px;
}

/* HIGHLIGHT BOX */
.mobile-highlight {
    position: relative;
    padding: 30px 34px;
    margin: 40px 0;
    background: #f4f1e9;
    border-left: 5px solid #C67326;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    line-height: 1.7;
    box-shadow: 0 20px 50px rgba(198,115,38,0.25);
}

/* QUOTE ICON */
.mobile-highlight .quote-icon {
    position: absolute;
    top: -18px;
    left: 18px;
    font-size: 64px;
    color: #C93A32;
    font-family: serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mobile-highlight {
        padding: 24px;
        font-size: 16px;
    }
}






/* ================= blog_logo.html SECTION Start ================= */
/* SECTION */
.logo-card-section {
    padding: 100px 20px;
    background: #ffffff; /* soft background */
}

/* WRAPPER GRID */
.logo-card-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-card {
    display: block;              /* because now it's an <a> */
    text-decoration: none;       /* remove underline */
    color: inherit;              /* keep normal text color */
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Optional hover effect for whole card */
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(198,115,38,0.25);
}


/* IMAGE WRAPPER */
.logo-img {
    width: 100%;
    height: 100%;
}

/* IMAGE */
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* 🔥 full cover */
    object-position: center;       /* center crop */
    transition: transform 0.4s ease;
}

/* Image zoom on hover */
.logo-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .logo-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .logo-card-wrapper {
        grid-template-columns: 1fr;
    }

    .logo-img img {
        height: 180px;
    }
}






/* ================= Poster.html SECTION Start ================= */
/* ================= Poster.html SECTION Start ================= */

/* SECTION */
.poster-card-section {
    padding: 100px 20px;
    background: #ffffff;
}

/* WRAPPER GRID */
.poster-card-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.poster-card {
    background: #f4f1e9;
    border-radius: 30px;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Hover Effect */
.poster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(201,58,50,0.35);
}

/* IMAGE WRAPPER */
.poster-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

/* POSTER IMAGE (Vertical Look) */
.poster-img img {
    width: 100%;
    height: 400px;          /* 🔥 Poster height bada */
    object-fit: cover;      /* Full card fill kare */
    transition: transform 0.4s ease;
}

/* Image zoom on hover */
.poster-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .poster-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .poster-card-wrapper {
        grid-template-columns: 1fr;
    }

    .poster-img img {
        height: 350px;
    }
}













/* .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  max-width: 350px;
  width: 90%;
}

.popup-content button {
  margin-top: 15px;
  padding: 8px 20px;
  cursor: pointer;
} */
