﻿/* ============================================
   LEXORA REVA NETWORK - Website Theme CSS
   Real Estate Verified Alliance
   ============================================ */

/* ============================================
   CSS VARIABLES - LIGHT THEME
   ============================================ */
:root {
    /* Primary Colors */
    --primary-blue: #1565C0;
    --primary-blue-light: #1976D2;
    --primary-blue-dark: #0D47A1;
    --primary-blue-lighter: #42A5F5;
    --primary-blue-heading: #0066CC; 
    /* Accent Colors */
    --accent-blue: #2196F3;
    --accent-dark: #212121;
    --accent-gray: #424242;
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    /* Semantic Colors */
    --success: #4CAF50;
    --success-light: #81C784;
    --success-dark: #388E3C;
    --warning: #FF9800;
    --warning-light: #FFB74D;
    --warning-dark: #F57C00;
    --error: #F44336;
    --error-light: #E57373;
    --error-dark: #D32F2F;
    --info: #2196F3;
    --info-light: #64B5F6;
    --info-dark: #1976D2;
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-tertiary: #EEEEEE;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-tertiary: #9E9E9E;
    --text-inverse: #FFFFFF;
    --text-link: #1565C0;
    --text-link-hover: #0D47A1;
    /* Border Colors */
    --border-light: #E0E0E0;
    --border-medium: #BDBDBD;
    --border-dark: #757575;
    /* Shadow Colors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    /* card colors */
    --card-primary: #f2f2f2;
    /* Typography */
    --font-family-primary: 'Montserrat','Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Montserrat','Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-monospace: 'Courier New', Courier, monospace;
    /* Font Sizes */
    --font-size-xs: 0.60rem; /* 12px */
    --font-size-sm: 0.75rem; /* 14px */
    --font-size-base: .9rem; /* 16px */
    --font-size-lg: 1.05rem; /* 18px */
    --font-size-xl: 1.20rem; /* 20px */
    --font-size-2xl: 1.5rem; /* 24px */
    --font-size-3xl: 1.95rem; /* 30px */
    --font-size-4xl: 2.40rem; /* 36px */
    --font-size-5xl: 3rem; /* 48px */
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    /* Line Heights */
    --line-height-tight: 1.15;
    --line-height-normal: 1.3;
    --line-height-relaxed: 1.65;
    /* Spacing */
    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem; /* 8px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */
    --spacing-2xl: 3rem; /* 48px */
    --spacing-3xl: 4rem; /* 64px */
    /* padding */
    --padding-xs: 0.25rem; /* 4px */
    --padding-sm: 0.3125rem; /* 5px */
    --padding-md: 1rem; /* 16px */
    --padding-lg: 1.8rem; /* 26px */
    --padding-xl: 2rem; /* 32px */
    --padding-2xl: 3rem; /* 48px */
    --padding-3xl: 4rem; /* 64px */
    /*margins*/
    --margin-1xl: 1rem;
    --margin-2xl: 3rem;
    --margin-3xl: 4rem;
    --margin-5xl: 6rem;
    /* Border Radius */
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 1rem; /* 16px */
    --radius-xl: 1.5rem; /* 24px */
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    /* added by dawood*/
    --bg-light-gray: #e0e1e3; /* this for svg line*/
    /* reva network button color*/
    --icon-info: #e0e1e3; /* Blue color for normal button */
    --icon-success: #0D47A1; /* Darker blue for hover */
    --shadow-hover: rgba(0,0,0,0.2);
    --padding-sm: 0.75rem;
    --padding-lg: 2rem;
    --transition: all 0.3s ease;
}

/* ============================================
   DARK THEME VARIABLES
   ============================================ */
[data-theme="dark"] {
    /* Primary Colors - Slightly lighter for dark mode */
    --primary-blue: #42A5F5;
    --primary-blue-light: #64B5F6;
    --primary-blue-dark: #1976D2;
    /* Background Colors */
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --bg-tertiary: #2C2C2C;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-tertiary: #808080;
    --text-inverse: #121212;
    --text-link: #42A5F5;
    --text-link-hover: #64B5F6;
    /* Border Colors */
    --border-light: #2C2C2C;
    --border-medium: #424242;
    --border-dark: #616161;
    /* Semantic Colors - Adjusted for dark mode */
    --success: #66BB6A;
    --warning: #FFA726;
    --error: #EF5350;
    --info: #42A5F5;
    /* Shadows - Darker and more pronounced */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    /*font-family: var(--font-family-heading);*/
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-5xl);
}

/*h2 {
    font-size: var(--font-size-4xl);
}
*/
h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    -webkit-background-clip: text;
    color: transparent;
}



h3 {
    /*font-size: var(--font-size-3xl);*/
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    -webkit-background-clip: text;
    color: transparent;
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--text-link);
    text-decoration: none;
    transition: color var(--transition-fast);
}

    a:hover {
        color: var(--text-link-hover);
        text-decoration: underline;
    }

/* ===== CUSTOM NAVBAR LIKE NAS.CO ===== */

#mainNav {
    background: #fff !important;
    box-shadow: none !important;
    padding: 0.5rem 0 !important;
    min-height: 70px;
    display: flex;
    align-items: center;
}

    /* Brand logo */
    #mainNav .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
    }

        #mainNav .navbar-brand img#navLogo {
            max-width: 100px;
            max-height: 50px;
            height: auto;
            object-fit: contain;
            display: block;
        }

    /* Nav links */
    #mainNav .navbar-nav .nav-link {
        font-weight: 400;
        font-size: var(--font-size-base);
        color: rgb(102, 102, 102) !important;
        padding: var(--padding-sm) var(--padding-md);
        text-decoration: none;
        text-transform: capitalize;
        line-height: var(--line-height-normal);
    }

    #mainNav .nav-link.home-active {
        color: #000 !important;
    }

/* =========================
   DESKTOP ONLY ALIGNMENT
========================= */
/*@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto;
    }
}*/

/* =========================
   MOBILE + 500% ZOOM
========================= */
/*@media (max-width: 991px) {

    #mainNav {
        padding: 0.5rem;
        align-items: flex-start;
    }*/

/* Force menu BELOW logo */
/*.navbar-collapse {
        width: 100%;
        margin-top: 12px;
        background: #fff;
        padding: 18px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }*/

/* Center stacked items */
/*.navbar-nav {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
        gap: 12px;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
    }

    .btn-login {
        width: 100%;
        margin-top: 0.75rem;
    }

    #mainNav .navbar-brand img#navLogo {
        max-width: 90px;
    }
}*/




/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--card-primary);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: var(--primary-blue-dark);
        text-decoration: none;
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background-color: var(--gray-600);
    color: var(--white);
}

    .btn-secondary:hover {
        background-color: var(--gray-700);
        text-decoration: none;
    }

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

    .btn-outline:hover {
        background-color: var(--primary-blue);
        color: var(--white);
        text-decoration: none;
    }

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-login {
    /*margin-left: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    background-color: var(--icon-info);
    border-color: var(--icon-info);
    font-weight: 500;
    padding: var(--padding-sm) var(--padding-lg) !important;*/
    /*border-radius: 8px;*/
    /*transition: var(--transition);*/
    text-decoration: none;
    margin-left: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

    .btn-login:hover {
        /*background-color: var(--primary-blue-dark);*/
        /*background-color: var(--icon-info);*/
        background-color: var(--icon-info);
        transform: translateY(-2px);
        text-decoration: none;
        color: #fff;
        box-shadow: 0 5px 15px var(--shadow-hover);
    }


/* ============================================
   CARDS
   ============================================ */
.card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

    .card:hover {
        box-shadow: var(--shadow-md);
    }

.card-header {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.card-body {
    color: var(--text-secondary);
}

.card-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    }

    .form-control::placeholder {
        color: var(--text-tertiary);
    }

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-error {
    color: var(--error);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.form-success {
    color: var(--success);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: background-color var(--transition-base);
}

.navbar-brand {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: color var(--transition-fast);
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-blue);
        text-decoration: none;
    }

/* ============================================
   CONTAINERS & LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--spacing-md) * -1);
}

.col {
    flex: 1;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    border-left-color: var(--success);
    color: var(--success-dark);
}

.alert-warning {
    background-color: rgba(255, 152, 0, 0.1);
    border-left-color: var(--warning);
    color: var(--warning-dark);
}

.alert-error {
    background-color: rgba(244, 67, 54, 0.1);
    border-left-color: var(--error);
    color: var(--error-dark);
}

.alert-info {
    background-color: rgba(33, 150, 243, 0.1);
    border-left-color: var(--info);
    color: var(--info-dark);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.badge-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.badge-success {
    background-color: var(--success);
    color: var(--white);
}

.badge-warning {
    background-color: var(--warning);
    color: var(--white);
}

.badge-error {
    background-color: var(--error);
    color: var(--white);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
    font-size:18px;
}

.text-blue {
    color: var(--primary-blue);
}

.text-white {
    color: var(--white);
}

.bg-primary {
    background-color: var(--bg-primary);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-dark {
    background-color: var(--accent-dark);
}

.mt-xs {
    margin-top: var(--spacing-xs);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-xs {
    margin-bottom: var(--spacing-xs);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.p-xs {
    padding: var(--spacing-xs);
}

.p-sm {
    padding: var(--spacing-sm);
}

.p-md {
    padding: var(--spacing-md);
}

.p-lg {
    padding: var(--spacing-lg);
}

.p-xl {
    padding: var(--spacing-xl);
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}


/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-medium);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

    .theme-toggle:hover {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
        color: var(--white);
    }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/*@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .row {
    flex-direction: column;
  }
}*/

/* ============================================
   PRINT STYLES
   ============================================ */
/*@media print {
  .navbar,
  .btn,
  .theme-toggle {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
}*/



/*   added from other place to this file by dawood */

/*   section 1 css */
.hero-section {
    position: relative;
    width: 100%;
    overflow: visible;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    margin-top: 0;
}

.center-video-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: transform 0.2s ease-out;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    transform-origin: center center;
}

.logo-video {
    width: 240px !important; /* Increase size */
    height: 240px !important; /* Same height */
    border-radius: 52%; /* Make it circle */
    object-fit: cover; /* Fill circle perfectly */
    overflow: hidden;
    margin-top: 80px; /* adjust value as needed */
    object-position: center center; /* ensure center crop */
}


/* Minimal hero styles */


.hero-text-section {
    position: relative;
    top: 55vh; /*  PUSH TEXT DOWN */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-content: center;
    color: white;
    z-index: 3;
    width: 90%;
    /*margin-top: 50px;*/ /* 👈 EXTRA GAP FROM LOGO */
}


    .hero-text-section h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        background: linear-gradient(90deg,#007bff,#8a2be2);
        -webkit-background-clip: text;
        color: transparent;
    }

/*.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}*/

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    padding-left: 20%;
    padding-right: 20%;
    margin-bottom: var(--margin-1xl);
}



/*@media(max-width:768px) {
    .logo-video {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        object-fit: cover;
    }
}

@media(max-width:480px) {
    .logo-video {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        object-fit: cover;
    }
}*/



/*@media (max-width: 992px), (min-resolution: 2dppx) {*/

/* HERO STACK */
/*.hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
        height: auto;
        min-height: 80vh;
        margin-top: 10px !important; 
        margin-bottom: 10px !important; 
    }*/

/* LOGO WRAPPER — CENTERED */
/*.center-video-wrapper {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;*/
/*margin: 0 auto 36px auto !important;*/
/*margin: 0 auto 24px auto !important;*/ /* reduce space below logo */
/*width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translate3d(0, 0, 0) !important;
        will-change: transform;
    }

   
    .logo-video {
        display: block;
        margin: 0 auto !important;
      
        transform: translate3d(0, var(--logo-y, 0px), 0) !important;
    }*/

/* TEXT BELOW LOGO */
/*.hero-text-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto !important;
        width: 100%;
        text-align: center;
        padding: 0 5px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}*/

/* SMALL DEVICES */
/*@media (max-width: 480px) {
    .hero-section {
        padding-top: 20px;*/ /* less gap from navbar */
/*padding-bottom: 10px;*/ /* less space at bottom */
/*}

    .logo-video {
        width: 120px !important;
        height: 120px !important;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}*/




#reva-network {
    margin-top: 50vh !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 25px;
    width: 80%;
    z-index: 1;
    padding: 1px 0;
    background-color: var(--card-primary);
}

    #reva-network .section-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
        margin-top: 15px;
        z-index: 3;
    }

    #reva-network .section-subtitle {
        color: #666;
        margin-bottom: 140px;
        z-index: 3;
    }

    #reva-network .diagram-container {
        position: relative;
        width: 720px;
        height: 420px;
        margin: 0 auto;
        /*background: var(--white);*/
        background: transparent;
    }





    #reva-network svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 727px;
        height: 300px;
        z-index: 1;
    }

/* Initial state */
/*.svg-line {
    stroke: var(--bg-light-gray);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}*/
/* Base line style */
.svg-line {
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 400; /* optional, for animation */
    stroke-dashoffset: 400; /* optional, for animation */
}

/* Individual line colors */
#line1 {
    stroke: #A543F5; /* Convert */
}

#line2 {
    stroke: #FF9A1F; /* Engage */
}

#line3 {
    stroke: #004EFF; /* amplify */
}

#line4 {
    stroke: #FF4A2A; /* discover */
}


    /* Trigger animation */
    .svg-line.animate {
        animation: drawLine 2s ease-out forwards;
    }

/* Keyframes */
@keyframes drawLine {
    from {
        stroke-dashoffset: 400;
    }

    to {
        stroke-dashoffset: 0;
    }
}


.svg-line {
    fill: none;
    stroke: #ddd;
    stroke-width: 2;
}

/* TEXT BASE */
.svg-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    dominant-baseline: middle;
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* COLORS */
.color-discover {
    fill: #FF4A2A;
}
.color-amplify {
    fill: #004EFF;
}
.color-convert {
    fill: #A543F5;
}
.color-engage {
   
    fill: #FF9A1F;
}

/* START POSITIONS */
.move-discover {
    transform: translate(18px, -20px);
}

.move-amplify {
    transform: translate(-13px, -20px);
}

.move-convert {
    transform: translate(-4px, -20px);
}

.move-engage {
    transform: translate(18px, -20px);
}

.svg-label.visible {
    opacity: 1;
}


/* hide text paths if needed */
svg path[id^="text-"] {
    pointer-events: none;
}





#reva-network circle {
    fill: var(--white);
    /*stroke: var(--blue);*/
    stroke: #8898a8;
    stroke-width: 2;
}

#reva-network .card {
    position: absolute;
    width: 130px;
    height: 130px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    color: var(--secondary-color);
    transform: translate(-50%, 0);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10), 0 0 40px rgba(0, 0, 0, 0.08), 0 0 60px rgba(0, 0, 0, 0.06), 0 0 80px rgba(0, 0, 0, 0.04), 0 0 30px rgba(255, 255, 255, 0.12);
}

    #reva-network .card i {
        font-size: 28px;
        /*color: var(--blue);*/
        margin-bottom: 8px;
    }



#reva-network .card-title {
    position: absolute;
    font-size: 18px;
    font-weight: 700;
    /*color: #222;*/
    color: #007bff;
    text-align: center;
    width: 140px; /* match card width */
    transform: translateX(-50%);
    margin-top: 8px;
    line-height: 1.4; /* controls vertical spacing */
    /*font-family: 'Montserrat', sans-serif;*/ /* or your preferred font */
}

#reva-network .card-caption {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    text-align: center;
    width: 140px;
    transform: translateX(-50%);
    margin-top: 16px; /* sits closer to title */
    line-height: 1.2; /* consistent spacing */
    /*font-family: 'Montserrat', sans-serif;*/ /* same font family for consistency */
}



/* Card 1 text */
#reva-network #card1 + .card-title {
    top: 270px; /* card1 top + card height + spacing */
    left: 8px;
}

    #reva-network #card1 + .card-title + .card-caption {
        top: 290px;
        left: 8px;
    }

/* Card 2 text */
#reva-network #card2 + .card-title {
    top: 330px;
    left: 193px;
}

    #reva-network #card2 + .card-title + .card-caption {
        top: 350px;
        left: 193px;
    }

/* Card 3 text */
#reva-network #card3 + .card-title {
    top: 330px;
    left: 534px;
}

    #reva-network #card3 + .card-title + .card-caption {
        top: 375px;
        left: 534px;
    }

/* Card 4 text */
#reva-network #card4 + .card-title {
    top: 270px;
    left: 719px;
}

    #reva-network #card4 + .card-title + .card-caption {
        top: 290px;
        left: 719px;
    }


/* Card positions */
#reva-network #card1 {
    top: 135px;
    left: 8px;
    background: linear-gradient(145deg, #ffffff, #f6f1d5b3);
}

#reva-network #card2 {
    top: 195px;
    left: 193px;
    background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
}

#reva-network #card3 {
    top: 195px;
    left: 534px;
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
}

#reva-network #card4 {
    top: 135px;
    left: 719px;
    background: linear-gradient(145deg, #ffffff, #d7eccdb3);
}

#reva-network .card-text {
    font-size: 10px;
    /*margin: 0;*/
    line-height: 1;
}




#reva-network .btn {
    text-decoration: none;
   
    margin-top: 50px; /* increase this value to move it further down */
    margin-bottom: 30px;
    padding: 16px 38px;
    font-size: 18px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

    #reva-network .btn:hover {
        background-color: var(--icon-info);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover);
    }




/*section 2 css*/

/*.reva-hover-card {
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px auto;
}

    .reva-hover-card::before {
        content: "";
        position: absolute;
        inset: -20px;
        background: radial-gradient(circle, rgba(0,123,255,0.15), transparent);
        filter: blur(40px);
        z-index: -1;
    }

    .reva-hover-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    }*/

/* ===== Base Hover Card ===== */
.reva-hover-card {
    position: relative;
    z-index: 5;
    margin: 10px auto;
    padding: 10px;
    /* Animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Glow control */
    /*--glow-color: rgba(0, 123, 255, 0.15);*/
    /* Safety: prevent glow from affecting card background */
    isolation: isolate;
}

    /* ===== Glow Effect (OUTSIDE the card) ===== */
    .reva-hover-card::before {
        content: "";
        position: absolute;
        inset: -20px;
        /*background: radial-gradient(circle, var(--glow-color), transparent);*/
        filter: blur(40px);
        z-index: -1;
    }

    /* ===== Hover Lift & Shadow ===== */
    .reva-hover-card:hover {
        transform: translateY(-6px);
        /*box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);*/
        /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
    }

/* ===== Individual Glow Colors ===== */
.glow-blue {
    --glow-color: rgba(54, 162, 235, 0.18);
}

.glow-green {
    --glow-color: rgba(75, 192, 192, 0.18);
}

.glow-purple {
    --glow-color: rgba(153, 102, 255, 0.18);
}

.glow-orange {
    --glow-color: rgba(255, 159, 64, 0.18);
}

.glow-pink {
    --glow-color: rgba(255, 99, 132, 0.18);
}

.glow-yellow {
    --glow-color: rgba(255, 205, 86, 0.18);
}


/* ============================= */
/* REVA SECTION – SAFE & SCOPED */
/* ============================= */

#reva-section {
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    width: 80%;
    padding: 25px;            /* equal inner spacing */
    margin: 25px auto;        /* equal outer spacing + centered */
    text-align: center;
    border-radius: 25px;
    box-sizing: border-box;
}

/* Ensure box sizing stays inside this section only */
#reva-section,
#reva-section * {
    box-sizing: border-box;
}

/* ============================= */
/* HEADINGS */
/* ============================= */

#reva-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
}

#reva-section .reva-features-title {
    font-size: 24px;
    font-weight: 600;
    color: #0066CC;
    margin: 0 0 6px 0;         /* tight & controlled */
    letter-spacing: 1.5px;
}

#reva-section .features-title {
    font-size: 16px;
    font-weight: 600;
    color: #0066CC;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

/* ============================= */
/* GRID & LAYOUT */
/* ============================= */

/* Remove Bootstrap row gaps */
#reva-section .row {
    margin: 0;
    padding: 0;
}

/* Tight column spacing */
#reva-section .col-lg-6 {
    padding: 10px;
    margin: 0;
}

/* ============================= */
/* CARD STYLING */
/* ============================= */

#reva-section .card {
    margin: 0;
    border-radius: 16px;
}

#reva-section .card-body {
    padding: 8px;             /* tight inner card spacing */
}

/* ============================= */
/* LIST STYLING */
/* ============================= */

#reva-section .reva-features-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 auto 12px auto;  /* remove top gap */
    max-width: 700px;
    text-align: left;
    line-height: 1.6;
    color: #444;
}

#reva-section .reva-features-list li {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ============================= */
/* REMOVE UNWANTED <br> SPACING */
/* ============================= */

/* Kill <br> gaps ONLY in right column */
#reva-section .col-lg-6:last-child br {
    display: none;
}


/* Target ONLY the specific row inside #reva-section */
#reva-section > .container > .row:nth-of-type(2) {
    margin-top: -15px;  /* move entire row UP */
    margin-bottom: 25px;  /* move entire row UP */
}



/*section 3 css */


/* ===== Section Layout ===== */
#app-features {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    width: 80%;
    padding: 15px; /* equal inner spacing on all sides */
    margin: 25px auto; /* equal outer spacing top/bottom, centered horizontally */
    text-align: center;
    border-radius: 25px;
    box-sizing: border-box; /* ensures inner spacing doesn't overflow */
}

    /* Headings */
    #app-features h2,
    #app-features h3 {
        margin-top: 10px; 
        margin-bottom: 10px; 
        line-height: 1.2;
        background: linear-gradient(90deg,#007bff,#8a2be2);
        -webkit-background-clip: text;
        color: transparent;
    }


.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0066CC;
}

.section-subtitle {
    font-size: 18px;
    color: #2C3E50;
    margin: 5px 0 15px 0; 
}


.feature-heading {
    color: #0066CC;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text,
.reva-description {
    font-size: 17px;
    color: #444;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.trusted-line {
    color: #0066CC;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 12px 0; 
}


.feature-List {
    list-style: none;
    padding-left: 0;
    margin: 0 0 12px 0; 
}

    .feature-List li {
        display: flex; /* aligns checkmark and text horizontally */
        align-items: flex-start; /* aligns multi-line text with checkmark */
        gap: 8px; /* space between checkmark and text */
        font-size: 16px;
        margin-bottom: 8px; /* reduced spacing between items */
        line-height: 1.45;
    }

        .feature-List li::before {
            content: "✔"; /* the checkmark */
            color: #0066CC;
            font-weight: 700;
            flex-shrink: 0; /* ensures checkmark doesn’t shrink */
        }


.app-downloads {
    margin: 10px 0; 
}

    .app-downloads img {
        transition: transform 0.3s ease;
    }

        .app-downloads img:hover {
            transform: scale(1.05);
        }

/* Screenshots */
.screenshot-grid {
    display: flex;
    gap: 15px; 
    justify-content: center;
    margin-top: -10px; 
}

.shot-img {
    width: 100%;
    max-width: 240px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

    .shot-img:hover {
        transform: scale(1.04);
    }

/* Rows & columns spacing */
#app-features .row {
    margin: 0;
    padding: 0;
}

#app-features .col-lg-6,
#app-features .col-md-12,
#app-features .col-xl-8,
#app-features .col-lg-8 {
    margin: 0;
    padding: 10px; 
}

/* Pull up the row with text and screenshots */
#app-features .row.align-items-center {
    margin-top: -80px; /* adjusted to reduce extra space above row */
}

/* Remove extra bottom margin on left column */
#app-features .col-lg-6.col-md-12.mb-4 {
    margin-bottom: 0;
}

/* Ensure inner content padding/margin consistency */
#app-features .reva-description,
#app-features .trusted-line,
#app-features .feature-list,
#app-features .app-downloads {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    text-align: left;
}


/*section 4 css*/


#reva-identity {
    background-color: var(--card-primary);
    width: 80%;
    padding: 25px; 
    margin: 25px auto; 
    text-align: center;
    border-radius: 25px;
    box-sizing: border-box; 
}

/* Reset row and column spacing inside #reva-identity */
#reva-identity .row,
#reva-identity .col-12 {
    margin: 0;
    padding: 0;
}


#reva-identity h2 {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 25px;    
    margin-bottom: 25px; 
    line-height: 1.3;
}



.reva-title {
    font-size: 32px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.reva-subtitle {
    font-size: 18px;
    margin: 0 auto 15px;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 1000px; 
    text-align: center;
}




.reva-description {
    font-size: 16px;
    color: #2C3E50;
    line-height: 1.7;
    max-width: 1250px; 
    margin: 0 auto 16px; 
    padding: 0 20px; 
    text-align: center;
}


.stat-card {
    background-color: var(--bg-primary);
    border-radius: 10px;
    padding: 25px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0066CC;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 15px;
    color: #333;
    letter-spacing: 1px;
}

/* Move the stats row up within #reva-identity */
#reva-identity .row.text-center.mb-4 {
    margin-top: -40px; /* moves the row up closer to the content above */
  
}


/* Make columns flex containers to allow equal height cards */
.row.text-center > [class*="col-"] {
    display: flex;
    flex-direction: column;
}



/* Section 5: REVA Download App css */

#reva-download-app {
    background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
    width: 80%;
    padding: 25px; 
    margin: 25px auto; 
    text-align: center;
    border-radius: 25px;
    box-sizing: border-box;
}

    
    #reva-download-app .container {
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }

 
    #reva-download-app .row {
        margin: 0;
        padding: 0;
    }

   
    #reva-download-app h2 {
        font-size: 30px;
        font-weight: 800;
        margin: 15px 0; 
        background: linear-gradient(90deg,#007bff,#8a2be2);
        -webkit-background-clip: text;
        color: transparent;
        line-height: 1.2;
    }

   
    #reva-download-app .reva-description {
        font-size: 16px;
        margin: 10px 0; 
        line-height: 1.6;
    }

    
    #reva-download-app .playstore-badge {
        margin: 40px 0 10px 0; /* 40px space above, 10px below */
        max-width: 150px;
    }





/*section 6 css*/

.our-network {
    background-color: var(--card-primary);
    width: 80%;
    padding: 25px; /* equal INNER spacing */
    margin: 25px auto; /* equal OUTER spacing */
    text-align: center;
    border-radius: 25px;
    box-sizing: border-box;
}

    /* Tight, controlled spacing for text blocks ONLY */
    .our-network > .text-center,
    .our-network > .container-fluid {
        margin: 0;
        padding: 10px 0; /* vertical rhythm only */
    }

    /* Reduce stacked paragraph spacing only in our-network */
    .our-network .text-center.mb-3 {
        margin-top: -20px !important;
    }

    .our-network .reva-description {
        margin-bottom: 0px !important;
    }


#our-network h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 30px;
}
    .our-network h5 {
        color: #333; 
    }



.reva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 18px;
    justify-content: center;
    justify-items: center;
}


.jd-card {
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .jd-card:hover {
        transform: translateY(-5px);
    }

.jd-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease;
}

.jd-card:hover .jd-bg {
    transform: scale(1.12);
}

.jd-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
    z-index: 1;
}

.jd-content {
    position: absolute;
    bottom: 4px;
    left: 15px;
    right: 15px;
    color: #fff;
    z-index: 2;
}

    .jd-content h3 {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px;
        line-height: 1;
        letter-spacing: 0.3px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
        color: #fff
    }

    .jd-content p {
        font-size: 13.5px;
        margin: 0;
        opacity: 0.95;
        line-height: 1.45;
        font-weight: 400;
       
        color: #fff letter-spacing: 0.2px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.65);
    }


.member-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.member-card {
    background-color: var(--gray-100);
   
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px;
    cursor: pointer;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:50px;
}

    .member-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle i {
        color: #fff;
        font-size: 28px;
    }

/* Predefined colors */
.color1 {
    background-color: #FF6B6B;
}

.color2 {
    background-color: #FFD93D;
}

.color3 {
    background-color: #6BCB77;
}

.color4 {
    background-color: #4D96FF;
}

.color5 {
    background-color: #FF6EC7;
}

.color6 {
    background-color: #FFA500;
}

.color7 {
    background-color: #A569BD;
}

.color8 {
    background-color: #5DADE2;
}

.color9 {
    background-color: #48C9B0;
}

.color10 {
    background-color: #F39C12;
}

.color11 {
    background-color: #EC7063;
}

.color12 {
    background-color: #AF7AC5;
}

.member-text {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin-top: 8px;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==== BACK TO TOP BUTTON ==== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--icon-success);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
    z-index: 1000;
}

    .btn-back-to-top:hover {
        background-color: var(--secondary-color);
        transform: translateY(-5px);
    }

    .btn-back-to-top.show {
        display: flex;
    }

/*aboutus css */


.aboutus-intro-section {
    padding: 40px 16px 10px;
    background: #ffffff;
}
.aboutus-bottom-section {
    padding: 40px 16px 10px;
    margin-top: -130px; /* increase value to move more upward */
    background: #ffffff;
}


.aboutus-main-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

    .aboutus-main-title span {
        font-weight: 500;
        font-size: 18px;
        display: block;
        color: #555;
    }

.aboutus-intro-text {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #444;
}

.aboutus-tagline {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin: 25px 0;
}
.aboutus-cards-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/*.aboutus-step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 85%;
    margin: 60px auto;
    padding: 35px 40px;
    border-radius: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}*/
.aboutus-step-card {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 85%;
    margin: 60px auto; /* keeps it centered vertically and horizontally */
    padding: 40px; /* equal padding on all sides */
    border-radius: 28px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    box-sizing: border-box; /* ensure padding doesn't break width */
}

    /* Optional: ensure child elements respect box-sizing */
    .aboutus-step-card *,
    .aboutus-step-card *::before,
    .aboutus-step-card *::after {
        box-sizing: border-box;
    }

.aboutus-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.22);
}

/* Direction */
.aboutus-step-left {
    flex-direction: row;
}

.aboutus-step-right {
    flex-direction: row-reverse;
}

/* Light Pastel Gradients */
.reva-Outreach {
    background: linear-gradient(135deg, #ffe5d1, #ffd2a6); /* Light orange/pastel */
}

.reva-Outreach:hover {
    background: linear-gradient(135deg, #ffd4b3, #ffc189); /* Slightly brighter */
}

.reva-Circle {
    background: linear-gradient(135deg, #d1f7f3, #a6f0e6); /* Light teal/pastel */
}

.reva-Circle:hover {
    background: linear-gradient(135deg, #b3f0e3, #89e8d6);
}

.reva-Connect {
    background: linear-gradient(135deg, #d1e5ff, #a6cfff); /* Light blue/pastel */
}

.reva-Connect:hover {
    background: linear-gradient(135deg, #b3d4ff, #8abfff);
}

.reva-Events {
    background: linear-gradient(135deg, #d9e3f5, #b0c7ee); /* Light violet/blue */
}

.reva-Events:hover {
    background: linear-gradient(135deg, #c3d3ed, #92b3e0);
}

/* Text Color */
.aboutus-step-card h3,
.aboutus-step-card p,
.aboutus-step-title {
    color: #ffffff;
}

.aboutus-card-content {
    flex: 1;
}

/*.aboutus-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}*/

.aboutus-card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.aboutus-knowmore {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #004EFF;
    font-weight: 600;
}

    .aboutus-knowmore:hover {
        text-decoration: underline;
    }

.final-note-card {
    flex-direction: column; /* vertical layout */
    text-align: center;
    padding: 40px 50px;
    background: linear-gradient(145deg, #fff6f6, #ffe5e5, #fafafa);
    margin: 50px auto;
}

    .final-note-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 10px;
    }



.aboutus-media-steps-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 1300px;
    margin: 0 auto; /* remove all margin */
    padding-top: 0; /* no top padding */
    padding-bottom: 60px;
    /*background-color: #f5f7fa;*/
}

.aboutus-logo-center {
    margin-top: 40px !important; /* increase to move logo down */
    padding-top: 0 !important; /* remove padding */
    text-align: center;
}

.aboutus-logo-img {
    width: 600px;
    height: 750px;
    display: block;
    margin: 0 auto; /* center image */
}

.aboutus-curve-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.aboutus-path-line {
    stroke-linecap: round;
    stroke-dasharray: 10 10; /* Creates dotted line: 10px dash, 10px gap */
    stroke-width: 4;
    fill: none;
}


.aboutus-step-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid transparent;
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), 0 0 22px rgba(255,120,120,0.45);
    transition: transform .35s ease, box-shadow .35s ease;
    flex-shrink: 0;
}

    .aboutus-step-img:hover {
        transform: scale(1.01);
        box-shadow: 0 35px 80px rgba(0,0,0,0.30), 0 0 35px rgba(255,120,120,0.65);
    }

.aboutus-step-content {
    flex: 1;
}

.aboutus-step-title {
    color: #007bff;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.aboutus-step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    -webkit-background-clip: text;
    color: transparent;
}

.aboutus-step-card p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #444;
}

.aboutus-btn {
    margin-top: 15px;
    padding: 16px 38px;
    font-size: 18px;
    background: linear-gradient(90deg,#007bff,#8a2be2);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}
    .aboutus-btn:hover {
        background-color: #004ea1;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        color: #fff;
        text-decoration:none;
    }




.aboutus-long-text {
    display: block;
}

.aboutus-short-text {
    display: none;
}


/* Steps layout */
.aboutus-steps-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.aboutus-steps-left, .aboutus-steps-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.aboutus-step-item {
    display: flex;
    align-items: flex-start !important; /* Dot moves upward */
    gap: 1px;
    font-size: 18px;
    max-width: 240px;
    line-height: 1;
}

.aboutus-step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    margin-top: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/*reva outreach dot*/
.aboutus-dot-step1 {
    /*background: #FF4A2A;*/
    background: #FF6B00;
}

/*reva circle dot */
.aboutus-dot-step2 {
    /*background: #FF9A1F;*/
    background: #00B386;
}

/*reva connect dot */
.aboutus-dot-step3 {
    /*background: #A543F5;*/
    background: #0077B6;
}

/*reva event dot */
.aboutus-dot-step4 {
    background: #004EFF;
   
}

/*reva outreach*/
.aboutus-move-left-1 {
    transform: translate(80px, -117px);
}

/*reva connect */
.aboutus-move-left-2 {
    transform: translate(190px, -1px);
}

/*reva circle */
.aboutus-move-right-1 {
    transform: translate(-100px, 18px);
}

/*reva event  */
.aboutus-move-right-2 {
    transform: translate(-200px, 100px);
}


/* =====================================
   ABOUT US – DESKTOP-LIKE MOBILE (Dots aligned)
   ===================================== */
/*@media (max-width: 1000px) {*/

/* Section spacing */
/*.aboutus-media-steps-section {
        padding: 20px 16px 40px;
    }*/

/* Logo smaller but centered */
/*.aboutus-logo-center {
        flex: 0 0 auto;
        margin: 0 16px;
    }

    .aboutus-logo-img {
        width: 140px;
        height: auto;
        display: block;
        margin: 0 auto;
    }*/

/* Steps layout horizontal like desktop */
/*.aboutus-steps-layout {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }*/

/* Left & Right steps vertically aligned beside logo */
/*.aboutus-steps-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;*/ /* smaller vertical spacing */
/*}
    .aboutus-steps-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;*/ /* smaller vertical spacing */
/*}*/

/* Step item – text and dot smaller */
/*.aboutus-step-item {
        display: flex;
        align-items: center;
        gap: 1px;
        max-width: 100px;
        font-size: 5px;
        line-height:8px;
    }*/

/* Step dots smaller */
/*.aboutus-step-dot {
        width: 8px;
        height: 8px;
        margin-top: 0;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px;
        margin-top: 1px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        flex-shrink: 0;
    }*/



/* Move positions like desktop but scaled down & aligned beside logo */
/*.aboutus-move-left-1 {
        transform: translate(28px, 10px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(60px, 20px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(-40px, 60px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(-80px, 80px) !important;
    }*/

/* Hide curve lines */
/*.aboutus-curve-lines {
        display: none;
    }*/

/* Step card scaling */
/*.aboutus-step-card {
        padding: 16px 12px;
        gap: 10px;
        border-radius: 20px;
        height: auto;
    }*/

/* Step image smaller */
/*.aboutus-step-img {
        width: 110px;
        height: 110px;
    }*/

/* Titles smaller and tighter letter spacing */
/*.aboutus-step-title {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .aboutus-step-card h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    .aboutus-step-card p {
        font-size: 13px;
        line-height: 1.3;
        letter-spacing: 0.2px;
    }*/

/* Button smaller */
/*.aboutus-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}*/




/* ==== CONTACT SECTION ==== */
#contact {
    padding-top: 70px;
    padding-bottom: 60px;
    background-color: var(--card-primary);
}

.contact-info {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        min-width: 30px;
    }

    .contact-item h5 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        color: var(--text-secondary);
        margin: 0;
    }

/* Contact Form Submit Button */


/* Contact form button same as .btn-login */
#contact .btn-primary1 {
    color: #000 !important;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info);
    border-color: var(--icon-info);
    font-weight: 500;
    padding: var(--padding-sm) var(--padding-lg) !important;
    border-radius: 8px;
    transition: var(--transition);
}

    /* Hover */
    #contact .btn-primary1:hover {
        background-color: var(--icon-info);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover);
    }

/*login css */

/* Section background */
/*#login {
    background-color: var(--card-primary);
}*/

/* Card styling */
. /*login-card {
    border-radius: 12px;
    overflow: hidden;
}*/
/* Tabs */
. /*nav-tabs .nav-link {
    font-weight: 500;
    color: #555;
}*/
/*.nav-tabs .nav-link.active {
        background-color: #0d6efd;
        color: #fff;
        border-radius: 6px 6px 0 0;
    }*/
/* Form inputs */
/*.form-control {
    border-radius: 8px;
    padding: 10px;
}*/
/* Buttons */
. /*btn-primary {
    background-color: #0d6efd;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
    }

.btn-outline-primary {
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}*/
/* Links */
/*a.text-muted:hover {
    text-decoration: underline;
    color: #0d6efd;
}*/
/*#login a.btn-outline-primary {
    color: #000 !important;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info);
    border-color: var(--icon-info);
    font-weight: 500;
    padding: var(--padding-sm) var(--padding-lg) !important;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-block; 
}*/
/* Hover effect */
/*#login a.btn-outline-primary:hover {
        background-color: var(--icon-info);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover);
        text-decoration: none; 
        color: #000 !important; 
    }*/
/* ===========================
   Login Page Styles (REVA)
   =========================== */
/* Section background */
#login {
    background-color: var(--card-primary, #f8f9fa);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Card styling */
.login-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
}

    .login-card .card-header {
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 1rem;
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

/* Title */
.reva-title {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Tabs */
.nav-tabs {
    border-bottom: none;
}

    .nav-tabs .nav-item {
        margin: 0 8px; /* left-right gap */
    }


    /* Default (inactive) tab button */
    .nav-tabs .nav-link {
        display: inline-block;
        width: 100%; /* full width */
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: var(--icon-info, #0d6efd); /* REVA blue fallback */
        border: 2px solid var(--icon-info, #0d6efd);
        color: #000;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
        border-radius: 8px;
        transition: var(--transition, all 0.3s ease);
        text-align: center;
        cursor: pointer;
    }

        /* Active tab button */
        .nav-tabs .nav-link.active {
            background-color: var(--icon-info, #0d6efd);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow-hover, rgba(0,79,255,0.3));
            text-decoration: none;
            color: #000;
        }


/* Form inputs */
.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

    .form-control:focus {
        border-color: #004EFF;
        box-shadow: 0 0 0 0.2rem rgba(0, 79, 255, 0.25);
    }


.custom-otp-btn {
    display: inline-block;
    width: 100%; /* full width */
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd); /* REVA blue fallback */
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
    border-radius: 8px;
    transition: var(--transition, all 0.3s ease);
    text-align: center;
    cursor: pointer;
}

    /* Hover effect */
    .custom-otp-btn:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover, rgba(0,79,255,0.3));
        text-decoration: none;
        color: #000;
    }

/* Links */
.forgot-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

    .forgot-link:hover {
        color: #000;
    }



/* Responsive tweaks */
/*@media (max-width: 576px) {
    .login-card {
        margin: 0 1rem;
    }

    .reva-title {
        font-size: 1.25rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 12px;
    }

    .btn-primary, .btn-success, .btn-outline-primary {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        border-radius: 6px;
    }
}*/


/*forgotpassword css*/

/* Section background */
#forgot {
    background-color: var(--card-primary, #f8f9fa);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Card styling */
/*.forgot-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    padding: 2rem;
    width:568px;
    height:450px
}*/


.forgot-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 600px;
    min-height: 450px;
    margin: 0 auto;
    padding: 2rem;
}


/* Title */
.reva-title {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

/* Form inputs */
.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #004EFF;
        box-shadow: 0 0 0 0.2rem rgba(0, 79, 255, 0.25);
    }

/* Forgot button (Send Reset Link) */
.btn-forgot {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
    border-radius: 8px;
    transition: var(--transition, all 0.3s ease);
    text-align: center;
    cursor: pointer;
}

    .btn-forgot:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover, rgba(0,79,255,0.3));
        text-decoration: none;
        color: #000;
    }

/* Links */
/*.forgot-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;

}

    .forgot-link:hover {
        color: #000;
        text-decoration: underline;
    }*/

.forgot-link {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
    border-radius: 8px;
    transition: var(--transition, all 0.3s ease);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    .forgot-link:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover, rgba(0,79,255,0.3));
        text-decoration: none;
        color: #000;
    }



/* Responsive tweaks */
/*@media (max-width: 576px) {
    .forgot-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .reva-title {
        font-size: 1.25rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 12px;
    }

    .btn-forgot {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        border-radius: 6px;
    }
}*/

/*ResetPassword css */
.reset-card {
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(90deg,#004EFF 0%,#2575fc 100%);
    color: #fff !important;
}

/* ResetSuccess css */

.reset-card {
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, #004EFF 0%, #2575fc 100%);
    color: #fff !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #2575fc 0%, #004EFF 100%);
        box-shadow: 0 5px 15px rgba(0, 79, 255, 0.3);
        transform: translateY(-2px);
    }

/*@media (max-width: 576px) {
    .reset-card {
        margin: 0 1rem;
    }

    .fw-bold {
        font-size: 1.25rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}*/

/*Register page css */


#register {
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#register h2{
    font-size:25px;
    color:#004EFF;
}
.register-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .register-card .card-header {
        background: transparent !important;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 1rem;
        color: #fff;
        border-bottom: none !important;
        box-shadow: none !important;
    }

.reva-title {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #004EFF;
        box-shadow: 0 0 0 0.2rem rgba(0, 79, 255, 0.25);
    }

.custom-btn {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
    border-radius: 8px;
    transition: var(--transition, all 0.3s ease);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    .custom-btn:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px var(--shadow-hover, rgba(0,79,255,0.3));
        text-decoration: none;
        color: #000;
    }

.text-danger {
    font-size: 0.85rem;
}

#registerSuccess .card {
    border-radius: 10px;
    overflow: hidden;
}

#registerSuccess .card-header {
    font-weight: 600;
    font-size: 1.25rem;
}


#registerSuccess h3 {
    color: #28a745;
    font-weight: 700;
}
/*@media (max-width: 576px) {
    .register-card {
        margin: 0 1rem;
    }

    .reva-title {
        font-size: 1.25rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 12px;
    }

    .custom-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
        border-radius: 6px;
    }
}*/

.register-page-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    box-sizing: border-box;
    margin-top:-30px;
}


    /* Remove default browser spacing */
    .register-page-section p {
        margin: 0;
        padding: 0;
        font-size:14px;
    }
    
    .register-page-section ul {
        margin: 0;
        padding: 0;
    }
.register-page-section h3 {
        margin-top: 10px;
        padding: 0;
        font-size:18px;
    }
.register-page-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.register-page-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}


/*.register-page-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 14px;
}*/
.register-page-list {
    list-style: none;
    padding: 0;
    margin: 18px auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center; /* list centered as a block */
}

    .register-page-list li {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 320px; /* SAME width → no zig-zag */
        text-align: left; /* text starts same line */
    }

        /* Blue check icon */
        .register-page-list li::before {
            content: "✔";
            color: #0066cc;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }




.register-page-footer {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}





/*login choice css */

/* ------------------- SECTION ------------------- */
.loginchoice-section {
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}


/* ------------------- CARD ------------------- */
.loginchoice-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* ------------------- HEADER ------------------- */
.loginchoice-header {
    background: transparent !important; /* remove bg */
    padding: 20px 15px;
}

    .loginchoice-header h2 {
        color: #004EFF; /* blue text */
        margin: 0;
        font-weight: 700;
        letter-spacing: 0.5px;
        font-size: 1.8rem;
    }

/* ------------------- DESCRIPTION ------------------- */
.loginchoice-description {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 15px;
}

/* ------------------- BUTTONS ------------------- */
.loginchoice-custom-btn {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: var(--padding-sm, 0.75rem) var(--padding-lg, 1.5rem);
    border-radius: 8px;
    transition: var(--transition, all 0.3s ease);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

    .loginchoice-custom-btn:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        text-decoration: none;
        color: #000;
    }


.reva-welcome-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
}

.reva-welcome-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.reva-welcome-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    margin-bottom: 26px;
}

.reva-welcome-list {
    list-style: none;
    padding: 0;
    margin: 18px auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center; /* list centered as a block */
}

    .reva-welcome-list li {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 320px; /* SAME width → straight lines */
        text-align: left;
    }
        
        .reva-welcome-list li::before {
            content: "✔"; /* change to ✔ if required */
            color: #0066cc;
            font-size: 22px;
            line-height: 1;
            flex-shrink: 0;
        }



/* ------------------- RESPONSIVE ------------------- */
/* Tablet Responsive */
/*@media (max-width: 768px) {
    .loginchoice-section {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .loginchoice-card {
        max-width: 400px;
        padding: 20px;
        margin: 0 auto;*/ /* center horizontally */
/*}

    .loginchoice-header h2 {
        font-size: 1.5rem;
    }

    .loginchoice-description {
        font-size: 14px;
    }

    .loginchoice-custom-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.2rem;
    }
}*/

/* Mobile Responsive */
/*@media (max-width: 576px) {
    .loginchoice-card {
        max-width: 100%;
        padding: 15px;
        margin: 20px auto;*/ /* center horizontally */
/*left: 0;
        right: 0;
    }

    .loginchoice-header h2 {
        font-size: 1.3rem;
    }

    .loginchoice-description {
        font-size: 13px;
    }

    .loginchoice-custom-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}*/


/* userlogin css */


.userlogin-section {
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.userlogin-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}


.userlogin-header {
    background: transparent !important;
    padding: 20px 15px;
}

    .userlogin-header h2 {
        color: #004EFF; /* blue text */
        margin: 0;
        font-weight: 700;
        letter-spacing: 0.5px;
        font-size: 1.8rem;
    }


.userlogin-input {
    border-radius: 8px;
}



.userlogin-btn {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

    .userlogin-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        text-decoration: none;
    }

.userlogin-btn-secondary {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    background-color: #6c757d;
    border: 2px solid #6c757d;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .userlogin-btn-secondary:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.userlogin-btn-success {
    display: inline-block;
    width: 100%;
    background-color: #28a745;
    border: 2px solid #28a745;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ------------------- RESPONSIVE ------------------- */
/* Tablet Responsive */
/*@media (max-width: 768px) {
    .userlogin-card {
        max-width: 400px;
        padding: 20px;
        margin: 40px auto;*/ /* Center horizontally */
/*}

    .userlogin-header h2 {
        font-size: 1.5rem;
        text-align: center;*/ /* optional */
/*}
}*/

/* Mobile Responsive */
/*@media (max-width: 576px) {
    .userlogin-card {
        max-width: 100%;
        margin: 40px auto;*/ /* Center horizontally */
/*padding: 20px;
        left: 0;
        right: 0;
    }

    .userlogin-header h2 {
        font-size: 1.3rem;
        text-align: center;*/ /* optional */
/*}
}*/



/*user  Dashboard css   */

.dashboard-section {
    background-color: #f5f7fa; /* Light gray bg */
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Dashboard Cards */
.dashboard-card {
    border-radius: 12px;
    transition: 0.3s;
    background-color: #ffffff;
    padding: 20px;
}

    .dashboard-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

/* Buttons inside cards */
.dashboard-btn {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

    .dashboard-btn:hover {
        background-color: var(--icon-info, #0d6efd);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        color: #000;
        text-decoration: none;
    }

/* Responsive Cards */
/* Tablet Responsive */
/*@media (max-width: 768px) {
    .dashboard-card {
        max-width: 400px; 
        padding: 15px;
        margin: 20px auto; 
    }

    .dashboard-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.2rem;
        display: block; 
        margin: 10px auto; 
    }
}*/

/* Mobile Responsive */
/*@media (max-width: 576px) {
    .dashboard-card {
        max-width: 100%;
        padding: 10px;
        margin: 20px auto; 
        left: 0;
        right: 0;
    }

    .dashboard-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        display: block;
        margin: 8px auto; 
    }
}*/

/*adminlogin css */

.adminlogin-section {
    background-color: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.adminlogin-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}


.adminlogin-header {
    background: transparent !important;
    padding: 20px 15px;
}

    .adminlogin-header h2 {
        color: #004EFF; /* blue text */
        margin: 0;
        font-weight: 700;
        letter-spacing: 0.5px;
        font-size: 1.8rem;
    }


.adminlogin-input {
    border-radius: 8px;
}


.adminlogin-btn {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

    .adminlogin-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        text-decoration: none;
        color: #000;
    }

/* Secondary button */
.adminlogin-btn-secondary {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    background-color: #6c757d;
    border: 2px solid #6c757d;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Link styling */
.adminlogin-link {
    color: #004EFF;
    text-decoration: none;
    font-weight: 500;
}

    .adminlogin-link:hover {
        text-decoration: none;
    }

/* ------------------- RESPONSIVE ------------------- */
/* Tablet Responsive */
/*@media (max-width: 768px) {
    .adminlogin-card {
        max-width: 400px;
        padding: 20px;
        margin: 20px auto;*/ /* center horizontally */
/*}

    .adminlogin-header h2 {
        font-size: 1.5rem;
    }
}*/

/* Mobile Responsive */
/*@media (max-width: 576px) {
    .adminlogin-card {
        max-width: 100%;
        padding: 15px;
        margin: 20px auto;*/ /* center horizontally */
/*left: 0;
        right: 0;
    }

    .adminlogin-header h2 {
        font-size: 1.3rem;
    }
}*/



/* Admin Dashboard css  */

/* Section background */
.admin-dashboard-section {
    background-color: #f8f9fa;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Admin Cards */
.admin-card {
    border-radius: 12px;
    transition: 0.3s;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

    .admin-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

/* Admin buttons */
.adminlogin-btn {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .adminlogin-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color: #000;
    }

/* Flex to stretch cards equally */
.row.d-flex.align-items-stretch > .col-md-4 {
    display: flex;
}

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .admin-card {
        padding: 15px;
    }

    .adminlogin-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.2rem;
    }
}*/

/*@media (max-width: 576px) {
    .admin-card {
        padding: 10px;
    }

    .adminlogin-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}
*/

/*after login user dashboard and admin dashboard  css */


/*  USER & ADMIN DROPDOWN CARD */
.user-dropdown-card {
    width: 440px !important;
    padding: 20px !important;
    border-radius: 20px !important;
    background-color: #ffffff;
    box-shadow: 0 16px 45px rgba(0,0,0,0.18);
}

.admin-dropdown-card {
    width: 440px !important;
    padding: 20px !important;
    border-radius: 20px !important;
    background-color: #ffffff;
    box-shadow: 0 16px 45px rgba(0,0,0,0.18);
    position: absolute;
}

/* Force gap between navbar and dropdown card */
.navbar .dropdown-menu.user-dropdown-card,
.navbar .dropdown-menu.admin-dropdown-card {
    transform: translate3d(50px, 30px, 0) !important;
}

/* PROFILE IMAGES */

.user-profile-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    cursor: pointer;
}

.admin-profile-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    cursor: pointer;
}

.user-profile-center {
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.admin-profile-center {
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.user-profile-center:hover {
    transform: scale(1.05);
}

.admin-profile-center:hover {
    transform: scale(1.05);
}

/*  NAME & MOBILE*/
.user-dropdown-card h6 {
    font-size: 18px;
    font-weight: 600;
}

.admin-dropdown-card h6 {
    font-size: 18px;
    font-weight: 600;
}

.user-dropdown-card small {
    font-size: 13px;
    color: #6c757d;
}

.admin-dropdown-card small {
    font-size: 13px;
    color: #6c757d;
}

/* BUTTONS*/
.user-dropdown-card .btn {
    font-size: 14px;
    padding: 9px 18px;
}

.admin-dropdown-card .btn {
    font-size: 14px;
    padding: 9px 18px;
}

/*  DROPDOWN ITEMS*/
.user-dropdown-card .dropdown-item {
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: background-color 0.15s ease;
}

.admin-dropdown-card .dropdown-item {
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: background-color 0.15s ease;
}

.user-dropdown-card .dropdown-item:hover {
    background-color: #f1f3f4;
}

.admin-dropdown-card .dropdown-item:hover {
    background-color: #f1f3f4;
}

.user-dropdown-card .dropdown-item.text-danger:hover {
    background-color: #fdeaea;
}

.admin-dropdown-card .dropdown-item.text-danger:hover {
    background-color: #fdeaea;
}

/*  DIVIDERS */
.user-dropdown-card .dropdown-divider {
    margin: 16px 0;
}

.admin-dropdown-card .dropdown-divider {
    margin: 16px 0;
}

/* FOOTER LINKS */
.user-dropdown-card .d-flex a {
    font-size: 12px;
    color: #5f6368 !important;
    text-decoration: none;
}

.admin-dropdown-card .d-flex a {
    font-size: 12px;
    color: #5f6368 !important;
    text-decoration: none;
}

.user-dropdown-card .d-flex a:hover {
    text-decoration: underline;
}

.admin-dropdown-card .d-flex a:hover {
    text-decoration: underline;
}

/* ADMIN BADGE */
.admin-dropdown-card .badge.bg-warning {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

/* SIGN OUT BUTTON*/
.dropdown-signout-btn {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

    .dropdown-signout-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        text-decoration: none;
        color: #000;
    }

/* MANAGE ACCOUNT BUTTON*/
.manage-your-account {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--icon-info, #0d6efd);
    border: 2px solid var(--icon-info, #0d6efd);
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

    .manage-your-account:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,79,255,0.3);
        text-decoration: none;
        color: #000;
    }




/* ==== FOOTER ==== */
.footer {
    background-color: var(--bg-secondary);   
    width: 80%;
    padding: 20px; /* equal padding on all sides */
    margin: 10px auto 0 auto;
    box-sizing: border-box; 
    text-align: center;
    border-radius: 25px;
}

/* Ensure container respects top/bottom padding */
.footer > .container {
    padding: 10px 10px 10px 50px; /* top right bottom left */
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    margin-right: auto; /* moves right */
    display: block;
}

.footer-widget h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-widget p {
    text-align: left;
    margin-left: auto;
    font-size: 12px;
    margin-right: 0;
    color: var(--text-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        text-decoration: none !important;
        transition: none !important;
        padding-left: 0 !important;
        font-size:14px;
    }

        .footer-links a:hover {
            padding-left: 0 !important; /* ← THIS FIXES IT */
            color: var(--primary-color);
        }

/*.footer-bottom {
    margin-top: 1rem;
    padding-top: 0.1rem;
    border-top: 1px solid var(--border-color);
}

    .footer-bottom p {
        color: var(--text-secondary);
        margin: 0;
    }*/

/* Remove extra top spacing from footer-bottom */
.footer-bottom {
    margin-top: 0 !important; /* overrides mt-4 */
    padding-top: 0; /* remove extra top padding */
}

    /* Remove top margin from paragraphs inside footer-bottom */
    .footer-bottom p {
        margin-top: 0 !important; /* overrides mt-2 */
        margin-bottom: 0; /* keep bottom tight */
    }

    /* Remove top margin from second column on mobile */
    .footer-bottom .col-md-6.mt-3 {
        margin-top: 0 !important; /* overrides mt-3 */
    }



/*.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
  
    margin-top: -20px;
}*/


.footer-social-links {
    display: flex;
    justify-content: flex-start; /* change to center if needed */
    gap: 10px;
    margin-top: -10px; /* adjust vertical position */
    margin-bottom: 15px; /* adjust vertical position */
}

/* Base icon container */
.footer-social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;  
    color: #ffffff;        /* icon color */
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease; /* smooth hover */
}

/* Brand background colors + icon color */
.footer-social-links .social-icon:nth-child(1) {
    background-color: #1877F2; /* Facebook */
    color: #ffffff;
}
.footer-social-links .social-icon:nth-child(2) {
    background-color: #0077B5; /* LinkedIn */
    color: #ffffff;
}
.footer-social-links .social-icon:nth-child(3) {
    background-color: #FF0000; /* YouTube */
    color: #ffffff;
}
.footer-social-links .social-icon:nth-child(4) {
    background-color: #E1306C; /* Instagram */
    color: #ffffff;
}

/* Hover – darken background, keep icon color white */
.footer-social-links .social-icon:nth-child(1):hover {
    background-color: #145dbf; /* Facebook darker */
    transform: translateY(-3px);
    cursor: pointer;
}
.footer-social-links .social-icon:nth-child(2):hover {
    background-color: #005983; /* LinkedIn darker */
    transform: translateY(-3px);
    cursor: pointer;
}
.footer-social-links .social-icon:nth-child(3):hover {
    background-color: #cc0000; /* YouTube darker */
    transform: translateY(-3px);
    cursor: pointer;
}
.footer-social-links .social-icon:nth-child(4):hover {
    background-color: #c2185b; /* Instagram darker */
    transform: translateY(-3px);
    cursor: pointer;
}


/*Partner with us css*/

.partner-with-us-page {
    overflow-x: hidden;
  
    width:80%;
    margin:0 auto;
}


.partner-with-us-page h1{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
}
    .partner-with-us-page h2 {
        font-size: 30px;
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 10px;
        background: linear-gradient(90deg, #007bff, #8a2be2);
        -webkit-background-clip: text;
        color: transparent;
    }
    .partner-with-us-page h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 16px;
        background: linear-gradient(90deg, #007bff, #8a2be2);
        -webkit-background-clip: text;
        color: transparent;
    }

.partner-with-us-page .partner-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
}

        /* List items */
        .partner-with-us-page .partner-features-list li {
            position: relative;
            padding-left: 26px; /* space for checkmark */
            margin-bottom: 12px;
            font-size: 16px;
            color: #000;
            font-weight: 500;
            line-height: 1.4;
            text-align: left;
        }

            /* Checkmark */
            .partner-with-us-page .partner-features-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 20px;
                color: #000;
                font-size: 1em;
                line-height: 1.4;
            }

            /* Bold labels look clean */
            .partner-with-us-page .partner-features-list li b {
                font-weight: 600;
            }


    /* Target ul with custom attribute */
    .partner-with-us-page .opportunity-card ul[opportunity-card-list] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        /* List items */
        .partner-with-us-page .opportunity-card ul[opportunity-card-list] li {
            position: relative;
            padding-left: 26px; /* space for checkmark */
            margin-bottom: 12px;
            font-size: 16px;
            color: #000;
            font-weight: 500;
            line-height: 1.5;
            text-align: left;
        }

            /* Checkmark */
            .partner-with-us-page .opportunity-card ul[opportunity-card-list] li::before {
                content: "✔";
                position: absolute;
                left: 0;
                top: 0;
                width: 20px;
                color: #000;
                font-size: 1em;
                line-height: 1.5;
            }



.partner-with-us-page .impact-card .impact-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0 auto;
    max-width: 400px; /* adjust as needed */
}

    .partner-with-us-page .impact-card .impact-list li {
        position: relative; /* allow absolute positioning of checkmark */
        padding-left: 25px; /* space for checkmark */
        margin-bottom: 12px; /* spacing between items */
        font-size: 16px;;
        color: black;
        font-weight: 500;
        line-height: 1.5;
        text-align: left; /* text aligns next to checkmark */
    }

        /* Checkmark */
        .partner-with-us-page .impact-card .impact-list li::before {
            content: "✔";
            position: absolute; /* place checkmark at the start */
            left: 0;
            top: 0;
            width: 20px; /* fixed width for uniform alignment */
            color: black;
            font-size: 1em;
            line-height: 1.5;
        }


.partner-with-us-page .cta-card .cta-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0 auto;
    max-width: 400px; /* adjust as needed */
}

    .partner-with-us-page .cta-card .cta-list li {
        position: relative; /* allow absolute positioning of checkmark */
        padding-left: 25px; /* space for checkmark */
        margin-bottom: 12px; /* spacing between items */
        font-size: 16px;
        color: black;
        font-weight: 500;
        line-height: 1.5;
        text-align: left; /* text aligns next to checkmark */
    }

        /* Checkmark */
        .partner-with-us-page .cta-card .cta-list li::before {
            content: "✔";
            position: absolute; /* place checkmark at the start */
            left: 0;
            top: 0;
            width: 20px; /* fixed width for uniform alignment */
            color: black;
            font-size: 1em;
            line-height: 1.5;
        }

 
    .partner-with-us-page section {
        /*padding: 60px;*/
        padding: 20px; /* 30px top & bottom, 0 left & right */
        margin: 0 auto;
        width: 100%;
    }

    .partner-with-us-page .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .partner-with-us-page .section-container1 {
        max-width: 1200px;
        margin: 0 auto;
        background: linear-gradient(135deg, #ffe5d1, #ffd2a6); /* Light orange/pastel */
    }


    .partner-with-us-page .section-subtitle {
        font-size: 26px;
        font-weight: 800;
        color: #242424;
        text-align: center;
        margin-bottom: 18px;
    }

    .partner-with-us-page .section-description {
        font-size: 18px;
        color: #2C3E50;
        line-height: 1.7;
        max-width: 1250px;
        margin: 0 auto 16px;
        padding: 0 20px;
        text-align: center;
        font-weight:800;     
       
    }

   
    .partner-with-us-page .partner-intro-card {
        padding: 36px;
        border-radius: 18px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        transition: 0.3s ease;
        text-align: center;
    }

        .partner-with-us-page .partner-intro-card:hover {
            transform: translateY(-6px);
        }

    .partner-with-us-page .partner-intro-card-left {
        /*background: linear-gradient(135deg, #C97C52, #8F3E1F);*/
        /*background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);*/
        background: rgba(255, 159, 64, 0.18);
        /*color: #FFFFFF;*/
        /*margin-top: 10px;*/
        margin-right: 20px;
        height: 31rem; /* adjust this value as needed */
    }

        .partner-with-us-page .partner-intro-card-left p {
            /*color: #FFECE3;
            font-weight: 600;*/
            color: #3A1E12;
            font-weight: 700;
            font-size:16px;
            margin-top:30px;
        }


    .partner-with-us-page .partner-intro-card-right {
        /*background: linear-gradient(135deg, #F2B591, #D47B4D);*/
        background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
        color: #2A160D;
        height: 31rem; /* adjust this value as needed */
    }

        .partner-with-us-page .partner-intro-card-right p {
            color: #3A1E12;
            font-weight: 700;
            font-size: 16px;
        }

    .partner-with-us-page .partner-features-title {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 20px;
        color:black;
    }

    .partner-with-us-page .partner-features-list li {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 14px;
    }

  
    /*.partner-with-us-page .reach-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .partner-with-us-page .reach-item {
        padding: 28px;
        border-radius: 18px;
        font-size: 16px;
        font-weight: 800;
        text-align: center;
        color: #3A1C12;
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
    }*/

        /*.partner-with-us-page .reach-item:hover {
            transform: translateY(-5px);
        }

        .partner-with-us-page .reach-item:nth-child(1) {
           
            background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
        }

        .partner-with-us-page .reach-item:nth-child(2) {
           
            background: rgba(255, 159, 64, 0.18);
        }

        .partner-with-us-page .reach-item:nth-child(3) {
           
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

        .partner-with-us-page .reach-item:nth-child(4) {
            
            background-color: rgba(153, 102, 255, 0.2);
        }

        .partner-with-us-page .reach-item:nth-child(5) {
           
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

        .partner-with-us-page .reach-item:nth-child(6) {
        
            background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
          
        }*/

  
    .partner-with-us-page .reach-grid {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* List item styling */
    .partner-with-us-page .reach-item {
        padding: 16px 16px 16px 40px; /* reduced padding */
        font-size: 15px;
        font-weight: 600;
        color: #3A1C12;
        display: flex;
        align-items: center;
        text-align: left;
        position: relative;
        min-height: auto; /* REMOVE fixed height */
        line-height:1; /* tighter text */
    }

        /* Checkmark bullet */
        .partner-with-us-page .reach-item::before {
            content: "✓";
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            font-weight: 700;
            color: #3A1C12;
        }

     
     


    
    .partner-with-us-page .opportunity-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 26px;
    }

    .partner-with-us-page .opportunity-card {
        padding: 34px;
        border-radius: 18px;
        text-align: center;
        color: #FFFFFF;
        transition: 0.3s ease;
    }

        .partner-with-us-page .opportunity-card:hover {
            transform: translateY(-6px);
        }

        /*.partner-with-us-page .opportunity-card h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            color:black;
        }*/

        .partner-with-us-page .opportunity-card:nth-child(1) {
            /*background: linear-gradient(135deg, #E56A4E, #B33A21);*/
            /*background: linear-gradient(135deg, #E2B45F, #B88A2E);*/
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

        .partner-with-us-page .opportunity-card:nth-child(2) {
            /*background: linear-gradient(135deg, #8F4025, #4A190C);*/
            /*background: linear-gradient(135deg, #E2B45F, #B88A2E);*/
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

        .partner-with-us-page .opportunity-card:nth-child(3) {
            /*background: linear-gradient(135deg, #A14E2C, #4A190C);*/
            /*background: linear-gradient(135deg, #E2B45F, #B88A2E);*/
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }


.Partnership_bg {
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
}


.sponsorship-section-bg {
    background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
    padding: 60px 20px; /* spacing inside section */
    border-radius: 18px; /* optional rounded corners */
}



    .partner-with-us-page .benefits-grid {
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
        grid-template-columns: repeat(3, 1fr); /* 4 equal columns */
        gap: 10px;
        padding:10px;
        margin:10px;
    }

    .partner-with-us-page .benefit-item {
        padding: 15px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        /*color: #FFFFFF;*/
        color:black;
    }

        .partner-with-us-page .benefit-item:nth-child(odd) {
            /*background: linear-gradient(135deg, #A34E2A, #5A220F);*/
            background-color: rgba(153, 102, 255, 0.2);
        }

        .partner-with-us-page .benefit-item:nth-child(even) {
            /*background: linear-gradient(135deg, #3D7B80, #20494D);*/
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

   

     .partner-with-us-page .collaboration_bg{
         background: linear-gradient(145deg, #fff0f0, #ffdada);
     }

    .partner-with-us-page .collaboration-grid {
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
        grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
        gap: 24px;
    }

    .partner-with-us-page .collaboration-card {
        padding: 34px;
        border-radius: 18px;
        text-align: center;
        font-weight: 700;
        color: #FFFFFF;
        transition: 0.3s ease;
    }


    /*.partner-with-us-page .collaboration-card h4 {
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 16px;
        color: white;
    }*/



    .partner-with-us-page .collaboration-card p {   
         color: #3A1C12;
         font-size:16px;
    }


        .partner-with-us-page .collaboration-card:hover {
            transform: translateY(-5px);
        }

        .partner-with-us-page .collaboration-card:nth-child(1) {
            background: linear-gradient(145deg, #f6f8ff, #e8edff);
            /*background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);*/
        }

        .partner-with-us-page .collaboration-card:nth-child(2) {
            /*background: linear-gradient(135deg, #4E6A5B, #2C3A2F);*/
            background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        }

        .partner-with-us-page .collaboration-card:nth-child(3) {
            /*background: linear-gradient(135deg, #B29C8C, #7B6A5E);*/
             background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3); 
            /*color: #1F1F1F;*/
        }

        .partner-with-us-page .collaboration-card:nth-child(4) {
            /*background: linear-gradient(135deg, #2F3E4D, #1C252E);*/
            background: rgba(255, 159, 64, 0.18);
        }

  
    .partner-with-us-page .impact-card {
        padding: 20px;
        border-radius: 18px;
        /*background: linear-gradient(135deg, #F5D5C5, #EAB192);*/
        /*background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);*/
        background-color: rgba(153, 102, 255, 0.2);
        text-align: center;
        color: #3A1C12;
        margin-top:160px;
        margin-right:30px;
    }

    .partner-with-us-page .impact-quote {
        font-size: 18px;
        font-weight: 900;
        font-style: italic;
        margin-top: 20px;
    }

  
    .partner-with-us-page .cta-card {
        padding: 40px;
        border-radius: 18px;
        /*background: linear-gradient(135deg, #EAB192, #D47B4D);*/
        background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
        text-align: center;
        margin:10px;
    }

    .partner-with-us-page .cta-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        /*background: linear-gradient(135deg, #A24F2A, #6B2C14);*/
        background: linear-gradient(90deg, #007bff, #8a2be2);
        color: #FFFFFF;
        text-decoration: none;
    }

        .partner-with-us-page .cta-btn:hover {
            /*background: linear-gradient(135deg, #6B2C14, #3D1408);*/
            background: linear-gradient(90deg, #007bff, #8a2be2);
            color: #FFFFFF;
        }

    .partner-with-us-page .cta-card .cta-footer {
        font-size: 16px;
        color: black;
        text-align: center;
        margin-top: 10px; 
    }


.partner-with-us-page .row {
    --bs-gutter-x: 0.25rem;
    --bs-gutter-y: 0.25rem;
}

.partner-with-us-page .mb-5 {
    margin-bottom: 1rem !important;
}




    /* reach us css*/
    /* ===== Section Wrapper ===== */
    #contact.section-padding {
        width: 80%;
        margin: 6px auto; /* equal top & bottom */
        padding: 14px; /* equal on all four sides */
        background-color: var(--card-primary);
    }

/* ===== Bootstrap Container Fix (scoped) ===== */
#contact .container {
    max-width: 100%;
    padding: 14px; /* equal spacing all sides */
}

/* ===== Row Reset (scoped) ===== */
#contact .row {
    margin: 0;
}

    /* controlled spacing after heading row */
    #contact .row.mb-5 {
        margin-bottom: 14px !important;
    }

/* ===== Heading Area ===== */
#contact .section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0; /* no negative margins */
}

#contact .section-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0 0 12px 0;
}

    #contact .section-subtitle:last-child {
        margin-bottom: 0;
    }

/* ===== Paragraph Reset (contact only) ===== */
#contact p {
    margin-top: 0;
    margin-bottom: 12px;
}

    #contact p:last-child {
        margin-bottom: 0;
    }

/* ===== Contact Info ===== */
#contact .contact-info {
    margin-top: 0;
    font-size: 14px;
}

    #contact .contact-info h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 20px 0;
    }

#contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

    #contact .contact-item:last-child {
        margin-bottom: 0;
    }

    #contact .contact-item i {
        font-size: 20px;
        color: var(--primary-color, #0d6efd);
        margin-right: 12px;
        margin-top: 4px;
    }

    #contact .contact-item h5 {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 4px 0;
    }

    #contact .contact-item p {
        font-size: 14px;
        color: #555;
        margin: 0;
    }

    #contact .contact-item a {
        color: var(--primary-color, #0d6efd);
        text-decoration: none;
    }

        #contact .contact-item a:hover {
            text-decoration: underline;
        }

/* ===== Contact Form ===== */
#contact .contact-form .form-control,
#contact .contact-form .form-select {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

#contact .contact-form textarea {
    resize: none;
}

#contact .contact-form button {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s ease;
}

    #contact .contact-form button:hover {
        background: #0b5ed7;
    }


/*join-reva-network-section css */



/*.join-reva-network-section {
    padding: 30px; 
    width: 80%;
    margin: 0 auto; 
    background-color: var(--card-primary);
    text-align: center; 
}


.join-reva-network-hero {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.join-reva-network-section h2 {
    font-size: 30px;
    font-weight: 700;
}

.join-reva-network-section h3 {
    font-size: 25px;
    font-weight: 600;
}

.join-reva-network-section h4 {
    font-size: 20px;
    font-weight: 500;
}

.join-reva-network-hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 12px;
}


.join-reva-network-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 0 auto 40px;
    max-width: 900px;
}

    .join-reva-network-card p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 12px;
    }


.join-reva-network-list {
    list-style: none;
    margin: 20px auto;
    display: inline-block; 
    text-align: left; 
}

    .join-reva-network-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
    }

        .join-reva-network-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

.two-column {
    columns: 2;
    column-gap: 50px;
}


blockquote {
    margin: 25px auto;
    font-style: italic;
    color: #1a2a4e;
    max-width: 700px;
}


.join-reva-network-steps {
    margin-top: 30px;
}

    .join-reva-network-steps h3 {
        font-size: 32px;
        margin-bottom: 10px;
        text-align: center;
    }

.steps-subtitle {
    text-align: center;
    font-size: 18px;
    color: #0066cc;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
}

    .step span {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        color: #0066cc;
        margin-bottom: 10px;
    }

    .step h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 15px;
        line-height: 1.6;
    }

    .step:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.join-reva-network-cta {
    text-align: center;
    margin-top: 30px;
}

.tagline {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 20px;
}

.manifesto {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.join-reva-network-button {
    background: linear-gradient(135deg, #0066cc, #004ea1);
    color: #fff;
    padding: 15px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

    .join-reva-network-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,102,204,0.35);
        color: #fff;
        text-decoration:none;
    }*/


.join-reva-network-section {
    padding: 60px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.join-reva-network {
    width: 80%;
    max-width: 1200px;
    padding: 0 16px;
}


.join-reva-network-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.join-reva-network-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.join-reva-network-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}


.join-reva-network-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.join-reva-network-hero {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.join-reva-network-cta {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom:-40px;
}


.join-reva-network-hero-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #000;
}

.reva-hero-row,
.reva-join-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.join-reva-network-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 420px;
    width: 100%;
}

    .join-reva-network-list li {
        padding-left: 28px;
        margin-bottom: 12px;
        position: relative;
        text-align: left;
    }

        .join-reva-network-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

.reva-hero-row .join-reva-network-hero {
    /*background: linear-gradient(145deg, #f6f8ff, #e8edff);*/
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
}

.reva-hero-row .join-reva-network-card {
    background: linear-gradient(145deg, #fff6ea, #ffe3c8);
}


.reva-join-row .join-reva-network-card:nth-child(1) {
    /*background: linear-gradient(145deg, #e8fff3, #d2f5e3);*/
    background: linear-gradient(145deg, #f6f8ff, #e8edff);
}

.reva-join-row .join-reva-network-card:nth-child(2) {
    background: linear-gradient(145deg, #fff0f3, #ffd6dd);
}


.steps-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.step:nth-child(1) {
    background: linear-gradient(145deg, #f0f9ff, #dbefff);
}

.step:nth-child(2) {
    background: linear-gradient(145deg, #f6fff0, #e3f5d2);
}

.step:nth-child(3) {
    background: linear-gradient(145deg, #fffaf0, #f5ecd2);
}

.step:nth-child(4) {
    background: linear-gradient(145deg, #fff0f0, #ffdada);
}


.join-reva-network-cta {
    background: linear-gradient(145deg, #f5f3ff, #e7e4ff);
    margin-top: 40px;
}


.join-reva-network-button {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 44px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .join-reva-network-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
        color: #fff;
        text-decoration:none;
    }







/* Reva connect css */


/*.reva-connect-section {
    
    padding: 10px 0;
    width: 80%;
    margin: 0 auto; 
    background-color: var(--card-primary);
}


.reva-connect-section h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.reva-connect-section h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}



.reva-connect {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 10px;
}

.reva-card-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reva-card-list li {
        position: relative;
        padding-left: 36px; 
        margin-left: 150px; 
        margin-bottom: 14px;
        width: 100%;
        max-width: 520px;
        text-align: left;
    }

        .reva-card-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 2px;
            color: #0066cc;
            font-weight: bold;
        }



.reva-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}


.hero-card {
    text-align: center;
}

.tagline {
    font-weight: 600;
    margin-bottom: 20px;
}


.card-grid {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

    .card-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
    }
.numbered-list {
    list-style: none;
    counter-reset: reva-counter;
    padding: 0;
    margin-top: 25px;
}

    .numbered-list li {
        background-color: var(--card-primary);
        padding: 22px 24px 22px 60px;
        border-radius: 14px;
        position: relative;
        font-weight: 500;
        line-height: 1.6;
    }

    
        .numbered-list li::before {
            counter-increment: reva-counter;
            content: counter(reva-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #0066cc;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.reva-connect-image {
    text-align: center;
    margin: 25px 0 35px;
}

    .reva-connect-image img {
        max-width: 260px;
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
.reva-connect-story {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed #dbe3f3;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

    .reva-connect-story p {
        margin-bottom: 14px;
    }

.story-highlight {
    font-weight: 600;
    color: #1a2a4e;
    margin-bottom: 18px;
}

.story-result {
    margin-top: 20px;
    background: #f4f7ff;
    padding: 14px 18px;
    border-radius: 10px;
    color: #003d7a;
    font-weight: 600;
}



.reva-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reva-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
        max-width: 520px;
    }

        .reva-list li::before {
            content: "✔";
            color: #0066cc;
            font-weight: bold;
            flex-shrink: 0;
        }

.reva-connect-who p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
    text-align: center;
}

.reva-highlight {
    margin-top: 16px;
    padding: 14px 18px;
    background: #f4f7ff;
   
    border-radius: 8px;
    font-weight: 600;
    color: #1a2a4e;
    text-align:center;
}



.cta-card {
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, #0066cc, #004ea1);
    color: #fff;
    padding: 15px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,102,204,0.35);
        color: #fff;
        text-decoration:none;
    }*/
/*reva-circle css */
. /*reva-circle-section {
    padding: 10px 0;
    width:80%;
    margin:0 auto;
   
    background-color: var(--card-primary);
}

.reva-circle-section h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.reva-circle-section h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.reva-circle.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


.hero-card {
    text-align: center;
}

.hero-card .tagline {
    font-style: italic;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}


.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin: 10px 0;
    text-align: center;
}

.feature-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-card .reva-highlight {
    font-weight: 500;
    color: #0066cc;
}

.feature-card .reva-card-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-card .reva-card-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    text-align: left;
}

.feature-card .reva-card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0066cc;
    font-weight: bold;
}

.feature-card .reva-quote {
    font-style: italic;
    color: #555;
    margin-top: 20px;
}


.reva-card {
    margin-bottom:10px;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.reva-circle-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reva-circle-card .step-number {
    display: inline-block;
    font-weight: bold;
    color: #0066cc;
    font-size: 22px;
    min-width: 30px;
}

.reva-circle-card p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}


.reva-connect-story {
    margin-top: 25px;
    text-align: center;
}

.reva-connect-story .story-highlight {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 12px;
}

.reva-connect-story p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.reva-highlight {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.reva-quote {
    text-align: center;
    font-style: italic;
    font-weight: 500;
    margin-top: 22px;
    color: #004ea1;
}


.reva-circle-why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    margin: 20px auto;
   
}

.reva-circle-why-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.reva-circle-why-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.reva-circle-why-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
}

.reva-circle-why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #0066cc;
    font-weight: bold;
    width: 20px;
}

.reva-circle-problems-card,
.reva-circle-impact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    
}

.reva-circle-problems-card .reva-card-list,
.reva-circle-impact-card .reva-card-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 520px;
}

.reva-circle-problems-card .reva-card-list li,
.reva-circle-impact-card .reva-card-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    text-align: left;
}

.reva-circle-problems-card .reva-card-list li::before,
.reva-circle-impact-card .reva-card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #0066cc;
    font-weight: bold;
}


.reva-circle-cta-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 25px 20px;
    text-align: center;
    margin: 25px auto;
    
}

.reva-circle-cta-card p {
    margin: 15px 0 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

. 
.reva-circle-cta-card .primary-btn {
    display: inline-block; 
    background: linear-gradient(135deg, #0066cc, #004ea1);
    color: #fff;
    padding: 14px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 60px;
}

.reva-circle-cta-card .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.35);
}*/
/*reva-outreach css */
. /*reva-outreach-section {
    margin: 0 auto;
    padding: 0 10px;
    width: 80%;
    margin-top: 30px; 
    background-color: var(--card-primary);
}


.reva-outreach.container {
 
}

.reva-outreach-section h2 {
    font-size: 30px;
    font-weight: 700;
}

.reva-outreach-section h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.reva-outreach-sectionh4 {
    font-size: 20px;
    font-weight: 500;
}

.reva-outreach-card,
.feature-card,
.reva-circle-why-card,
.reva-circle-problems-card,
.reva-circle-impact-card,
.reva-circle-cta-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 10px 10px;
    text-align: center;
    margin: 10px auto;
  
}

  
    .reva-outreach-card .reva-tagline,
    .feature-card .reva-highlight {
        font-style: italic;
        font-size: 16px;
        color: #555;
        margin-bottom: 16px;
    }
.reva-cross-list li::before {
    content: "✖";
    color: #d32f2f; 
    font-weight: bold;
}
.reva-circle-why-text {
    text-align: center;
}
.reva-circle-why-text2{
 
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.reva-circle-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .reva-circle-card .step-number {
        display: inline-block;
        font-weight: bold;
        color: #0066cc;
        font-size: 22px;
        min-width: 30px;
    }

    .reva-circle-card p {
        margin: 0;
        line-height: 1.6;
        color: #333;
    }

.reva-circle-cta-card .primary-btn {
    background: linear-gradient(135deg, #0066cc, #004ea1);
    color: #fff;
    padding: 14px 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

    .reva-circle-cta-card .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,102,204,0.35);
    }*/
/* REVA EVENTS SECTION*/
/*.reva-events-section {
    width: 80%;
    background-color: var(--card-primary);
    padding: 10px 0;
    margin:0 auto;
}


.reva-events.container {
    width: 96%;
    margin: 0 auto;
    padding: 0;
}

.reva-event-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 24px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

   
    .reva-event-card h2,
    .reva-event-card h3 {
        margin-bottom: 16px;
    }

    .reva-event-card p {
        margin: 12px 0;
    }

.reva-event-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reva-event-list li {
        position: relative;
        padding-left: 36px;
        margin-left: 150px;
        margin-bottom: 14px;
        width: 100%;
        max-width: 520px;
        text-align: left;
    }

        .reva-event-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 2px;
            color: #0066cc;
            font-weight: bold;
        }


.cross-list li::before {
    content: "✖";
    color: #d32f2f;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-items: center;
}

.reva-event-step {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


.step-number {
    font-weight: bold;
    color: #0066cc;
    font-size: 22px;
    min-width: 24px;
    line-height: 1.4;
    flex-shrink: 0;
}

.reva-event-step p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.reva-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 24px;
}

    .reva-event .primary-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 410px;
        padding: 14px 44px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        background: linear-gradient(135deg, #0066cc, #004ea1);
        color: #fff;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .reva-event .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,102,204,0.35);
        }

.reva-quote,
.reva-events-tagline {
    font-style: italic;
    margin-top: 12px;
}

.reva-event-card blockquote {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.reva-note {
    font-weight: 600;
    margin-top: 10px;
}*/


/*founder page css*/

.founder-section {
    min-height: 100vh;
    padding: 30px 20px;
    position: relative;
    width: 80%;
    margin: 0 auto;
   
}

.founder-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align:center;
}

.founder-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.founder-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    /*text-align: center;*/
}


    

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    width:83%;
}

/*.founder-section h2 {
    font-size:38px;
    font-weight: 700;
    
    margin-bottom: 15px;
   

}*/

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
  
    .section-header p {
        font-size: 16px;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

/* ===== FIRST CARD ===== */
.founder-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .founder-card:hover {
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
        border-color: rgba(91, 44, 131, 0.2);
    }

.card-header {
    background: linear-gradient(135deg, rgba(91, 44, 131, 0.05) 0%, rgba(63, 108, 122, 0.05) 100%);
    padding: 50px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

    /*.card-header h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-light);
        margin-bottom: 0;
    }*/

.card-content {
    padding: 60px;
}

/* Tagline Styling */
.tagline-section {
    text-align: center;
    margin-bottom: 60px;
}

.tagline {
    /*font-size:28px;*/
    font-size:24px;
    font-weight: 700;
    line-height: 1.5;
    /*margin-bottom: 50px;*/
    margin-bottom: 25px;
}

    .tagline span {
        display: block;
        margin: 0 8px;
        transition: all 0.4s ease;
        
    }

    .tagline .trust {
        display: block;
        color: #5b2c83;
    }

    .tagline .empower {
        display: block;
        color: #3f6c7a;
    }

    .tagline .transform {
        color: #8c6239;
    }

    .tagline span:hover {
        transform: translateY(-4px) scale(1.05);
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    }

/* Founder Info Section */
.founder-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.founder-details {
    flex: 1;
    text-align:center;
}

    /*.founder-details h4 {
        font-size: 30px;
        font-weight: 800;
        color: black;
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }*/

.founder-title {
    font-size: 16px;
    font-weight: 600;
    color: #5b2c83;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-award-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(140, 98, 57, 0.3);
}

.founder-image-container {
    position: relative;
    
}

.founder-image {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    border: 1px solid var(--primary-light);
    box-shadow: 0 25px 50px rgba(26, 61, 124, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .founder-image:hover {
        transform: scale(1.05) rotateY(5deg);
    }

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Content Text */
.founder-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

    .founder-description p {
        margin-bottom: 20px;
    }

.quote-section {
    background: linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(63, 108, 122, 0.08));
    border-left: 5px solid var(--accent-purple);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    font-style: italic;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 17px;
}

.quote-title {
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Second Card */
.vision-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding:50px;
}

    .vision-card:hover {
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }

    /*.vision-card h3 {
        font-size: 32px;
        font-weight: 700;
       
        margin: 0 0 25px 0;
        position: relative;
        padding-bottom: 20px;
    }*/

        /*.vision-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), var(--accent-teal));
            border-radius: 2px;
        }*/

.vision-content {
    padding: 50px;
}

    .vision-content p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

.feature-list {
    list-style: none;
    margin: 30px 0;
}

    .feature-list li {
        padding: 15px 0;
        padding-left: 40px;
        position: relative;
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

.commitment-box {
    background: linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(63, 108, 122, 0.08));
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

    /*.commitment-box h4 {
        font-size: 18px;
        font-weight: 700;
    
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }*/

    .commitment-box ul {
        list-style: none;
    }

    .commitment-box li {
        padding: 12px 0;
        padding-left: 40px;
        position: relative;
        color: #555;
        font-weight: 500;
    }

        .commitment-box li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-purple);
            font-size: 20px;
            font-weight: bold;
        }


.highlight-text {
    /*color: var(--accent-purple);*/
    font-weight: 600;
}

.alliance-section {
    background: linear-gradient(135deg, rgba(91, 44, 131, 0.1), rgba(63, 108, 122, 0.1));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid var(--border-color);
}

    .alliance-section p {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary-light);
        margin-bottom: 20px;
    }

.alliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .alliance-list li {
        font-size: 17px;
        font-weight: 600;
        color: var(--accent-purple);
    }

        .alliance-list li::before {
            /*content: '◆ ';*/
            margin-right: 10px;
            /*color: var(--accent-teal);*/
        }


/*.founder-section {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    padding: 10px 10px;
    width: 80%;
    margin:0 auto;
}


.founder.container {
    max-width: 1100px;
    margin: 0 auto;
}


.founder-card {
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .founder-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    }


.founder-main-title {
    text-align: center;
    margin-bottom: 40px;
}

    .founder-main-title h2 {
        font-size: 2.6rem;
        font-weight: 700;
        margin: 0;
       
        letter-spacing: 1px;
    }


.founder-top-row {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 20px;
    margin-bottom: 30px;
}


.founder-left h4 {
    font-size: 1.6rem;
    line-height: 1.8;
   
    font-weight: 600;
    margin-top:-30px;
}


.founder-right {
    text-align: center;
    max-width: 350px;
}

    .founder-right img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 4px solid #1a3d7c;
        object-fit: cover;
        display: block;
        margin: 0 auto 16px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .founder-right h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 6px;
        
    }

    .founder-right .highlight {
        font-weight: 500;
        font-size: 0.9rem;
        margin-bottom: 6px;
        color: #444;
    }

    .founder-right p {
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 6px;
    }


.founder-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

    .founder-content p {
        margin-bottom: 18px;
        color: #555;
        line-height: 1.7;
        font-size: 1rem;
    }

    .founder-content h3 {
        font-size: 1.8rem;
        font-weight: 600;
        text-align: center;
        margin: 30px 0 18px;
      
        border-bottom: 2px solid #eee;
        padding-bottom: 8px;
    }

    .founder-content strong {
        display: block;
        margin: 24px 0 10px;
        font-size: 1.15rem;
       
    }


.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 5px solid #ffb400;
    background: #fffbea;
    border-radius: 6px;
    color: #444;
}


.founder-content ul {
    list-style: none;
    padding-left: 0;
    margin: 18px auto 30px;
    max-width: 720px;
}

    .founder-content ul li {
        margin-bottom: 10px;
        color: #555;
        line-height: 1.6;
        position: relative;
        padding-left: 24px;
    }

        .founder-content ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #1a3d7c;
            font-weight: bold;
        }


.btn-reva {
    display: inline-block;
    background: #1a3d7c;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-reva:hover {
        background: #163063;
        transform: translateY(-2px);
    }*/


/* termsandcondition Section css*/

.termsandcondition-section {
    padding: 40px 0; /* Equal top & bottom */
    background-color: var(--card-primary);
    box-sizing: border-box;
    width:80%;
    margin:0 auto;
}

 
    .termsandcondition-section .container {
        box-sizing: border-box;
    }


.termsandcondition-title {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}


.termsandcondition-updated {
    text-align: center;
    color: #6c757d;
    margin-bottom: 32px;
}


.termsandcondition-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.termsandcondition-warning {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}


.termsandcondition-content {
    margin-bottom: 40px;
}

    .termsandcondition-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .termsandcondition-content p {
        font-size: 15px;
        line-height: 1.7;
        color: #333;
    }

    .termsandcondition-content ul {
        padding-left: 20px;
        margin-top: 10px;
    }

        .termsandcondition-content ul li {
            margin-bottom: 8px;
            font-size: 15px;
        }


.termsandcondition-alert {
    background: #eef5ff;
    border-left: 4px solid #0d6efd;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 6px;
    margin-bottom: 40px; /* ✅ Forces visible bottom space */
}


/* privacypolicy Section css */

.privacypolicy-section {
    padding: 40px 0; /* equal top & bottom */
    background-color: var(--card-primary);
    box-sizing: border-box;
    margin:0 auto;
    width:80%;
}


    .privacypolicy-section *,
    .privacypolicy-section *::before,
    .privacypolicy-section *::after {
        box-sizing: border-box;
    }


.privacypolicy-title {
    margin-top: 42px;
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.privacypolicy-updated {
    text-align: center;
    color: #6c757d;
    margin-bottom: 32px;
}


.privacypolicy-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacypolicy-consent {
    font-size: 15px;
    margin-bottom: 40px;
    color: #555;
}


.privacypolicy-content {
    margin-bottom: 40px;
}

    .privacypolicy-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .privacypolicy-content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-top: 20px;
    }

    .privacypolicy-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .privacypolicy-content ul {
        padding-left: 20px;
        margin-top: 10px;
    }

        .privacypolicy-content ul li {
            margin-bottom: 8px;
            font-size: 15px;
        }


.privacypolicy-alert {
    background: #f0f7ff;
    border-left: 4px solid #0d6efd;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 6px;
    margin-bottom: 40px; /* ✅ forces bottom gap */
}


.privacypolicy-back {
    text-align: center;
    margin-top: 40px;
}

.privacypolicy-btn {
    background: linear-gradient(135deg, #0066cc, #004ea1);
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

    .privacypolicy-btn:hover {
        background: linear-gradient(135deg, #004ea1, #003b82);
        color: #ffffff;
        text-decoration: none;
    }


.privacypolicy-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.privacypolicy-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.privacypolicy-section [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/*   DISCLAIMER SECTION */
.disclaimer-section {
    padding: 20px;
    margin: 0 auto; 
    width: 80%; 
    background-color: var(--card-primary);
    box-sizing: border-box;
}

   
    .disclaimer-section *,
    .disclaimer-section *::before,
    .disclaimer-section *::after {
        box-sizing: border-box;
    }


.disclaimer-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.disclaimer-updated {
    text-align: center;
    color: #6c757d;
    margin-bottom: 32px;
}


.disclaimer-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.disclaimer-note {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}


.disclaimer-content {
    margin-bottom: 40px;
}

    .disclaimer-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .disclaimer-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .disclaimer-content ul {
        padding-left: 20px;
        margin-top: 10px;
    }

        .disclaimer-content ul li {
            margin-bottom: 8px;
            font-size: 15px;
        }

.disclaimer-alert {
    background: #f0f7ff;
    border-left: 4px solid #0d6efd;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 6px;
    margin-top: 30px;
    margin-bottom: 40px; /* ensures bottom gap */
}

.disclaimer-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.disclaimer-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.disclaimer-section [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}





/* REFUND POLICY PAGE */


.RefundPolicy-section {
    padding: 40px; 
    width: 80%; 
    margin: 0 auto; 
    background-color: var(--card-primary);
    box-sizing: border-box;
}

   
    .RefundPolicy-section *,
    .RefundPolicy-section *::before,
    .RefundPolicy-section *::after {
        box-sizing: border-box;
    }

   
    .RefundPolicy-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .RefundPolicy-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .RefundPolicy-section [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }


.RefundPolicy-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}


.RefundPolicy-updated {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}


.RefundPolicy-content {
    margin-bottom: 40px;
}

    .RefundPolicy-content h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .RefundPolicy-content h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .RefundPolicy-content p {
        margin-bottom: 12px;
    }

    .RefundPolicy-content ul {
        padding-left: 20px;
        margin-bottom: 16px;
    }

        .RefundPolicy-content ul li {
            margin-bottom: 8px;
        }

/* Alert */
.RefundPolicy-alert {
    background: #e7f3ff;
    border-left: 4px solid #0d6efd;
    padding: 16px;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 40px; /* keeps bottom gap */
}


.RefundPolicy-back {
    margin-top: 40px;
    text-align: center;
}

    .RefundPolicy-back .RefundPolicy-btn {
        background: linear-gradient(135deg, #0066cc, #004ea1);
        color: #ffffff;
        padding: 12px 40px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s ease;
    }

        .RefundPolicy-back .RefundPolicy-btn:hover {
            background: linear-gradient(135deg, #004ea1, #003b82);
            color: #ffffff;
            text-decoration: none;
        }





/*reva circle new css */

/*.page1-reva-circle-section {
    padding: 30px 20px;
    width: 80%;
    margin: 0 auto;
}

.page1-reva-circle {
    max-width: 1200px;
    margin: 0 auto;
}

.page1-reva-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .page1-reva-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }


.page1-hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

    .page1-hero-card h2 {
        font-size: 3em;
        margin-bottom: 10px;
        font-weight: 700;
        color: #ffffff;
    }

    .page1-hero-card h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
        font-weight: 600;
        color: #ffffff;
    }

    .page1-hero-card .tagline {
        font-size: 1.2em;
        margin-bottom: 20px;
        font-weight: 500;
        color: #f1f5f9;
    }

    .page1-hero-card p {
        font-size: 1.05em;
        margin-bottom: 15px;
        color: #e5e7eb;
    }

    .page1-hero-card strong {
        font-weight: 700;
        color: #ffffff;
    }


.page1-feature-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 45px;
}

    .page1-feature-card h2 {
        font-size: 2.2em;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.3;
        color: #ffffff;
    }

    .page1-feature-card p {
        font-size: 1.05em;
        margin-bottom: 15px;
        color: #fdf2f8;
    }

    .page1-feature-card .reva-highlight {
        font-size: 1.15em;
        font-weight: 600;
        margin: 20px 0;
        color: #ffffff;
    }

    .page1-feature-card strong {
        font-weight: 700;
        color: #ffffff;
    }


.page1-reva-card-list {
    list-style: none;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
  
    align-items: flex-start;
    width: 100%; 
    max-width: 520px; 
}

.page1-feature-card .page1-reva-card-list li {
    position: relative;
    font-size: 1.05em;
    color: #fff1f2;
  
    padding-left: 34px;
    text-align: left;
    line-height: 1.6;
    width: 100%; 
}

    .page1-feature-card .page1-reva-card-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0.15em;
        font-weight: bold;
        font-size: 1.2em;
        color: #ffffff;
    }



.page1-feature-card .page1-reva-quote {
    font-size: 1.1em;
    font-style: italic;
    margin-top: 25px;
    color: #fdf2f8;
   
    padding-left: 20px;
}


.page1-feature-card * {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}


.page1-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.page1-reva-circle-card {
  
    background: linear-gradient(135deg, #FCC1A1 0%, #8FD392 100%);
    padding: 26px 30px;
    border-radius: 14px;
    text-align: center;
    color: #ffffff;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.18);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .page1-reva-circle-card:hover {
        transform: translateY(-4px);
    }

.page1-step-number {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 44px;
    font-size: 1.5em;
    font-weight: 700;
    
    color:black;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.page1-reva-circle-card p {
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1.6;
   
    color: black;
    font-weight: 340;
    max-width: 850px;
    margin: 0;
}

.page1-reva-circle-card * {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.page1-reva-connect-story {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    color: #3d2817;
}

.page1-story-highlight {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.page1-reva-connect-story p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color:black;
    font-weight:500;
}

.page1-reva-connect-story strong {
    color: #2c1810;
}


.page1-reva-circle-why-card {
    background: linear-gradient(135deg, #1fa2ff 0%, #12d8fa 100%);
    color: white;
    padding: 45px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

    .page1-reva-circle-why-card h3 {
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

.page1-reva-circle-why-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 1;
}

.page1-reva-circle-why-list {
    list-style: none;
    margin: 20px auto;
    padding-left: 120px;
    max-width: 600px;
}

    .page1-reva-circle-why-list li {
        position: relative;
        font-size: 1.05em;
        color: #ffffff;
        padding-left: 30px;
        line-height: 1.5;
        margin-bottom: 10px;
        text-align: left;
    }

        .page1-reva-circle-why-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
            font-size: 1.3em;
            color: #ffffff;
        }


.page1-reva-circle-problems-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 100%);
    color: white;
    padding: 45px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

    .page1-reva-circle-problems-card h3 {
        font-size: 2em;
        margin-bottom: 25px;
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-circle-problems-card .page1-reva-card-list li {
        position: relative;
        font-size: 1.05em;
        color: #ffffff;
        padding-left: 30px;
        text-align: left;
        line-height: 1.5;
        opacity: 1;
    }

        .page1-reva-circle-problems-card .page1-reva-card-list li::before {
            content: "✕";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            font-size: 1.3em;
            color: #ffffff;
            opacity: 1;
        }


    .page1-reva-circle-problems-card .page1-reva-highlight {
        margin-top: 25px;
        font-weight: 600;
        font-size: 1.15em;
        color: #ffffff;
        text-align: center; 
    }



.page1-reva-connect-who {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #333;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
}

    .page1-reva-connect-who h3 {
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-connect-who p {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-connect-who strong {
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-connect-who .page1-reva-card-list li {
        position: relative;
        font-size: 1.05em;
        color: #ffffff;
        opacity: 1;
        padding-left: 30px;
        text-align: left;
        line-height: 1.5;
    }

        .page1-reva-connect-who .page1-reva-card-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            color: #ffffff;
            opacity: 1;
        }

    .page1-reva-connect-who .reva-highlight {
        margin-top: 25px;
        font-weight: 600;
        font-size: 1.15em;
        color: #ffffff;
        opacity: 1;
    }


.page1-reva-circle-impact-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #2c3e50;
    padding: 45px;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

    .page1-reva-circle-impact-card h3 {
        font-size: 2em;
        margin-bottom: 25px;
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-circle-impact-card .page1-reva-card-list li {
        position: relative;
        font-size: 1.05em;
        color: #ffffff;
        text-align: left;
        padding-left: 30px;
        line-height: 1.5;
        opacity: 1;
    }

        .page1-reva-circle-impact-card .page1-reva-card-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            color: #ffffff;
            opacity: 1;
        }

    .page1-reva-circle-impact-card .reva-highlight {
        margin-top: 25px;
        font-weight: 600;
        font-size: 1.15em;
        line-height: 1.5;
        color: #ffffff;
    }


.page1-reva-circle-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .page1-reva-circle-cta-card h3 {
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 700;
        color: #ffffff;
        opacity: 1;
    }

    .page1-reva-circle-cta-card p {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #ffffff;
        opacity: 1;
    }

.page1-primary-btn {
    display: inline-block;
    background: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .page1-primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
       
        opacity: 1;
        text-decoration:none;
    }


.page1-reva-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15em;
    line-height: 1.6;
    text-align: center;
}*/


.page1-reva-circle-section {
    padding: 60px 20px;
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

.page1-reva-circle-section h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.page1-reva-circle-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.page1-reva-circle-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

    
    .page1-reva-circle-section .page1-reva-circle {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

   
    .page1-reva-circle-section .page1-reva-card,
    .page1-reva-circle-section .page1-reva-circle-why-card,
    .page1-reva-circle-section .page1-reva-circle-problems-card,
    .page1-reva-circle-section .page1-reva-connect-who,
    .page1-reva-circle-section .page1-reva-circle-impact-card,
    .page1-reva-circle-section .page1-reva-circle-cta-card {
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        box-sizing: border-box;
        font-size:16px;
    }

    
        .page1-reva-circle-section .page1-reva-card:hover,
        .page1-reva-circle-section .page1-reva-circle-why-card:hover,
        .page1-reva-circle-section .page1-reva-circle-problems-card:hover,
        .page1-reva-circle-section .page1-reva-connect-who:hover,
        .page1-reva-circle-section .page1-reva-circle-impact-card:hover,
        .page1-reva-circle-section .page1-reva-circle-cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

  
    .page1-reva-circle-section .page1-hero-card {
        background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    }

    
    .page1-reva-circle-section .page1-feature-card {
        background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    }

  
    .page1-reva-circle-section
    .page1-reva-card:has(.page1-steps-grid) {
        grid-column: 1 / -1;
    }

  
    .page1-reva-circle-section .page1-steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .page1-reva-circle-section .page1-reva-circle-card {
        border-radius: 14px;
        padding: 26px 30px;
        text-align: center;
        color: black;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
        font-size:16px;
    }

        .page1-reva-circle-section .page1-reva-circle-card:hover {
            transform: translateY(-4px);
        }

    .page1-reva-circle-section .page1-step-number {
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.08);
        border-radius: 50%;
        line-height: 44px;
        font-size: 1.5em;
        font-weight: 700;
        margin-bottom: 16px;
    }

   
    .page1-reva-circle-section .page1-reva-connect-story {
        background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
        padding: 40px;
        border-radius: 16px;
        color: #3d2817;
        margin-top: 24px;
        text-align: center;
        font-size:16px;
    }

    .page1-reva-circle-section .page1-reva-Works {
        background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    }
    
    .page1-reva-circle-section .page1-reva-circle-why-card {
        /*background: linear-gradient(135deg, #1fa2ff 0%, #12d8fa 100%);*/
        background-color: rgba(153, 102, 255, 0.2);
        color: #3d2817;
    }

    
    .page1-reva-circle-section .page1-reva-circle-problems-card {
        /*background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 100%);*/
        background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        color: #3d2817;
    }

    .page1-reva-circle-section .page1-reva-connect-who {
        /*background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);*/
        background: rgba(255, 159, 64, 0.18);
        color: #3d2817;
    }

    .page1-reva-circle-section .page1-reva-circle-impact-card {
        /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
        background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
        color: #3d2817;
    }

  
    .page1-reva-circle-section .page1-reva-circle-cta-card {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, #F7E5B7 0%, #FFC697 50%, #F9C5C7 100%);
        /*background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);*/
        color: #3d2817;
        padding: 70px 60px;
        width:100%;
    }

        .page1-reva-circle-section .page1-reva-circle-cta-card h3 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .page1-reva-circle-section .page1-reva-circle-cta-card p {
            font-size: 16px;
            line-height: 1.7;
            max-width: 720px;
            margin: 0 auto 30px;
            color: #3d2817;
        }

  
    .page1-reva-circle-section .page1-primary-btn {
        display: inline-block;
        background: linear-gradient(90deg, #007bff, #8a2be2);
        padding: 18px 56px;
        border-radius: 60px;
        font-weight: 700;
        font-size: 18px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        transition: all 0.3s ease;
        color:white;
    }

        .page1-reva-circle-section .page1-primary-btn:hover {
            background: linear-gradient(90deg, #007bff, #8a2be2);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            color: white;
        }


    .page1-reva-circle-section .page1-reva-card-list {
        list-style: none;
        margin: 20px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 520px;
    }

        /* List item */
        .page1-reva-circle-section .page1-reva-card-list li {
            position: relative;
            font-size: 1.05em;
            line-height: 1.6;
            padding-left: 34px;
            margin-bottom: 12px;
            text-align: left;
            width: 100%;
            color: #1f2937; /* default dark text */
        }

            /* Checkmark */
            .page1-reva-circle-section .page1-reva-card-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0.15em;
                font-weight: 800;
                font-size: 1.2em;
                color: #6366f1; /* accent color */
            }


    
    .page1-reva-circle-section .page1-reva-circle-why-list {
        list-style: none;
        margin: 20px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 520px;
    }

        /* List item */
        .page1-reva-circle-section .page1-reva-circle-why-list li {
            position: relative;
            font-size: 1.05em;
            line-height: 1.6;
            padding-left: 34px;
            margin-bottom: 12px;
            text-align: left;
            width: 100%;
            color: #3d2817;
        }

            /* Checkmark */
            .page1-reva-circle-section .page1-reva-circle-why-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0.15em;
                font-weight: 800;
                font-size: 1.2em;
                color: #6366f1; /* accent color */
            }



/* reva connect cs new */

.reva-connect-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.reva-connect-section .reva-card h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.reva-connect-section .reva-card h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.reva-connect-section .reva-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}
.reva-connect-section .reva-card h3 {
        font-size: 26px;
        font-weight: 700;
        margin: 16px 0 12px;
        background: linear-gradient(90deg, #007bff, #8a2be2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        text-align: center;
    }
 

    .reva-connect-section .reva-connect.container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: 88%;
        margin: 0 auto;
        text-align: center;
    }

        /* FIRST CARD (HERO) */
        .reva-connect-section .reva-connect.container > .reva-card:first-child {
            /*background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);*/
            background: linear-gradient(145deg, #e6e6e6, #ffd6d6, #e8e8e8);
            grid-column: 1 / -1;
            margin-bottom:10px;
            width:100%;
        }

        /* LAST CARD (CTA) */
        .reva-connect-section .reva-connect.container > .reva-card:last-child {
            background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
            grid-column: 1 / -1;
            padding: 30px;
            margin-bottom: -20px;
            width: 100%;
        }

    /* ================= CARD BASE ================= */

    .reva-connect-section .reva-card {
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
        text-align: center;
        color: #000000;
        font-size:16px;
        font-weight:600px;
    }

     
        /* Default: center text for normal content */
        .reva-connect-section .reva-card > * {
            text-align: center;
            font-size: 16px;
            font-weight: 500px;
        }



.reva-connect-section p {
    color: #000000 !important; 
    text-align: center; 
    font-weight: 400;
    margin: 12px 0;
}


    /* ================= BACKGROUNDS ================= */

    .reva-connect-section .hero-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .reva-connect-section .feature-card {
        background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    }

    .reva-connect-section .how-card {
        background-color: rgba(153, 102, 255, 0.2);
    }

    .reva-connect-section .why-card {
        background: rgba(255, 159, 64, 0.18);
    }

    /*.reva-connect-section .who-card {            
        background: linear-gradient(145deg, #fff0f0, #ffdada);
    }*/
    .reva-connect-section .who-card {
      
        /* background: rgba(255, 159, 64, 0.18); */
        background: linear-gradient(145deg, #fff0f0, #ffdada);
        /* Center all content */
        display: flex;
        flex-direction: column; /* Stack content vertically */
        justify-content: center; /* Vertical center */
        align-items: center; /* Horizontal center */
        /* Optional: if you want some spacing inside the card */
        padding: 20px;
        text-align: center; /* ensures text is centered */
    }


    .reva-connect-section .cta-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

 

    .reva-connect-section .reva-card-list,
    .reva-connect-section .reva-list {
        list-style: none;
        margin: 20px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 520px;
    }

        .reva-connect-section .reva-card-list li,
        .reva-connect-section .reva-list li {
            position: relative;
            font-size: 16px;
            line-height: 1.6;
            padding-left: 34px;
            margin-bottom: 12px;
            text-align: left !important;
            width: 100%;
            color: #000000;
        }

            /* Checkmark */
            .reva-connect-section .reva-card-list li::before,
            .reva-connect-section .reva-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0.15em;
                font-weight: 400;
                font-size: 16px;
                color: #000000;
            }


    .reva-connect-section .numbered-list {
        list-style: none;
        counter-reset: item;
        margin: 20px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 520px;
    }

        .reva-connect-section .numbered-list li {
            position: relative;
            padding-left: 34px;
            margin-bottom: 12px;
            text-align: left !important;
            width: 100%;
            color: #000000;
            font-size: 16px;
        }

            .reva-connect-section .numbered-list li::before {
                content: counter(item) ".";
                counter-increment: item;
                position: absolute;
                left: 0;
                top: 0.15em;
                font-weight: 400;
                color: #000000;
            }


    .reva-connect-section .reva-highlight {
        background: rgba(255,255,255,0.2);
        padding: 15px 20px;
        border-radius: 10px;
        display: inline-block;
        margin: 15px auto;
        font-weight: 400;
        color: #000000;
    }

 
    .reva-connect-section .story-highlight {
        padding: 12px 18px;
        margin: 20px auto;
        display: inline-block;
        font-style: italic;
        /*color: #000000;*/
    }

  

.reva-connect-section .primary-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    padding: 18px 56px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    color: white;
}

    .reva-connect-section .primary-btn:hover {
        background: linear-gradient(90deg, #007bff, #8a2be2);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        color: white;
    }



/*reva-outreach new css */

.reva-outreach-section .reva-outreach {
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* default two columns */
    gap: 30px;
    width: 80%;
}

/* ----------------------------- */
/* CARD BASE STYLES */
/* ----------------------------- */
.reva-outreach-section .reva-outreach-card {
    border-radius: 16px;
    padding: 40px;
    margin: 0; /* spacing controlled by grid gap */
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    text-align: center;
    width: 100%;
    color: #000 !important;
    font-weight: 700;
}

    .reva-outreach-section .reva-outreach-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }




.reva-outreach-section .reva-outreach .hero-card {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    color: #000 !important;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.reva-outreach-section .reva-outreach h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.reva-outreach-section .reva-outreach h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 20px 0 10px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.reva-outreach-section .reva-outreach h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.reva-outreach-section .reva-outreach h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 16px 0 12px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
}


.reva-outreach-section .reva-outreach-tagline {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #000 !important;
}
.reva-outreach-section .reva-outreach-discription {
    font-size: 16px;
    font-weight: 500;
    color: #000 !important;
}

.reva-outreach-section .hero-card strong {
    font-weight: 700;
    color: #000 !important;
}

.reva-outreach-section .feature-card {
    /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    color: #000 !important;
    border-radius: 20px;
    padding: 45px;
}


    .reva-outreach-section .feature-card .reva-outreach-highlight {
        font-size: 1.15em;
        font-weight: 600;
        margin: 20px 0;
        color: #000 !important;
    }

    .reva-outreach-section .feature-card .reva-outreach-quote {
        font-size: 1.1em;
        font-style: italic;
        margin-top: 25px;
        color: #000 !important;
    }

.reva-outreach-section .reva-outreach-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.reva-outreach-section .reva-outreach-circle-card {
    background: rgba(255, 159, 64, 0.18);
    padding: 26px 30px;
    border-radius: 14px;
    text-align: center;
    color: black;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

    .reva-outreach-section .reva-outreach-circle-card:hover {
        transform: translateY(-4px);
    }

.reva-outreach-section .reva-outreach-step-number {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    line-height: 44px;
    font-size: 1.5em;
    font-weight: 700;
    color: black;
    margin-bottom: 16px;
}

.reva-outreach-section .reva-outreach-circle-card p {
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1.6;
    max-width: 850px;
    margin: 0;
}

/* STORY */
.reva-outreach-section .reva-outreach-story {
    background-color: rgba(153, 102, 255, 0.2);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    color: black;
}

.reva-outreach-section .reva-outreach-story-highlight {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.reva-outreach-section .reva-outreach-story p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    font-weight: 500;
}

.reva-outreach-section .reva-outreach-story strong {
    color: #2c1810;
}


.reva-outreach-section .reva-outreach-why-card,
.reva-outreach-section .reva-outreach-problems-card,
.reva-outreach-section .reva-outreach-who,
.reva-outreach-section .reva-outreach-impact-card {
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.reva-outreach-section .reva-outreach-why-card {
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    color: #3d2817;
}

.reva-outreach-section .reva-outreach-problems-card {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    color: #3d2817;
}

.reva-outreach-section .reva-outreach-who {
    background: linear-gradient(145deg, #fffaf0, #f5ecd2);
    color: #3d2817;
}

.reva-outreach-section .reva-outreach-impact-card {
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    color: #3d2817;
}


.reva-outreach-Works-bg {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
}

. /*reva-outreach-section .reva-outreach-card-list {
    list-style: none;
    margin: 20px auto;
    padding-left: 30px;
    max-width: 600px;
    text-align: left;
}

    .reva-outreach-section .reva-outreach-card-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        font-size: 1.3em;
        color: #fff;
        position: absolute;
    }*/
/* Flex-style list for REVA Outreach Cards */
.reva-outreach-section .reva-outreach-card-list,
.reva-outreach-section .reva-outreach-why-list,
.reva-outreach-section .reva-outreach-why-List {
    display: flex;
    justify-content: space-between; /* even spacing between items */
    flex-wrap: wrap; /* wrap to next line if needed */
    list-style: none;
    margin: 20px auto;
    padding: 0;
    gap: 12px; /* space between items */
    font-size: 1.05em;
    width: 100%;
    max-width: 520px; /* keeps list centered */
}

    /* Individual List Items */
    .reva-outreach-section .reva-outreach-card-list li,
    .reva-outreach-section .reva-outreach-why-list li,
    .reva-outreach-section .reva-outreach-why-List li {
        flex: 1; /* each item takes equal space */
        list-style: none;
        min-width: 120px; /* prevents items from shrinking too much */
        text-align: left;
        position: relative;
        padding-left: 28px; /* space for checkmark */
      
       
        color: #3d2817;
        font-weight: 500;
        line-height: 1.5;
    }

        /* Checkmark before each item */
        .reva-outreach-section .reva-outreach-card-list li::before,
        .reva-outreach-section .reva-outreach-why-list li::before,
        .reva-outreach-section .reva-outreach-why-List li::before {
            content: "✓";
            position: absolute;
            left: 8px; /* closer to text */
            top: 1px;
            font-weight: 800;
            font-size: 1.2em;
            color: #6366f1; /* accent color */
        }



/* ----------------------------- */
/* CTA CARD */
/* ----------------------------- */
.reva-outreach-section .reva-outreach-cta-card {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

    .reva-outreach-section .reva-outreach-cta-card h3 {
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .reva-outreach-section .reva-outreach-cta-card p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

.reva-outreach-primary-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    padding: 18px 56px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    color: white;
}

    .reva-outreach-primary-btn:hover {
        background: linear-gradient(90deg, #007bff, #8a2be2);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        color: white;
        text-decoration:none;
    }

/* ----------------------------- */
/* FULL-WIDTH CARDS IN GRID */
/* ----------------------------- */
.reva-outreach-card:nth-of-type(3), /* How It Works */
.reva-outreach-cta-card { /* CTA */
    grid-column: 1 / -1; /* full width */
}







/*  REVA EVENTS NEW CSS   */

.reva-events-section {
    padding: 30px 20px;
    width: 80%;
    margin: 0 auto;
}

    .reva-events-section .reva-events {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* default two columns */
        gap: 30px;
    }

    
    .reva-events-section .reva-event-card {
        background: white;
        border-radius: 16px;
        padding: 40px;
        margin: 0; /* spacing handled by grid gap */
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

        .reva-events-section .reva-event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }


    .reva-events-section .hero-card {
        /*background: linear-gradient(135deg, #FCC1A1 0%, #8FD392 100%);*/
        /*background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);*/
        background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
        height: 540px;
        text-align: center;
        padding: 60px 40px;
        border-radius: 20px;
        margin-bottom: 40px;
        text-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }



        .reva-events-section .hero-card .tagline {
            font-size: 1.2em;
            margin-bottom: 20px;
            font-weight: 600;
            color: #3d2817;
        }

        .reva-events-section .hero-card p {
            font-size: 16px;
            margin-bottom: 15px;
            color: #3d2817;
            font-weight: 600;
        }

        .reva-events-section .hero-card strong,
        .reva-events-section .hero-card highlight {
            font-weight: 700;
            color: #3d2817;
        }


    .reva-events-section .feature-card {
        /*background: linear-gradient(135deg, #F4FAFD 0%, #F3DCE6 1%);*/
        background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
        color: #3d2817;
        border-radius: 20px;
        padding: 45px;
        height:540px;
    }



        .reva-events-section .feature-card p {
            font-size:16px;
            margin-bottom: 15px;
            color: #3d2817;
            font-weight: 700;
        }

        .reva-events-section .feature-card .reva-highlight {
            font-size: 1.15em;
            font-weight: 600;
            margin: 20px 0;
        }

        .reva-events-section .feature-card strong {
            font-weight: 700;
        }

   
    .reva-events-section .reva-event-list {
        list-style: none;
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 520px;
        color: #1F2D27;
    }

        .reva-events-section .reva-event-list li {
            position: relative;
            font-size: 16px;
            padding-left: 34px;
            text-align: left;
            line-height: 1.6;
            width: 100%;
            font-weight: 700;
        }

            .reva-events-section .reva-event-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                top: 0.15em;
                font-weight: bold;
                font-size: 1.2em;
                color: #333333 !important;
            }

    .reva-events-section .reva-quote {
        font-size: 16px;
      
        margin-top: 25px;
        color: #fdf2f8;
        padding-left: 20px;
        font-weight:900;
    }


.reva-event-story {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    padding: 40px;
    border-radius: 16px;
    margin-top: 30px;
    color: #3d2817;
}

    .reva-event-story p {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.7;
        color: #2c1810;
        font-weight: 520;
    }

    .reva-event-story strong {
        color: #2c1810;
    }

.reva-events-section .reva-note {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #2c1810;
    font-weight: 620;
}


.reva-events-section .reva-event-Work-bg {
    /*background-color: rgba(153, 102, 255, 0.2);*/
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    /*background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);*/
    /*background: linear-gradient(135deg, #FCC1A1 0%, #8FD392 100%);*/
}

.reva-events-section .reva-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.reva-events-section .reva-event-step {
    /*background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);*/
    /*background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);*/
    /*background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);*/
    background: rgba(255, 159, 64, 0.18);
    padding: 26px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(79,172,254,0.18);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .reva-events-section .reva-event-step:hover {
        transform: translateY(-4px);
    }

.reva-events-section .step-number {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    line-height: 44px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.reva-events-section .reva-event-step p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #000 !important;
    max-width: 850px;
    margin: 0;
}

.reva-events-section .reva-highlight {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
    color: #7A4E3A;
    font-weight: 600;
    font-size: 1.15em;
    line-height: 1.6;
    text-align: center;
}


.reva-events-section .reva-event-cta .primary-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 10px 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

    .reva-events-section .reva-event-cta .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        background: linear-gradient(90deg, #007bff, #8a2be2);
        color: #FFFFFF;
    }


.reva-events-section .why-card,
.reva-events-section .problems-card,
.reva-events-section .who-card,
.reva-events-section .impact-card {
    border-radius: 20px;
    padding: 45px;
    text-align: center;
}

.reva-events-section .why-card {
    /*background: linear-gradient(135deg, #FAFDFF 0%, #E6F1FA 0%);*/
    background: linear-gradient(145deg, #f6f1d5b3, #f1efe7b3);
    color: #1F2D27;
}

.reva-events-section .problems-card {
    /*background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 1%);*/
    background-color: rgba(153, 102, 255, 0.2);
    color: #1F2D27;
}

.reva-events-section .who-card {
    background: linear-gradient(145deg, #fafafa, #ffe5e5, #f1f1f1);
    color: #5A3E5B;
}

.reva-events-section .impact-card {
    background: linear-gradient(145deg, #d7eccdb3, #f4f0facc);
    color: #1F2D27;
}


.reva-events-section .reva-event-card:nth-of-type(3), /* How It Works */
.reva-events-section .reva-event-cta { /* CTA Card */
    grid-column: 1 / -1; /* full width */
}


/* initiative page css*/

.initiative-page {
    font-family: 'Inter', sans-serif;
    padding: 40px 15px;
}

.initiative-page .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.initiative-page .progress {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 40px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

    .initiative-page .progress li {
        flex: 1;
        min-width: 90px;
        text-align: center;
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
        color: #6b7280;
        font-weight: 500;
    }

        .initiative-page .progress li.active {
            border-color: #2563eb;
            color: #2563eb;
            font-weight: 700;
        }

.initiative-page .step {
    display: none;
}

    .initiative-page .step.active {
        display: block;
    }

.initiative-page h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.initiative-page h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #111827;
    font-weight: 700;
}

.initiative-page h3 {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.initiative-page p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #374151;
}

    .initiative-page p strong {
        color: #111827;
    }

.initiative-page ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

    .initiative-page ul li {
        margin-bottom: 8px;
        color: #374151;
    }

.initiative-page .group {
    margin-bottom: 20px;
}

.initiative-page label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
}

.initiative-page input, .initiative-page textarea, .initiative-page select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-family: 'Inter',sans-serif;
}

    .initiative-page input:focus, .initiative-page textarea:focus, .initiative-page select:focus {
        outline: none;
        border-color: #2563eb;
    }

.initiative-page .options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

    .initiative-page .options label {
        padding: 10px 14px;
        border-radius: 8px;
        border: 1px solid #d1d5db;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #1f2937;
    }

    .initiative-page .options input {
        width: 16px;
        height: 16px;
        accent-color: #2563eb;
    }

.initiative-page .note-text {
    border-left: 3px solid #9ca3af;
    padding: 12px;
    margin: 15px 0;
    font-size: 13px;
    color: #374151;
}

.initiative-page .terms-box {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin: 20px 0;
}

.initiative-page .pricing-detailed {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin: 25px 0;
}

.initiative-page .pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937;
}

    .initiative-page .pricing-row strong {
        font-size: 16px;
        color: #111827;
    }

.initiative-page .pricing-total {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    margin-top: 15px;
    border-top: 2px solid #111827;
    font-size: 18px;
    font-weight: 700;
}

.initiative-page .payment-box {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
}

.initiative-page .payment-option {
    display: flex;
    gap: 12px;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
}

.initiative-page .summary, .initiative-page .summary-preview {
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    margin: 25px 0;
}

.initiative-page .actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

    .initiative-page .actions.center {
        justify-content: center;
    }

.initiative-page button {
    padding: 12px 26px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.initiative-page .primary {
    border-color: #2563eb;
    color: #2563eb;
    background: transparent;
}

.initiative-page .secondary {
    border-color: #9ca3af;
    color: #374151;
    background: transparent;
}

.initiative-page .large {
    font-size: 16px;
    padding: 14px 36px;
}





/******************************************

/* ============================================
   RESPONSIVE MEDIA QUERIES
   Optimized for all screen sizes from 320px to 2560px
   ============================================ */
/* ============================================
   LARGE DESKTOPS & 4K SCREENS (1920px+)
   ============================================ */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    /*.hero-title {
        font-size: 4rem;
    }*/

    .hero-subtitle {
        font-size: 20px;
        font-weight: 400;
        margin:20px;
    }

    /* .diagram-container {
        max-width: 1400px;
    }*/
}

/* ============================================
   LAPTOPS & MEDIUM DESKTOPS (1024px - 1365px)
   ============================================ */
@media (max-width: 1366px) {

    .logo-video {
        width: 200px !important; /* Increase size */
        height: 200px !important; /* Same height */
        margin-top: 20px; /* adjust value as needed */
    }


    /*.hero-title {
        font-size: 40px;
        font-weight: 700;
    }*/

    .hero-subtitle {
        font-size: 18px;
        font-weight: 300;
        margin-bottom:30px;
    }


    /* GRID */
    .reva-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, auto));
        gap: 12px;
    }

    /* CARD */
    .jd-card {
        height: 160px;
        width: 160px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-label {
        font-size: 12px;
    }


}

/* ============================================
   1280px)
   ============================================ */
@media (max-width: 1280px) {
    .hero-text-section {
        top: 52vh;
       
    }
    #logoBox {     
        top: 2vh !important;        
    }
      
    #reva-network {
        margin-top: 43vh !important;
    }
    /* GRID */
    .reva-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, auto));
        gap: 15px;
    }

    /* CARD */
    .jd-card {
        height: 140px;
        width: 140px;
    }
}


/*@media (max-width: 1152px) {
    
}*/




/* ============================================
   TABLETS (768px - 1023px)
   ============================================ */
@media (max-width: 1024px) {
    .logo-video {
        width: 150px !important; /* Increase size */
        height: 150px !important; /* Same height */
        margin-top: 20px; /* adjust value as needed */
    }

    .hero-text-section {
        top: 50vh;
    }

    .hero-subtitle {
        font-size: 14px;
        font-weight: 300;
    }

    #reva-network {
        margin-top: 35vh !important;
    }

        #reva-network .card {
            width: 80px;
            height: 80px;
            padding-bottom: 0px;
        }

        #reva-network .card-title {
            font-size: 12px;
            width: 80px; /* match card width */
            margin-top: 0px;
        }

        #reva-network .card-caption {
            font-size: 10px;
        }

        /* Card 1 text */
        #reva-network #card1 + .card-title {
            top: 225px; /* card1 top + card height + spacing */
            left: 20px;
        }

            #reva-network #card1 + .card-title + .card-caption {
                top: 235px;
                left: 27px;
            }

        /* Card 2 text */
        #reva-network #card2 + .card-title {
            top: 280px;
            left: 200px;
        }

            #reva-network #card2 + .card-title + .card-caption {
                top: 300px;
                left: 200px;
            }

        /* Card 3 text */
        #reva-network #card3 + .card-title {
            top: 280px;
            left: 525px;
        }

            #reva-network #card3 + .card-title + .card-caption {
                top: 300px;
                left: 525px;
            }

        /* Card 4 text */
        #reva-network #card4 + .card-title {
            top: 225px;
            left: 695px;
        }

            #reva-network #card4 + .card-title + .card-caption {
                top: 235px;
                left: 695px;
            }

        /*card positions*/
        #reva-network #card1 {
            left: 18px;
        }

        #reva-network #card2 {
            left: 203px;
        }

        #reva-network #card3 {
            left: 524px;
        }

        #reva-network #card4 {
            left: 705px;
        }

        /*circle positions */
        #reva-network circle1 {
            left: 18px;
        }

    /* Headings */
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #0066CC;
    }

    .section-subtitle {
        font-size: 18px;
        color: #2C3E50;
        margin-top: 8px;
    }

    /* Text */
    .feature-heading {
        color: #0066CC;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .feature-text {
        font-size: 13px;
        color: #444;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .trusted-line {
        color: #0066CC;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 15px;
    }

    /* List */
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .feature-list li {
            font-size: 13px;
            margin-bottom: 10px;
            line-height: 1.45;
            padding-left: 27px;
            position: relative;
        }

    /* Screenshots */
    .screenshot-grid {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: -110px;
    }

    .shot-img {
        width: 100%;
        max-width: 180px;
        border-radius: 18px;
    }

    .reva-title {
        font-size: 25px;
    }

    /*.reva-subtitle {
        font-size: 14px;
        letter-spacing: 1.2px;
    }*/

    .reva-description {
        font-size: 14px;
        line-height: 1.2;
    }

    .stat-card {
        height: 90%;
        min-height: 90px;
        padding: 10px 12px;
    }

    .playstore-badge {
        margin-top: 20px;
    }

    .banner-subtitle {
        font-size: 14px;
        margin-top: 10px;
    }
    /* GRID */
    .reva-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px,auto));
        gap: 8px;
    }

    /* CARD */
    .jd-card {
        width: 120px;
        height: 120px;
    }

    .jd-content h3 {
        font-size: 14px;
        margin-bottom: 2px;
        line-height: 0.9;
    }

    .aboutus-media-steps-section {
        padding: 20px 16px 40px;
    }

    .aboutus-logo-center {
        flex: 0 0 auto;
        margin: 0 16px;
    }

    .aboutus-logo-img {
        width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .aboutus-move-left-1 {
        transform: translate(90px, -10px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(180px, 40px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(-120px, 85px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(-180px, 100px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 180px;
        font-size: 13px;
        line-height: 1.4;
    }

    .aboutus-step-dot {
        width: 14px;
        height: 14px;
    }

    .aboutus-step-card {
        max-width: 85%;
        border-radius: 20px;
        height: 400px;
    }


    .aboutus-step-img {
        width: 230px;
        height: 230px;
    }

    .aboutus-step-title {
        font-size: 14px;
    }

    .aboutus-step-card h3 {
        font-size: 32px;
    }

    .aboutus-step-card p {
        font-size: 16px;
    }

    /* Button smaller */
    .aboutus-btn {
        margin-top: 15px;
        padding: 14px 25px;
        font-size: 14px;
    }
}


@media (max-width: 965px){
    .hero-text-section {
        top: 53vh;
    }
    .hero-text-section {
        top: 48vh;
    }

        .hero-text-section h1 {
            font-size: 36px;
            margin-top: -120px;
        }

    #reva-network svg {
        display: none;
    }

    #reva-network {
        padding: -10px 12px;
        width: 95%;
        margin-top: 350px !important;
    }
        #reva-network .diagram-container {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: static;
            margin-top: 30px;
        }

        #reva-network .card {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 180px;
            height: 180px;
            margin-bottom: 5px;
            margin: 2px;
            padding: 10px;
        }

        #reva-network .card-title {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 18px;
            margin-top: 8px;
            text-align: center;
        }

        #reva-network .card-caption {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 15px;
            margin-top: 6px;
            margin-bottom: 50px;
            text-align: center;
        }

    #reva-section {
        width: 95%;
    }

        #reva-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #reva-section h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: 20px;
        }

        #reva-section h2 {
            font-size: 28px;
            font-weight: 700;
        }

        #reva-section .card-body {
            padding: 10px 12px !important;
        }

        #reva-section .reva-description {
            font-size: 14px;
            line-height: 1.35;
            margin: 0 !important;
        }


    /*#reva-section .reva-description br {
                display: none;
            }*/

    #app-features {
        width: 95%;
    }

        #app-features > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #app-features h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: -30px;
        }

        #app-features h2 {
            font-size: 28px;
            font-weight: 700;
        }

        #app-features p {
            margin-top: 10px;
        }

    .screenshot-grid {
        flex-wrap: wrap;
        gap: 45px;
        margin-top: -10px;
    }

    .shot-img {
        max-width: 260px;
        border-radius: 14px;
    }

    .playstore-btn img {
        width: 200px;
        height: 60px;
        object-fit: contain;
    }

    #reva-identity {
        width: 95%;
        padding-bottom: 0 !important;
    }

        #reva-identity .container {
            padding-bottom: 0 !important;
        }

        #reva-identity .row {
            margin-bottom: 0 !important;
        }

        #reva-identity .col-md-3,
        #reva-identity .col-6 {
            margin-bottom: 0 !important;
        }

        #reva-identity h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .stat-card {
        width: 100%;
        max-width: 140px;
        min-height: 130px;
        padding: 20px;
        margin: -20px auto 10px auto;
        box-sizing: border-box;
        display: grid;
        place-items: center;
        text-align: center;
        word-wrap: break-word;
    }

        .stat-card .stat-number {
            font-size: 10px;
            line-height: 1;
            word-break: break-word;
            margin-top: -10px;
        }

    stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1;
    }

    #reva-download-app {
        width: 95%;
    }

        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .playstore-badge {
        margin-top: 10px;
        width: 190px;
        height: 60px;
    }

    .our-network {
        width: 95%;
    }

        .our-network h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .reva-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        justify-items: center;
        padding: 5px;
        margin: 0 auto;
    }


    .jd-card {
        width: 100%;
        max-width: 280px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0;
        padding: 10px;
    }

    .jd-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }

    .member-container {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .member-card {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .footer {
        width: 100%;
    }

        .footer > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-widget p {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .aboutus-curve-lines {
        display: none;
    }
   
    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 170px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-122px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-90px, 180px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(107px, -135px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -120px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 10px;
        height: 10px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }

    .aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
        
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 12px;
        margin-top: 10px;
    }

    .aboutus-step-card h3 {
        font-size: 22px;
        line-height: 1;
        margin-top: 10px;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
   
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
    
    
}

@media (max-width: 942px) {
    #logoBox {
        top: 23vh !important;
        margin-bottom: 40px;
    }

    .logo-video {
        margin-bottom: 50px;
    }
    /*.hero-text-section {
        top: 55vh;
    }*/

    .hero-text-section h1 {
        font-size: 33px;
        margin-top: 230px;
    }

    #reva-network svg {
        display: none;
    }

    #reva-network {
        padding: -10px 12px;
        width: 95%;
        margin-top: 20px !important;
    }

        #reva-network .diagram-container {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: static;
            margin-top: 30px;
        }

        #reva-network .card {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 180px;
            height: 180px;
            margin-bottom: 5px;
            margin: 2px;
            padding: 10px;
        }

        #reva-network .card-title {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 18px;
            margin-top: 8px;
            text-align: center;
        }

        #reva-network .card-caption {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 15px;
            margin-top: 6px;
            margin-bottom: 50px;
            text-align: center;
        }

    #reva-section {
        width: 95%;
    }

        #reva-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #reva-section h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: 20px;
        }

        #reva-section h2 {
            font-size: 28px;
            font-weight: 700;
        }

        #reva-section .card-body {
            padding: 10px 12px !important;
        }

        #reva-section .reva-description {
            font-size: 14px;
            line-height: 1.35;
            margin: 0 !important;
        }


    /*#reva-section .reva-description br {
                display: none;
            }*/

    #app-features {
        width: 95%;
    }

        #app-features > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #app-features h3 {
            font-size: 24px;
            font-weight: 600;
            margin-top: -30px;
        }

        #app-features h2 {
            font-size: 28px;
            font-weight: 700;
        }

        #app-features p {
            margin-top: 10px;
        }

    .screenshot-grid {
        flex-wrap: wrap;
        gap: 45px;
        margin-top: -10px;
    }

    .shot-img {
        max-width: 260px;
        border-radius: 14px;
    }

    .playstore-btn img {
        width: 200px;
        height: 60px;
        object-fit: contain;
    }

    #reva-identity {
        width: 95%;
        padding-bottom: 0 !important;
    }

        #reva-identity .container {
            padding-bottom: 0 !important;
        }

        #reva-identity .row {
            margin-bottom: 0 !important;
        }

        #reva-identity .col-md-3,
        #reva-identity .col-6 {
            margin-bottom: 0 !important;
        }

        #reva-identity h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .stat-card {
        width: 95%;
        max-width: 140px;
        min-height: 130px;
        padding: 20px;
        margin: -20px auto 10px auto;
        box-sizing: border-box;
        display: grid;
        place-items: center;
        text-align: center;
        word-wrap: break-word;
    }

        .stat-card .stat-number {
            font-size: 10px;
            line-height: 1;
            word-break: break-word;
            margin-top: -10px;
        }

    stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1;
    }

    #reva-download-app {
        width: 95%;
    }

        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .playstore-badge {
        margin-top: 10px;
        width: 190px;
        height: 60px;
    }

    .our-network {
        width: 95%;
    }

        .our-network h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .reva-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        justify-items: center;
        padding: 5px;
        margin: 0 auto;
    }


    .jd-card {
        width: 100%;
        max-width: 280px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0;
        padding: 10px;
    }

    .jd-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }

    .member-container {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .member-card {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .footer {
        width: 95%;
    }

        .footer > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-widget p {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .aboutus-curve-lines {
        display: none;
    }

    /*.aboutus-media-steps-section {
        padding-top: 0 !important;
        margin-top: -120px !important;
    }*/

    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 200px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-140px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-92px, 210px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(127px, -165px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -130px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 12px;
        height: 12px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }

    /*.aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }*/
    .aboutus-media-steps-section {
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 14px;
        margin-top: 10px;
    }

    .aboutus-step-card h3 {
        font-size: 24px;
        line-height: 1;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    /*.aboutus-btn {
        font-size: 14px;
        padding: 12px 24px;
        border-radius: 10px;
    }*/
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
}

       
        


@media (max-width: 800px){
    .hero-text-section {
        top: 53vh;
    }
    #reva-network svg {
        display: none;
    }

    #reva-network {
        padding: -10px 12px;
        width: 95%;
        margin-top: 20px !important;
    }
    .aboutus-curve-lines {
        display: none;
    }
    
    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 170px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-122px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-90px, 180px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(107px, -135px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -120px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 10px;
        height: 10px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }

    .aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
      
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 12px;
        margin-top: 10px;
    }

    .aboutus-step-card h3 {
        font-size: 22px;
        line-height: 1;
        margin-top: 10px;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
   
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
}


@media (max-width: 760px){

    #reva-network {
        margin-top: -10px !important;
        width:95%;
    }

    .aboutus-curve-lines {
        display: none;
    }
    
    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 170px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-122px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-90px, 180px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(107px, -135px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -120px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 10px;
        height: 10px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }

    .aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
        
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 12px;
        margin-top: 10px;
    }

    .aboutus-step-card h3 {
        font-size: 22px;
        line-height: 1;
        margin-top: 10px;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }

    
}
@media (max-width: 424px) {
    #logoBox {
        position: fixed !important;
        top: 11vh !important;
        left: 50% !important;
        transform: translateX(-50%) scale(1) !important;
        z-index: 1000;
    }
    .logo-video {
        width: 95vw;
        height: auto;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .hero-text-section {
        top: 48vh;
    }
    .hero-text-section h1 {
        font-size: 36px;
        margin-top: -120px; 
    }
    #reva-network svg {
        display: none;
    }
    #reva-network {
        padding: -10px 12px;
        width: 95%;
        margin-top: 350px !important;
    }
    .circle1, .circle2, .circle3, .circle4 {
        display: none;
    }

    #reva-network .diagram-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
        margin-top:30px;
    }

    #reva-network .card {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 130px;
        height: 130px;
        margin-bottom: 5px;
        margin: 2px;
        padding: 10px;
    }

    #reva-network .card-title {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 140px;
        font-size: 14px;
        margin-top: 8px;
        text-align: center;
    }

    #reva-network .card-caption {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 140px;
        font-size: 12px;
        margin-top: 6px;
        margin-bottom: 30px;
        text-align: center;
    }

    #reva-network .btn {
        margin-top: -5px;
        padding-bottom: -30px;
        font-size: 18px;
    }

    #reva-section {
        width: 95%;
    }
        #reva-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    #reva-section h3 {
        font-size: 24px;
        font-weight: 600;
        margin-top: 20px;
    }
    #reva-section h2 {
        font-size: 28px;
        font-weight: 700;
    }
        #reva-section .card-body {
            padding: 10px 12px !important;
        }

        #reva-section .reva-description {
            font-size: 14px;
            line-height: 1.35;
            margin: 0 !important;
        }

         
            #reva-section .reva-description br {
                display: none;
            }
    #app-features {
        width: 95%;
    }

        #app-features > * {
            margin: 0 !important;
            padding: 0 !important;
        }
    #app-features h3 {
        font-size: 24px;
        font-weight: 600;
        margin-top: -30px;
    }

    #app-features h2 {
        font-size: 28px;
        font-weight: 700;
    }
     #app-features p {
          margin-top: 10px;      
    }
    .screenshot-grid {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: -10px;
    }

    .shot-img {
        max-width: 260px;
        border-radius: 14px;
    }


    #reva-identity {
        width: 95%;
        padding-bottom: 0 !important;
    }

        #reva-identity .container {
            padding-bottom: 0 !important;
        }

        #reva-identity .row {
            margin-bottom: 0 !important;
        }

        #reva-identity .col-md-3,
        #reva-identity .col-6 {
            margin-bottom: 0 !important;
        }

        #reva-identity h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .stat-card {
        width: 100%;
        max-width: 140px;
        min-height: 130px;
        padding: 20px;
        margin: -20px auto 10px auto;
        box-sizing: border-box;
        display: grid;
        place-items: center;
        text-align: center;
        word-wrap: break-word;
    }

        .stat-card .stat-number {
            font-size: 10px;
            line-height: 1;
            word-break: break-word;
            margin-top: -10px;
        }

    stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1;
    }    


    #reva-download-app {
        width: 95%;
    }

        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .our-network {
        width: 95%;
    }
    .our-network h2 {
        font-size: 28px;
        font-weight: 700;
    }
    .reva-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-items: center;
        padding: 5px;
        margin: 0 auto;
    }


    .jd-card {
        width: 100%;
        max-width: 180px;
        height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0;
        padding: 10px;
    }

    .jd-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }

    .member-container {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .member-card {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        background-color: var(--gray-100);
    }

    .member-text {
        font-size: 13px;
        line-height: 1.2;
        margin-top: 6px;
        padding: 0 6px;
    }

    .footer {
        width: 95%;
    }

        .footer > * {
            margin: 0 !important;
            padding: 0 !important;
        }
    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-widget p {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }


    .aboutus-curve-lines {
        display: none;
    }
    

    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 200px;
        margin-top: 0 !important;
        display: block;
    }
    
    .aboutus-move-left-1 {
        transform: translate(-140px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-92px, 210px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(127px, -165px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -130px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;        
        line-height: 0.9;
        font-weight:600;
    }

    .aboutus-step-dot {
        width: 12px;
        height: 12px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }
      
    .aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
       
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

       
    .aboutus-step-img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }
  
    .aboutus-step-title {
        font-size: 14px;
        margin-top:10px;
    }

    .aboutus-step-card h3 {
        font-size: 24px;
        line-height: 1;                    
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }   
   
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px; 
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top:5px;
    }
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
        background-color: #0066cc; /* base color */
        color: #fff; /* default text color */
        transition: all 0.3s ease;
    }

        .aboutus-btn:hover,
        .aboutus-btn:focus {
            background-color: #004ea1;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            text-decoration: none;
            color: #fff; /* stays white */
        }

    

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
       
}


@media (max-width: 393px) {
    #logoBox {
        position: fixed !important;
        top: 12vh !important;
        left: 50% !important;
        transform: translateX(-50%) scale(1) !important;
        z-index: 1000;
    }

    .logo-video {
        width: 95vw;
        height: auto;
        display: block;
        margin: 0 auto;
        margin-bottom: 30px;
    }
   
    #logoBox {
        transition: opacity 0.3s ease !important;
        transform: translateX(-50%) scale(1) !important;
    }


    .hero-text-section {
        top: 55vh;
    }
        .hero-text-section h1 {
            font-size: 33px;
            margin-top: -150px;
        }

    #reva-network svg {
        display: none;
    }
    .circle1, .circle2, .circle3, .circle4 {
        display: none;
    }
    #reva-network {
        padding: 10px 12px;
        width: 100%;
        margin-top: 330px !important;
    }

    #reva-network .diagram-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
        /*padding-bottom: -50px;*/
        margin-top: 30px;
    }

    #reva-network .card {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 130px;
        height: 130px;
        margin-bottom: 5px;
        margin: 2px;
        padding: 0;
    }

    #reva-network .card-title {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 140px;
        font-size: 14px;
        margin-top: 8px;
        text-align: center;
    }

    #reva-network .card-caption {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 140px;
        font-size: 12px;
        margin-top: 6px;
        margin-bottom: 30px;
        text-align: center;
    }

    #reva-network .btn {
        margin-top: -15px;
        padding-bottom: -30px;
        font-size: 15px;
    }
    #reva-section {
        width: 100%;
    }

        #reva-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #reva-section h3 {
            font-size: 21px;
            font-weight: 600;
            margin-top: 20px;
        }

        #reva-section h2 {
            font-size: 25px;
            font-weight: 700;
        }
        #reva-section .card-body {
            padding: 10px 12px !important;
        }

        #reva-section .reva-description {
            font-size: 14px;
            line-height: 1.35;
            margin: 0 !important;
        }

          
            #reva-section .reva-description br {
                display: none;
            }
    #app-features {
        width: 100%;
    }

        #app-features > * {
            margin: 0 !important;
            padding: 0 !important;
        }

        #app-features h3 {
            font-size: 21px;
            font-weight: 600;
            margin-top: -30px;
        }

        #app-features h2 {
            font-size: 25px;
            font-weight: 700;
        }

        #app-features p {
            margin-top: 10px;
        }

    .screenshot-grid {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: -10px;
    }

    .shot-img {
        max-width: 260px;
        border-radius: 14px;
    }

    #reva-identity {
        width: 100%;
        padding-bottom: 0 !important;
    }

        #reva-identity .container {
            padding-bottom: 0 !important;
        }

        #reva-identity .row {
            margin-bottom: 0 !important;
        }

        #reva-identity .col-md-3,
        #reva-identity .col-6 {
            margin-bottom: 0 !important;
        }

        #reva-identity h2 {
            font-size: 28px;
            font-weight: 700;
        }

    .stat-card {
        width: 100%;
        max-width: 140px;
        min-height: 130px;
        padding: 20px;
        margin: -20px auto 10px auto;
        box-sizing: border-box;
        display: grid;
        place-items: center;
        text-align: center;
        word-wrap: break-word;
    }

        .stat-card .stat-number {
            font-size: 10px;
            line-height: 1;
            word-break: break-word;
            margin-top: -10px;
        }

    stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1;
    }



    #reva-identity h2 {
        font-size: 25px;
        font-weight: 700;
    }
    #reva-download-app {
        width: 100%;
    }

        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .our-network {
        width: 100%;
    }

        .our-network h2 {
            font-size: 25px;
            font-weight: 700;
        }

    .reva-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        justify-items: center;
        padding: 5px;
        margin: 0 auto;
    }


    .jd-card {
        width: 100%;
        max-width: 170px;
        height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0;
        padding: 10px;
    }

    .jd-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.1;
        text-align: center;
        word-break: break-word;
    }
    .member-container {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .member-card {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .member-text {
        font-size: 12.5px;
        line-height: 1.2;
        margin-top: 6px;
        padding: 0 6px;
    }
    .footer {
        width: 100%;
    }

        .footer > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-widget p {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .aboutus-curve-lines {
        display: none;
    }
    
    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 170px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-122px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-90px, 180px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(107px, -135px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -120px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 10px;
        height: 10px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }

    .aboutus-media-steps-section {
        width: 100% !important;
        padding: 0 2.5% !important;
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
       
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 12px;
        margin-top: 10px;
    }

    .aboutus-step-card h3 {
        font-size: 22px;
        line-height: 1;
        margin-top: 10px;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
}


/* ============================================
   MOBILE LANDSCAPE (576px - 767px)
   ============================================ */
@media (max-width: 360px) {
    /*.logo-video {
   
        margin-top: -15px; 
    }*/
    
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    #logoBox {
        position: fixed !important;
        top: 12vh !important;
        left: 50% !important;
        transform: translateX(-50%) scale(1) !important;
        z-index: 1000;
    }

    .logo-video {
        width: 95vw;
        height: auto;
        display: block;
        margin: 15 auto;
        margin-bottom:30px;
    }
    
    .circle1, .circle2, .circle3, .circle4 {
        display: none;
    }

    .hero-text-section {
        top: 65vh;
    }

        .hero-text-section h1 {
            font-size: 36px;
           
        }

    h2 {
        font-size: 30px;
        font-weight: 700;
    }

    h3 {
        font-size: 25px;
        font-weight: 600;
        margin-top: -30px;
    }

    #reva-section h2 {
        font-size: 30px;
        font-weight: 700;
    }

    #reva-section .card {
        margin-top: -20px;
    }

    /*#reva-section .card-body {
        margin-top: -30px;
        margin-bottom: -60px;
    }*/
    #reva-section .card-body {
        padding: 10px 12px !important;
    }

    #reva-section .reva-description {
        font-size: 14px;
        line-height: 1.35;
        margin: 0 !important;
    }

        /* remove <br><br> gap */
        #reva-section .reva-description br {
            display: none;
        }

    #reva-section .reva-features-list {
        margin-bottom: -20px;
    }

    /*.hero-title {
        font-size: 34px;
        margin-bottom: 16px;
    }*/
    .hero-subtitle {
        font-size: 18px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #reva-network svg {
        display: none;
    }

    #reva-network {
        padding: 10px 12px;
        /*margin-top: 180px !important;*/
        margin-top: 340px !important;
        position: relative;
        gap: 60px;
        padding-bottom: 0;
        width: 95%;
    }


        #reva-network .diagram-container {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: static;
            /*padding-bottom: -50px;*/
        }

        #reva-network .card {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 130px;
            height: 130px;
            margin-bottom: 5px;
            margin: 2px;
            padding: 0;
        }

        #reva-network .card-title {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 14px;
            margin-top: 8px;
            text-align: center;
        }

        #reva-network .card-caption {
            position: static !important;
            left: auto !important;
            top: auto !important;
            transform: none !important;
            width: 140px;
            font-size: 12px;
            margin-top: 6px;
            margin-bottom: 30px;
            text-align: center;
        }
        #reva-network .btn {
            margin-top: -15px;
            padding-bottom: -30px;
            font-size: 15px;
        }


    
    .reva-features-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .trusted-line {
        margin-top: -15px;
    }

    .screenshot-grid {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: -10px;
    }

    .shot-img {
        max-width: 260px;
    
        border-radius: 14px;
    }

    #reva-identity {
        display: grid;
        place-items: center;
        padding: 12px 10px;
        margin: 10px auto;
    }
    #reva-identity .row.mb-4 {
        margin-bottom: 10px !important;
    }
    #reva-identity .col-6 {
        padding-bottom: 10px !important;
    }
    .reva-title {
        font-size: 20px;
        margin-bottom: 4px;
    }

    /*.reva-subtitle {
        margin-bottom: 2px;
    }
*/
    .stat-card {
        width: 100%;
        max-width: 140px; 
        min-height: 130px;
        padding: 20px;
        margin: 10px auto 10px auto; 
        box-sizing: border-box;
        display: grid;
        place-items: center;
        text-align: center;
        word-wrap: break-word;
    }

        .stat-card .stat-number {
            font-size: 10px;
            line-height: 1;
            word-break: break-word;
            margin-top: -10px;
        }

    stat-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1;
    }


    .playstore-badge {
        margin-top: 10px;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .reva-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px;
        justify-items: center; 
        padding: 5px; 
        margin: 0 auto; 
    }

    
    .jd-card {
        width: 100%; 
        max-width: 150px;
        height: 120px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0; 
        padding: 10px; 
    }
   
    .jd-content h3 {
        font-size: 12px; 
        margin-bottom: 2px;
        line-height: 1;
        text-align: center;
        word-break: break-word; 
    }

    .footer-widget p {
        text-align: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    .hero-section {      
        width: 100%;   
    }
       #hero-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    #reva-section {
        width: 95%;
    }

        #reva-section > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    #app-features {
        width: 95%;
    }

        #app-features > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    #reva-identity {
        width: 95%;
    }
        #reva-identity > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    #reva-download-app {
        width: 95%;
    }
        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .our-network {
        width: 95%;
    }
        #reva-download-app > * {
            margin: 0 !important;
            padding: 0 !important;
        }

    .footer {
        width: 95%;
    }
        .footer > * {
            margin: 0 !important;
            padding: 0 !important;
        }


    .aboutus-curve-lines {
        display: none;
    }
    
    .aboutus-logo-center {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .aboutus-logo-img {
        width: 170px;
        margin-top: 0 !important;
        display: block;
    }

    .aboutus-move-left-1 {
        transform: translate(-122px, 170px) !important;
    }

    .aboutus-move-left-2 {
        transform: translate(-90px, 180px) !important;
    }

    .aboutus-move-right-1 {
        transform: translate(107px, -135px) !important;
    }

    .aboutus-move-right-2 {
        transform: translate(75px, -120px) !important;
    }

    .aboutus-step-item {
        display: flex;
        align-items: flex-start !important;
        gap: 1px;
        max-width: 100px;
        font-size: 8px;
        line-height: 0.9;
        font-weight: 600;
    }

    .aboutus-step-dot {
        width: 10px;
        height: 10px;
        margin-top: -2px;
        margin-right: 3px;
        flex-shrink: 0;
    }
    
    .aboutus-media-steps-section {
        width: 100% !important; 
        padding: 0 2.5% !important; 
        padding-top: 0 !important;
        margin-top: -120px !important;
        box-sizing: border-box;
    }

    .aboutus-step-card {
        flex-direction: column !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        gap: 5px;
        padding: 20px 16px;
        margin: -120px auto 140px auto;
        border-radius: 28px;
        text-align: center;
    }
        
        .aboutus-step-card:last-child {
            margin-bottom: 1px;
        }

    .aboutus-step-img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        margin: 0 auto;
        border-width: 6px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .aboutus-step-title {
        font-size: 12px;
        margin-top: 10px;
       
    }

    .aboutus-step-card h3 {
        font-size: 22px;
        line-height: 1;
        margin-top:10px;
    }

    .aboutus-step-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .aboutus-btn {
        font-size: 14px;
        padding: 12px 0;
        width: 180px;
        border-radius: 10px;
        text-align: center;
        display: inline-block;
        margin-top: 5px;
    }

    .aboutus-steps-layout {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .aboutus-steps-left,
    .aboutus-steps-right {
        gap: 16px;
        align-items: center;
    }
}
