/* CSS Variables and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --text: #f1f5f9;
    --text-secondary: #94a3b8;
    --card-bg: #1e293b;
    --light-bg: #f8fafc;
    --light-text: #1e293b;
    --light-card: #ffffff;
    --light-accent: #3b82f6;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --gold-gradient: linear-gradient(135deg, #f59e0b, #fbbf24, #fcd34d);
    --purple-gradient: linear-gradient(135deg, #8b5cf6, #a78bfa, #c4b5fd);
    --light-gradient: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  /*  font-family: 'Poppins', sans-serif; */
  font-family: 'Inter', system-ui, -apple-system, sans-serif;

    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
    background: radial-gradient(circle at top left, rgb(15 23 42), rgb(15 23 42)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.03)" cx="25" cy="25" r="2.5" /><circle fill="rgba(255,255,255,0.03)" cx="75" cy="25" r="2.5" /><circle fill="rgba(255,255,255,0.03)" cx="25" cy="75" r="2.5" /><circle fill="rgba(255,255,255,0.03)" cx="75" cy="75" r="2.5" /></svg>');
}

/*nwew addition for mobile friendly fonts */
/* MOBILE TYPOGRAPHY FIX */
body {
    font-size: 16px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}




body.light-mode {
    background-color: var(--light-bg);
    color: var(--light-text);
    background: radial-gradient(circle at top left, rgb(248 250 252 / .8), rgb(248 250 252)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8fafc"/><path d="M0 50L100 50M50 0L50 100" stroke="%23e2e8f0" stroke-width="0.5"/></svg>');
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
    border: 2px solid var(--secondary);
}

body.light-mode ::-webkit-scrollbar-track {
    background: #e2e8f0;
}

body.light-mode ::-webkit-scrollbar-thumb {
    border: 2px solid #e2e8f0;
}



/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5% ;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    background-color: rgb(15 23 42);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgb(0 0 0 / .2);
}

body {
    padding-top: 90px; /* adjust if header height changes */
  }
  
body.light-mode header {
    background-color: rgb(255 255 255 / .95);
    box-shadow: 0 2px 15px rgb(0 0 0 / .1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    transition: var(--transition);
}

.hero-logo-img {
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
}

nav {
    display: flex;
    align-items: center;
    margin-left: auto;
     
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
}

body.light-mode .nav-links a {
    color: var(--light-text);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 10px;
}

.nav-links a:hover:after {
    width: 100%;
}

.cta-button {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgb(245 158 11 / .3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgb(245 158 11 / .4);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    transition: var(--transition);
}

body.light-mode .menu-toggle {
    color: var(--light-text);
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

/* Dropdown Menu 
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 5%;
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .3);
    width: 240px;
    display: none;
    z-index: 1001;
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .dropdown-menu {
    background-color: var(--light-card);
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    border: 1px solid rgb(229 231 235);
}

.dropdown-menu.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-weight: 500;
}

body.light-mode .dropdown-menu a {
    color: var(--light-text);
}

.dropdown-menu a:hover {
    background: rgb(245 158 11 / .1);
    transform: translateX(5px);
}

.dropdown-menu a i {
    margin-right: 12px;
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}




/* Hero Section - REMOVED PARTICLES */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgb(15 23 42 / .7), rgb(15 23 42 / .9)),
                url(https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3) center/cover;
    padding-top: 120px;
}

body.light-mode .hero {
    background: radial-gradient(circle at center, rgb(248 250 252 / .7), rgb(248 250 252 / .9)),
                url(https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3) center/cover;
    padding-top: 120px;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards 0.2s;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    text-shadow: 0 4px 15px rgb(0 0 0 / .2);
    font-weight: 900;
    letter-spacing: -.5px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.4s forwards;
    color: var(--text-secondary);
}

body.light-mode .hero p {
    color: #64748b;
}

.hero-form {
    display: flex;
    flex-direction: column;   /* 🔥 THIS IS THE KEY */
    gap: 14px;     
    max-width: 420px;
    width: 100%;
    margin: 30px auto 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.6s forwards;
    position: relative;
    z-index: 2;
}

.hero-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background-color: rgb(30 41 59 / .7);
    color: var(--text);
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .hero-input {
    background-color: rgb(255 255 255 / .7);
    color: var(--light-text);
    border: 1px solid rgb(229 231 235);
}

.hero-input:focus {
    box-shadow: 0 0 0 3px rgb(245 158 11 / .4);
}

.hero-button {
    padding: 18px 35px;
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgb(245 158 11 / .3);
    min-width: 200px;
}

.hero-button:hover {
    background: linear-gradient(135deg, #3d23b1 , #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(69, 30, 211, 0.5);
}

/* Sections */
section {
    padding: 120px 5%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

 .section-title {
    text-align: center;
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    margin-bottom: 14px;
    position: relative;
    font-weight: 700;
    line-height: 1.25;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 6px;
}


.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
}

body.light-mode .section-subtitle {
    color: #64748b;
}

/* Marketing Statement */
.marketing-statement {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px;
    border-radius: 20px;
    background: rgb(30 41 59 / .6);
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(245 158 11 / .3);
    box-shadow: 0 15px 40px rgb(0 0 0 / .3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

body.light-mode .marketing-statement {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

.marketing-statement h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 700;
}

.marketing-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Flash Cards - ADDED LIGHT EFFECT */
.flashcards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flashcard {
    background: rgb(30 41 59 / .7);
    border-radius: 20px;
    padding: 35px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    animation: fadeIn 0.6s ease;
    /* ADDED LIGHT EFFECT */
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
}

body.light-mode .flashcard {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgb(229 231 235);
}

.flashcard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    border-color: rgb(245 158 11 / .4);
}

.flashcard h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: var(--accent);
}

.flashcard h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.flashcard p {
    font-size: 1.1rem;
    line-height: 1.7;
}


/* Owner Section 
.owner-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    background: rgb(30 41 59 / .6);
    border-radius: 25px;
    padding: 60px;
    margin: 160px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
}

body.light-mode .owner-section {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

.owner-photo {
    flex: 1;
    min-width: 350px;
    height: 450px;
    border-radius: 20px;
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    animation: float 8s ease-in-out infinite;
}

.owner-photo-content {
    text-align: center;
    color: var(--primary);
    padding: 30px;
}*/
/* Owner Section - Grid Layout */
.owner-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns: photo + content */
    align-items: center;
    gap: 60px;
    background: rgb(30 41 59 / .6);
    border-radius: 25px;
    padding: 60px;
    margin: 160px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
}

body.light-mode .owner-section {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
    .owner-section {
        grid-template-columns: 1fr; /* single column */
        gap: 40px;
        padding: 40px;
    }
}

/* Owner Photo */
.owner-photo {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
}

.owner-photo-content img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* keeps image contained nicely */
    border-radius: 20px;
}

/* Owner Content */
.owner-content {
    width: 100%;
}



.owner-photo i {
    font-size: 6rem;
    opacity: .8;
    margin-bottom: 30px;
}

.owner-photo h3 {
    font-size: 2rem;
    font-weight: 700;
}

.owner-content {
    flex: 1;
    min-width: 350px;
}

.owner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 800;
}

.owner-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding-left: 25px;
    border-left: 4px solid var(--accent);
    position: relative;
    line-height: 1.8;
}

/* Growth Animation */
.grow-animation {
    font-size: 2 rem;
    font-weight: 800;
    color: var(--accent);
    height: 70px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.grow-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: textLoop 12s infinite;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.grow-text:nth-child(1) {
    animation-delay: 0s;
}

.grow-text:nth-child(2) {
    animation-delay: 3s;
}

.grow-text:nth-child(3) {
    animation-delay: 6s;
}

.grow-text:nth-child(4) {
    animation-delay: 9s;
}

/* Team Section - ADDED LIGHT EFFECT */
.team-section {
    padding: 100px 5%;
    background: rgb(30 41 59 / .6);
    border-radius: 25px;
    margin: 80px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
}

body.light-mode .team-section {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.team-card {
    background: rgb(30 41 59 / .8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    border: 1px solid rgb(245 158 11 / .2);
    animation: linear flow 0.6s ease;
    /* ADDED LIGHT EFFECT */
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
}

body.light-mode .team-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgb(229 231 235);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgb(0 0 0 / .3);
    border-color: rgb(245 158 11 / .4);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 10px 25px rgb(245 158 11 / .4);
}

.team-avatar {
    font-size: 2.5rem !important;
}

.team-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.team-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

body.light-mode .team-bio {
    color: #64748b;
}

/* Business Modes */
.business-modes {
    padding: 80px 5%;
}

.modes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mode-card {
    background: rgb(30 41 59 / .8);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
    border: 1px solid rgb(245 158 11 / .2);
    animation: fadeIn 0.6s ease;
    /* ADDED LIGHT EFFECT */
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
}

body.light-mode .mode-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgb(229 231 235);
}

.mode-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgb(0 0 0 / .3);
}

.mode-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gold-gradient);
    opacity: .1;
    transition: var(--transition);
    z-index: -1;
}

.mode-card:hover:before {
    height: 100%;
}

.mode-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.mode-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 700;
}

.mode-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mode-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.mode-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgb(255 255 255 / .1);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

body.light-mode .mode-features li {
    border-bottom: 1px solid rgb(0 0 0 / .1);
}

.mode-features li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
    min-width: 24px;
}

.mode-button {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgb(245 158 11 / .4);
    font-size: 1.1rem;
    min-width: 220px;
}

.mode-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgb(245 158 11 / .6);
}

/* Funnel Section */
.funnel-section {
    background: rgb(30 41 59 / .6);
    border-radius: 25px;
    padding: 100px 5%;
    margin: 100px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
    position: relative;
    overflow: hidden;
}

body.light-mode .funnel-section {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

.funnel-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.funnel-step {
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.funnel-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    margin-right: 40px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgb(0 0 0 / .3);
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgb(30 41 59 / .8);
    padding: 35px 40px;
    border-radius: 20px;
    flex-grow: 1;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    border-left: 5px solid var(--accent);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

body.light-mode .step-content {
    background: rgb(255 255 255 / .8);
}

.step-content:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 35px rgb(0 0 0 / .3);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: 700;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.connector {
    position: absolute;
    left: 40px;
    top: 80px;
    height: calc(100% - 80px);
    width: 4px;
    background: var(--gold-gradient);
    z-index: 1;
}

/* Registration Section */
.registration-section {
    background: rgb(30 41 59 / .8);
    border-radius: 25px;
    padding: 60px;
    max-width: 900px;
    margin: 100px auto;
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .registration-section {
    background: rgb(255 255 255 / .8);
    border: 1px solid rgb(229 231 235);
}

.registration-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 800;
}

.registration-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

body.light-mode .form-group label {
    color: #64748b;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 15px;
    background: rgb(15 23 42 / .6);
    color: var(--text);
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .form-control {
    background: rgb(255 255 255 / .6);
    color: var(--light-text);
    border: 1px solid rgb(229 231 235);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(245 158 11 / .4);
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.toggle-option input {
    width: 20px;
    height: 20px;
}

.register-button {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgb(245 158 11 / .4);
}

.register-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgb(245 158 11 / .6);
}

/* FAQ Section */
.faq-section {
    background: rgb(30 41 59 / .8);
    border-radius: 25px;
    padding: 80px 70px;
    max-width: 1000px;
    margin: 80px auto;
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .faq-section {
    background: rgb(255 255 255 / .8);
    border: 1px solid rgb(229 231 235);
}

.faq-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 800;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: rgb(15 23 42 / .6);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgb(0 0 0 / .1);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .faq-item {
    background: rgb(255 255 255 / .6);
    border: 1px solid rgb(229 231 235);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
    background: rgb(30 41 59 / .4);
}

body.light-mode .faq-question {
    background: rgb(255 255 255 / .4);
}

.faq-question:hover {
    background: rgb(245 158 11 / .1);
}

.faq-icon {
    transition: var(--transition);
    font-size: 1.4rem;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 30px;
    background: rgb(15 23 42 / .4);
}

body.light-mode .faq-answer {
    background: rgb(255 255 255 / .4);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 30px;
    overflow: visible;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

body.light-mode .faq-answer p {
    color: #64748b;
}

/* Suggestions Section */
.suggestions-section {
    background: rgb(30 41 59 / .8);
    border-radius: 25px;
    padding: 80px;
    max-width: 900px;
    margin: 80px auto;
    box-shadow: 0 15px 40px rgb(0 0 0 / .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .suggestions-section {
    background: rgb(255 255 255 / .8);
    border: 1px solid rgb(229 231 235);
}

.suggestions-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-weight: 800;
}

.suggestions-form textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    border: none;
    border-radius: 15px;
    background: rgb(15 23 42 / .6);
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 30px;
    transition: var(--transition);
    resize: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .suggestions-form textarea {
    background: rgb(255 255 255 / .6);
    color: var(--light-text);
    border: 1px solid rgb(229 231 235);
}

.suggestions-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgb(245 158 11 / .4);
    border-color: var(--accent);
}

.suggestions-button {
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    box-shadow: 0 5px 20px rgb(245 158 11 / .4);
}

.suggestions-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgb(245 158 11 / .6);
}

/* Footer */
footer {
    background: rgb(15 23 42 / .95);
    padding: 100px 5% 50px;
    margin-top: 100px;
    position: relative;
    backdrop-filter: blur(10px);
}

body.light-mode footer {
    background: rgb(248 250 252 / .95);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

body.light-mode .footer-about p {
    color: #64748b;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}

.footer-contact h3:after,
.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 10px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

body.light-mode .footer-links a {
    color: var(--light-text);
}

.footer-links a:hover {
    color: var(--accent);
    margin-left: 10px;
}

.footer-links a i {
    margin-right: 12px;
    width: 24px;
    font-size: 1.2rem;
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(30 41 59 / .8);
    color: var(--text);
    transition: var(--transition);
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / .2);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .social-icons a {
    background: rgb(255 255 255 / .8);
    color: var(--light-text);
    border: 1px solid rgb(229 231 235);
}

.social-icons a:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgb(245 158 11 / .4);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgb(255 255 255 / .1);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

body.light-mode .copyright {
    border-top: 1px solid rgb(0 0 0 / .1);
    color: #64748b;
}

/* Go to Top Button */
.go-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgb(0 0 0 / .3);
    z-index: 999;
    border: 2px solid rgb(15 23 42 / .3);
}

.go-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.go-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .8;
    }
}

@keyframes pulseDot {
    20% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textLoop {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    25% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Additional Components */
.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / .1);
}

.quick-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.whatsapp-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 90px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgb(0 0 0 / .25);
    z-index: 99999;
    padding: 10px;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blogs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.blog-card {
    background: rgb(30 41 59 / .8);
    border-radius: 20px;
    padding: 40px 60px;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    border: 1px solid rgb(245 158 11 / .2);
}

body.light-mode .blog-card {
    background: rgb(255 255 255 / .8);
    border: 1px solid rgb(229 231 235);
}

.blog-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/*new */
@media (max-width: 480px) {
    .section-title {
        letter-spacing: -0.02em;
    }

    .section-title::after {
        width: 50px;
    }
}





.blog-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #0f172a;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  .blog-container h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  
  .blog-container p {
    line-height: 1.8;
    color: #cbd5e1;
  }
  
  .blog-detail {
    max-width: 820px;
    margin: auto;
    line-height: 1.8;
}

.blog-detail p {
    font-size: 1.05rem;
    padding : 20px 40px;
    color: #cbd5e1;
}

.blog-detail section {
    margin-bottom: 35px;   /* space between sections */
}
.blog-highlight {
    background-color: #0a202e; /* soft yellow for highlight */
    border-left: 4px solid #333; /* accent color */
    color: #cbd5e1; /* darker text for contrast */
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}

  /* ================= ABOUT SECTION ENHANCEMENTS ================= */

.owner-description {
    margin: 20px 0;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
}

.owner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.highlight i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.highlight p {
    font-size: 0.95rem;
    color: #e5e7eb;
}

.trust-block {
    margin-top: 30px;
}

.trust-block h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.trust-block ul {
    list-style: none;
    padding: 0;
}

.trust-block li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.owner-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: var(--accent);
    color: #0f172a;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.owner-cta:hover {
    transform: translateY(-2px);
}

/* ================= STATS SECTION ================= */

.stats-section {
    padding: 80px 5%;
    background: #020617;
}

.stats-container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 40px;            /* 👈 NEW */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    background: #020617;           /* subtle container bg */
    border-radius: 20px;           /* smooth edges */
    border: 1px solid rgba(255,255,255,0.05);
}
   /*stats header*/
.stats-header {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
}

.stats-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 10px;
}

.stats-header p {
    font-size: 1rem;
    color: #94a3b8;
}
.stats-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 10px;
}

.stat-card {
    background: #131e22;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    transition: all 0.35s ease;   /* 👈 important */
    cursor: pointer;
    position: relative;
}
.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.stat-card:hover h2 {
    transform: scale(1.15);
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: all 0.35s ease;
    transform: translateX(-50%);
    border-radius: 10px;
}

.stat-card:hover::before {
    width: 60%;
}


.stat-card p {
    color: #cbd5e1;
    font-size: 1rem;
}


/* Blog CTAs */
.blog-cta-soft {
    margin: 50px 0;
    padding: 25px 30px;
    background: #1e293b;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
  }
  
  .blog-cta-soft p {
    margin-bottom: 12px;
    color: #e5e7eb;
  }
  
  .blog-cta-soft a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
  }
  
  /* Main CTA */
  .blog-cta-main {
    margin-top: 70px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    border-radius: 16px;
  }
  
  .blog-cta-main h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f8fafc;
  }
  
  .blog-cta-main p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #cbd5e1;
  }
  
  .blog-cta-main a {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
  }
  

  /* Headings */
h1 {
    font-size: 2.5rem;
    margin-top: 40px;   /* space above main title */
    margin-bottom: 20px; /* space below */
}

h2 {
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}


p {
    line-height: 1.7;      /* improves readability */
    margin-bottom: 15px;   /* space after each paragraph */
}
ul, ol {
    margin: 15px 0 25px 20px; /* top, right, bottom, left */
    padding-left: 15px;
    line-height: 1.6;
}

li {
    margin-bottom: 8px;
}


/* social media */
.social-connect {
    padding: 80px 5%;
    background: #020617;
    text-align: center;
}

.social-connect h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 10px;
}

.social-connect p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}
.social-links {
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-links a {
    background: #0f172a;
    padding: 18px 22px;
    border-radius: 14px;
    text-decoration: none;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.social-links a i {
    font-size: 1.4rem;
    color: var(--accent);
    min-width: 24px;
    transition: transform 0.3s ease;
}


.social-links a span {
    font-size: 0.95rem;
    font-weight: 600;
}
.social-links a:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.social-links a:hover i {
    transform: scale(1.2);
}

.owner .owner-socials {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.owner .owner-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #0f172a;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.owner .owner-socials a i {
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.owner .owner-socials a:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.owner .owner-socials a:hover i {
    transform: scale(1.2);
}
.owner-socials a[href*="linkedin"]:hover {
    background: #0a66c2;
  }
  
  .owner-socials a[href*="instagram"]:hover {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  }
  
  .owner-socials a[href^="mailto"]:hover {
    background: #16a34a;
  }

  /* veintara*/
  .veintara-section {
    background-color: #030713;
    padding: 80px 20px;
    text-align: center;
  }
  
  .veintara-card {
    background: #010911;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .veintara-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  }
  
  .veintara-description {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
  }
  
  .veintara-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  
  .veintara-highlights .highlight {
    flex: 1 1 200px;
    margin: 10px;
    text-align: center;
  }
  
  .veintara-highlights i {
    font-size: 28px;
    color: #0077b5; /* Highlight color */
    margin-bottom: 10px;
  }
  
  .trust-block {
    margin-bottom: 30px;
    text-align: left;
  }
  
  .trust-block h3 {
    margin-bottom: 10px;
  }
  
  .trust-block ul {
    list-style: none;
    padding-left: 0;
  }
  
  .trust-block ul li {
    margin-bottom: 5px;
    color: #ffffff;
  }
  
  .veintara-cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0077b5;
    color: #121c25;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .veintara-cta:hover {
    background-color: #005f8f;
  }
  

  .flashcard-link {
    text-decoration: none; /* remove underline */
    color: inherit;        /* keep text color */
    display: inline-block; /* needed for hover effect */
}

.flashcard-link:hover .flashcard {
    transform: translateY(-5px); /* subtle lift on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.flashcards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch; /* make all cards same height */
}

.flashcard {
    display: flex;
    flex-direction: column; /* stack content vertically */
    justify-content: space-between; /* distribute content evenly */
    min-height: 100%; /* ensure it stretches fully in grid cell */
}


/* Layout only – does NOT touch hero-input styling */
.hero-form-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .hero-form {
    display: flex !important;       /* keep animation styles */
    flex-direction: column !important;
    gap: 14px !important;
    max-width: 420px;               /* smaller width so inputs stack nicely */
    width: 100%;
    margin: 30px auto 0;
  }
  
/*learn more*/
  .learn-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f59e0b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #fbbf24;
    transform: translateX(4px);
}

html {
    scroll-behavior: smooth;
}


/*mpde*/
.mode-features li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mode-features li a:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

/* ================= BLOG GRID FIX ================= */

.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/


/* ================= BLOG IMAGE CARD FIX ================= */

.blog-detail img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 20px 0;
    object-fit: cover;
}
.blog-detail {
    overflow: hidden;
}
.blog-detail img {
    max-height: 420px;
}

.related-blogs {
    margin: 60px 0;
    text-align: center;
  }
  
  .related-blogs h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
  }
  
  .related-blogs-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .related-blog-card {
    display: block;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .related-blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .related-blog-card h3 {
    padding: 15px;
    font-size: 1.1rem;
  }
  
  .related-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .related-blogs-container {
      flex-direction: column;
      align-items: center;
    }
    .related-blog-card {
      width: 90%;
    }
  }

  
  /* =========================
   FIX: Related Blogs Text Visibility
   ========================= */

.related-blogs h2 {
    color: #fff;   /* force visible heading */
  }
  
  .related-blog-card h3 {
    color: #fff;   /* force blog title visible */
    font-weight: 600;
  }
  
  .related-blog-card {
    background: #1e293b; /* ensure contrast */
  }
  body.dark .related-blog-card h3 {
    color: #ffffff;
  }
    


  /* FIX: make nav-container a flex row */
.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
}


/* Team section: force grid layout */
.team-grid {
    display: grid !important;  /* overrides any flex without changing content */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 35px !important;
}

/* Team avatars: maintain aspect ratio and fit inside card */
.team-avatar img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}




