:root {
    /* Core Brand Colors */
    --navbar-bg: #FFFFFF;
    --logo-light-blue: #00AEEF;
    --logo-dark-blue: #1A1F36;

    /* Page Color Scheme - Light Version */
    --page-bg: #f8fafcc5;
    --card-bg: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --accent-teal: #2DD4BF;
    --accent-orange: #F97316;
    --emergency-red: #EF4444;
    --border-color: #E2E8F0;
}

body {
      font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
    background-color: var(--page-bg);
    color: var(--text-dark) !important;
    margin: 0;
}

/* Navigation */
.navbar {
    background: var(--navbar-bg);
    /* padding: 15px 5%; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(26,31,54,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
    color: var(--logo-dark-blue) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--logo-light-blue) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--logo-light-blue) 0%, var(--logo-dark-blue) 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
    margin-top: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    /* Turns white icon to black */
}

/* .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
} */

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: var(--logo-dark-blue);
}

.btn-primary:hover {
    background-color: var(--accent-teal);
    color: white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--logo-dark-blue);
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--logo-light-blue) !important;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-home {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--logo-light-blue);
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--text-dark);
}

.card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-home h3 {
    color: var(--logo-light-blue);
    margin-top: 0;
}

.card-home p {
    color: var(--text-muted);
}

/* Emergency Banner */
.emergency-banner {
    background-color: var(--emergency-red);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* About Page*/
.card-founder-image {
    height: 300px;
    overflow: hidden;
}

.founder-card {
    border-radius: 8px;
    border-bottom: 4px solid var(--logo-light-blue) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.testimonials-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.testimonials-carousel .card {
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-carousel img {
    object-fit: cover;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--navbar-bg);
    padding: 40px 5%;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);

}

.footer-logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-logo span {
    color: var(--logo-light-blue);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--logo-light-blue);
}

.testimonial-carousel-fixed-height {
    min-height: 320px;
    /* Adjust as needed to fit tallest card */
}

h5 {
    color: var(--logo-light-blue) !important;
}