/* Base & Reset */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    background-color: #0B0B0F;

    color: #FFFFFF;
    overflow-x: hidden;
}

/* Complex Animated/Grainy Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(26, 42, 60, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 75% 30%, rgba(42, 28, 74, 0.6) 0%, transparent 45%),
        radial-gradient(circle at 25% 75%, rgba(20, 32, 70, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(48, 24, 48, 0.4) 0%, transparent 35%);
    z-index: -2;
     font-family: "Google Sans Flex", sans-serif;
}

.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter" x="-20%25" y="-20%25" width="140%25" height="140%25"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.06"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.custom-navbar {
    background-color: transparent;
    padding-top: 24px;
    padding-bottom: 24px;
}

.navbar-brand {
    padding: 0;
}

.brand-text {
    line-height: 1.1;
}

.brand-title {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #A1A1AA;
}

.navbar-nav .nav-item {
    margin: 0 12px;
}

.navbar-nav .nav-link {
    color: #D1D5DB !important;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 4px !important;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #FFFFFF !important;
}

.navbar-nav .nav-item.active .nav-link {
    color: #FFFFFF !important;
}

.navbar-nav .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 2px;
    background-color: #6366F1;
    border-radius: 2px;
}

.login-link {
    color: #D1D5DB;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-get-started {
    background: linear-gradient(90deg, #9F7AEA 0%, #6B46C1 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    box-shadow: 0 4px 14px rgba(107, 70, 193, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-get-started:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 90px);
    position: relative !important;
    padding-bottom: 10vh;
    background: #000 url(../images/mainBnnr.jpg) no-repeat center / cover;
    z-index: 0 !important;
}


.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-title-new {
    margin-top: 63px;
}

.text-gradient-ai {
    background: linear-gradient(90deg, #D8B4FE 0%, #C084FC 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

/* Prompt Box */
.prompt-container {
    background-color: #0E1015;
    border: 1px solid #1C1E26;
    border-radius: 16px;
    padding: 6px 16px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.prompt-top {
    padding: 16px 8px;
}

.prompt-input {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    outline: none;
}

.prompt-input::placeholder {
    color: #6B7280;
}

.prompt-divider {
    height: 1px;
    background-color: #1C1E26;
    margin: 0 4px;
}

.prompt-bottom {
    padding: 12px 4px 12px 8px;
}

.gap-2 {
    gap: 8px;
}

.btn-add-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #16181F;
    border: 1px solid #272A35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-add-circle:hover {
    background-color: #1F222C;
}

.tool-pill {
    background-color: #16181F;
    border: 1px solid #272A35;
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #9CA3AF;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.tool-pill:hover {
    background-color: #1F222C;
    color: #E5E7EB;
}

.pill-icon {
    margin-right: 6px;
    opacity: 0.7;
}

.pill-chevron {
    margin-left: 6px;
    opacity: 0.7;
}

.pill-plus {
    margin-left: 6px;
    font-weight: 400;
    opacity: 0.6;
}

.btn-submit-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5725ea;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: transform 0.2s;
}

.btn-submit-circle:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .prompt-bottom {
        flex-direction: column;
        align-items: stretch !important;
    }

    .btn-submit-circle {
        margin-top: 16px;
        align-self: flex-end;
    }
}


.make-design-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.custom-container {
    max-width: 1440px;
    padding-left: 40px;
    padding-right: 40px;
}

.section-header {
    margin-bottom: 50px;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #F3F4F6;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.filter-btn:hover {
    background-color: #E5E7EB;
}

.filter-btn:focus {
    outline: none;
}

.filter-btn.active {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.design-section {
    padding: 3rem 0;
}

/* Custom 5-column grid using CSS Grid to perfectly match the design */
.design-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.design-card {
    text-align: center;
    cursor: pointer;
}

.image-wrapper {
    overflow: hidden;
    position: relative;
    /* top: -101px; */
    /* z-index: 999; */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

.design-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
     font-family: "Google Sans Flex", sans-serif;
}

.design-card:hover .card-title {
    color: #3b82f6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .design-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .design-grid {
        grid-template-columns: 1fr;
    }
}






/* Typography */
.hero-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-description {
    color: #9BA1B0;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 35px;
    max-width: 95%;
}

/* Button */
.hero-btn {
    background-color: #495BFF;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(73, 91, 255, 0.2);
}

.hero-btn:hover {
    background-color: #3b4ce6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(73, 91, 255, 0.3);
}

.btn-icon {
    margin-left: 10px;
}

/* Right Panel Graphic Construction */
.graphic-panel {
    background-color: #1a2235;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 18px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.graphic-canvas {
    background-color: #000000;
    border-radius: 12px;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* Background Faint Grid Lines */
.connect-line {
    position: absolute;
    z-index: 0;
}

.v-line {
    top: 0;
    bottom: 0;
    left: 49%;
    border-left: 1.5px dashed rgba(255, 255, 255, 0.25);
}

.h-line {
    left: 0;
    right: 0;
    top: 49%;
    border-top: 1.5px dashed rgba(255, 255, 255, 0.25);
}

/* Card Positioning Overlay */
.box-group {
    position: absolute;
}

.group-tl {
    top: 6%;
    left: 6%;
    width: 42%;
    height: 42%;
}

.group-tr {
    top: 12%;
    right: 7%;
    width: 34%;
    height: 34%;
}

.group-bl {
    bottom: 12%;
    left: 10%;
    width: 34%;
    height: 34%;
}

.group-br {
    bottom: 6%;
    right: 6%;
    width: 42%;
    height: 42%;
}

/* The offset dashed shadow */
.dashed-box {
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border: 1.5px dashed rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    z-index: 1;
}

/* The solid foreground card */
.solid-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific Card Background Colors */
.card-tl {
    background-color: #FCF9EE;
}

.card-tr {
    background-color: #588D5E;
}

.card-bl {
    background-color: #BCE2E2;
}

.card-br {
    background-color: #233758;
}

/* Media Queries */
@media (max-width: 991px) {
    .ai-logo-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .graphic-panel {
        margin-top: 20px;
    }
}



/* Main Section Spacing */
.section-business-cards {
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
    position: relative;
}

/* Left Image Frame Styles */
.image-frame {
    background-color: #ffffff;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-frame:hover {
    transform: translateY(-5px);
}

.inner-mockup-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    min-height: 360px;
}

/* Right Content Styles */
.text-content {
    max-width: 580px;
}

.title {
    font-weight: 800;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: #5c5c5c;
    margin-bottom: 35px;
}

/* Custom Button Styles */
.btn-custom {
    background-color: #4862ff;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 98, 255, 0.2);
}

.btn-custom:hover {
    background-color: #3851eb;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(72, 98, 255, 0.35);
    transform: translateY(-2px);
}

.btn-custom .btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-custom:hover .btn-icon {
    transform: translateX(3px) scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-business-cards {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .title {
        font-size: 34px;
    }

    .image-frame {
        margin-bottom: 2rem;
    }
}


.dashboard-wrapper {
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.custom-container {
    max-width: 1440px;
    padding-left: 30px;
    padding-right: 30px;
}

.custom-row {
    margin-left: -12px;
    margin-right: -12px;
}

.col-custom-pad {
    padding-left: 12px;
    padding-right: 12px;
}

.b-card {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--card-border);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.b-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-title);
    letter-spacing: -0.3px;
}

.b-card-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 24px;
    font-weight: 400;
}

.b-card-link {
    font-size: 14px;
    color: var(--text-link);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.b-card-link:hover {
    color: var(--text-link);
    text-decoration: none;
    opacity: 0.8;
}

.b-card-link svg {
    margin-left: 8px;
}

/* Specific Layout for Wide Card (Facebook Covers) */
.card-wide {
    display: flex;
    flex-direction: row;
    height: 100%;
}

@media (max-width: 991.98px) {
    .card-wide {
        flex-direction: column;
    }
}

.card-content-side {
    padding: 32px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .card-content-side {
        width: 100%;
    }
}

.card-image-side {
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 32px;
}

@media (max-width: 991.98px) {
    .card-image-side {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 32px;
    }
}

.card-image-side img {
    border-top-left-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    display: block;
    box-shadow: -8px -8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .card-image-side img {
        border-radius: 8px;
        box-shadow: none;
    }
}

/* Specific Layout for Standard Cards */
.card-standard {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.card-standard .image-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    position: relative;
}

.card-standard .image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

:root {
    --bg-color: #070911;
    --card-bg: #141724;
    --card-border: #212638;
    --text-title: #ffffff;
    --text-body: #9ea2b5;
    --text-link: #425cf1;
    --card-radius: 12px;
}


.cta-wrapper {
    width: 100%;
    padding: 100px 0;
}

.cta-border-gradient {
    background: linear-gradient(90deg, #4458FF 0%, #B85BFF 100%);
    padding: 2px;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 960px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.cta-inner {
    background-color: #060814;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
    border-radius: 18px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.cta-heading {
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.cta-subheading {
    font-weight: 400;
    font-size: 16px;
    color: #9EA4B8;
    max-width: 620px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-start,
.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-start {
    background: linear-gradient(90deg, #6265FF 0%, #A055FF 100%);
    color: #ffffff;
}

.btn-start:hover {
    background: linear-gradient(90deg, #6F72FF 0%, #AB66FF 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 85, 255, 0.25);
}

.btn-view {
    background-color: #2A2D3C;
    color: #ffffff;
}

.btn-view:hover {
    background-color: #343749;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 32px;
    }

    .cta-subheading {
        font-size: 15px;
        padding: 0 15px;
    }

    .cta-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn-start,
    .btn-view {
        width: 100%;
    }

    .cta-inner {
        padding: 60px 20px;
    }
}


.site-footer {
    background-color: var(--bg-color);
    padding: 80px 0 40px;
    color: var(--text-muted);
    font-family: var(--primary-font);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    /* margin-bottom: 24px; */
}

.logo-text-wrapper {
    margin-left: 12px;
}

.logo-text-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-text-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

.footer-desc {
       font-size: 15px;
    line-height: 1.6;
    margin-top: 31px;
    font-weight: 400;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--social-bg);
    border: 1px solid var(--social-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--social-hover-bg);
    color: #fff;
    border-color: var(--text-muted);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
}

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

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-link {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--text-main);
    text-decoration: none;
}

.footer-bottom-wrapper {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.footer-bottom-nav {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-bottom-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-bottom-link:hover {
    color: var(--text-main);
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-bottom-nav {
        justify-content: center;
        margin-top: 24px;
    }

    .footer-heading {
        margin-top: 32px;
    }
}


:root {
    --bg-color: #0b1120;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --social-bg: #111827;
    --social-border: #1f293b;
    --social-hover-bg: #1e293b;
    --primary-font: 'Manrope', sans-serif;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Tabs Styling */
.tabs-container {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e5e7eb;
}

.tab-btn.active {
    background-color: #5831f0;
    /* Purple color like in image */
    color: white;
}

/* Grid Layout */
.design-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    /* 3 columns */
    grid-template-rows: 200px 200px;
    /* 2 rows */
    gap: 20px;
}

.grid-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Specific Positions */
.grid-item.tall {
    grid-row: span 2;
    /* Takes two rows height */
}

/* Text Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.overlay h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Hover Effect */
.grid-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .design-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .grid-item.tall {
        grid-row: span 1;
        height: 300px;
    }

    .grid-item.small {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .design-grid {
        grid-template-columns: 1fr;
    }
}


/* Section Background */
.ai-logo-section {

    /* Very dark blue/black */
    padding: 80px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
    position: relative;
    height: 1180px;
    background: url(../images/calibar-bg.png) no-repeat center / cover;
}

.container {
    /* max-width: 900px; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Text Content */
.content-box h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #DAE2FD;
     font-family: "Google Sans Flex", sans-serif;
}

.content-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    /* Muted white/gray */
    max-width: 700px;
    margin: 0 auto 30px auto;
     font-family: "Inter", sans-serif;
}

/* Button Styling */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #5831f0;
    /* Purple color */
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4625d1;
    transform: translateY(-2px);
}

/* Image and Glow Effect */
.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Central Purple Glow */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 49, 240, 0.4) 0%, rgba(88, 49, 240, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* The Tablet Image Tilt */
.image-wrapper {
    perspective: 1000px;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    /* Yeh property image ko tilted look deti hai agar simple image ho */
    transform: rotateX(15deg) rotateY(-10deg) rotateZ(5deg);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    z-index: 999;
    position: relative;
}

/* Subtle background circles (Optional) */

/* Responsive */
@media (max-width: 768px) {
    .content-box h1 {
        font-size: 32px;
    }

    .content-box p {
        font-size: 14px;
    }
}


/* logo-page */

/* Complex Background with Gradient and Noise */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(57, 85, 78, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(47, 43, 89, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(20, 20, 35, 1) 0%, transparent 60%),
        var(--bg-base);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.noise-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" opacity="0.4"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    mix-blend-mode: overlay;
    z-index: -1;
}

.hero-content {
    padding-top: 100px;
    /* Spacing from top */
    width: 100%;
}

/* Typography */
.text-container {
    margin-bottom: 45px;
}

.hero-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 3.75rem;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* Search Box */
.search-box-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--search-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    width: 100%;
    max-width: 520px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-icon {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);

    font-size: 1rem;
    font-weight: 400;
    outline: none;
}

.search-input::placeholder {
    color: #4A4A5A;
}

.search-btn {
    background-color: var(--btn-purple);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-btn:hover {
    background-color: #7149ff;
    transform: scale(1.05);
}

/* Carousel / Swiper */
.carousel-container {
    margin-top: 70px;
    padding-bottom: 50px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding: 0 20px;
    /* Padding to ensure slides are visible at edges */
}

.swiper-slide {
    width: 280px !important;
    /* Fixed width as seen in design */
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-5px);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-box-wrapper {
        max-width: 90%;
    }

    .swiper-slide {
        width: 240px !important;
        height: 320px;
    }
}


.sidebar-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}

.clear-all {
    font-size: 11px;
    color: #64748B;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.2s;
}

.clear-all:hover {
    color: #111827;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.custom-radio input {
    display: none;
}

.radio-mark {
    width: 16px;
    height: 16px;
    border: 1px solid #CBD5E1;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.custom-radio input:checked+.radio-mark {
    border-color: #5C27E4;
}

.custom-radio input:checked+.radio-mark::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #5C27E4;
    border-radius: 50%;
}

.custom-radio .label-text {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.custom-radio:hover .label-text {
    color: #111827;
}

.search-input {
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 13px;
    color: #111827;
    box-shadow: none !important;
    height: 42px;
}

.search-input::placeholder {
    color: #94A3B8;
}

.btn-search {
    background-color: #5C27E4;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    height: 42px;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color: #4C1D95;
    color: #FFFFFF;
}

.active-filters-bar {
    background-color: #F1F5F9;
    border-radius: 4px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 24px;
}

.active-filters-bar .label {
    font-size: 12px;
    color: #64748B;
    margin-right: 12px;
}

.filter-tag {
    font-size: 12px;
    color: #334155;
    font-weight: 600;
    margin-right: 16px;
    display: flex;
    align-items: center;
}

.filter-tag .close-icon {
    color: #94A3B8;
    margin-left: 6px;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
}

.filter-tag .close-icon:hover {
    color: #111827;
}

.results-count {
    font-size: 12px;
    color: #64748B;
}

.results-count strong {
    color: #111827;
    font-weight: 800;
}

.logo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.logo-card .heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.logo-card .heart-btn svg {
    width: 12px;
    height: 12px;
    stroke: #94A3B8;
    stroke-width: 2.5;
}

.logo-card .heart-btn:hover svg {
    stroke: #EF4444;
    fill: #EF4444;
}

.logo-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 24px;
}

.logo-card .card-title {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-card .card-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0;
}

.pagination-container {
    gap: 8px;
}

.page-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #5C27E4;
    color: #5C27E4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.page-arrow:hover {
    background: #5C27E4;
    color: #FFFFFF;
}

.page-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
}

.page-num:hover {
    color: #5C27E4;
}

.page-num.active {
    background: #5C27E4;
    color: #FFFFFF;
}

.mainsefeaf {
    background-color: #fff;
    padding-top: 3%;
    padding-bottom: 3%;
}

/* animation poge css */


.main-wrapper {
    position: relative;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(34, 56, 66, 0.5) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(31, 22, 53, 0.5) 0%, transparent 45%),
        linear-gradient(160deg, #131126 0%, #15122b 100%);
    z-index: 1;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* Header Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

/* Search Bar */
.search-box-wrapper {
    max-width: 520px;
    width: 100%;
}

.search-box {
    background-color: var(--input-bg);
    border-radius: 50px;
    height: 56px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0 6px;
}

.search-box input {
    font-size: 15px;
    font-weight: 400;
    color: #E2E8F0 !important;
}

.search-box input::placeholder {
    color: #555A6B;
}

.search-box input:focus {
    box-shadow: none;
}

.search-btn {
    background-color: var(--btn-purple);
    width: 44px;
    height: 44px;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.search-btn:hover {
    background-color: #6C48FF;
    transform: scale(1.05);
}

/* Swiper & Cards */
.cards-swiper {
    width: 100%;
    padding: 20px 0 60px 0;
    overflow: visible;
    /* To allow shadow bleeding */
}

.swiper-slide {
    width: 540px;
    height: 340px;
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    z-index: 10;
}

.custom-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Card 1 Details */
.card-orange {
    background-color: var(--card-orange);
}

.halftone-tr {
    position: absolute;
    right: -40px;
    top: -20px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#000 25%, transparent 25%);
    background-size: 14px 14px;
    opacity: 0.6;
    border-radius: 50%;
}

.halftone-bl {
    position: absolute;
    right: 20px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#000 25%, transparent 25%);
    background-size: 10px 10px;
    opacity: 0.3;
    border-radius: 50%;
}

.globe-svg {
    width: 320px;
    height: 320px;
    left: -80px;
    top: 10px;
    opacity: 0.4;
}

/* Card 2 Details */
.card-pink {
    background-color: var(--card-pink);
}

.word-were span {
    font-size: 48px;
}

.letter-bubble {
    color: transparent;
    font-size: 68px;
}

.beads-left {
    top: -20px;
    left: 50px;
    width: 60px;
    height: 140px;
    border-left: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 0 0 30px;
}

.beads-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: #34D399;
    border-radius: 8px;
    transform: rotate(15deg);
}

.beads-right {
    top: -20px;
    right: 70px;
    width: 60px;
    height: 100px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 0 30px 0;
}

.beads-right::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #60A5FA;
    border-radius: 50%;
}

.beads-right::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: #F472B6;
    border-radius: 50%;
}

/* Card 3 Details */
.card-blue {
    background-color: var(--card-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .swiper-slide {
        width: 85vw;
    }
}


.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.gallery-container {
    max-width: 1160px;
}

.gallery-row {
    margin-left: -8px;
    margin-right: -8px;
    margin-bottom: 0;
}

.gallery-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .row-1 .gallery-item {
        height: 180px;
    }

    .row-2 .gallery-item {
        height: 260px;
    }

    .row-3 .gallery-item {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .gallery-item {
        height: 220px;
    }
}

/* OVERLAYS */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

/* Item 1 */
.item-1-overlay {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.t1-t1 {
    font-family: monospace;
    font-size: 20px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.t1-t2 {
    font-size: 24px;
    font-weight: 900;
    color: #c3ff00;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.t1-t3 {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.t1-barcode {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    opacity: 0.9;
}

/* Item 2 */
.item-2-overlay {
    justify-content: flex-end;
    align-items: flex-end;
    padding: 30px 40px;
}

.t2-t1,
.t2-t2 {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    transform: skewX(-10deg);
    text-align: right;
    line-height: 0.95;
}

.t2-t1 {
    color: #c3ff00;
}

.t2-t2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

/* Item 3 */
.item-3-overlay {
    justify-content: center;
    padding-left: 40px;
}

.t3-topright {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    transform: rotate(15deg);
    width: 140px;
    line-height: 1.1;
}

.t3-t1 {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.t3-t2 {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.t3-btn {
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 16px;
    width: max-content;
}

/* Item 4 */
.item-4-overlay {
    align-items: center;
    justify-content: center;
}

.t4-circle {
    width: 140px;
    height: 140px;
    background: #ffd600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-6deg);
    box-shadow: -4px 4px 0 #000;
}

.t4-t1 {
    font-size: 32px;
    font-weight: 900;
    color: #ff0055;
    line-height: 0.9;
    text-align: center;
}

.t4-star {
    position: absolute;
    color: #ff0055;
    font-size: 24px;
}

.t4-star-1 {
    bottom: 20px;
    left: 20px;
}

.t4-star-2 {
    top: 20px;
    right: 30px;
}

/* Item 5 */
.item-5-overlay {
    align-items: center;
    justify-content: center;
}

.t5-pill {
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: -12px;
    z-index: 2;
    transform: rotate(-3deg);
}

.t5-box1,
.t5-box2 {
    background: #000;
    color: #fff;
    font-weight: 900;
    padding: 4px 20px;
}

.t5-box1 {
    font-size: 38px;
    transform: rotate(-4deg);
    margin-bottom: 4px;
    z-index: 1;
}

.t5-box2 {
    font-size: 46px;
    transform: rotate(2deg);
}

.t5-emoji {
    position: absolute;
}

.t5-peace {
    top: 40px;
    left: 60px;
    font-size: 45px;
    transform: rotate(-15deg);
}

.t5-smile {
    bottom: 40px;
    right: 60px;
    font-size: 55px;
}

/* Item 6 */
.item-6-overlay {
    justify-content: center;
    padding-left: 80px;
}

.t6-t1,
.t6-t2 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.t6-t1 {
    letter-spacing: 1px;
}

.t6-t3 {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
}

.t6-plus {
    font-weight: 400;
    margin-left: 4px;
}

.t6-username {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 2px;
}

/* Item 7 */
.item-7-overlay {
    align-items: center;
    justify-content: center;
}

.t7-t1,
.t7-t2 {
    font-family: 'Times New Roman', Times, serif;
    color: #333;
}

.t7-t1 {
    font-size: 32px;
    letter-spacing: 14px;
    margin-bottom: 4px;
}

.t7-t2 {
    font-size: 44px;
    letter-spacing: 8px;
}

.t7-star {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 28px;
    opacity: 0.8;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.btn-primary-custom {
    background-color: #6334FF;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #5220eb;
    transform: translateY(-2px);
}

.animation-second {
    padding-top: 3%;
    padding-bottom: 3%;
}


.how-it-works-section {
    position: relative;
    overflow: hidden;
}

.feature-card {
    /* background: #ffffff; */
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    background: url(../images/facebook-cover.png) no-repeat center / cover;
}

.feature-card.card-main {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-card.card-partial-top {
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
    opacity: 0.6;
}

.feature-card.card-partial-bottom {
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    margin-bottom: -100px;
    opacity: 0.6;
}

.card-title {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1a1a24;
}

.card-text {
    font-size: 13px;
    line-height: 1.6;
}

.feature-list i {
    font-size: 1.2rem;
}

.sticky-content {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .sticky-content {
        position: static;
        transform: none;
        margin-top: 3rem;
    }

    .feature-card.card-partial-bottom {
        margin-bottom: 0;
    }
}


.facebook-cover-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #0b0e15;
}

.cover-maker-box {
    position: relative;
    background-color: #0b0e15;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    border-radius: 20px;
    padding: 85px 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.cover-maker-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, #3753ff, #bd52ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
     font-family: "Google Sans Flex", sans-serif;
}

.subtitle {
    font-size: 16px;
    color: #9098a9;
    margin-bottom: 50px;
    font-weight: 400;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background-color: #282c3c;
    border-radius: 12px;
    padding: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 12px 24px;
    outline: none;

    font-weight: 600;
}

.custom-input::placeholder {
    color: #666f8e;
    font-weight: 600;
}

.custom-btn {
    background: linear-gradient(90deg, #6062f6, #a65dff);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;

    white-space: nowrap;
}

.custom-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .cover-maker-box {
        padding: 60px 20px;
    }

    .input-wrapper {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .custom-input {
        background-color: #282c3c;
        border-radius: 12px;
        width: 100%;
        margin-bottom: 16px;
        padding: 16px 20px;
    }

    .custom-btn {
        width: 100%;
        padding: 16px 28px;
    }
}


.features-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.subtitle {
    color: #5628F5;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    color: #1A1C24;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.feature-block {
    margin-bottom: 3.5rem;
    padding-right: 15px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #5628F5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.feature-title {
    color: #1A1C24;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7A7C87;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .feature-block {
        padding-right: 40px;
    }

    .container {
        max-width: 1140px;
    }
}

.white-bg {
    background-color: #fff;
}



.dark-saas-section {

    background-color: #0d1017;
    color: #9ba1b9;
    overflow-x: hidden;
}

.section-label {
    color: #5d67d8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 0;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
    color: #9ba1b9;
    margin-bottom: 0;
}

/* Image Composition Base Styles */
.img-composition {
    position: relative;
    width: 100%;
    z-index: 1;
    perspective: 1000px;
}

.img-composition img {
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

/* Composition 1 Specifics */
.comp-1 .img-back {
    width: 85%;
    margin-left: 15%;
    display: block;
}

.comp-1 .img-middle {
    position: absolute;
    top: 25%;
    left: 8%;
    width: 55%;
    transform: rotate(-3deg);
    z-index: 2;
}

.comp-1 .img-front {
    position: absolute;
    bottom: -8%;
    left: -5%;
    width: 35%;
    transform: rotate(-7deg);
    z-index: 3;
}

/* Composition 2 Specifics */
.comp-2 .img-back {
    width: 85%;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

.comp-2 .img-front {
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 70%;
    transform: rotate(-3deg);
    z-index: 2;
}

/* Composition 3 Specifics */
.comp-3 .img-back {
    width: 85%;
    margin-left: 15%;
    display: block;
}

.comp-3 .img-front {
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 65%;
    transform: rotate(-4deg);
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-row {
        text-align: center;
    }

    .img-composition {
        margin-bottom: 3rem;
    }

    .comp-1 .img-front {
        bottom: -15%;
    }

    .feature-title {
        font-size: 1.75rem;
    }
}


.facebook-cover-features {
    padding-top: 80px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 48px;
}

.feature-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: #8f7aff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #161616;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: #737373;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-image-wrapper {
    margin-bottom: 40px;
}

.hero-image {
    border-radius: 16px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.features-cards-row {
    margin-top: 0;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: #161616;
    margin-bottom: 16px;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.card-text {
    font-size: 13.5px;
    color: #737373;
    line-height: 1.65;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .facebook-cover-features {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-image-wrapper {
        margin-bottom: 30px;
    }
}


.testimonials-section {
    padding: 100px 0;
    background-color: #FAFAFA;

    overflow: hidden;
}

.header-area {
    margin-bottom: 60px;
}

.testimonials-subtitle {
    color: #7C3AED;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.testimonials-title {
    color: #111827;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 55px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.stars-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.stars-container svg {
    margin: 0 3px;
}

.testimonial-text {
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 35px;
}

.testimonial-author {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 0;
    margin-top: auto;
}

@media (max-width: 767.98px) {
    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 40px 25px;
    }
}


.how-to-section {
    padding: 110px 0;
    background-color: #ffffff;
}

.subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #5533ff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 75px;
     font-family: "Inter", sans-serif;
}

.steps-row {
    margin-top: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #5533ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
}

.step-col:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(85, 51, 255, 0.25);
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.4;
}

.step-desc {
    font-size: 14.5px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    padding-right: 15px;
}

@media (max-width: 991.98px) {
    .title {
        font-size: 32px;
    }

    .how-to-section {
        padding: 80px 0;
    }

    .description {
        margin-bottom: 50px;
    }

    .step-desc {
        padding-right: 0;
    }
}

.facebook-covers-section {
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-weight: 800;
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-weight: 400;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 1050px;
    margin: 0 auto;
}

.btn-category {
    background-color: #4459f2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-category:hover {
    background-color: #384ce0;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 89, 242, 0.3);
}



#contactsection1 {

    padding: 80px 0;
    background-color: #ffffff;
}

#contactsection1 .contact-form-card {
    background-color: #FAFAFA;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #F5F5F5;
}

#contactsection1 .form-title {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 8px;
    color: #111111;
}

#contactsection1 .form-subtitle {
    font-size: 13px;
    color: #666666;
    margin-bottom: 25px;
}

#contactsection1 label {
    font-weight: 700;
    font-size: 12px;
    color: #111111;
    margin-bottom: 8px;
}

#contactsection1 .form-control {
    background-color: #ffffff;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #333333;
    box-shadow: none;
    height: auto;
}

#contactsection1 .form-control::placeholder {
    color: #AAAAAA;
}

#contactsection1 .form-control:focus {
    border-color: #9b72ff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(155, 114, 255, 0.25);
}

#contactsection1 .form-group {
    margin-bottom: 20px;
}

#contactsection1 .btn-submit {
    background: linear-gradient(90deg, #9b72ff 0%, #6032ff 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    padding: 14px;
    font-size: 14px;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

#contactsection1 .btn-submit:hover {
    opacity: 0.9;
    color: #ffffff;
}

#contactsection1 .sub-heading {
    font-size: 10px;
    font-weight: 800;
    color: #7952ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

#contactsection1 .main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
}

#contactsection1 .description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

#contactsection1 .info-list {
    margin-bottom: 40px;
}

#contactsection1 .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

#contactsection1 .icon-box {
    width: 40px;
    height: 40px;
    background-color: #f0eaff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7952ff;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

#contactsection1 .text-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 4px;
    margin-top: 2px;
}

#contactsection1 .text-box p {
    font-size: 13px;
    color: #777777;
    margin-bottom: 0;
}

#contactsection1 .office-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

#contactsection1 .office-image-card img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 220px;
}

#contactsection1 .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
}

#contactsection1 .image-overlay h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
}

#contactsection1 .image-overlay p {
    font-size: 12px;
    margin-bottom: 0;
    opacity: 0.9;
    color: #e0e0e0;
}

#contactmap1 {
    display: none;
}

.contactsection1 {
    padding: 80px 20px;
    background-color: #ffffff;

}

.contactmap1 {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: #2b2d35;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Simulating the complex map graphics from the design */
.contactmap1-roads {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image:
        linear-gradient(35deg, transparent 48%, rgba(168, 85, 247, 0.25) 49%, rgba(168, 85, 247, 0.25) 51%, transparent 52%),
        linear-gradient(-55deg, transparent 48%, rgba(168, 85, 247, 0.25) 49%, rgba(168, 85, 247, 0.25) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
}

.contactmap1-roads::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 50%, #2b2d35 30%, transparent 80%);
    z-index: 1;
}

.contactmap1-park1,
.contactmap1-park2,
.contactmap1-park3 {
    position: absolute;
    background-color: #5b8c9a;
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
}

.contactmap1-park1 {
    width: 70px;
    height: 45px;
    top: 25%;
    left: 38%;
    transform: rotate(35deg);
    border-radius: 4px;
}

.contactmap1-park2 {
    width: 90px;
    height: 55px;
    top: 70%;
    left: 28%;
    transform: rotate(-25deg);
    border-radius: 8px 20px 4px 10px;
}

.contactmap1-park3 {
    width: 50px;
    height: 35px;
    top: 55%;
    left: 15%;
    transform: rotate(15deg);
    border-radius: 6px;
}

.map-label {
    position: absolute;
    color: #a855f7;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.8;

}

.label-market {
    top: 59%;
    left: 56%;
    transform: rotate(35deg);
}

.label-mission {
    top: 75%;
    left: 26%;
    transform: rotate(-55deg);
}

.contactmap1-card {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 290px;
    background-color: #0c0d14;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.contactmap1-card h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.contactmap1-card p {
    color: #8c8f9b;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}

.contactmap1-card span {
    display: block;
    color: #4a40d4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Courier New', Courier, monospace;
}

.contactmap1-pin {
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 60px;
    z-index: 10;
    filter: drop-shadow(0 10px 15px rgba(168, 85, 247, 0.3));
}

.contactmap1-title {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

.contactmap1-title h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.contactmap1-title p {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .contactmap1-title {
        right: 30px;
    }

    .contactmap1-card {
        left: 20px;
        width: 260px;
    }
}

@media (max-width: 768px) {
    .contactmap1 {
        height: 550px;
    }

    .contactmap1-card {
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .contactmap1-pin {
        top: 60%;
        left: 50%;
    }

    .contactmap1-title {
        top: auto;
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
        text-align: center;
    }
}


/* innerbaner */
.inner-banner {
    position: relative;
    background: url(../images/innerbaner1.png)center/cover no-repeat;
    padding: 200px 0;
    overflow: hidden;
    display: flex;
    align-items: center;

}






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

.badge-custom {
    background-color: #5b31ff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 15px rgba(91, 49, 255, 0.4);
}

.inner-banner .main-title {
    font-size: 54px;
    font-weight: 800;
    color: #DAE2FD;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.main-title span {
    color: #cca3ff;
}

.desc-text {
    font-size: 15px;
    color: #a49db5;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }

    .inner-banner {
        padding: 100px 0;
    }

    .desc-text br {
        display: none;
    }
}

/* innerbaner */


/* Section 1 Styles */
#aboutpage1 {
    padding: 100px 0;
    background-color: #FFFFFF;
}

/* Section 2 Styles */
#aboutmeet1 {
    padding: 100px 0;
    background-color: #FAFAFA;
}

/* Typography */
.section-overline {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #635BFF;
    display: block;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 20px;
}

.section-text:last-of-type {
    margin-bottom: 0;
}

/* List Styles */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 35px;
    margin-bottom: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
     font-family: "Inter", sans-serif;
    margin-bottom: 18px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li svg {
    margin-right: 14px;
    flex-shrink: 0;
}

/* Image Styles */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Desktop Spacing Adjustments */
@media (min-width: 992px) {
    #aboutpage1 .text-col {
        padding-right: 50px;
    }

    #aboutmeet1 .text-col-right {
        padding-left: 50px;
    }
}

#aboutpage1 {
    padding-top: 80px;
    padding-bottom: 30px
}

.kicker {
    color: #4f46e5;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px
}

.main-title-aboutp {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px
}

.subtitle-aboutp {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400
}

#aboutmeet1 {
    padding-bottom: 80px
}

.team-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05)
}

.team-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 1/1;
    margin-bottom: 16px
}

.team-info {
    padding: 0 8px 8px 8px
}

.team-name {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px
}

.team-role {
    font-size: 11px;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0
}


/* innerbaner2 */

.innerbanner2 {
    position: relative;
    background-color: #0b0914;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(46, 85, 75, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(76, 42, 133, 0.55) 0%, transparent 45%),
        linear-gradient(180deg, rgba(11, 9, 20, 0) 0%, #151125 100%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}

.innerbanner2-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 0;
}

.innerbanner2-z-index-1 {
    z-index: 1;
}

.innerbanner2-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.innerbanner2-subtitle {
    color: #938ca8;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.innerbanner2-input-wrapper {
    background-color: #0b0914;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 6px;
    max-width: 440px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.innerbanner2-input-wrapper:focus-within {
    border-color: rgba(113, 51, 245, 0.5);
    box-shadow: 0 8px 30px rgba(113, 51, 245, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.innerbanner2-icon-sparkle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
}

.innerbanner2-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    padding-left: 12px;
    font-size: 1rem;
    font-weight: 400;
    height: 40px;
}

.innerbanner2-input::placeholder {
    color: #4b4561;
}

.innerbanner2-submit-btn {
    background: linear-gradient(135deg, #7c3ff5 0%, #5621d9 100%);
    border: none;
    min-width: 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.innerbanner2-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(124, 63, 245, 0.6);
}

.innerbanner2-swiper {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.innerbanner2 .swiper-slide {
    width: auto;
}

.innerbanner2 .swiper-slide img {
    border-radius: 20px;
    width: 240px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.innerbanner2 .swiper-slide:hover img {
    transform: translateY(-10px);
}

@media (max-width: 991px) {
    .innerbanner2-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .innerbanner2 {
        padding-top: 100px;
    }

    .innerbanner2-title {
        font-size: 2.2rem;
    }

    .innerbanner2-subtitle {
        font-size: 1rem;
    }

    .innerbanner2 .swiper-slide img {
        width: 180px;
        height: 240px;
    }
}

/* innerbaner2 */


/* bakerysec */

.bakery-section1 {
    background-color: #ffffff;
    color: #333;
    padding: 80px 0;
}

.bakery-section1 .filter-input {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    font-size: 13px;
    padding: 10px 18px;
    height: 44px;
    box-shadow: none;
    font-weight: 500;
    color: #333;
    transition: border-color 0.3s ease;
}

.bakery-section1 .filter-input:focus {
    border-color: #5b2ef6;
    box-shadow: none;
    outline: none;
}

.bakery-section1 .filter-input::placeholder {
    color: #a8a8a8;
    font-weight: 400;
}

.bakery-section1 .btn-search {
    background-color: #5b2ef6;
    color: #ffffff;
    height: 44px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.bakery-section1 .btn-search:hover {
    background-color: #4820d4;
    color: #ffffff;
}

.bakery-section1 .btn-search:active {
    transform: scale(0.98);
}

.bakery-section1 .b-card {
    border-radius: 8px;
    padding: 35px 30px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.bakery-section1 .b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.bakery-section1 .heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #c9c9c9;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bakery-section1 .heart-icon:hover {
    color: #ff4757;
    transform: scale(1.1);
}

.bakery-section1 .b-card .name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.bakery-section1 .b-card .role {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
}

.bakery-section1 .contact-list {
    margin-bottom: 0;
}

.bakery-section1 .contact-list li {
    font-size: 11px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.bakery-section1 .contact-list li:last-child {
    margin-bottom: 0;
}

.bakery-section1 .contact-list li i {
    width: 14px;
    text-align: center;
    margin-right: 8px;
    font-size: 11px;
}

.bakery-section1 .right-col {
    width: 80px;
    flex-shrink: 0;
}

.bakery-section1 .logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

.bakery-section1 .logo-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bakery-section1 .logo-slogan {
    font-size: 6px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Card 1 */
.bakery-section1 .card-1 {
    background-color: #fbeae9;
    color: #a13682;
}

.bakery-section1 .card-1 .role {
    color: #c07ba7;
}

.bakery-section1 .card-1 i {
    color: #a13682;
}

/* Card 2 */
.bakery-section1 .card-2 {
    background-color: #eef5fd;
    color: #173b64;
}

.bakery-section1 .card-2 .role {
    color: #5d7a96;
}

.bakery-section1 .card-2 i {
    color: #173b64;
}

/* Card 3 */
.bakery-section1 .card-3 {
    background-color: #fcf4e8;
    color: #000000;
}

.bakery-section1 .card-3 .role {
    color: #525252;
}

.bakery-section1 .card-3 i {
    color: #000000;
}

/* Card 4 */
.bakery-section1 .card-4 {
    background-color: #f2e0c6;
    color: #9a4228;
}

.bakery-section1 .card-4 .role {
    color: #b77663;
}

.bakery-section1 .card-4 i {
    color: #9a4228;
}

/* Card 5 */
.bakery-section1 .card-5 {
    background-color: #f3f3f3;
    color: #a5786a;
}

.bakery-section1 .card-5 .role {
    color: #bf9e93;
}

.bakery-section1 .card-5 i {
    color: #a5786a;
}

/* Card 6 */
.bakery-section1 .card-6 {
    background-color: #fff7ef;
    color: #441416;
}

.bakery-section1 .card-6 .role {
    color: #724c4d;
}

.bakery-section1 .card-6 i {
    color: #441416;
}

/* Pagination */
.bakery-section1 .pagination-wrapper {
    gap: 20px;
}

.bakery-section1 .page-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #5b2ef6;
    background-color: transparent;
    color: #5b2ef6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bakery-section1 .page-nav:hover {
    background-color: #5b2ef6;
    color: #ffffff;
}

.bakery-section1 .page-numbers {
    gap: 15px;
    align-items: center;
}

.bakery-section1 .page-numbers span {
    font-size: 13px;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bakery-section1 .page-numbers span:hover {
    color: #5b2ef6;
}

.bakery-section1 .page-numbers span.active {
    background-color: #5b2ef6;
    color: #ffffff;
}

.bakery-section1 .page-numbers span.active:hover {
    color: #ffffff;
}

/* bakerysec */


#email-sign {
    padding: 80px 0 100px;
    background-color: #ffffff;
    overflow: hidden;
}

.email-sign-header {
    margin-bottom: 50px;
}

.email-sign-subtitle {
    color: #532DF8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.email-sign-title {
    color: #111111;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.email-sign-desc {
    color: #666666;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 780px;
    margin-bottom: 0;
}

.email-sign-grid {
    margin-bottom: 20px;
}

.email-sign-row {
    margin-left: -10px;
    margin-right: -10px;
}

.email-sign-col {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.email-sign-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-sign-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.email-sign-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.email-sign-btn-wrap {
    margin-top: 30px;
}

.email-sign-btn {
    background-color: #532DF8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.email-sign-btn:hover {
    background-color: #401fd1;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    #email-sign {
        padding: 60px 0;
    }

    .email-sign-title {
        font-size: 32px;
    }

    .email-sign-desc {
        font-size: 14px;
    }
}




#beyond-facebook-covers {
    background-color: #060b14;
    overflow: hidden;
    /* Prevents horizontal scroll from rotated images */
}

.section-subtitle {
    color: #4b5590;
    /* Muted indigo */
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.feature-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.feature-text {
    color: #8c97ad;
    /* Soft grey-blue */
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.feature-block {
    margin-bottom: 150px;
}

.feature-block:last-child {
    margin-bottom: 50px;
}

/* Image Composition Styles */
.image-composition {
    position: relative;
    width: 100%;
    padding: 20px 0;
    /* Padding to accommodate floating shadows and rotations */
}

.image-composition img {
    border-radius: 12px;
}

.main-img {
    width: 85%;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-img {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 25px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Specific Image Positioning */

/* Block 1 */
#feature-1-img-comp .main-img {
    margin-left: auto;
    /* Push to right */
    width: 80%;
}

#feature-1-img-comp .floating-img {
    width: 85%;
    bottom: -15%;
    left: -10%;
    transform: rotate(-8deg);
}

/* Block 2 */
#feature-2-img-comp .main-img {
    margin-left: auto;
    /* Push to right */
    width: 85%;
}

#feature-2-img-comp .floating-img {
    width: 75%;
    bottom: -20%;
    left: -15%;
    transform: rotate(-4deg);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Block 3 */
#feature-3-img-comp .main-img {
    margin-left: 15%;
    /* Push to center-right */
    width: 80%;
}

#feature-3-img-comp .floating-img {
    width: 90%;
    bottom: -20%;
    left: -10%;
    transform: rotate(-6deg);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-block {
        margin-bottom: 100px;
    }

    .feature-title {
        font-size: 1.75rem;
        margin-top: 40px;
    }

    .image-composition {
        padding: 40px 15px;
        display: flex;
        justify-content: center;
    }

    #feature-1-img-comp .main-img,
    #feature-2-img-comp .main-img,
    #feature-3-img-comp .main-img {
        width: 90%;
        margin: 0 auto;
    }

    #feature-1-img-comp .floating-img,
    #feature-2-img-comp .floating-img,
    #feature-3-img-comp .floating-img {
        width: 85%;
        left: 5%;
        bottom: -5%;
    }
}

h2.title.get-title {
    color: #DAE2FD;
    font-size: 48px;
}

.cover-maker-box .subtitle {
    color: #C5C5D8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}


h2.title.get-title {
    color: #DAE2FD;
    font-size: 48px;
}

.cover-maker-box .subtitle {
    color: #C5C5D8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

section.features-section.white-bg.py-5.my-5 .feature-title {
    font-size: 1.25rem;
    color: #000;
}

section#beyond-facebook-covers .feature-title {
    font-size: 48px;
    font-weight: bold;
    color: #DAE2FD !important;
}

section#beyond-facebook-covers .section-title {
    color: #DAE2FD !important;
    font-size: 48px;
}


/* Custom Section Styles */
.dt-template-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.dt-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dt-header {
    margin-bottom: 50px;
}

.dt-top-tag {
    color: #6c48ff; /* Purple color from image */
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.dt-main-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dt-sub-text {
    font-size: 16px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.dt-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 25px;
    margin-bottom: 50px;
}

.dt-template-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.dt-template-card:hover {
    transform: translateY(-5px);
}

.dt-template-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Button Styling */
.dt-footer-action {
    margin-top: 30px;
}

.dt-primary-btn {
    background-color: #6133f5; /* Primary Purple Button */
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
}

.dt-primary-btn:hover {
    background-color: #4a24d1;
    color: white;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .dt-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dt-cards-grid {
        grid-template-columns: 1fr;
    }
    .dt-main-heading {
        font-size: 30px;
    }
}


/* Container and Section */
.md-design-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif; /* Ya jo bhi aap use kar rahe ho */
}

.md-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading Style */
.md-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
     font-family: "Google Sans Flex", sans-serif;
}

/* Tabs Styling */
.md-tabs-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.md-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background-color: #f3f4f6;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.md-tab-btn.active {
    background-color: #6133f5; /* Image wala purple color */
    color: #fff;
}

.md-tab-btn:hover:not(.active) {
    background-color: #e5e7eb;
}

/* Grid Layout Logic */
.md-design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Columns */
    gap: 20px;
    height: 550px; /* Fixed height for the section */
}

.md-center-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card General Styling */
.md-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background-color: #0d1117; /* Dark fallback */
}

.md-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    display: block;
}
.md-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000078;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.md-card:hover img {
    transform: scale(1.05);
}

/* Height Management */
.md-tall {
    height: 100%;
}

.md-short {
    height: calc(50% - 10px); /* Center column cards */
}

/* Overlay and Text */
.md-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.md-card-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .md-design-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .md-tall, .md-short {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .md-design-grid {
        grid-template-columns: 1fr;
    }
    .md-main-title {
        font-size: 32px;
    }
}


/* Container & Layout */
.bv-main-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.bv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bv-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Columns */
.bv-col-left { flex: 1.2; display: flex; flex-direction: column; gap: 40px; }
.bv-col-right { flex: 0.8; position: sticky; top: 100px; }

/* Cards Styling */
.bv-card {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.bv-card-title { font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.bv-card-desc { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 30px; }

/* Browser Mockup CSS Art */
.bv-browser-mockup {
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #fff;
}

.bv-browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ddd;
}

.bv-dots { display: flex; gap: 6px; }
.bv-dots span { width: 8px; height: 8px; background: #ccc; border-radius: 50%; }
.bv-url-bar {
    background: #fff;
    flex: 1;
    border-radius: 4px;
    font-size: 11px;
    padding: 4px 10px;
    color: #999;
}

.bv-browser-body { padding: 15px; background: #000; }

.bv-banner-area {
    height: 140px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.yt-gradient { background: linear-gradient(135deg, #6133f5, #a389f9); }
.li-gradient { background: linear-gradient(135deg, #1a2a44, #3a5a8a); }

.bv-banner-content h4 { margin: 0; font-size: 22px; font-weight: 800; }
.bv-banner-content span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }

.bv-ui-placeholders { margin-top: 15px; display: flex; flex-direction: column; gap: 10px; }
.bv-ph-row { display: flex; gap: 10px; }
.bv-ph-item { background: #333; height: 12px; border-radius: 4px; }
.bv-ph-item.long { flex: 2; }
.bv-ph-item.mid { flex: 1.5; }
.bv-ph-item.square { width: 60px; height: 60px; }
.bv-ph-item.circle { width: 50px; height: 50px; border-radius: 50%; margin-top: -30px; border: 3px solid #000; }
.bv-ph-item.rect { flex: 1; height: 80px; }

/* Buttons */
.bv-card-btn {
    display: inline-block;
    background: #6133f5;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.bv-card-btn:hover { background: #4a24d1; }

/* Right Column Typography */
.bv-label { color: #8a63ff; font-weight: 700; font-size: 13px; text-transform: uppercase; display: block; margin-bottom: 15px; }
.bv-main-heading { font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.bv-main-text { color: #555; font-size: 17px; line-height: 1.6; margin-bottom: 35px; }

.bv-feature-list { list-style: none; padding: 0; }
.bv-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #444;
}

.bv-check-icon {
    width: 22px;
    height: 22px;
    background: #f0ebff;
    color: #6133f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-style: normal;
    border: 1px solid #6133f5;
}

/* Responsive */
@media (max-width: 992px) {
    .bv-row { flex-direction: column-reverse; }
    .bv-col-right { position: static; margin-bottom: 40px; }
    .bv-main-heading { font-size: 32px; }
}

/* Container Logic */
.custom-dd-container {
    position: relative;
    list-style: none;
    display: inline-block;
}

/* More Button Style */
.custom-dd-trigger {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

/* Arrow Icon */
.arrow-down {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 8px;
    transform: rotate(45deg);
}

/* Dropdown Menu - Main Fix */
.custom-dd-menu {
    position: absolute;
    top: 100%;
    right: 0; /* Isse right side se screen ke bahar nahi jayega */
    width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-top: 12px;
    padding: 10px 0;
    z-index: 9999;
    max-height: 380px; /* Height control */
    overflow-y: auto;
    display: none; /* Initially hide */
}

/* Show Menu */
.custom-dd-menu.show {
    display: block;
    animation: ddFadeIn 0.2s ease;
}

@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Items Style */
.custom-dd-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.custom-dd-menu li a:hover {
    background: #f8f6ff;
    color: #6133f5;
}

.dd-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* --- CUSTOM SCROLLBAR (Aapka Unique Style) --- */
.custom-dd-menu::-webkit-scrollbar {
    width: 6px;
}
.custom-dd-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.custom-dd-menu::-webkit-scrollbar-thumb {
    background: #6133f5;
    border-radius: 10px;
}
.custom-dd-menu::-webkit-scrollbar-thumb:hover {
    background: #4a24d1;
}