* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 72px;
    font-size: 16px;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

/* =========================
   HEADER
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.logo img {
    height: 48px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 22px;
}

.navbar ul li {
    margin-left: 0;
}

.navbar ul li a {
    position: relative;
    text-decoration: none;
    color: #5d53e0;
    font-weight: 600;
    font-size: 15px;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #f4711e;
    transition: width 0.3s ease;
}

.navbar ul li a:hover {
    color: #f4711e;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #5d53e0;
    border-radius: 10px;
    margin: 6px 0;
    transition: 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.08)
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60%;
    max-width: 800px;
    color: #fff;
    text-align: left;
}

.hero-content h1,
.topic-1,
.topic-2 {
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.75);
}

.hero-content h1 {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 14px;
}

.topic-1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
}

.topic-2 {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 680px;
}
.success-msg {
  background: green;
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.hero-content button {
    margin-top: 4px;
    padding: 14px 26px;
    border: none;
    border-radius: 8px;
    background: #f4711e;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content button:hover {
    background: #d95f14;
    transform: translateY(-2px);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    padding: 12px 14px;
    cursor: pointer;
    font-size: 28px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* =========================
   STATS
========================= */
.stats-section {
    background: #6766c3;
    color: #fff;
    text-align: center;
    padding: 72px 20px;
}
.stats2-section {
  background: linear-gradient(135deg, #e9e7ff, #f6f4ff);
  color: #912bd7;
  text-align: center;
  padding: 72px 20px;
}

.stats-section h2,.stats2-section h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 42px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
}

.stat-card {
    background: #f4711e;
    padding: 26px;
    border-radius: 18px;
    text-align: left;
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    min-width: 240px;
    min-height: 240px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;

    display: grid;
    grid-template-rows: auto 1fr;

    opacity: 0;
    transform: translateY(20px);
}


.stat-card.in-view,
.stat-card:hover {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

.stat-top {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 14px;
}

.stat-bottom {
    display: flex;
    align-items: flex-start;
    padding-top: 16px;
}

.stat-card .icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    color: #fff;
}

.stat-card p {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.96);
    margin: 20px 0 0 0 ;
}

/* =========================
   MISSION
========================= */
.mission-section {
    background: #f5f5f5;
    padding: 80px 40px;
}

.mission-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1140px;
    margin: 0 auto;
}

.mission-image img {
    
    border-radius: 22px;
}

.mission-content h2 {
    color: #6766c3;
    margin-top: 18px;
    font-size: 36px;
    line-height: 1.2;
}

.mission-content p {
    margin: 12px 0;
    line-height: 1.8;
    font-size: 18px;
}

.mission-content ul {
    margin-top: 14px;
    padding-left: 22px;
}

.mission-content ul li {
    margin-bottom: 8px;
    line-height: 1.8;
    font-size: 18px;
}

/* =========================
   UX MISSION CARDS
========================= */
.ux-mission-wrap {
    padding: 72px 20px;
    background: #f4f2fb;
}

.ux-mission-heading {
    text-align: center;
    font-size: 38px;
    color: #5b50d6;
    margin-bottom: 36px;
    line-height: 1.25;
}

.ux-mission-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    margin: 24px auto;
    width: min(1100px, 88%);
    border: 1px solid #ddd;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.ux-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.ux-mission-icon {
    font-size: 34px;
    min-width: 54px;
}

.ux-mission-content h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 30px;
    line-height: 1.2;
}

.ux-mission-content p {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
    line-height: 1.8;
}

.ux-mission-content ul {
    padding-left: 20px;
    margin: 12px 0;
}

.ux-mission-content li {
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.8;
}
/* Header row: icon + title side by side */
.ux-mission-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon styling */
.ux-mission-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.ux-mission-icon {
    background: #f5f5f5;
    border-radius: 50%;
    padding: 10px;
}
/* Heading spacing fix */
.ux-mission-header h3 {
    margin: 0;
    /*font-size: 20px;*/
    /*margin: 0 0 10px;*/
    color: #222;
    font-size: 30px;
    line-height: 1.2;
}

/* Optional: better spacing for content */
.ux-mission-content {
    margin-top: 10px;
}
.ux-btn-primary,
.ux-btn-secondary,
.ux-btn-tertiary {
    width: 180px;
    margin-top: 12px;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    color: #fff;
}

.ux-btn-primary {
    background: linear-gradient(135deg, #ff7a00, #f4711e);
}

.ux-btn-secondary {
    background: linear-gradient(135deg, #5b50d6, #7a70ff);
}

.ux-btn-tertiary {
    background: linear-gradient(135deg, #00a86b, #00c781);
}

.ux-btn-primary:hover,
.ux-btn-secondary:hover,
.ux-btn-tertiary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* =========================
   FOUNDER
========================= */
.ux-founder {
    padding: 80px 20px;
    background: linear-gradient(to right, #f6f1eb, #f9f7ff);
}

.ux-section-title {
    text-align: center;
    color: #5b50d6;
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.25;
}

.ux-founder-box {
    display: flex;
    gap: 32px;
    align-items: center;
    width: min(1100px, 86%);
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ux-founder-img {
    width: 240px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ux-founder-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.ux-founder-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.ux-founder-sign {
    font-style: italic;
    font-weight: 700;
    border-left: 3px solid #f4711e;
    padding-left: 12px;
    color: #222;
    margin-top: 10px;
}

.ux-founder-degree {
    font-style: italic;
    border-left: 3px solid #f4711e;
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.8;
    
}

/* =========================
   REVIEWS
========================= */
.ux-review-section {
    padding: 86px 20px;
    background: linear-gradient(to right, #f9f7ff, #f3f0ff);
    text-align: center;
}

.ux-review-title {
    font-size: 38px;
    font-weight: 800;
    color: #5b50d6;
    margin-bottom: 48px;
    line-height: 1.25;
}

.ux-review-slider {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.ux-review-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
    align-items: center;
    will-change: transform;
}

.ux-review-card {
    width: 300px;
    flex-shrink: 0;
    transform-origin: center center;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    opacity: 0.45;
    transform: scale(0.86);
    transition: all 0.5s ease;
}

.ux-review-card.left,
.ux-review-card.right {
    opacity: 0.7;
    transform: scale(0.95);
}

.ux-review-card.active {
    transform: scale(1.08);
    opacity: 1;
    background: linear-gradient(135deg, #7bb5f8, #6b96ce);
    color: #000000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ux-review-card p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 15px;
}

.ux-review-card h4 {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.95;
}

.ux-review-slider::before,
.ux-review-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ux-review-slider::before {
    left: 0;
    background: linear-gradient(to right, #f9f7ff, transparent);
}

.ux-review-slider::after {
    right: 0;
    background: linear-gradient(to left, #f9f7ff, transparent);
}

/* =========================
   BLOG / HUB
========================= */
.ux-blog-slider-section {
    padding: 76px 20px;
    text-align: center;
}

.ux-subtitle {
    margin-bottom: 28px;
    font-size: 27px;
    color: #555;
    line-height: 1.7;
}

.ux-blog-slider {
    position: relative;
    width: min(1100px, 96%);
    margin: 0 auto;
}

.ux-slide {
    position: relative;
    width: 100%;
    height: 520px;
    display: none;
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    overflow: hidden;
}

.ux-slide.active {
    display: block;
}

.ux-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
}

.ux-slide-content {
    color: #fff;
    max-width: 820px;
}

.ux-slide-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}

.ux-meta {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 22px;
    line-height: 1.7;
}

.ux-slider-nav {
    position: relative;
    width: min(1100px, 96%);
    margin: 0 auto;
}

.ux-prev,
.ux-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 5;
}

.ux-prev {
    left: 12px;
    top: -260px;
}

.ux-next {
    right: 12px;
    top: -260px;
}

.ux-prev:hover,
.ux-next:hover {
    background: rgba(0, 0, 0, 0.58);
}

/* =========================
   FOOTER
========================= */
.ux-footer-pro {
    width: 100%;
    background: linear-gradient(135deg, #0d0c2b, #1b1a4a);
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.16);
}

.ux-footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 40px;
    flex-wrap: wrap;
}

.ux-footer-col {
    flex: 1;
    min-width: 220px;
}

.ux-footer-logo {
    width: 120px;
}

.ux-footer-col h4 {
    margin-bottom: 12px;
    color: #f4711e;
    font-size: 18px;
}

.ux-footer-col ul {
    list-style: none;
    padding: 0;
}

.ux-footer-col ul li {
    margin-bottom: 8px;
}

.ux-footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.ux-footer-col ul li a:hover {
    color: #fff;
}

.ux-footer-col p {
    font-size: 15px;
    margin: 7px 0;
    opacity: 0.9;
    line-height: 1.7;
}

.ux-footer-bottom {
    text-align: center;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 20px;
    }

    .navbar ul {
        gap: 14px;
    }

    .hero-content {
        width: 75%;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .topic-1 {
        font-size: 26px;
    }

    .topic-2 {
        font-size: 18px;
    }

    .stat-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .mission-image img {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .ux-mission-card,
    .ux-founder-box {
        width: min(100%, 920px);
    }

    .ux-slide-content h3 {
        font-size: 34px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    body {
        padding-top: 74px;
        font-size: 16px;
    }

    .navbar {
        min-height: 74px;
        padding: 12px 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo img {
        height: 42px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        width: 100%;
        display: none;
        padding-top: 8px;
    }

    .main-nav.open {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background: #fff;
        padding: 8px 0 6px;
        border-top: 1px solid #ececec;
    }

    .navbar ul li {
        width: 100%;
    }

    .navbar ul li a {
        display: block;
        width: 100%;
        padding: 14px 4px;
        font-size: 17px;
    }

    .hero {
        height: 84vh;
        min-height: 620px;
    }

    .hero-content {
        left: 6%;
        width: 88%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .topic-1 {
        font-size: 24px;
        line-height: 1.35;
        margin-bottom: 12px;
        width: auto;
    }

    .topic-2 {
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .hero-content button {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 14px 18px;
    }

    .prev,
    .next {
      display: none;
        font-size: 22px;
        padding: 9px 12px;
    }

    .stats-section ,.stats2-section{
        padding: 56px 16px;
    }

    .stats-section h2,
    .stats2-section h2,
    .ux-section-title,
    .ux-mission-heading,
    .ux-review-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 26px;
    }

    .stats-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px;
    }

    .stat-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
        min-height: 210px;
        padding: 22px;
        border-radius: 18px;
    }

    .stat-card .icon {
        width: 40px;
        height: 40px;
    }

    .stat-card h3 {
        font-size: 40px;
    }

    .stat-card p {
        font-size: 22px;
        line-height: 1.5;
    }

    .mission-section,
    .ux-mission-wrap,
    .ux-founder,
    .ux-review-section,
    .ux-blog-slider-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mission-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mission-container {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .mission-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .mission-content h2 {
        font-size: 30px;
    }

    .mission-content p,
    .mission-content li {
        font-size: 18px;
        line-height: 1.8;
    }

    .ux-mission-card {
        width: 100%;
        padding: 24px 20px;
        border-radius: 18px;
        flex-direction: column;
        gap: 14px;
    }

    .ux-mission-icon {
        font-size: 28px;
        min-width: auto;
    }

    .ux-mission-content h3 {
        font-size: 28px;
    }

    .ux-mission-content p,
    .ux-mission-content li {
        font-size: 18px;
        line-height: 1.75;
    }




    .ux-mission-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        min-width: auto;
    }

    .ux-mission-icon {
        font-size: 28px;
        margin-bottom: 0;
    }

    .ux-mission-header h3 {
        font-size: 28px;
    }

    .ux-mission-content {
        margin-top: 16px;
    }

    .ux-btn-primary,
    .ux-btn-secondary,
    .ux-btn-tertiary {
     
        width: 100%;
        max-width: 302px;
        font-size: 16px;
        min-height: 48px;
    }

    .ux-founder {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .ux-founder-box {
        width: 100%;
        padding: 22px;
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .ux-founder-img {
        width: 100%;
        max-width: 230px;
        margin: 0 auto;
    }

    .ux-founder-text,
    .ux-founder-degree {
        font-size: 17px;
        line-height: 1.8;
    }

    .ux-review-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .ux-review-track {
        gap: 14px;
    }

    .ux-review-card {
        width: 280px;
        padding: 22px;
    }

    .ux-review-card p,
    .ux-review-card h4 {
        font-size: 17px;
        line-height: 1.6;
    }

    .ux-review-card.active {
        transform: scale(1);
    }

    .ux-review-slider::before,
    .ux-review-slider::after {
        width: 20px;
    }

    .ux-blog-slider-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .ux-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .ux-slide {
        height: 420px;
        border-radius: 18px;
    }

    .ux-slide-content {
        max-width: 100%;
        padding: 12px;
    }

    .ux-slide-content h3 {
        font-size: 30px;
        line-height: 1.25;
    }

    .ux-meta {
        font-size: 16px;
    }

    .ux-prev,
    .ux-next {
        font-size: 22px;
        padding: 10px 12px;
    }

    .ux-prev {
        left: 8px;
        top: -210px;
    }

    .ux-next {
        right: 8px;
        top: -210px;
    }

    .ux-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 26px 16px;
    }

    .ux-footer-col {
        min-width: 100%;
    }

    .ux-footer-logo {
        margin: 0 auto;
    }
}

/* =========================
   EXTRA SMALL
========================= */
@media (max-width: 480px) {
    .hero {
        height: 82vh;
        min-height: 560px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .topic-1 {
        font-size: 22px;
    }

    .topic-2 {
        font-size: 17px;
    }

    .stats-section h2,
    .stats2-section h2,
    .ux-section-title,
    .ux-mission-heading,
    .ux-review-title {
        font-size: 28px;
    }

    .stat-card {
        min-height: 190px;
        padding: 20px;
    }

    .stat-card h3 {
        font-size: 34px;
    }

    .stat-card p {
        font-size: 19px;
    }

    .mission-content p,
    .mission-content li,
    .ux-mission-content p,
    .ux-mission-content li,
    .ux-founder-text,
    .ux-founder-degree {
        font-size: 16px;
    }

    .ux-slide {
        height: 340px;
    }

    .ux-slide-content h3 {
        font-size: 24px;
    }

    .ux-review-card {
        width: 230px;
    }

    .ux-footer-col p,
    .ux-footer-col ul li a {
        font-size: 14px;
    }
}

/* HERO SECTION */
.tc-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 60px 8%;
  
  /* Gradient Background */
  background: linear-gradient(135deg, #5f2c82, #ff7e00);
  color: white;
}

/* LEFT IMAGE */
.tc-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}



.tc-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RIGHT CONTENT */
.tc-hero-content {
  flex: 1;
  padding-left: 50px;
  
}

/* TITLE */
.tc-hero-content h1 {
  font-size: 56px; /* Big for readability */
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.75);
}

/* SUBTEXT */
.tc-topic {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f5f5f5;
 
}

/* BUTTON */
.tc-hero-content button {
  background: #ff7e00;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* BUTTON HOVER */
.tc-hero-content button:hover {
  background: #e66a00;
  transform: translateY(-2px);
}

/* ============================= */
/* 📱 MOBILE RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

  .tc-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

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

  .tc-hero-content {
    padding-left: 0;
  }

  .tc-hero-content h1 {
    font-size: 36px;
  }

  .tc-topic {
    font-size: 18px;
  }

  .tc-hero-content button {
    width: 100%;
    max-width: 250px;
  }
}
/* HERO SECTION */
.tc-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    /*  FIXED FULL SCREEN */
    height: 100vh;
    width: 100%;
  
    padding: 0 8%;              /* remove top/bottom padding */
    overflow: hidden;           /* prevent scroll */
  
    background: linear-gradient(135deg, #5f2c82, #ff7e00);
    color: white;
  }
  
  /* CONTENT LEFT */
  .tc-hero-content {
    flex: 1;
    padding-right: 40px;        /* spacing without breaking height */
  }
  
  /* TITLE */
  .tc-hero-content h1 {
    /* width: max-content;
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 15px; */

    font-size: 76px;
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 14px;
  }
  .tc-h1-imp
  {
    font-size: 60px !important;
  }
  /* SUBTEXT */
  .tc-topic {
    /* font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f5f5f5; */

    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .dyn-tc{
    font-size: 22px;
  }
  .dyn2-tc{
    font-size: 18px;
    margin-top: 25px;
  }
  /* BUTTON */
  .tc-hero-content button {
    background: #ff7e00;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .tc-hero-content button:hover {
    background: #e66a00;
    transform: translateY(-2px);
  }
  
  /* IMAGE RIGHT */
  .tc-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tc-hero-image img {
    width: 90%;
    max-width: 380px;
    max-height: 70vh;           /*  prevents overflow */
    
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .success-msg {
    position: fixed;
    top: 20px;
  
    left: 50%;
    transform: translateX(-50%); /* PERFECT CENTER */
  
    background: #28a745;
    color: #fff;
    padding: 15px 25px;
    border-radius: 6px;
    z-index: 9999;
  
    animation: blink 1s linear 10;
  }
  
  /* Blink effect */
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
  }
  /* ============================= */
  /* 📱 MOBILE RESPONSIVE */
  /* ============================= */
  @media (max-width: 768px) {
    .success-msg {
    left: 105px;
    }
    .tc-hero {
     
      flex-direction: column;
      justify-content: center;
      height: 100vh;
      padding: 20px;
      text-align: center;
    }
  .tc-her-hub
  {
    margin-top: 75px;
  }
    .tc-hero-content {
      
      padding-right: 0;
    }
  
    .tc-hero-content h1 {
      font-size: 34px;
    }
  
    .tc-topic {
      font-size: 18px;
    }
  
    .tc-hero-image {
      margin-top: 20px;
    }
  
    .tc-hero-image img {
      max-height: 40vh;   /*  keeps inside screen */
    }
  
    .tc-hero-content button {
      width: 100%;
      max-width: 250px;
    }
  }

/* ============================= */
/* INFO SECTION (FINAL CLEAN) */
/* ============================= */

.tc-info-section.new-ui {
    padding: 100px 10% !important;
    background: linear-gradient(to right, #f9f7ff, #f3f0ff);
    font-family: "Segoe UI", sans-serif;
    text-align: center;
  }
  
  /* HERO */
  .tc-hero-block h1,.abt-blf h1 {
    font-size: 40px;
    font-weight: 700;
    color: #5b50d6 !important;
    margin-bottom: 15px;
  }
  
  .tc-hero-block p {
    font-size: 20px;
    color: #555 !important;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
  }
  .abt-blf p {
    font-size: 20px;
    color: #111111 !important;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
  }
  
  /* INTRO */
  .tc-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
  }
  
  /* ================= */
  /* CARDS WRAPPER */
  /* ================= */
  .tc-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
  }
  
  /* ================= */
  /*  CARD */
  /* ================= */
  .tc-info-section.new-ui .tc-card {
    position: relative;
    width: 320px;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
  
    background: linear-gradient(135deg, #ffffff, #f4f2ff);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  /* GLOW */
  .tc-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    background: rgba(91, 80, 214, 0.15);
    filter: blur(50px);
  }
  
  /* HOVER */
  .tc-info-section.new-ui .tc-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /*  ICON + TITLE ROW */
  /* ================= */
  .tc-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
  }
  
  /* ICON BOX */
  .tc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
  }
  
  /* TITLE */
  .tc-card-top h3 {
    font-size: 22px;
    color: #5b50d6;
    margin: 0;
  }
  
  /* TEXT */
  .tc-card p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
  }
  
  /* ================= */
  /*  REALITY BOX */
  /* ================= */
  .tc-reality {
    margin-top: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  
    background: #fff;
    padding: 40px;
    border-radius: 18px;
  
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: left;
  }
  
  /* TITLE */
  .tc-reality h2 {
    font-size: 28px;
    color: #ff7a18;
    margin-bottom: 20px;
  }
  
  /* HIGHLIGHT */
  .tc-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffe8a1);
    padding: 18px;
    border-left: 6px solid #ffb300;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
  }
  
  /* LIST */
  .tc-reality li {
    font-size: 19px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .tc-info-section.new-ui {
      padding: 60px 20px !important;
    }
  
    .tc-hero-block h1 {
      font-size: 26px;
    }
  
    .tc-hero-block p,
    .tc-intro p ,.abt-blf{
      font-size: 19px;
    }
  
    .tc-cards-wrapper {
      flex-direction: column;
      gap: 25px;
    }
  
    .tc-card {
      width: 100% !important;
      text-align: left; /* keep readable */
    }
  
    .tc-card-top {
      justify-content: flex-start;
    }
  
    .tc-reality {
      padding: 25px;
    }
  
    .tc-reality h2 {
      font-size: 22px;
    }
  
    .tc-highlight {
      font-size: 16px;
    }
  }
  /* ============================= */
/*  REVIVAL SECTION (PREMIUM) */
/* ============================= */

.tc-revival-section {
    padding: 100px 10%;
    background: linear-gradient(to right, #f6f1eb, #f9f7ff);
    text-align: center;
    font-family: "Segoe UI", sans-serif;
  }
  
  /* TITLE */
  .tc-revival-title {
    font-size: 36px;
    font-weight: 700;
    color: #5b50d6;
    margin-bottom: 60px;
  }
  
  /* ================= */
  /*  GRID */
  /* ================= */
  .tc-revival-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
  }
  
  /* ================= */
  /*  CARD */
  /* ================= */
  .tc-revival-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f4f2ff);
    padding: 30px;
    border-radius: 18px;
    text-align: left;
  
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    overflow: hidden;
  }
  
  /* GLOW EFFECT */
  .tc-revival-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    background: rgba(91, 80, 214, 0.12);
    filter: blur(50px);
  }
  
  /* HOVER */
  .tc-revival-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /*  ICON + TITLE */
  /* ================= */
  .tc-revival-card .tc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  /* TITLE */
  .tc-revival-card h3 {
    font-size: 22px;
    color: #5b50d6;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .tc-revival-card p {
    font-size: 19px;
    color: #242424;
    line-height: 1.7;
  }
  
  /* ================= */
  /*  IMPACT BAR */
  /* ================= */
  .tc-impact-bar {
    margin-top: 60px;
    padding: 20px;
    border-radius: 12px;
  
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    font-size: 18px;
    font-weight: 600;
  
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .tc-revival-section {
      padding: 60px 20px;
    }
  
    .tc-revival-title {
      font-size: 26px;
      margin-bottom: 40px;
    }
  
    .tc-revival-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .tc-revival-card {
      padding: 25px;
    }
  
    .tc-revival-card p {
      font-size: 16px;
    }
  
    .tc-impact-bar {
      font-size: 16px;
      padding: 15px;
    }
  }

  /* ============================= */
/* BEYOND SECTION */
/* ============================= */

.ux-beyond-section {
    padding: 100px 10%;
    background: linear-gradient(to right, #ffffff, #f7f5ff);
    font-family: "Segoe UI", sans-serif;
  }
  
  /* CONTAINER */
  .ux-beyond-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  /* ================= */
  /*IMAGE */
  /* ================= */
  .ux-beyond-image {
    flex: 1;
    min-width: 300px;
  }
  
  .ux-beyond-image img {
    height: 80%;
    max-height: 550px;
    width: 80%;        /* reduce size */
    max-width: 420px;  /* control max size */
    margin: auto;      /* center it */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
  }
  
  /* subtle hover */
  .ux-beyond-image img:hover {
    transform: scale(1.03);
  }
  
  /* ================= */
  /* CONTENT */
  /* ================= */
  .ux-beyond-content {
    flex: 1;
    min-width: 300px;
  }
  
  /* TITLE */
  .ux-beyond-content h2 {
    font-size: 37px;
    color: #5b50d6;
    margin-bottom: 10px;
  }
  
  /* SUBTITLE */
  .ux-beyond-content h4 {
    font-size: 23px;
    color: #ff7a18;
    margin-bottom: 20px;
  }
  
  /* TEXT */
  .ux-beyond-content p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  /* LIST */
  .ux-beyond-content ul {
    list-style: none;
    padding: 0;
  }
  
  /* LIST ITEMS */
  .ux-beyond-content li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
  
    position: relative;
    padding-left: 28px;
  }
  
  /* CUSTOM BULLET */
  .ux-beyond-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #5b50d6;
    font-weight: bold;
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .ux-beyond-section {
      padding: 60px 20px;
    }
  
    .ux-beyond-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .ux-beyond-content {
      text-align: left;
    }
  
    .ux-beyond-content h2 {
      font-size: 26px;
    }
  
    .ux-beyond-content h4 {
      font-size: 18px;
    }
  
    .ux-beyond-content p {
      font-size: 16px;
    }
  }
  /* ============================= */
/* SERVICES SECTION (ADVANCED) */
/* ============================= */

.ux-services-section {
    padding: 100px 10%;
  
    /*  Smooth white → soft violet transition */
    
    background: linear-gradient(to right, #f9f7ff, #dbac47);
  
    text-align: center;
    font-family: "Segoe UI", sans-serif;
  }
/* TITLE */
.ux-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #5b50d6;
  margin-bottom: 70px;
}

/* ================= */
/*  GRID */
/* ================= */
.ux-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* ================= */
/*  CARD BASE */
/* ================= */
.ux-service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f4f2ff);
  padding: 30px 20px;
  border-radius: 18px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;

  overflow: hidden;
}



/* ================= */
/*  HOVER EFFECT */
/* ================= */
.ux-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff7a18, #5b50d6);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.ux-service-card:hover::before {
  opacity: 0.08; /* subtle glow background */
}

/* hover lift */
.ux-service-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* keep center card stable */
.ux-service-card:nth-child(2):hover {
  transform: translateY(-10px) scale(1.18);
}

/* ================= */
/*  CONTENT ABOVE BG */
/* ================= */
.ux-service-card * {
  position: relative;
  z-index: 2;
}

/* ================= */
/*  ICON */
/* ================= */
.ux-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff7a18, #5b50d6);
  color: #fff;

  font-size: 26px;
  border-radius: 14px;
}

/* TITLE */
.ux-service-card h3 {
  font-size: 20px;
  color: #5b50d6;
  margin-bottom: 10px;
}

/* TEXT */
.ux-service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ================= */
/* 📱 TABLET */
/* ================= */
@media (max-width: 1024px) {
  .ux-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ux-service-card:nth-child(2) {
    transform: scale(1); /* remove big center */
  }
}

/* ================= */
/* 📱 MOBILE */
/* ================= */
@media (max-width: 768px) {

  .ux-services-section {
    padding: 60px 20px;
  }

  .ux-section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .ux-services-grid {
    grid-template-columns: 1fr;
  }

  .ux-service-card {
    transform: none !important;
  }
}
/* ============================= */
/*  SERVICES SECTION */
/* ============================= */

.ux-services-section {
    padding: 100px 10%;
    background: linear-gradient(to right, #f9f7ff, #DBB995);
    text-align: center;
    font-family: "Segoe UI", sans-serif;
  }
  
  /* TITLE */
  .ux-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #5b50d6;
    margin-bottom: 60px;
  }
  
  /* ================= */
  /*  GRID */
  /* ================= */
  .ux-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* ================= */
  /*  CARD */
  /* ================= */
  .ux-service-card {
    background: linear-gradient(135deg, #ffffff, #f4f2ff);
    padding: 30px 20px;
    border-radius: 18px;
  
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
  
    position: relative;
    overflow: hidden;
  }
  
  /* GLOW EFFECT */
  .ux-service-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -30px;
    right: -30px;
    background: rgba(91, 80, 214, 0.12);
    filter: blur(45px);
  }
  
  /* HOVER */
  .ux-service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /*  ICON */
  /* ================= */
  .ux-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    font-size: 26px;
    border-radius: 14px;
  }
  
  /* TITLE */
  .ux-service-card h3 {
    font-size: 20px;
    color: #5b50d6;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .ux-service-card p {
    font-size: 19px;
    color: #555;
    line-height: 1.6;
  }
  
  /* ================= */
  /* 📱 TABLET */
  /* ================= */
  @media (max-width: 1024px) {
    .ux-services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .ux-services-section {
      padding: 60px 20px;
    }
  
    .ux-section-title {
      font-size: 26px;
      margin-bottom: 40px;
    }
  
    .ux-services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .ux-service-card {
      padding: 25px;
    }
  
    .ux-service-card p {
      font-size: 15px;
    }
  }
  /* ============================= */
/*  HELP SECTION */
/* ============================= */

.ux-help-section {
    padding: 100px 10%;
    background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f5ff 35%,
    #ebe6ff 65%,
    #d6ccff 100%
  );

    text-align: center;
    font-family: "Segoe UI", sans-serif;
  }
  
  /* TITLE */
  .ux-section-title {
   
    font-size: 36px;
    font-weight: 700;
    color: #5b50d6;
    margin-bottom: 70px;
  }
  
  /* ================= */
  /*  WRAPPER */
  /* ================= */
  .ux-help-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* ================= */
  /*  CARD BASE */
  /* ================= */
  .ux-help-card {
    background: linear-gradient(135deg, #ffffff, #f4f2ff);
    padding: 35px 25px;
    border-radius: 20px;
  
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
  
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  /* GLOW EFFECT */
  .ux-help-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -40px;
    right: -40px;
    background: rgba(91, 80, 214, 0.15);
    filter: blur(50px);
  }
  
  /* ================= */
  /*  SIZE VARIANTS */
  /* ================= */
  
  /* SIDE CARDS */
  .ux-help-card.side {
    width: 280px;
    transform: scale(0.95);
    opacity: 0.9;
  }
  
  /* CENTER CARD */
  .ux-help-card.center {
    width: 340px;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /*  HOVER EFFECT */
  /* ================= */
  
  /* SIDE HOVER */
  .ux-help-card.side:hover {
    transform: translateY(-10px) scale(1);
    opacity: 1;
  }
  
  /* CENTER HOVER */
  .ux-help-card.center:hover {
    transform: translateY(-12px) scale(1.08);
  }
  
  /* ================= */
  /*  ICON */
  /* ================= */
  .ux-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    font-size: 28px;
    border-radius: 16px;
  }
  
  /* TITLE */
  .ux-help-card h3 {
    font-size: 20px;
    color: #5b50d6;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .ux-help-card p {
    font-size: 19px;
    color: #1a1919;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* ================= */
  /*  BUTTON */
  /* ================= */
  .help-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #5b50d6, #ff7a18);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .help-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }
  
  /* ================= */
  /* 📱 TABLET */
  /* ================= */
  @media (max-width: 1024px) {
    .ux-help-wrapper {
      flex-direction: column;
    }
  
    .ux-help-card.center {
      transform: scale(1);
      width: 100%;
    }
  
    .ux-help-card.side {
      transform: scale(1);
      width: 100%;
      opacity: 1;
    }
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .ux-help-section {
      padding: 60px 20px;
    }
  
    .ux-section-title {
      font-size: 26px;
      margin-bottom: 40px;
    }
  
    .ux-help-card {
      width: 100%;
      padding: 25px;
    }
  
    .ux-help-card h3 {
      font-size: 18px;
    }
  
    .ux-help-card p {
      font-size: 15px;
    }
  }
  /* ============================= */
/*  WHAT WE DO - PILLARS */
/* ============================= */

.ec-pillars-section {
    padding: 100px 10%;
    text-align: center;
  
    /* Soft warm → neutral blend */
    background: linear-gradient(
      180deg,
      #fffdf7 0%,
      #fff4d6 40%,
      #ffffff 100%
    );
  
    font-family: "Segoe UI", sans-serif;
  }
  
  /* TITLE */
  .ec-pillars-title {
    font-size: 34px;
    font-weight: 700;
    color: #5b50d6;
  }
  
  .ec-pillars-subtitle {
    font-size: 24px;
    color: #3E3839;
    margin-bottom: 60px;
  }
  
  /* ================= */
  /*  GRID */
  /* ================= */
  .ec-pillars-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* ================= */
  /*  CARD */
  /* ================ */
  .ec-pillar-card {
    width: 320px;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: left;
  
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Glow effect */
  .ec-pillar-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -40px;
    right: -40px;
    background: rgba(255, 200, 0, 0.15);
    filter: blur(60px);
  }
  
  /* Hover */
  .ec-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  }
  
  /* ================= */
  /* HEADER (ICON + TEXT SIDE BY SIDE) */
  /* ================= */
  .ec-pillar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }
  
  /* ICON */
  .ec-icon {
    width: 50px;
    height: 50px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    border-radius: 12px;
    font-size: 22px;
  }
  
  /* TITLE */
  .ec-pillar-card h3 {
    font-size: 20px;
    color: #5b50d6;
  }
  
  /* TEXT */
  .ec-pillar-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
  }
  
  /* ================= */
  /* 📱 TABLET */
  /* ================= */
  @media (max-width: 1024px) {
    .ec-pillars-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .ec-pillars-section {
      padding: 60px 20px;
    }
  
    .ec-pillars-title {
      font-size: 26px;
    }
  
    .ec-pillar-card {
      width: 100%;
      text-align: left;
    }
  
    .ec-pillar-card p {
      font-size: 15px;
    }
  }
  .ec-benefits {
  padding: 100px 10%;
  background: linear-gradient(
    180deg,
    #ece8ff,
    #ffffff
  );
}

.ec-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ec-text {
  flex: 1;
}

.ec-image img {
  width: 100%;
  max-width: 400px;
}
/* ============================= */
/* HELPLINE FOUNDATION */
/* ============================= */

.ec-helpline-section {
    padding: 100px 10%;
  
    /* Elegant soft gradient */
    background: linear-gradient(
      135deg,
      #fff8e6 0%,
      #ffffff 50%,
      #f3f0ff 100%
    );
  
    font-family: "Segoe UI", sans-serif;
  }
  
  /* CONTAINER */
  .ec-helpline-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* ================= */
  /*  TEXT */
  /* ================= */
  .ec-helpline-text {
    flex: 1;
  }
  
  /* MAIN TITLE */
  .ec-helpline-text h2 {
    font-weight: 800;
    width: max-content;
    font-size: 37px;
    color: #5b50d6;
    margin-bottom: 10px;
  }
  
  /* SUBTITLE */
  .ec-helpline-text h4 {
    font-weight: 800;
    font-size: 25px;
    color: #ff7a18;
    margin-bottom: 20px;
  }
  
  /* DESCRIPTION */
  .ec-helpline-desc {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  
  /* ================= */
  /*  POINTS */
  /* ================= */
  .ec-helpline-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* SINGLE POINT */
  .ec-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
  
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
  }
  
  /* HOVER */
  .ec-point:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  }
  
  /* ICON */
  .ec-icon {
    min-width: 45px;
    height: 45px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: linear-gradient(135deg, #ff7a18, #5b50d6);
    color: #fff;
  
    border-radius: 10px;
    font-size: 20px;
  }
  
  /* POINT TEXT */
  .ec-point h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
  }
  
  .ec-point p {
    font-size: 16px;
    color: #222222;
  }
  
  /* ================= */
  /*  IMAGE */
  /* ================= */
  .ec-helpline-image {
    flex: 1;
    text-align: center;
  }
  
  .ec-helpline-image img {
    width: 100%;
    max-width: 420px;
  }
  
  /* ================= */
  /* 📱 TABLET */
  /* ================= */
  @media (max-width: 1024px) {
    .ec-helpline-container {
      flex-direction: column;
      text-align: center;
    }
  
    .ec-point {
      justify-content: center;
      text-align: left;
    }
  }
  
  /* ================= */
  /* 📱 MOBILE */
  /* ================= */
  @media (max-width: 768px) {
  
    .ec-helpline-section {
      padding: 60px 20px;
    }
  
    .ec-helpline-text h2 {
      font-size: 26px;
      width: fit-content;
    }
  
    .ec-helpline-text h4 {
      font-size: 18px;
    }
  
    .ec-helpline-desc {
      font-size: 15px;
    }
  }
/* ============================= */
/*  WOMEN EMPOWERMENT */
/* ============================= */

.ec-women-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #c3aed6); /* NGO-friendly gradient */
    font-family: "Segoe UI", sans-serif;
}

.ec-women-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

/* IMAGE */
.ec-women-image {
    flex: 1;
    text-align: center;
}

.ec-women-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px; /* optional: soft edges */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* TEXT */
.ec-women-text {
    flex: 1;
}

.ec-women-text h2 {
    font-size: 34px;
    color: #5b50d6;
    margin-bottom: 20px;
}

.ec-women-intro {
    font-size: 16px;
    color: #1b1b1b;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* LIST */
.ec-women-list {
    list-style: none;
    padding: 0;
}

.ec-women-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #141414;
    line-height: 1.6;
}

.ec-women-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a18;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .ec-women-section {
        padding: 60px 20px;
    }

    .ec-women-text h2 {
        font-size: 26px;
    }

    .ec-women-container {
        flex-direction: column;
        text-align: center;
    }

    .ec-women-list li {
        text-align: left;
    }
}
/* E-Seva Section */
.e-seva-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 8%;
    background: linear-gradient(135deg, #5f2c82, #ff7e00); /* vibrant gradient */
    color: white;
    flex-wrap: wrap;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.content-left {
    flex: 1 1 450px;
    max-width: 600px;
}

.content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: #5f2c82;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #ff7e00;
    color: white;
}

.image-right {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
}

.image-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive: stack vertically on smaller screens */
@media (max-width: 900px) {
    .e-seva-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .content-left {
        max-width: 100%;
    }

    .content-left h1 {
        font-size: 2rem;
    }

    .image-right {
        max-width: 100%;
        margin-top: 30px;
    }
}
/* ============================= */
/* 📰 BLOG DETAIL SECTION ONLY */
/* ============================= */

.ux-blog-detail {
  font-family: Arial, sans-serif;
  color: #333;
}

/* HERO */
.ux-blog-hero {
  height: 65vh;
  background-size: cover;
  background-position: top;
  position: relative;
}

.ux-blog-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px 10%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
}

.ux-blog-overlay h1 {
  font-size: 36px;
  max-width: 800px;
  line-height: 1.3;
}

.ux-blog-meta {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* CONTENT */
.ux-blog-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.8;
}

/* INTRO */
.ux-intro {
  font-size: 18px;
  font-weight: 500;
}

/* HEADINGS */
.ux-blog-container h2 {
  margin-top: 40px;
  font-size: 26px;
  color: #111;
}

/* PARAGRAPH */
.ux-blog-container p {
  margin: 20px 0;
}

/* BLOCKQUOTE */
.ux-blog-detail blockquote {
  margin: 30px 0;
  padding: 20px;
  background: #f5f5f5;
  border-left: 5px solid #f4711e;
  font-style: italic;
}

/* LIST */
.ux-blog-container ul {
  margin: 20px 0;
  padding-left: 20px;
}

.ux-blog-container li {
  margin-bottom: 10px;
}

/* ============================= */
/* 📱 MOBILE */
/* ============================= */

@media (max-width: 768px) {

  .ux-blog-hero {
    height: 40vh;
  }

  .ux-blog-overlay {
    padding: 20px;
  }

  .ux-blog-overlay h1 {
    font-size: 22px;
  }

  .ux-blog-container {
    margin: 40px auto;
  }

  .ux-intro {
    font-size: 16px;
  }
}
.ent-img
{
height: max-content;
}
.ec-sub{
 font-size: 25px;
 font-weight: 650;
}
.ec-tit{
  font-size: 35px;
}
/* Equal width grid */
.ec-equal-grid {
  display: flex;
  gap: 24px;
}

.ec-equal-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Make buttons equal width */
.ec-full-btn {
  height: 50px;
  width: 100%;
  text-align: center;
}

/* =========================================================
   STANDALONE "JOIN US" BUTTON
   Targets ONLY the direct child of .ec-pillars-section
   (the FPO Connect Join Us button). Card buttons inside
   .ux-help-section / .ec-equal-grid are NOT affected.
========================================================= */
.ec-pillars-section > .ec-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 40px auto 0;

  height: auto;
  min-height: 52px;
  width: auto;
  min-width: 200px;
  padding: 14px 36px;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  text-decoration: none;

  /* Brand palette: orange → violet */
  background: linear-gradient(135deg, #ff7a18 0%, #f4711e 50%, #5b50d6 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;

  border: none;
  border-radius: 50px;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(244, 113, 30, 0.30),
              0 4px 10px rgba(91, 80, 214, 0.18);

  transition: background-position 0.5s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;

  position: relative;
  overflow: hidden;
}

/* Arrow that nudges on hover */
.ec-pillars-section > .ec-full-btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.25s ease;
}

.ec-pillars-section > .ec-full-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(244, 113, 30, 0.40),
              0 6px 14px rgba(91, 80, 214, 0.25);
}

.ec-pillars-section > .ec-full-btn:hover::after {
  transform: translateX(5px);
}

.ec-pillars-section > .ec-full-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(244, 113, 30, 0.30);
}

.ec-pillars-section > .ec-full-btn:focus-visible {
  outline: 3px solid rgba(91, 80, 214, 0.45);
  outline-offset: 3px;
}

/* Icon gradient background */
.ec-icon-bg {
  background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
  padding: 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Optional: improve spacing consistency */
.ec-equal-card p {
  flex-grow: 1;
}
.ec-hub-subtitle {
  font-size: 20px;
}
/* Responsive */
@media (max-width: 768px) {
  .ec-equal-grid {
    flex-direction: column;
  }
  .ec-full-btn {
    position: relative;
    /* left: 50px; */
  }

  /* Override the above for the standalone Join Us button only */
  .ec-pillars-section > .ec-full-btn {
    position: static;
    left: auto;

    display: flex;
    width: 90%;
    max-width: 320px;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* SECTION */
.ec-hub-section {
  text-align: center;
  padding: 60px 8%;
}

.ec-hub-title {
  font-size: 32px;
  font-weight: 700;
  color: #5a67d8;
  margin-bottom: 10px;
}

.ec-hub-subtitle {
  font-size: 20px;
  color: #363636;
  margin-bottom: 40px;
}

/* CARD */
.ec-hub-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: top;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.ec-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CONTENT */
.ec-hub-content {
  max-width: 800px;
  color: #fff;
  text-align: center;
}

.ec-hub-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.ec-hub-meta {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* BUTTON */
.ec-hub-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.ec-hub-btn:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ec-hub-card {
    height: 300px;
  }

  .ec-hub-content h3 {
    font-size: 20px;
  }
}
.impact-spotlight {
  max-width: 1430px;
  margin: 60px auto;
  padding: 60px 30px;
  border-radius: 24px;
  background: #f5e8dc;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.spotlight-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.spotlight-image img {
  border-radius: 20px;
  width: 320px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.spotlight-content {
  flex: 1;
}

.spotlight-content h2 {
  font-size: 32px;
  color: #7a75d1;
  margin-bottom: 18px;
  font-weight: 700;
}

.spotlight-content p {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.spotlight-content ul {
  margin-left: 20px;
  list-style-type: disc;
  color: #222;
  font-size: 18px;
}

.spotlight-content ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Reverse order for second spotlight */
/* .spotlight-2 .spotlight-wrapper {
  flex-direction: row-reverse;
} */
/* Default (Section 1) */
.spotlight-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Section 2 → reorder only */
.spotlight-2 .spotlight-content {
  order: 1;
}

.spotlight-2 .spotlight-image {
  order: 2;
}

/* Responsive */
@media (max-width: 800px) {
  .spotlight-wrapper {
    flex-direction: column;
  }

  .spotlight-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* -----------------------------
   NAVBAR & DROPDOWN STYLES
--------------------------------*/

/* Parent li with dropdown */
.has-dropdown {
    position: relative;
}

/* Dropdown menu hidden by default */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

/* Show dropdown on hover (desktop) */
.has-dropdown:hover > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown visible when parent has 'open' class (click/tap) */
.has-dropdown.open > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown li {
    padding: 10px 20px;
}

/* Links inside dropdown */
.dropdown li a {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Hover effect for dropdown items */
.dropdown li:hover {
    background-color: #f5f5f5;
}
.abt-1,.abt-strs
{
  color: #000000;
  
}
/* Responsive: ensure dropdown works on mobile */
@media (max-width: 991px) {
    .has-dropdown .dropdown {
        position: static; /* dropdown stacked for mobile */
        transform: none;
        opacity: 1;
        display: none; /* hidden by default */
        box-shadow: none;
    }
    .has-dropdown.open .dropdown {
        display: block; /* show when clicked */
    }
    .abt-1,.abt-strs
    {
      text-align: left;
      width: 353px;
    }
    /* .ux-tit-know{
          width: max-content;
    position: relative;
    left: -15px;
    } */
    .ux-tit-know-2
    {
      font-size: 20px;
    }
        
}
/* =========================
   INFINITESEVA HUB SECTION
========================= */
.is-hub-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff7a18, #6a11cb);
  color: #fff;
  text-align: center;
}

/* Header */
.is-hub-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.is-hub-header p {
  font-size: 25px;
  opacity: 0.9;
  margin-bottom: 50px;
}

/* Grid */
.is-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.is-hub-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* Image */
.is-hub-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.is-hub-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Hover Effects */
.is-hub-card:hover img {
  transform: scale(1.1);
}

.is-hub-card:hover .is-hub-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Content */
.is-hub-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.is-date {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

/* Button */
.is-hub-overlay button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ff7a18;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.is-hub-overlay button:hover {
  background: #6a11cb;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 992px) {
  .is-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .is-hub-card img {
    height: 220px;
  }

  .is-hub-header h2 {
    font-size: 2rem;
  }
   .is-hub-overlay {
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    background: rgba(0, 0, 0, 0.75);
    padding: 15px;
  }

  .is-hub-card {
    display: flex;
    flex-direction: column;
  }
}

/* =========================
   COMPACT QUOTE STRIP
========================= */
.is-final-quote {
  padding: 25px 15px; /* reduced height */
  text-align: center;
  background: linear-gradient(135deg, #6a11cb, #ff7a18);
}

/* remove big glow effects if present */
.is-final-quote::before,
.is-final-quote::after {
  display: none;
}

/* content */
.is-final-box {
  max-width: 900px;
  margin: auto;
}

/* text */
.is-final-box p {
  width: max-content;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

/* mobile */
@media (max-width: 768px) {
  .is-final-box p {
    width: fit-content;
    font-size: 0.95rem;
  }
}



/* =========================
   CTA SECTION - SOFT LIGHT BREAK
========================= */
.is-hub-cta-alt {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f3f0ff);
  position: relative;
  overflow: hidden;
}

/* soft gradient blobs */
.is-hub-cta-alt::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(106,17,203,0.15), transparent 70%);
  top: -100px;
  left: -100px;
}

.is-hub-cta-alt::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,122,24,0.15), transparent 70%);
  bottom: -100px;
  right: -100px;
}

/* content box */
.is-hub-cta-box-alt {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* heading */
.is-hub-cta-box-alt h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

/* text */
.is-hub-cta-box-alt p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* buttons */
.is-hub-cta-buttons-alt {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.is-hub-cta-buttons-alt button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

/* primary */
.is-hub-cta-buttons-alt button:first-child {
  background: linear-gradient(135deg, #6a11cb, #ff7a18);
  color: #fff;
}

/* secondary */
.is-hub-cta-buttons-alt button:last-child {
  background: #fff;
  color: #6a11cb;
  border: 2px solid #6a11cb;
}

/* hover */
.is-hub-cta-buttons-alt button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* mobile */
@media (max-width: 768px) {
  .is-hub-cta-box-alt h2 {
    font-size: 2rem;
  }

  .is-hub-cta-box-alt p {
    font-size: 1rem;
  }
}
.tc-tp-1{
  font-size: 38px;
}
/* FULL WIDTH TOP TICKER */
.event-ticker {
    position: absolute;
    top: 0;              /*  move to top */
    left: 0;
    width: 100%;         /*  full width */
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10;
}

/* Label */
.ticker-label {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    white-space: nowrap;
}

/* Scrolling area */
.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

/* Scrolling text */
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 18s linear infinite;
}

.ticker-content span {
    margin-right: 60px;
    color: #fff;
    font-size: 14px;
}

/* Animation */
/* @keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
} */
@keyframes ticker-scroll {
  0% {
      transform: translateX(0);   /*  visible instantly */
  }
  100% {
      transform: translateX(-100%);
  }
}


/* Pause on hover */
.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}
/* ABOUT HERO SECTION */
.about-hero-section {
    width: 100%;
    min-height: 90vh;
    padding-top: 10px; /* adjust based on navbar height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(to bottom, #ffffff, #f8f9fb);
}

/* TEXT CONTENT */
.about-content {
    text-align: center;
    max-width: 900px;
    padding: 20px 0px;
}

.about-heading {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #5b50d6 !important;
}

.about-text {
    font-size: 22px;
    line-height: 1.2;
    color: #292828;
}

/* IMAGE SECTION */
.about-image-wrapper {
    width: 80%;
    height: 100vh;
    /*height: calc(100vh - 250px); /* remaining screen height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {

  .about-hero-section {
    margin-bottom: -105PX;
  }

    .about-heading {
        font-size: 28px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-content {
        padding: 20px 15px;
    }

    .about-image-wrapper {
        width: 95%;
        height: auto;
        margin-bottom: 30px;
    }

    .about-image-wrapper img {
        height: auto;
        border-radius: 15px;
    }
}
.abt-blf{
  color: #000000 !important;
}

/* SECTION */
.is-leadership-section {
  padding: 80px 8%;
  background: #f4f4f4;
}

/* CONTAINER */
.is-leadership-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.is-leadership-title {
  text-align: center;
  font-size: 34px;
  color: #ff7e00;
  margin-bottom: 40px;
}

/* CARD */
.is-leadership-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

/* HOVER */
.is-leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.is-leadership-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top;
}

/* CONTENT */
.is-leadership-content {
  padding: 30px;
}

.is-leadership-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

/* STRONG TEXT */
.is-leadership-content strong {
  color: #5f2c82;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .is-leadership-image img {
      height: 280px;
  }

  .is-leadership-title {
      font-size: 26px;
  }
}
/* =========================
   STATS2 SECTION
========================= */
.stats2-section {
  background: linear-gradient(135deg, #ecebff, #f5f3ff);
  padding: 70px 20px;
  text-align: center;
}

.stats2-section h2 {
  font-size: 32px;
  color: #5f2c82;
  margin-bottom: 40px;
  font-weight: 700;
}

/* =========================
   GRID
========================= */
.stats2-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   CARD
========================= */
.stats2-card {
  position: relative;
  background: linear-gradient(135deg, #ff7a18, #5b50d6);
  color: #fff;

  padding: 24px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 190px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;

  /* Animation */
  /* opacity: 0;
  transform: translateY(30px) scale(0.95); */
}

/* Glow overlay */
.stats2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, transparent);
  opacity: 0.08;
}

/* On scroll visible */
.stats2-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover */
.stats2-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* =========================
   TOP CONTENT
========================= */
.stats2-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.stats2-icon {
  width: 34px;
  height: 34px;
}

.stats2-top h3 {
  font-size: 50px;
  font-weight: 700;
}

/* =========================
   TEXT
========================= */
.stats2-bottom p {
  font-size: 21px;
  line-height: 1.5;
  opacity: 0.95;
}

/* =========================
   TABLET (2 CARDS)
========================= */
@media (max-width: 992px) {
  .stats2-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE (1 CARD)
========================= */
@media (max-width: 576px) {
  .stats2-row {
    grid-template-columns: 1fr;
  }

  .stats2-section {
    padding: 50px 15px;
  }

  .stats2-section h2 {
    font-size: 24px;
  }

  .stats2-card {
    padding: 20px;
    min-height: 170px;
  }

  .stats2-top h3 {
    font-size: 20px;
  }

  .stats2-bottom p {
    font-size: 14px;
  }
}

/* =========================
   SECTION
========================= */
.nx-team-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f3ff, #ecebff);
  text-align: center;
}

.nx-team-title {
  font-size: 32px;
   color: #f4711e;
  margin-bottom: 50px;
  font-weight: 700;
}

/* =========================
   DESKTOP GRID
========================= */
.nx-team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   CARD
========================= */
.nx-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 340px;
  cursor: pointer;
}

/* IMAGE */
.nx-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.nx-team-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2),
    transparent
  );

  color: #fff;
  text-align: left;
}

/* TEXT */
.nx-team-overlay h3 {
  
  font-size: 18px;
  font-weight: 600;
}

.nx-team-overlay p {
  font-size: 13px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.nx-team-card:hover img {
  transform: scale(1.1);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .nx-team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE (SCROLL - ONE CARD)
========================= */
@media (max-width: 576px) {

  .nx-team-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
  }

  .nx-team-container::-webkit-scrollbar {
    display: none;
  }

  .nx-team-card {
    min-width: 85%;
    height: 320px;

    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .nx-team-title {
    font-size: 24px;
  }
}

/* =========================
   ADVISORS SECTION
========================= */
.nx-advisors-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f3f0ff);
  text-align: center;
}

.nx-advisors-title {
  font-size: 32px;
  color: #5f2c82;
  margin-bottom: 50px;
  font-weight: 700;
}

/* =========================
   CONTAINER (GRID BASE)
========================= */
.nx-advisors-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   SECOND ROW (CENTERED)
========================= */
.nx-advisors-row2 {
  grid-column: 1 / -1; /* full width */

  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Make row2 cards same size as grid */
.nx-advisors-row2 .nx-advisors-card {
  width: calc(25% - 18px);
}

/* =========================
   CARD
========================= */
.nx-advisors-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 280px;
  cursor: pointer;
}

/* IMAGE */
.nx-advisors-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.nx-advisors-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2),
    transparent
  );

  color: #fff;
  text-align: left;
}

.nx-advisors-overlay h3 {
  font-size: 16px;
  font-weight: 600;
}

.nx-advisors-overlay p {
  font-size: 12px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.nx-advisors-card:hover img {
  transform: scale(1.08);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .nx-advisors-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .nx-advisors-row2 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nx-advisors-row2 .nx-advisors-card {
    width: calc(50% - 12px);
  }

  .nx-advisors-card {
    height: 260px;
  }
}

/* =========================
   MOBILE (1 CARD SCROLL)
========================= */
@media (max-width: 576px) {

  .nx-advisors-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;

    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .nx-advisors-container::-webkit-scrollbar {
    display: none;
  }

  /* REMOVE ROW2 LAYOUT IN MOBILE */
  .nx-advisors-row2 {
    display: contents;
  }

  .nx-advisors-card {
    flex: 0 0 100%;
    max-width: 100%;
    height: 260px;

    scroll-snap-align: start;
  }

  .nx-advisors-title {
    font-size: 24px;
  }
}
/* =========================
   CORE VOLUNTEERS SECTION
========================= */
.nx-core-section {
  padding: 80px 20px;
   /*  Violet → Soft Orange Gradient */
   background: linear-gradient(
    135deg,
    #5f2c82 0%,     /* deep violet */
    #7b3fa0 35%,    /* lighter violet */
    #ff9a44 100%    /* soft orange */
  );
  text-align: center;
}

.nx-core-title {
  font-size: 32px;
  color: #f4711e;
  margin-bottom: 50px;
  font-weight: 700;
}

/* GRID */
.nx-core-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.nx-core-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;

  text-align: left;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* HOVER */
.nx-core-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* NAME */
.nx-core-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* ROLE */
.nx-core-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .nx-core-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .nx-core-container {
    grid-template-columns: 1fr;
  }

  .nx-core-title {
    font-size: 24px;
  }

  .nx-core-card {
    padding: 16px;
  }
}
/* ACTIVE STYLE */
.main-nav ul li a.active {
  color: #ff7e00; /* orange */
  font-weight: 600;
}

/* UNDERLINE EFFECT */
.main-nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff7e00;
}
@media (max-width: 800px) {

  .spotlight-wrapper {
    flex-direction: column;
    text-align: center; /* optional for better look */
  }

  /* 🔥 FIX for second section */
  .spotlight-2 .spotlight-wrapper {
    flex-direction: column;
  }

}




/* =========================
   CONTACT CARDS SECTION
========================= */
:root {
  --primary: #5f2c82;   /* violet */
  --secondary: #ff7e00; /* orange */
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f7f8fc;
}

.contact-modern {
  padding: 90px 20px;
  background: var(--bg-light);
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-wrapper h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 60px;
}

/* GRID */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.c-card {
  position: relative;
  padding: 35px 25px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
  text-align: left;
}

.c-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* TOP BORDER */
.c-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 18px 18px 0 0;
}

/* ICON */
.c-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TEXT */
.c-card h3 {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 10px;
}

.c-card p {
  color: var(--text-dark);
  font-size: 15px;
}

.c-card span {
  color: var(--text-light);
  font-size: 13px;
}

/* FULL WIDTH */
.c-card.wide {
  grid-column: span 3;
  text-align: center;
}

/* SOCIAL */
.social-modern {
  margin-top: 70px;
}

.social-modern h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
}

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

  .c-card.wide {
    grid-column: span 2;
  }
}

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

  .c-card.wide {
    grid-column: span 1;
  }

  .contact-wrapper h2 {
    font-size: 28px;
  }
}





/* =========================
   INQUIRY DIRECTORY
========================= */

.inquiry-directory {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffecd2, #fcb69f, #c3aed6);
}

.inq-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.inq-container h2 {
  font-size: 38px;
  color: #5f2c82;
  margin-bottom: 15px;
}

.inq-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* GRID */
.inq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.inq-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  transition: 0.4s;
  backdrop-filter: blur(10px);
}

.inq-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ICON */
.inq-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* TITLE */
.inq-card h3 {
  font-size: 20px;
  color: #ff7e00;
  margin-bottom: 12px;
}

/* TEXT */
.inq-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* EMAIL */
.inq-card span {
  font-size: 13px;
  color: #5f2c82;
  font-weight: bold;
}

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

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

  .inq-container h2 {
    font-size: 28px;
  }
}




/* =========================
   MODERN CONTACT FORM
========================= */

.contact-pro-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.contact-pro-container {
  max-width: 900px;
  margin: auto;
  padding: 50px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-pro-container h2 {
  text-align: center;
  color: #5f2c82;
  margin-bottom: 40px;
  font-size: 34px;
}

/* GRID */
.pro-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* FULL WIDTH */
.pro-input-group.full {
  grid-column: span 2;
}

/* INPUT GROUP */
.pro-input-group {
  position: relative;
}

/* INPUT / SELECT / TEXTAREA */
.pro-input-group input,
.pro-input-group select,
.pro-input-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

/* TEXTAREA */
.pro-input-group textarea {
  height: 120px;
  resize: none;
}

/* FLOAT LABEL */
.pro-input-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #777;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}



/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

#captchaQuestion {
  font-weight: bold;
  color: #5f2c82;
}

/* BUTTON */
.pro-submit-btn {
  margin-top: 30px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #5f2c82, #ff7e00);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.pro-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* FIX FLOAT LABEL ISSUE */

.pro-input-group input:focus + label,
.pro-input-group textarea:focus + label,
.pro-input-group select:focus + label,
.pro-input-group input:not(:placeholder-shown) + label,
.pro-input-group textarea:not(:placeholder-shown) + label,
.pro-input-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #ff7e00;
}
.g-recaptcha {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.dyn-tc-cnt
{
  font-size: 34px;
}
.new-ct-her
{
  font-size: 20px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .pro-form-grid {
    grid-template-columns: 1fr;
        position: relative;
    left: -15px;
  }

  .pro-input-group.full {
    grid-column: span 1;
  }

  .contact-pro-container {
    padding: 30px;
  }
  .dyn-tc-cnt {
    font-size: 26px;
}
.new-ct-her {
    font-size: 16px;
}
.contact-pro-container h2 {
  font-size: 28px;
}
.cnt-her-h h1
{
  font-size: 45px;
}
}

/* EVENTS PAGE */
.events-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.section-title {
    margin: 30px 0 20px;
    font-size: 24px;
}

/* EVENT CARD */
.event-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.event-date {
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    font-size: 12px;
    color: #454545;
}

.event-date .day {
  color: orangered;
    font-size: 28px;
    font-weight: bold;
}

.event-date .year {
    font-size: 12px;
    color: #606060;
}

.event-details h3 {
    margin: 5px 0;
}

.event-time {
    color: #666;
}

/* NO EVENTS */
.no-events {
    background: #f1f1f1;
    padding: 15px;
    text-align: center;
    border-radius: 6px;
}




/* ===== PAGE WRAPPER (SAFE LAYOUT) ===== */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
.navbar {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 50px;
}

/* ===== CONTENT ===== */
.add-event-wrapper {
    flex: 1;
    max-width: 600px;
    width: 90%;
    margin: 50px auto;   /* CENTER PROPERLY */
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ===== TITLE ===== */
.add-event-wrapper h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* ===== FORM ===== */
.event-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-form input,
.event-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.event-form input:focus,
.event-form textarea:focus {
    border-color: #4c5cff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76,92,255,0.1);
}

.event-form textarea {
    min-height: 100px;
}

.event-form button {
    background: #4c5cff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.event-form button:hover {
    background: #2f3cff;
}

/* ===== ERROR ===== */
.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer-modern {
    background: #0f172a;
    color: #fff;
}

.footer-modern-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.footer-modern-col h4 {
    margin-bottom: 10px;
}

.footer-modern-col p {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-modern-logo {
    width: 140px;
    margin-bottom: 10px;
}

.footer-modern-tag {
    font-size: 13px;
    color: #94a3b8;
}

/* bottom */
.footer-modern-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #1e293b;
    font-size: 13px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .add-event-wrapper {
        width: 92%;
        margin: 0px auto;   /* center */
        padding: 20px;
    }

    .event-form input,
    .event-form textarea {
        font-size: 13px;
    }

    .event-form button {
        font-size: 14px;
    }

    .footer-modern-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-modern-logo {
        margin: 0 auto 10px;
    }
}




/* =========================
   SUCCESS MESSAGE
========================= */
.ev-success-msg { 
  background-color: #16a34a;       /* green background */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: slideDownFade 0.5s ease;
  position: relative;
  z-index: 100;
}

@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ev-success-msg.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}



.ux-footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

/* Left text */
.ux-footer-bottom .copyright {
  font-size: 13px;
  color: #aaa;
}

/* Right watermark style */
.powered-by {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;

   /* watermark feel */


  transition: all 0.3s ease;
}

/* Logo styling */
.powered-by img {
  height: 16px;
  width: auto;


}

/* Hover effect (subtle highlight) */
.powered-by:hover {
  opacity: 1;
  color: #ffffff;
}

.powered-by:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {

  .ux-footer-bottom {
    justify-content: center;
  }
}
@media (max-width:768px){
  .ux-help-wrapper-mobile{
      grid-template-columns:1fr !important;
  }
}