/**
 * Aarohan Theme Custom CSS
 * All styles converted from Tailwind to custom CSS
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: "Georgia";
    src: local("Georgia"),
         local("Georgia Regular"),
         local("Georgia-Bold");
    font-weight: normal;
    font-style: normal;
}


/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
    /* Core Brand Colors */
    --background: 210 20% 98%;
    --foreground: 213 76% 19%;

    --card: 0 0% 100%;
    --card-foreground: 213 76% 19%;

    /* Berkeley Blue #0D2C54 - Primary */
    --primary: 213 76% 19%;
    --primary-foreground: 0 0% 100%;

    /* Sky Blue #83C5E1 - Secondary */
    --secondary: 195 58% 70%;
    --secondary-foreground: 213 76% 19%;

    /* Olive Green #6F9028 - Accent/Action */
    --accent: 78 55% 36%;
    --accent-foreground: 0 0% 100%;

    /* Lilac Mist #D4A6E1 - Soft accent */
    --lilac: 285 49% 77%;
    --lilac-foreground: 213 76% 19%;

    /* Mocha Brown #6C3C26 - Earthy */
    --mocha: 19 48% 29%;
    --mocha-foreground: 0 0% 100%;

    --muted: 210 20% 96%;
    --muted-foreground: 213 40% 40%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 213 30% 88%;
    --input: 213 30% 88%;
    --ring: 195 58% 70%;

    --radius: 0.75rem;

    /* Brand Colors as HEX */
    --berkeley-blue: #0D2C54;
    --lilac-mist: #D4A6E1;
    --sky-blue: #83C5E1;
    --olive-green: #6F9028;
    --mocha-brown: #6C3C26;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   Utility Classes
   ======================================== */

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1400px;
    }
}

/* Display */
.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

/* Flexbox */
.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-8 { padding-bottom: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-section .inset-0{
    top: -376px;
}

.text-blue{color:#86c9df;}
.bgbludrop {background-color: #ffffff0d;}
.text-secondary\/50 {
    color: #86c9df80;
}

.absolute.right-8 {
    right: 8px;
}

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-10 { top: 2.5rem; }
.bottom-8 { bottom: 1.5rem; }
.bottom-10 { bottom: 2.5rem; }
.left-1\/2 {
    left: 50%;
}

.bg-lilac\/20 {
    background: #d3a8e133;
}

.dots .bg-secondary {
    width: 40px;
}

button#testimonial-prev, button#testimonial-next {
    font-size: 20px;
}

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-96 { height: 24rem; }

.min-h-screen {
    min-height: 100vh;
}

.min-h-\[60vh\] {
    min-height: 60vh;
}

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.min-w-\[60px\] {
    min-width: 60px;
}

.shrink-0 {
    flex-shrink: 0;
}

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }

.italic { font-style: italic; }

/* Colors */
.text-white { color: #ffffff; }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-lilac-foreground { color: hsl(var(--lilac-foreground)); }
.text-mocha-foreground { color: hsl(var(--mocha-foreground)); }

.bg-white { background-color: #ffffff; }
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-lilac { background-color: hsl(var(--lilac)); }
.bg-mocha { background-color: hsl(var(--mocha)); }
footer.bg-mocha {
    background: hsl(284.73deg 40.15% 73.14% / 41%);
    color: #18365d;
}
.bg-muted { background-color: hsl(var(--muted)); }

.bg-\[\#0D2C54\] { background-color: #0D2C54; }
.bg-\[\#0D2C54\]\/95 { background-color: rgba(13, 44, 84, 0.95); }
.bg-\[\#0D2C54\]\/85 { background-color: rgba(13, 44, 84, 0.85); }
.bg-\[\#0D2C54\]\/70 { background-color: rgba(13, 44, 84, 0.7); }
.bg-\[\#0D2C54\]\/50 { background-color: rgba(13, 44, 84, 0.5); }

.bg-\[\#83C5E1\] { background-color: #83C5E1; }
.bg-\[\#83C5E1\]\/10 { background-color: rgba(131, 197, 225, 0.1); }
.bg-\[\#83C5E1\]\/20 { background-color: rgba(131, 197, 225, 0.2); }
.bg-\[\#6bb5d4\] { background-color: #6bb5d4; }

.bg-\[\#D4A6E1\] { background-color: #D4A6E1; }
.bg-\[\#D4A6E1\]\/10 { background-color: rgba(212, 166, 225, 0.1); }
.bg-\[\#D4A6E1\]\/15 { background-color: rgba(212, 166, 225, 0.15); }
.bg-\[\#D4A6E1\]\/20 { background-color: rgba(212, 166, 225, 0.2); }
.bg-\[\#D4A6E1\]\/30 { background-color: rgba(212, 166, 225, 0.3); }

.bg-\[\#6F9028\] { background-color: #6F9028; }
.bg-\[\#5d7a22\] { background-color: #5d7a22; }
.bg-\[\#6F9028\]\/10 { background-color: rgba(111, 144, 40, 0.1); }
.bg-\[\#6F9028\]\/25 { background-color: rgba(111, 144, 40, 0.25); }

.bg-\[\#6C3C26\] { background-color: #6C3C26; }

.text-\[\#83C5E1\] { color: #83C5E1; }
.text-\[\#D4A6E1\] { color: #D4A6E1; }
.text-\[\#6F9028\] { color: #6F9028; }
.text-\[\#0D2C54\] { color: #0D2C54; }
.text-\[\#6bb5d4\] { color: #6bb5d4; }

.text-primary-foreground\/70 { color: rgba(255, 255, 255, 0.7); }
.text-primary-foreground\/80 { color: rgba(255, 255, 255, 0.8); }
.text-muted-foreground\/70 { color: hsl(var(--muted-foreground) / 0.7); }
.text-mocha-foreground\/60 { color: hsl(var(--mocha-foreground) / 0.6); }
.text-mocha-foreground\/80 { color: hsl(var(--mocha-foreground) / 0.8); }

.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* Borders */
.border { border: 1px solid hsl(var(--border)); }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }

.border-border { border-color: hsl(var(--border)); }
.border-input { border-color: hsl(var(--input)); }
.border-\[\#83C5E1\] { border-color: #83C5E1; }
.border-\[\#D4A6E1\] { border-color: #D4A6E1; }
.border-\[\#D4A6E1\]\/30 { border-color: rgba(212, 166, 225, 0.3); }
.border-\[\#6F9028\] { border-color: #6F9028; }
.border-accent { border-color: hsl(var(--accent)); }
.border-lilac { border-color: hsl(var(--lilac)); }
.border-lilac\/30 { border-color: hsl(var(--lilac) / 0.3); }
.border-primary-foreground\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-primary-foreground\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-mocha-foreground\/10 { border-color: hsl(var(--mocha-foreground) / 0.1); }
.border-secondary { border-color: hsl(var(--secondary)); }
.border-secondary\/50 { border-color: hsl(var(--secondary) / 0.5); }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.rounded-r-xl {
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.shadow-\[\#6F9028\]\/25 {
    box-shadow: 0 10px 15px -3px rgba(111, 144, 40, 0.25);
}

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Transform */
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.-translate-x-1\/2 {
    transform: translateX(-50%);
}
.-translate-y-0\.5 {
    transform: translateY(-0.125rem);
}
.-translate-y-2 {
    transform: translateY(-0.5rem);
}

/* Hover Effects */
.hover\:bg-\[\#5d7a22\]:hover { background-color: #5d7a22; }
.hover\:bg-\[\#6bb5d4\]:hover { background-color: #6bb5d4; }
.hover\:bg-\[\#83C5E1\]:hover { background-color: #83C5E1; }
.hover\:bg-accent:hover { background-color: hsl(var(--accent)); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:text-secondary:hover { color: hsl(var(--secondary)); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-\[\#0D2C54\]:hover { color: #0D2C54; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* ========================================
   Grid System
   ======================================== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:h-40 { height: 10rem; }
    .md\:text-left { text-align: left; }
    .md\:p-12 { padding: 3rem; }
    .md\:text-2xl { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:text-5xl { font-size: 3rem; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:text-7xl { font-size: 4.5rem; }
    .lg\:h-28 { height: 7rem; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:pt-32 { padding-top: 6rem; }
}

@media (min-width: 1280px) {
    .xl\:text-8xl { font-size: 6rem; }
}

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:text-left { text-align: left; }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.25rem);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin-slow {
    animation: spin 3s linear infinite;
}

/* ========================================
   Custom Components
   ======================================== */

/* Navbar */
#navbar {
    transition: all 0.5s ease;
}

#navbar.scrolled {
    background-color: rgba(13, 44, 84, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.btn-accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid hsl(var(--input));
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Pillar Cards */
.pillar-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--muted)) 100%);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #83C5E1 0%, #6bb5d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

/* Backdrop Blur */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Gradient Overlays */
.gradient-overlay {
    background: linear-gradient(to bottom right, rgba(13, 44, 84, 0.95), rgba(13, 44, 84, 0.85), rgba(13, 44, 84, 0.7));
}

.gradient-overlay-top {
    background: linear-gradient(to top, rgba(13, 44, 84, 0.5), transparent);
}

/* Testimonial Dots */
.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    width: 2rem;
    background-color: hsl(var(--secondary));
}

/* Blur Effects */
.blur-xl {
    filter: blur(24px);
}

.blur-2xl {
    filter: blur(40px);
}

.blur-3xl {
    filter: blur(64px);
}

/* ========================================
   Responsive Utilities
   ======================================== */
/* Additional Utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-\[#D4A6E1\]\/10 {
    --tw-gradient-from: rgba(212, 166, 225, 0.1);
    --tw-gradient-to: rgba(212, 166, 225, 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-background {
    --tw-gradient-to: hsl(var(--background));
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .text-5xl { font-size: 2.5rem; }
    .text-6xl { font-size: 3rem; }
    .text-7xl { font-size: 3.5rem; }
    .py-24 { padding-top: 3rem; padding-bottom: 3rem; }
}


nav#navbar a.tracking-wide:not(.active) {
    background: #ffffff17;
    padding: 5px 17px;
}

nav#navbar a.tracking-wide:hover:not(.active) {
    background: #ffffff33;
}

.custom-logo-link img {
    height: 5rem;        /* h-20 */
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .custom-logo-link img {
        height: 3rem;    /* md:h-24 */
    }
}

@media (min-width: 1024px) {
    .custom-logo-link img {
        height: 4rem;    /* lg:h-28 */
    }
    .backdrop-blur-md .custom-logo-link img {
        height: 3rem;
    }
}


.desknav a.donate_btn button {
    margin-left: 20px;
    padding: 10px 22px;
}


.heart_icon {
    animation: heartBeat 2.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(1.2);
    }
    60% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}


.footer_logo img {
    width: 200px;
    margin-bottom: 10px;
}

footer ul li {
    list-style: none;
}

.social_icons svg {
    width: 25px;
    height: 25px;
}
.social_icons a {
    line-height: 10px;
}


.absolute img {
    width: 100%;
}

.donate_url button, .mentor_url button {
    padding: 15px 30px;
    margin-top: 20px;
}



.main_heading {
    line-height: 100px;
    letter-spacing: 2px;
}

.hero-section {
    padding-bottom: 30px;
}

.text-accent {
    color: #708e29;
}

.impact_sec {
    margin-top: 30px;
    background: #d3a8e14d;
    border: solid 1px #d3a8e180;
    font-size: 18px;
    font-weight: 500;
}

.bg-muted\/30 {
    background-color: #f3f5f74d;
}

.bg-primary-foreground-30 {
    background: #b8e3f23d;
}

.bg-secondary {
    background: #86c9df;
}

.bg-primary-foreground\/30 {
    background: #b8e3f23d;
}

button.mentorbtn {
    background: #708e29;
    border: solid 1px #708e29;
    color: #fff;
}

button.mentorbtn:hover {
    color: #fff;
}

.bg-lilac\/20 {
    background: #d3a8e133;
}



@media (max-width:667px) {
    .hero-section .container {
        padding: 0;
        text-align: center;
    }
    
    .main_heading {
        line-height: 48px;
    }
    
    .absolute img {
        height: 100%;
    }
    
    .hero-section .flex.gap-4 {
        align-items: center;
        gap: 0;
    }
    
    
    
    .hero-section .gap-10 {
        gap: 10px;
        justify-content: center;
    }
    
    .hero-section .bottom-10{bottom: 0;}
    
    .hero-section  .text-4xl {font-size: 22px;}
    
    .hero-section .font-medium {
        font-size: 12px;
    }
    .hero-section {
        min-height: auto;
        padding: 20px 20px 77px 20px;
    }

}


/********About CSS***********/
.quote svg {top: -14px;}

.quote {
    background: #83c5e10d;
    border-left: solid 5px #83c5e1;
    padding-left: 12px;
}

.hover\:-translate-y-2:hover {
    transform: translateY(-10px) !important;
}

.solution .bg-card .rounded-xl:hover svg {
    transform: rotate(360deg);
    transition: 1s;
}

.solution span:not(.text-\[\#6F9028\]) {
    opacity: .2;
}

.solution .border-\[\#83C5E1\] {
    border-left: solid 4px #83C5E1;
}

.solution .border-\[\#6F9028\] {
    border-left: solid 4px #6F9028;
}

.solution .border-\[\#D4A6E1\] {
    border-left: solid 4px #D4A6E1;
}

.solution .border-\[\#6C3C26\] {
    border-left: solid 4px #6C3C26;
}


/********Mentors Page********/

.text-secondary {
    color: #86c9df;
}



/***animation***/
svg {
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover wobble – faster & slightly bigger */
svg:hover {
  animation: svg-wobble 0.3s ease-in-out;
}

@keyframes svg-wobble {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(6deg) scale(1.1); }
  50%  { transform: rotate(-6deg) scale(1.1); }
  75%  { transform: rotate(4deg) scale(1.08); }
  100% { transform: rotate(0deg) scale(1); }
}

.pillar-card,
.card,
.bg-card {
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

/* Hover effect */
.pillar-card:hover,
.card:hover,
.bg-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 30px rgba(0, 0, 0, 0.08),
    0 8px 12px rgba(0, 0, 0, 0.05);
}

/* Subtle icon movement inside cards */
.pillar-card:hover svg,
.card:hover svg,
.bg-card:hover svg {
  transform: scale(1.1) rotate(3deg);
}


button {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* Hover */
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Click / Active */
button:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Button SVG nudge */
button svg {
  transition: transform 0.3s ease;
}

button:hover svg {
  transform: translateX(4px);
}


button.donate-amount {
    font-size: 16px;
    border: solid 2px #83c5e1;
}

button.donate-amount.text-secondary {
    background-color: #86c9df1a;
}

.donate-submit {
  position: relative;
  background-color: #6F9028;
  border: 0;
  font-size: 15px;
}

.dollarpos {
    /* top: 23px; */
    z-index: 99;
    top: 4px;
    left: 5px;
}


/*********Collaborate Page**************/

.collaborate .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, #0d2c54e6);
}

p.text-white\/70 {
    color: #fff;
}





/***footer***/

footer h4 {
    font-size: 25px !important;
}

footer a, footer p, footer span {
    font-size: 18px !important;
    color: #18355c !important;
}


button {
    font-size: 18px;
}


.text-xlg {
    font-size: 1.8rem;
}

.text-quote {
    font-size: 20px;
}

.text-subheadsxl {
font-size: 1.5rem;
}


.partners a {
    max-width: 300px;
}

.form_container_getintouch input.wpcf7-form-control.wpcf7-submit {
    background: #6F9028;
    border: none;
    font-size: 17px;
}




/* Newsletter Subscribe Button */
.cf7-subscribe-btn {
    background-color: #6F9028;
    color: #ffffff;
    font-weight: 600;
    padding: 0 1.5rem;
    height: 3rem; /* 48px */
    border-radius: 0.5rem; /* 8px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.15s ease;
    border: none;
    cursor: pointer;
}

.cf7-subscribe-btn:hover {
    background-color: #5d7a22;
}

.cf7-subscribe-btn:active {
    transform: translateY(1px);
}

/* Newsletter Email Input */
.cf7-subscribe-input {
    width: 100%;
    height: 3rem; /* 48px */
    padding: 0 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
}

.cf7-subscribe-input:focus {
    border-color: #6F9028;
}

footer .border-mocha-foreground\/10 {
    border-top: solid;
    border-top-width: 1px;
}


.blog-hero .absolute.inset-0.bg-gradient-to-br.from-\[\#0D2C54\]\/90.via-\[\#0D2C54\]\/80.to-\[\#0D2C54\]\/70 {
    background: #0d2c54c2;
}

.blog-hero .absolute.inset-0 {
    top: -248px;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.bg-accent\/10 {
    background: #708e291a;
}


.bg-gradient-single {
    background-image: linear-gradient(5deg, #0e2d53, #0c2d552b);
}



.single h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0c2d55;
}

.single figcaption {
    margin-bottom: 20px;
    margin-top: 10px;
}

.single blockquote {
    border-left: solid 5px #6f9028;
    margin: 20px;
}

.single p:not(.text-white\/80) {
    margin: 10px 0;
    color: #0c2d55;
}

.single ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.single ul li {
    color: #0c2d55;
}

.single .bg-gradient-to-r {
    background: #19375d;
}

.single .bg-sky\/10 {
    border-left: solid 5px #639ce5;
    margin-left: 20px;
}


.sharer_links a, .sharer_links button {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

