/* =================================================================
   DASHAMLAV CUSTOM HEADER & FOOTER STYLES
   All classes prefixed with "dashamlav-" to avoid theme conflicts
   ================================================================= */


/* =================================================================
   DASHAMLAV REBRANDING MESSAGE
 
   ================================================================= */



/* Rebrand Banner - Fixed Styling */
.rebrand-banner {
    background: #00A896 !important;
    background-color: #00A896 !important;
    padding: 12px 20px !important;
    text-align: center !important;
    border-bottom: 2px solid #007D6F !important;
    position: relative !important;
    z-index: 1000 !important;
}

.rebrand-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rebrand-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.rebrand-content p {
    margin: 0 !important;
    color: white !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.rebrand-content strong {
    color: white !important;
    font-weight: 600 !important;
}

.rebrand-content a {
    color: white !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.rebrand-content a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rebrand-banner {
        padding: 10px 15px !important;
    }
    
    .rebrand-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .rebrand-content p {
        font-size: 14px !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rebrand-banner {
        padding: var(--space-sm);
    }
    
    .rebrand-content {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .rebrand-content p {
        font-size: 13px;
    }
}
/* =================================================================
   HEADER STYLES
   ================================================================= */

.dashamlav-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;  /* Fixed header height */
}

.dashamlav-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;  /* Remove top/bottom padding */
    height: 100%;  /* Fill full header height */
}

.dashamlav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;  /* Use full header height */
    padding: 12px 0;  /* Add breathing room top/bottom */
}

.dashamlav-logo img {
    max-height: 40px;  /* Fit within available space */
    width: auto;
    object-fit: contain;  /* Maintain aspect ratio */
}

/* Navigation */
.dashamlav-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.dashamlav-nav-item {
    position: relative;
}

.dashamlav-nav-link {
    color: #1a2332;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.dashamlav-nav-link:hover {
    color: #088395;
    background: #f0f9fa;
}

.dashamlav-nav-item.active .dashamlav-nav-link {
    color: #088395;
    font-weight: 600;
}

/* Dropdown Menu */
.dashamlav-dropdown {
    position: relative;
}

.dashamlav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dashamlav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dashamlav-dropdown:hover .dashamlav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.dashamlav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dashamlav-dropdown:hover .dashamlav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashamlav-dropdown-menu .dashamlav-nav-link {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 0.9em;
}

.dashamlav-dropdown-menu .dashamlav-nav-link:hover {
    background: #f0f9fa;
    padding-left: 24px;
}

/* CTA Button */
.dashamlav-cta-button {
    background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
}

.dashamlav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 131, 149, 0.3);
}

/* Mobile Menu Toggle */
.dashamlav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #0a4d68;
    cursor: pointer;
    padding: 8px;
}



/* Mobile Navigation */
@media (max-width: 1024px) {
    .dashamlav-header-container {
        padding: 16px 20px;
    }

    .dashamlav-mobile-toggle {
        display: block;
    }

    .dashamlav-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .dashamlav-nav.active {
        display: flex;
    }

    .dashamlav-nav-item {
        width: 100%;
    }

    .dashamlav-nav-link {
        padding: 12px 16px;
    }

    .dashamlav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dashamlav-dropdown.active .dashamlav-dropdown-menu {
        display: block;
    }

    .dashamlav-cta-button {
        text-align: center;
        width: 100%;
    }
}

/* =================================================================
   FOOTER STYLES
   ================================================================= */

.dashamlav-footer {
    background: #0a3d50;
    color: white;
    padding: 60px 20px 20px;
    width: 100%;
}

.dashamlav-footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.dashamlav-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.dashamlav-footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.dashamlav-footer-logo img {
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.dashamlav-footer-tagline {
    font-size: 1em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.dashamlav-footer-contact {
    font-size: 0.95em;
    color: rgba(255,255,255,0.8);
}

.dashamlav-footer-contact p {
    margin-bottom: 8px;
}

.dashamlav-footer-contact strong {
    color: white;
}

.dashamlav-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashamlav-footer-links li {
    margin-bottom: 12px;
}

.dashamlav-footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
}

.dashamlav-footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.dashamlav-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    text-align: center;
}

.dashamlav-footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9em;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .dashamlav-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .dashamlav-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dashamlav-footer {
        padding: 40px 20px 20px;
    }
}

/* =================================================================
   PAGE CONTENT STYLES
   ================================================================= */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 24px;
   /* color: rgba(255, 255, 255, 0.95) ;*/
   color: white !important;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95) ;
    opacity: 0.95;
}

.hero .tagline {
    font-size: 1.1em;
    font-weight: 400;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #0a4d68;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Origin Story */
.origin-story {
    background: #f8fafb;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.15em;
    color: #2d3748;
    margin-bottom: 24px;
    line-height: 1.9;
}

.founder-highlight {
    background: white;
    border-left: 4px solid #088395;
    padding: 32px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.founder-highlight h3 {
    color: #0a4d68;
    font-size: 1.4em;
    margin-bottom: 16px;
}

.founder-highlight p {
    font-size: 1.1em;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Problem Statement */
.problem-section {
    background: white;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    background: #f8fafb;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid #088395;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 131, 149, 0.15);
}

.problem-card h3 {
    color: #0a4d68;
    font-size: 1.4em;
    margin-bottom: 16px;
}

.problem-card p {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Mission & Vision */
.mission-vision {
    background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
    color: white;
}

.mission-vision .section-header h2 {
    color: white;
}

.mission-vision .section-header p {
    color: rgba(255,255,255,0.9);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.mv-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.mv-card h3 {
    font-size: 1.8em;
    margin-bottom: 24px;
    color: white;
}

.mv-card p {
    font-size: 1.15em;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

/* Stats Section */
.stats-section {
    background: #f8fafb;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3em;
    color: #088395;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 1.1em;
    color: #4a5568;
    font-weight: 500;
}

/* Team Section */
.team-section {
    background: white;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-member {
    background: white;
    border: 2px solid #E1E8ED;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(8, 131, 149, 0.15);
}

.member-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: block;
    border: 4px solid #00A896;
}

.member-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0A4D68;
    margin-bottom: 12px;
}

.member-info .role {
    display: block;
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.member-info p {
    color: #4A5568;
    font-size: 0.95em;
    line-height: 1.6;
}

.founder-badge {
    background: #088395;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* Advisors Section */
.advisors-section {
    background: #f8fafb;
}

/* Subsection Header */
.subsection-header {
    margin-top: 60px;
    margin-bottom: 40px;
}

.subsection-header h3 {
    font-size: 2em;
    color: #0a4d68;
    text-align: center;
    margin-bottom: 16px;
}

.subsection-header p {
    text-align: center;
    color: #4a5568;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .dashamlav-cta-button {
    background: white;
    color: #0a4d68 !important;
    padding: 16px 48px;
    font-size: 1.1em;
}

.cta-section .dashamlav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero .subtitle {
        font-size: 1.2em;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .founders-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.5em;
    }
}



/* ============================================
   REUSABLE CAROUSEL SYSTEM
   ============================================ */

.dashamlav-carousel-section {
    background: #f8fafb;
    padding: 80px 20px;
}

.dashamlav-carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.dashamlav-carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

.dashamlav-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.dashamlav-carousel-slide {
    min-width: 100%;
    position: relative;
}

.dashamlav-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.dashamlav-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0a4d68;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashamlav-carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(8, 131, 149, 0.3);
}

.dashamlav-carousel-nav.prev {
    left: 20px;
}

.dashamlav-carousel-nav.next {
    right: 20px;
}

.dashamlav-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dashamlav-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashamlav-carousel-dot.active {
    background: #088395;
    width: 32px;
    border-radius: 6px;
}

.dashamlav-carousel-dot:hover {
    background: #0a4d68;
}

/* Responsive */
@media (max-width: 768px) {
    .dashamlav-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .dashamlav-carousel-nav.prev {
        left: 10px;
    }
    
    .dashamlav-carousel-nav.next {
        right: 10px;
    }
}
