@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* or use your brand color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #e0e0e0; /* light color */
  border-top: 6px solid #4b4fd6; /* accent color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

:root {
    --gradient-main: linear-gradient(135deg, #c7dc67, #3e419b);
    --hero-bg: #1e1f3f;
    --form-bg: #f5f5f5;
    --about-bg: #ffffff;
    --campaign-bg: #f0f2ff;
    --campaign-digital-bg: #e0e0ff;
    --footer-bg: #2b267f;
    --sub-footer-bg: #1a1860;
}

.hero-banner {
    background: #3e419b;
    position: relative;
    color: white;
}

.main-form {
    background: var(--form-bg);
    padding: 2rem;
    /* border-radius: 12px; */
}

.about-us {
    background: #ffffff;
}

.campaign-section {
    background: var(--campaign-bg);
}

.campaign-section-digital {
    /* background: var(--campaign-digital-bg); */
    background: linear-gradient(135deg, #f8f9ff73, #eef1ff4f);
}

.footer-main {
    background: var(--footer-bg);
    color: white;
}

.sub-footer {
    background: var(--sub-footer-bg);
    color: white;
}

body {
    font-family: "Roboto Condensed", sans-serif !important;
    font-size: 17px;
    line-height: 29px;
        overflow-x: hidden; /* disables all scrolling */

}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: #3e419b00 !important;
    /* Set your desired solid color here */
    padding: 20px 0;
    /* Slightly tighter padding for a cleaner look */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
    /* Adds depth since it's now solid */
}

/* 2. Sticky Background Change (via JS) */
.navbar.scrolled {
    background-color: #3e419b !important;
    padding: 20px 0;
    /* Shrinks slightly on scroll */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Styling for the green dot circle */
.navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.navbar-nav .nav-link::before {
    content: '';
    display: inline-block;
    width: 8px;
    /* Diameter of the dot */
    height: 8px;
    /* Diameter of the dot */
    background-color: #c7dc67;
    /* The green color from your image */
    border-radius: 50%;
    /* Makes it a circle */
    margin-right: 8px;
    /* Space between text and dot */
    vertical-align: middle;
}

/* Optional: Remove the dot from the very last menu item (Contact) */
.navbar-nav .nav-item:last-child .nav-link::after {
    display: none;
}

/* Adjusting the nav-link for better alignment with the dot */
.nav-link {
    display: flex !important;
    align-items: center;
    padding-right: 0 !important;
    /* Reset padding to control spacing via margin-left of dot */
}

/* 3. Creative Center Logo Layout */
.navbar-brand {
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* margin-right: 0; */
    /* color: #ffffff; */
}

.hero-banner {
    /* margin-top: 75px; */
    /* Adjust this based on your header height */
    padding: 110px 0px 80px;
}

/* 4. Responsive Image */
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 5px solid #fff;
}

/* 5. Navigation Link Styles */
.nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: "Noto Sans", sans-serif !important;
}

.about-us {
    padding: 80px 0px;
}

/* Modern Heading Style */
.creative-heading {
    color: #3e419b;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: "Noto Sans", sans-serif !important;
}

.creative-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3e419b, #3e419b);
    margin-top: 10px;
    border-radius: 2px;
    margin: auto;
    margin-top: 10px;
}

/* Feature List Styling */
.feature-item {
    margin-bottom: 10px;
}

.feature-item:hover {
    /* transform: translateX(10px); */
}

/* Flaticon Wrapper */
.flaticon-wrap {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3e419b;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.flaticon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Boxed Entry Process - Professional Look */
.boxed-process {
    background: #3e419b;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 80px;
}

.process-title-modern {
    text-align: center;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.process-title-modern::before,
.process-title-modern::after {
    content: "[";
    font-size: 2rem;
    color: #3e419b;
    margin: 0 20px;
    font-weight: 300;
}

.process-title-modern::after {
    content: "]";
}

.image-container-modern,
.image-container-modern-1 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-container-modern img,
.image-container-modern-1 img {
    transition: scale 0.5s;
}

.image-container-modern:hover img {
    /* scale: 1.05; */
}

.entry-content-modern p {
    color: #2f3d45;
}

.entry-content-modern p:last-child {
    font-weight: 600;
    color: #3e419b;
    border-left: 3px solid #3e419b !important;
}

.feature-item span {
    font-weight: 500;
    /* color: #3e419b; */
}

.title-container {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0px 0 0px;
    /* Space above and below the title */
    font-family: "Noto Sans", sans-serif !important;
}

/* Creative Animated Background */
.boxed-process {
    position: relative;
    padding: 80px 40px;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    /* Subtle mesh gradient effect */
    background-image:
        radial-gradient(at 0% 0%, rgba(78, 64, 155, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(78, 64, 155, 0.08) 0px, transparent 50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

/* Floating Abstract Circle Decoration */
.boxed-process::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgb(78 64 155 / 5%), rgb(0 212 255 / 0%));
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: floating 8s infinite ease-in-out;
}

/* Image Polish */
.image-container-modern,
.image-container-modern-1 {
    position: relative;
    z-index: 1;
    /* border-radius: 20px !important; */
}

.image-container-modern img,
.image-container-modern-1 img {
    border-radius: 20px !important;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 450px;
    object-fit: cover;
}

.image-container-modern:hover img,
.image-container-modern-1:hover img {
    transform: scale(1.03);
}

/* Title Styling */
.process-title-modern {
    color: #4e409b;
    margin-bottom: 40px;
    position: relative;
}

/* Animation Keyframes */
@keyframes floating {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 30px) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Creating the lines */
.title-container::before,
.title-container::after {
    content: '';
    flex: 1;
    border-bottom: 3px solid #4e409b1c;
    /* Soft purple/blue line color */
    top: -17px;
    position: relative;
}


:root {
    --lime: #c7dc67;
    --purple: #3e419b;
    --purple-dark: #3e419b;
    --white: #ffffff;
}
.navbar-brand img {
    width: 210px;
}
/* =============================
   PAGE BACKGROUND (IMAGE STYLE)
============================= */
.main-form {
    /* min-height: 100vh; */
    background: #c7dc67;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

/* =============================
   CARD
============================= */
.glass-card {
    background: linear-gradient(180deg, #3e419b, #3e419b);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    /* text-align: center; */
    /* box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    inset 0 0 0 2px rgba(217,255,120,0.25); */
}

/* =============================
   HEADINGS
============================= */
.main-form .glass-card h1 {
    color: var(--lime);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-form .glass-card p {
    color: rgb(255 255 255);
    /* font-size: 0.95rem; */
}

/* =============================
   OPTION TOGGLE
============================= */
.option-toggle {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 60px;
    padding: 6px;
    display: flex;
    gap: 6px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.option-toggle button {
    flex: 1;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--lime);
    padding: 0.75rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.option-toggle button.active {
    background: var(--lime);
    color: var(--purple);
    /* box-shadow: 0 10px 30px rgba(217,255,120,0.6); */
}

/* =============================
   DIVIDER
============================= */
.divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    margin: 2rem 0;
}

/* =============================
   CHECKBOX
============================= */
.form-check-input {
    background-color: transparent;
    border: 2px solid var(--lime);
}

.form-check-input:checked {
    background-color: #5a54bf;
    border-color: var(--lime);
}

.form-check-label {
    color: #fff;
    /* font-size: 0.9rem; */
}

.form-check-label a {
    color: var(--lime);
    font-weight: 600;
}

/* =============================
   SUBMIT BUTTON
============================= */
.submit-btn {
    margin-top: 2rem;
    width: 100%;
    background: var(--lime);
    color: var(--purple);
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    /* box-shadow:
    0 20px 40px rgba(217,255,120,0.6),
    inset 0 -2px 0 rgba(0,0,0,0.15); */
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 55px rgb(217 255 120 / 35%);
}

/* =============================
   MOBILE TUNING
============================= */
@media (max-width: 576px) {
    .glass-card {
        padding: 14px;
    }

    .glass-card h1 {
        font-size: 1.6rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-brand {
        position: static;
        transform: none;
        right: 0;
    }

    .navbar {
        background-color: rgb(74 69 166) !important;
    }
}






.campaign-section {
    background: linear-gradient(135deg, #f8f9ff73, #eef1ff4f);
    padding: 5rem 0;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-card {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease;
    /* font-family: "Noto Sans", sans-serif !important; */
}

.info-card:hover {
    transform: translateY(-6px);
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-family: "Noto Sans", sans-serif !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #3e419b;
    color: #fff;
}

.weightage-section {
    background: #f0f2ff;
    padding: 5rem 0;
}

.weightage-section h2 {
    font-weight: 700;
}

.circle-progress {
    --size: 120px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: sans-serif;
    color: var(--color);
    background: conic-gradient(var(--color) calc(var(--percentage) * 1%),
            #e0e0e0 0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.circle-progress span {
    font-size: 1.3rem;
    color: #3e419b;
    z-index: 1;
}

.circle-progress small {
    font-weight: 400;
    font-size: 0.85rem;
    color: #555;
    margin-top: 4px;
    display: block;
    z-index: 1;
}

.circle-progress::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: #ffffff;
    border-radius: 50%;
}

/* Container to center all circles */
.weightage-container {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically if needed */
    flex-wrap: wrap;
    /* wrap on smaller screens */
    gap: 2.5rem;
    /* even spacing between circles */
}

/* Wrapper for circle + label */
.circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Circular percentage progress */
.circle-progress {
    --size: 120px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: sans-serif;
    color: var(--color);
    background: conic-gradient(var(--color) calc(var(--percentage) * 1%),
            #e0e0e0 0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.circle-progress span {
    font-size: 1.3rem;
}

/* Inner white circle */
.circle-progress::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 50%;
}

/* Label below the circle */
.circle-wrapper small {
    font-weight: 500;
    /* font-size: 0.9rem; */
    color: #ffffff;
}




/* Section Headers */
.section-header {
    border-left: 5px solid var(--brand-accent);
    padding-left: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

/* Eligibility Card */
.campaign-section .glass-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.campaign-section .eligibility-row {
    padding: 20px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.campaign-section .eligibility-row:last-child {
    border-bottom: none;
}

.campaign-section .number-icon {
    width: 45px;
    height: 45px;
    background: #3e419b;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 25px;
    flex-shrink: 0;
}

/* Nested List */
.campaign-section .sub-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.campaign-section .sub-list li {
    background: #c7dc67;
    padding: 12px 15px;
    border-radius: 5px;
    /* font-size: 0.9rem; */
    border-left: 3px solid #3e419b;
    color: #000000;
    font-weight: 500;
}

/* Payment Section */
.campaign-section .payment-sidebar {
    background: #c7dc67;
    /* color: white; */
    padding: 30px;
    border-radius: 24px;
    height: 100%;
    border: 10px solid #3e419b30;
}

.campaign-section .fee-container {
    border-bottom: 2px solid rgb(0 0 0 / 8%);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.campaign-section .payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.campaign-section .payment-item {
    background: rgb(255 255 255);
    padding: 20px;
    border-radius: 16px;
    border: 2px solid rgb(87 81 191 / 11%);
}

.campaign-section .payment-item h6 {
    color: #3e419b;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: "Noto Sans", sans-serif !important;
}

.campaign-section .id-badge {
    display: inline-block;
    background: #e2e8f042;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 4px;
}

.campaign-section .alert-custom {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #ffe4e6;
    border-radius: 12px;
    padding: 15px 20px;
}

















/* Footer Styling */
.footer-main {
    padding: 40px 0 40px;
    background: #c7dc67;
    text-align: center;
}

.footer-brand-title {
    /* font-family: 'Outfit', sans-serif; */
    color: #3e419b;
    font-weight: 800;
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: "Noto Sans", sans-serif !important;
}

.social-btn {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #3e419b;
    color: var(--brand-gold);
    margin: 0 8px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.social-btn:hover {
    background: #fff;
    color: #3e419b;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(179, 139, 45, 0.15);
}

.sub-footer {
    background: #3e419b;
    color: #fff;
    padding: 20px 0;
    /* font-size: 0.8rem; */
}

.sub-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s;
}

.sub-footer a:hover {
    color: var(--brand-gold);
}





.image-container-modern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgb(87 81 191), #3e419b00 60%);
    pointer-events: none;
}

.image-container-modern-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #c7dc67, #3e419b00 60%);
    pointer-events: none;
}

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

.icon-box img {
    width: 40px;
    height: 40px;
}

.weightage-sec {
    background-color: #3e419b;
}

.campaign-section-digital {
    padding: 80px 0px;
}

.payment-sidebar h1 {
    color: #3e419b;
    font-family: "Noto Sans", sans-serif !important;
}

.campaign-section-digital .section-title {
    font-weight: 800;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    color: #3e419b;
    margin-bottom: 1.5rem;
    border-left: 5px solid #3e419b;
    padding-left: 15px;
    font-family: "Noto Sans", sans-serif !important;
}

.campaign-section-digital .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.campaign-section-digital .card:hover {
    transform: translateY(-5px);
}

.campaign-section-digital .icon-box {
    width: 50px;
    height: 50px;
    background: #3e419b;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 1.5rem; */
    /* margin-bottom: 1rem; */
}

.campaign-section-digital .badge-custom {
    background: #3e419b;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
}

.campaign-section-digital s .deliverable-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}


.campaign-section-digital .card-modern {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.campaign-section-digital .icon-square {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #3e419b;
}

.campaign-section-digital .weightage-bar {
    height: 12px;
    border-radius: 50px;
}

.campaign-section-digital .id-badge {
    background: var(--brand-light);
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
    color: var(--brand-purple);
}

.campaign-section-digital .icon-box img {
    width: 30px;
    height: 30px;
}

.objective-tab i {
    color: #3e419b;
}

.target-bg {
    background-color: #c7dc67;
}

.campaign-section-digital .badge {
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.campaign-section-digital .core-value {
    color: #3e419b;
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(
135deg, #3e419b, #3e419b);
    color: #ffffff;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    /* text-align: center; */
    width: fit-content;
}

.deliverables-card {
    border-radius: 16px;
    border: none;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.deliverable-item {
    margin-bottom: 24px;
}

.badge-custom {
    display: inline-block;
    background: #eef0ff;
    color: #4b3fbf;
    padding: 6px 14px;
    border-radius: 20px;
    /* font-size: 13px; */
    font-weight: 600;
    margin-bottom: 8px;
}

.deliverable-item p {
    color: #333;
    margin-bottom: 10px;
}

.deliverable-list {
    padding-left: 18px;
    margin-bottom: 12px;
}

.deliverable-list li {
    margin-bottom: 6px;
    color: #555;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.timeline-list .step {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #ffffff;
    background-color: #3e419b;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 25px;
}

.campaign-section-digital .icon-square i {
    color: #fff;
    font-size: 20px;
}

.campaign-section-digital .progress-bar {
    background-color: #3e419b;
}

.mandatory-docs .badge {
    /* color: #ffffff; */
    background-color: #c7dc67 !important;
}

.blue-bg {
    background-color: #3e419b;
    color: #fff;
}

.eligibility-sec i {
    color: #c7dc67;
}

.campaign-section-digital .payment-sidebar {
    background: #c7dc67;
    /* color: white; */
    padding: 30px;
    border-radius: 24px;
    height: 100%;
    border: 10px solid #3e419b30;
}

.campaign-section-digital .fee-container {
    border-bottom: 2px solid rgb(0 0 0 / 8%);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.campaign-section-digital .payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.campaign-section-digital .payment-item {
    background: rgb(255 255 255);
    padding: 20px;
    border-radius: 16px;
    border: 2px solid rgb(87 81 191 / 11%);
}

.campaign-section-digital .payment-item h6 {
    color: #3e419b;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-family: "Noto Sans", sans-serif !important;
}

.copyrights{
    font-size: 14px;
}
.copyrights a {
    margin: 0px;
}

.team-elegibility i{
    color: #3e419b;
}


.team-rules-wrapper {
    background: linear-gradient(180deg, #3b3f9f, #2e317a);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
}

/* Title */
.team-rules-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.team-rules-title h3 {
    margin: 0;
    font-weight: 700;
}

.icon-circle {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

/* Rule Cards */
.rule-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}

.rule-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-weight: 600;
}

.rule-card.allowed h5 i {
    color: #4ade80;
}

.rule-card.restricted h5 i {
    color: #facc15;
}

.rule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.rule-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
}

/* Special states */
.rule-card li.danger::before {
    background: #ffffff;
}

.rule-card li.warning::before {
    background: #ffffff;
}

.rule-card li.info::before {
    background: #ffffff;
}
.campaign-section h2 {
    font-size: 32px;
    font-weight: 600;
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
    margin-top: 24px;
    color: #3e419b;
    font-family: "Noto Sans", sans-serif !important;
}

.campaign-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #3e419b;
    margin-top: 16px;
    margin-bottom: 20px;
}
.digital-info h2{
    font-size: 32px;
    font-weight: 600;
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
    margin-top: 24px;
    color: #3e419b;
    font-family: "Noto Sans", sans-serif !important;
}
.digital-info h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #3e419b;
    margin-top: 16px;
    margin-bottom: 20px;
}
.price-buget {
    font-weight: 600;
    font-size: 32px;
    color: #3e419b;
    font-family: "Noto Sans", sans-serif !important;
}

.marketing-section {
    /* background-color: #fff !important; */
    background: linear-gradient(135deg, #ffffff, #ffffff);
}



.marketing-section .info-card {
    border: none;
    border-radius: 16px;
    background: #3e419b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.marketing-section .icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marketing-section .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f3f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-section .icon-box img {
    width: 22px;
}

.marketing-section .price-budget {
    font-size: 2rem;
    font-weight: 700;
    color: #3f3d9d;
}



/* ===============================
   CREATIVE OBJECTIVE SECTION
================================ */

.editorial-section {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Title with icon */
.editorial-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.editorial-section .section-title::before {
  /* content: "\f06e"; */ /* eye icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6c63ff, #9f9bff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Paragraphs */
.editorial-section p {
  /* font-size: 1rem; */
  /* line-height: 1.8; */
  color: #333;
  /* margin-bottom: 1.2rem; */
  /* font-weight: 500; */
}

/* Lead paragraph highlight */
.editorial-section .lead {
  background: #f5f6ff;
  padding: 1.2rem 1.4rem;
  border-left: 5px solid #3e419b;
  /* border-radius: 10px; */
  font-weight: 500;
  font-size: 17px;
}

/* Strong question emphasis */
.editorial-section strong {
  color: #6c63ff;
  font-weight: 700;
}

/* ===============================
   CREATIVE SIDEBAR
================================ */

.editorial-sidebar {
  background: linear-gradient(180deg, #3e419b, #3e419b);
  border-radius: 18px;
  padding: 2rem;
  color: #ffffff;
  height: 100%;
}

/* Sidebar blocks */
.sidebar-block {
  margin-bottom: 2.2rem;
}

/* Sidebar titles with icons */
.sidebar-title {
  font-size: 25px;
  /* letter-spacing: 0.15em; */
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.sidebar-title::before {
  /* font-family: "Font Awesome 6 Free"; */
  /* font-weight: 900; */
  /* width: 30px; */
  /* height: 30px; */
  /* border-radius: 50%; */
  /* background: rgba(199, 220, 103, 0.15); */
  /* color: #c7dc67; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* font-size: 0.75rem; */
}

/* Icon per section */
.sidebar-block:first-child .sidebar-title::before {
  /* content: "\f0c0"; */ /* users */
}

.sidebar-block:last-child .sidebar-title::before {
  /* content: "\f155"; */ /* rupee */
}

/* Audience list */
.sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-block li {
  display: flex;
  align-items: center;
  gap: 10px;
  /* font-size: 0.95rem; */
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.sidebar-block li::before {
  /* content: "\f058"; */ /* check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #c7dc67;
  font-size: 0.9rem;
}

/* ===============================
   BUDGET ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ BIG & VISUAL
================================ */

.budget-amount {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c7dc67, #c7dc67);
  color: #3e419b;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  text-align: center;
  display: inline-block;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .editorial-section {
    margin-bottom: 2rem;
    padding: 20px;
  }
}
.editorial-section .icon-bg {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #f3f4ff;        /* soft highlight */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.editorial-section .icon-bg i {
    color: #4b4bcf;
    font-size: 30px;
}



/* Shared */
.action-card {
    padding: 2rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.action-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.action-header h4 {
    font-weight: 600;
    margin: 0;
}

/* Icon background */
.icon-bg {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg i {
    color: #4b4bcf;
}

/* Deliverables */
.deliverables-card-1 .action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverables-card-1 li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    /* font-size: 0.95rem; */
}

.deliverables-card-1 li:last-child {
    border-bottom: none;
}

.deliverables-card-1 li i {
    color: #4b4bcf;
    margin-top: 3px;
}

/* Desired Response */
.response-flow {
    list-style: none;
    padding: 0;
    margin: 0;
}

.response-flow li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 0.95rem;
}

.response-flow li i {
    color: #777;
    font-size: 1.1rem;
}



.action-card {
    padding: 2rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.action-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg i {
    color: #4b4bcf;
    font-size: 20px;
}

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

.action-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    /* font-size: 0.95rem; */
}

.action-list li:last-child {
    border-bottom: none;
}

.action-list li i {
    color: #4b4bcf;
    margin-top: 3px;
}



/* ===============================
   WEIGHTAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ CREATIVE STAMPS
================================ */

/* ===============================
   WEIGHTAGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ CUT OUT STYLE
================================ */

.weightage-sec-1 {
  background: #fff;
  padding: 4rem 3rem;
  border-left: 8px solid #111;
}

/* Title */
.weightage-sec-1 h5 {
  font-size: 25px;
  font-weight: 700;
  /* letter-spacing: 0.18em; */
  /* text-transform: uppercase; */
  color: #111;
}

/* ===============================
   BLOCK
================================ */

.weightage-sec-1 .circle-wrapper {
  position: relative;
  width: 258px;
  min-height: 160px;
  background: #f9fafb;
  border-radius: 20px;
  box-shadow: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.35s ease;
  border: 10px solid #ededed;
}

/* offset shadow paper */
.weightage-sec-1 .circle-wrapper::before {
  /* content: ""; */
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: var(--color);
  opacity: 0.15;
  z-index: -1;
}

/* Hover */
.weightage-sec-1 .circle-wrapper:hover {
  transform: translate(-6px, -6px);
}

/* ===============================
   NUMBER
================================ */

.weightage-sec-1 .circle-progress {
  position: relative;
  margin-bottom: 1rem;
}

.weightage-sec-1 .circle-progress span {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.04em;
}

/* ===============================
   ICON ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ STAMPED
================================ */

.weightage-sec-1 .circle-progress::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3.8rem;
  color: var(--color);
  opacity: 0.15;
  position: absolute;
  right: -61px;
  top: 23px;
  display: none;
}

/* Icons */
.weightage-sec-1 .circle-wrapper:nth-child(1) .circle-progress::after {
  content: "\f0eb";
}
.weightage-sec-1 .circle-wrapper:nth-child(2) .circle-progress::after {
  content: "\f02d";
}
.weightage-sec-1 .circle-wrapper:nth-child(3) .circle-progress::after {
  content: "\f121";
}
.weightage-sec-1 .circle-wrapper:nth-child(4) .circle-progress::after {
  content: "\f201";
}

/* ===============================
   LABEL
================================ */

.weightage-sec-1 .circle-wrapper small {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  /* letter-spacing: 0.08em; */
  color: #3e419b;
  max-width: 100%;
}

.popup-gallery img{
    height: 250px;
    object-fit: cover;
}

.border-to-img  img{
    border: 1px solid #9d9d9d;
}
.full-width-height img {
    height: auto;
}
.small-text-box{
    
}
.small-text-box p{
    font-size: 14px;
    line-height: 2;
}
.small-text-box h3{
     font-weight: 800;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    color: #3e419b;
    margin-bottom: 1.5rem;
    border-left: 5px solid #3e419b;
    padding-left: 15px;
    font-family: "Noto Sans", sans-serif !important;
    font-size: 26px;
    letter-spacing: 2px;
}
.small-text-box h3::before, 
.small-text-box h3::after {
   display:none;
}
.small-text-box .title-container::before, 
.small-text-box .title-container::after{
    display:none;
}
.height-same .col-lg-6 .glass-card {
    height: 520px;
}
.mt60{
    margin-top:60px;
}
.small-boxes-box  .col-lg-6 .card {
    height: 330px;
}
.small-boxes-box-box .col-lg-6 .card{
    height: 390px;
}