/* =============================================================================
   i³ Investments Custom Styles - default.css
   ============================================================================= */

/* Root Variables */
:root {
    --primary-dark: #0A2540;
    --secondary-dark: #0D3B5C;
    --cyan-accent: #00BCD4;
    --orange-accent: #FF9800;
    --light-bg: #F5F8FA;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.text-cyan {
    color: var(--cyan-accent);
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Navigation */
.navbar {
    background: transparent !important;
    padding: 1rem 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #ffffff !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand {
    margin-top: -15px !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 12px 0.5rem;
	padding-left:0.2rem !important;
	padding-right:0.2rem !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-decoration: underline;
	font-size:14px;
}

/* Dark text when scrolled */
.navbar.scrolled .nav-link {
    color: rgba(0,0,0,0.8) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--cyan-accent) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--cyan-accent) !important;
}

/* Hamburger menu icon styling */
.navbar-toggler {
    border: 2px solid rgba(0,0,0,0.3) !important;
    background-color: #ffffff !important;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0,188,212,0.3);
}

/* Dark hamburger icon for white background */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23212529' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px;
    height: 24px;
}

/* When navbar is scrolled */
.navbar.scrolled .navbar-toggler {
    border-color: rgba(0,0,0,0.2) !important;
    background-color: #ffffff !important;
}

.navbar.scrolled .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,188,212,0.3);
}

/* Dropdown styling */
.navbar-nav .dropdown {
    position: relative;
}

/* Create invisible bridge between nav link and dropdown */
.navbar-nav .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.navbar-nav .dropdown-item {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(0,0,0,0.8);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--cyan-accent);
    color: #ffffff;
}

/* Dropdown arrow styling when scrolled */
.navbar.scrolled .dropdown-toggle::after {
    border-top-color: rgba(0,0,0,0.8);
}

/* Mobile menu styling */

@media (max-width: 1199px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem 1.5rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* Dark text for mobile menu */
    .navbar-collapse .nav-link {
        color: rgba(0,0,0,0.8) !important;
        padding: 0.75rem 0;
    }
    
    .navbar-collapse .nav-link:hover {
        color: var(--cyan-accent) !important;
    }
    
    /* Mobile dropdown menu styling */
    .navbar-nav .dropdown-menu {
        background-color: #f8f9fa;
        padding-right: 1rem;
        border: none;
        box-shadow: none;
        margin-left: 1rem;
    }
    
    .navbar-nav .dropdown-item {
        color: rgba(0,0,0,0.8);
        padding: 0.5rem 1rem;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: var(--cyan-accent);
        color: #ffffff;
    }
    
    /* Dropdown toggle arrow color for mobile */
    .navbar-collapse .dropdown-toggle::after {
        border-top-color: rgba(0,0,0,0.8);
    }
}

/* Hero */
.hero-section {
    position: relative;
    background-image: url('/i3investments/assets/img/hero-image.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 550px;
}

.hero-section-subpage {
    height: 250px !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    height: 100%;
}

.hero-title {
	font-size: 4rem;
}

.hero-subtitle {
	font-size: 1.4rem;
}

.hero-title,
.hero-subtitle {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        background-position: center center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* For very small devices */
@media (max-width: 576px) {
    .hero-section {
        height: 350px;
        background-position: 40% center;
    }
    
    .hero-subtitle {
        font-size: 0.5rem;
    }
}

/* Three Pillars Section */
.pillars-section {
    background: #fff;
}

.pillar-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,188,212,0.2);
}

.icon-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.pillar-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #857550;
    font-weight: 700;
    flex-shrink: 0;
}

.text-underline {
    text-decoration: underline;
}

.pillar-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pillar-separator {
    font-size: 4rem;
    color: var(--cyan-accent);
    font-weight: 300;
    line-height: 1;
    margin: 0 0.5rem;
}

/* Reduce spacing between cards and separators */
.pillars-section .col-auto {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Ensure equal heights on desktop */
@media (min-width: 992px) {
    .pillars-section .row {
        display: flex;
        align-items: stretch;
    }
    
    .pillars-section .col-lg-3 {
        display: flex;
    }
}

/* Hide separators on mobile and tablet */
@media (max-width: 1199px) {
    .pillar-separator {
        display: none !important;
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.content-section img {
    transition: transform 0.3s ease;
}

.content-section img:hover {
    transform: scale(1.05);
}

/* Blue Gradient Section */
.bg-blue-gradient {
    background: linear-gradient(135deg, #0A2540 0%, #0D3B5C 50%, #1565C0 100%);
}

.bg-blue-gradient h2 {
    color: #fff !important;
}

.bg-image-cover {
    background-repeat: no-repeat;
}

.ai-benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ai-benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.ai-benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cyan-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.ai-benefits-list sup {
    font-size: 0.7em;
}

/* Approach Section */
.approach-section {
    background: var(--light-bg);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.approach-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.approach-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-card h4 {
    color: var(--cyan-accent);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.approach-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Powered By Section */
.powered-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    background-image: url('../img/dark-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.powered-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(13,59,92,0.95) 100%);
}

.powered-section .container {
    position: relative;
    z-index: 1;
}

.btn-powered {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff !important;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-powered:hover {
    background-color: #fff;
    color: var(--primary-dark) !important;
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

/* Investment Edge Section */
.edge-section {
    background: #fff;
    position: relative;
}

.edge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.3);
    z-index: 0;
}

.edge-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1.3em;
}

.edge-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.edge-item-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.edge-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.edge-icon-card {
    flex-shrink: 0;
    margin-right: 1.5rem !important;
}

.edge-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.edge-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.edge-icon {
    flex-shrink: 0;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.edge-item h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.edge-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: var(--light-bg);
}

.process-subtitle {
    color: #857550;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.process-intro {
    margin: 0.5rem auto 0;
    max-width: 900px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-card-static {
    background: #fff !important;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    padding: 2rem 1.5rem;
}

.process-card-static:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-badge {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.process-card-static:hover .process-badge {
    transform: scale(1.05);
}

.process-card-static h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    letter-spacing: 1px;
    color: var(--primary-dark);
    text-align: center;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-list li {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cyan-accent);
    font-size: 1.2rem;
}

.process-list li:last-child {
    margin-bottom: 0;
}

/* Old accordion styles - keeping for backwards compatibility */
.process-card-accordion {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-card-accordion:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-card-header {
    padding: 2rem 1.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem auto 0;
    letter-spacing: 1px;
    color: var(--primary-dark);
    text-align: center;
    width: 100%;
}

.process-toggle {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--cyan-accent);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.process-toggle.active {
    transform: rotate(45deg);
}

.process-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--light-bg);
}

.process-card-content.active {
    max-height: 500px;
}

.process-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-card h4 {
    color: var(--cyan-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Using AI Prediction Section */
.ai-prediction-section {
    background: linear-gradient(135deg, #0A2540 0%, #0D3B5C 50%, #1565C0 100%);
}

.prediction-intro {
    margin: 0 auto;
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.prediction-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prediction-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.prediction-img {
    width: 25%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.prediction-card p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* AI Features Section (old) */
.ai-features-section {
    background: #fff;
}

.ai-features-intro {
    margin: 0 auto;
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.ai-outcome-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ai-outcome-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ai-outcome-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.ai-outcome-card p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.ai-feature-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ai-feature-card h4 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.ai-feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--light-bg);
}

.team-section-title {
    color: #857550;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin: 1rem 0;
    text-transform: uppercase;
}

.team-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cyan-accent);
    margin: 0 auto;
    display: block;
}

.team-card h5 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.team-card h5 .credentials {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.team-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
    flex-grow: 1;
}

.btn-dark {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-dark:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #fff;
}

.btn-outline {
    background-color: #FFF;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-outline:hover {
    background-color: #FFF;
    border-color: var(--secondary-dark);
    color: var(--secondary-dark);
}

/* Bio Modal Styling */
.modal-subtitle {
    font-size: 1rem;
    margin-top: 0.25rem;
}

#bioModalContent p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

#bioModalContent strong {
    color: var(--primary-dark);
}

/* Offerings Table */
.offerings-section {
    background: #fff;
}

.offerings-table {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.offerings-table thead {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.offerings-table th {
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.offerings-table td {
    padding: 1rem;
    vertical-align: middle;
}

.offerings-table tbody tr {
    transition: all 0.3s ease;
}

.offerings-table tbody tr:hover {
    background: var(--light-bg);
    transform: scale(1.01);
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.bg-light-blue {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.quiz-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quiz-card h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    line-height: 1.5;
}

.quiz-card .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.quiz-card .form-control:focus {
    border-color: var(--cyan-accent);
    box-shadow: 0 0 0 0.2rem rgba(0,188,212,0.25);
}

.quiz-card label {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.quiz-card .btn-primary {
    background: linear-gradient(135deg, var(--cyan-accent) 0%, #0097A7 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quiz-card .btn-primary:hover {
    background: linear-gradient(135deg, #0097A7 0%, var(--cyan-accent) 100%);
    box-shadow: 0 5px 20px rgba(0,188,212,0.4);
}

/* Speedbump */


#speedbumpModal.speedbump-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

#speedbumpModal .speedbump-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 560px;
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-sizing: border-box;
    text-align: center;
}

#speedbumpModal .speedbump-actions {
    margin-top: 20px;
}

#speedbumpModal .speedbump-actions button {
    margin: 0 8px;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
}

#speedbumpYes {
    background: #006838;
    color: #ffffff;
}

#speedbumpNo {
    background: #cccccc;
    color: #000000;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--cyan-accent) !important;
    text-decoration: none;
}

.footer .text-white-50 {
    color: rgba(255,255,255,0.6) !important;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
}

.sub-footer {
	font-size:0.8rem;
}

.social-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
	
	.hero-subtitle {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .edge-item {
        flex-direction: column;
        text-align: center;
    }
    
    .edge-icon {
        margin: 0 auto 1rem;
    }
    
    .quiz-card {
        padding: 2rem !important;
    }
    
    .quiz-card h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
	.navbar-toggler {
		margin-right:1rem;	
	}
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pillar-card,
    .approach-card,
    .process-card {
        margin-bottom: 1.5rem;
    }

}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.bg-dark-blue {
    background-color: var(--primary-dark);
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}