:root {
    --f2g-navy: #0a2342;       
    --f2g-primary: #005a9e;     
    --f2g-primary-light: #4aa8ff; 
    --f2g-accent: #00b4d8;      
    --f2g-denim: #1e3350;    
    --f2g-bg-light: #f4f9ff;    
    --f2g-bg-white: #ffffff;   
    --f2g-text-dark: #1a1a1a; 
    --f2g-text-light: #f8f9fa;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--f2g-bg-light);
}

.navbar {
    background-color: var(--f2g-denim);
}
.navbar-brand img {
    height: 50px;
}
.navbar-nav .nav-link {
    color: var(--f2g-text-light) !important;
}
.navbar-nav .nav-link:hover {
    color: #8ae4f6d3 !important;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}
.navbar-toggler-icon {
    filter: invert(1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(rgba(10, 35, 66, 0.6), rgba(0, 90, 158, 0.6)), url('Images/hero-bg.jpg') center/cover no-repeat;
    color: var(--f2g-text-light);
    text-align: center;
    padding: 0 15px;
}
.hero h1 {
    font-family: "Google Sans Code", serif;
    letter-spacing: 1.75px;
    font-weight: 600;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.btn-cta {
    background-color: var(--f2g-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
}
.btn-cta:hover {
    background-color: var(--f2g-primary-light);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .btn-cta {
    font-size: 0.75rem;
    padding: 8px 20px;
  }
}

#feature-card {
    background-color: #deebf6c9;
}
.feature-card {
    background-color: var(--f2g-bg-white);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(74, 168, 255, 0.15);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(47, 121, 190, 0.426);
}

.stats {
    text-align: center;
    padding: 60px 0;
    /* background-color: #17365be9; */
    background: linear-gradient(180deg, #17365be9 30%, #deebf6c9 100%);
}
.stats .stat-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 168, 255, 0.15);
    transition: all 0.3s ease-in-out;
}
.stats .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 168, 255, 0.35);
}
.stats h3 {
    color: var(--f2g-primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 3rem;
    text-shadow: 0px 0px 10px rgba(74, 168, 255, 0.4);
}
.stats p {
    margin: 0;
    color: var(--f2g-text-dark);
    font-weight: 500;
}
.stats i {
    font-size: 4rem; /* large enough for emphasis */
    color: var(--f2g-primary); /* brand blue */
    padding: 12px;
    margin-bottom: 25px;
}

.cta {
    background-color: /* #9ab1c671 */ #deebf6c9;
    color: var(--f2g-text-dark);
    text-align: center;
    padding: 70px 20px;
}
.cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}
.cta a {
    background-color: var(--f2g-denim);
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    box-shadow: 0 5px 20px rgba(0,180,216,0.3);
}
.cta a:hover {
    background-color: var(--f2g-primary);
}
@media (max-width: 768px) {
  .cta a {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
  .cta h2 {
    font-size: 1.1rem;
  }
  .cta p {
    font-size: 0.8rem;
  }
}

footer {
    background-color: var(--f2g-navy);
    color: white;
    padding: 20px 0;
    text-align: center;
}
@media (max-width: 768px) {
  footer p {
    font-size: 0.75rem;
  }
}

/* solutions.html */
.hero1 {
    background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(0, 90, 158, 0.7)), url('') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero1 h1 {
    font-family: "Google Sans Code", serif;
    letter-spacing: 3.5px;
    font-weight: 600;
}
.hero1 p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

.solution-section {
    background-color: #deebf6c9;
    padding: 60px 0;
}
.solution-icon {
    font-size: 2.5rem;
    color: var(--f2g-primary);
}
.solution-section h3 {
    font-weight: 600;
    margin-top: 15px;
}
.solution-section p {
    color: #555;
}
.solution-section .mb-7 {
    margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .solution-section p {
    font-size: 0.85rem;
  }
}

/* about.html */
.our-story {
    padding: 15px 0px;
    line-height: 1.75;
    max-width: 1210px;
    margin: auto;
}
.overline-title {
    color: #0194b2;
    text-decoration: overline;
    letter-spacing: 2px;
}

.quote-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
}
.quote-mark {
    font-size: 9rem;
    color: #63a2af;
    vertical-align: middle;
    margin-right: 0px;
    line-height: 0.7;
    font-family: Georgia, serif; /* Optional: more elegant */
}
.quote-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #486469;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}
.quote-author {
    font-size: 0.9rem;
    color: #666;
}
@media (max-width: 992px) {
    .quote-text {
        font-size: 0.7rem;
        white-space: wrap;
    }
    .quote-mark {
        font-size: 4.5rem;
        margin-right: 0;
    }
    .quote-author {
        font-size: 0.65rem;
    }
}

.clients {
    padding: 50px 0;
}
.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px; /* space between names */
}
.client-name {
    display: block;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.95rem;
    padding: 15px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap; /* Correct property */
    overflow: hidden; /* Prevent pushing columns */
}
.client-name:hover {
    color: var(--f2g-primary);
    transform: scale(1.05);
}
.row > div:last-child .client-name {
    border-right: none;
}
@media (max-width: 768px) {
    .client-name {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        white-space: normal; /* Allow wrapping */
        text-align: center;
    }
    .clients-row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .responsive-break {
        display: none;
    }
    .row > div:last-child .client-name {
        border-bottom: none;
    }
}


.contact-section {
    padding: 60px 0;
}
.contact-section .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
}
.contact-section .btn-cta {
    border: none;
}
