body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}
html{
      overflow-x: hidden; 
}
:root {
    --primary-blue: #0A2E5B;
    --accent-red: #E74C3C;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-dark: #333333;
    --text-light: #ffffff;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #08254A;
    border-color: #08254A;
}

.custom-btn-red {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}
@media (max-width:575px) {
    .text-heros{
        font-size: 12px;
    }
}
.custom-btn-red:hover {
    background-color: #C0392B;
    border-color: #C0392B;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: 600;
}

h1.display-3, h2.display-4 {
    font-weight: 700;
}

.navbar-brand img {
    filter: invert(100%);
}
.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-red);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}
.navbar-toggler {
    border: none;
}
.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='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#hero {
    background-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-background-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: flex;
    pointer-events: none;
    z-index: 0;
}

.hero-background-patterns .pattern-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%) brightness(50%);
}

#hero h1 {
    color: var(--text-light);
}

#hero p {
    color: rgba(255, 255, 255, 0.85);
}

.team-member-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
        align-items: center;
    background-color: var(--text-light);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.team-member-card img {
    border-color: var(--primary-blue) !important;
}
.team-member-card h4 {
    color: var(--primary-blue);
}
.team-member-card blockquote {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.services-process {
    max-width: 900px;
    margin: 0 auto;
}
.service-step {
    position: relative;
    z-index: 1;
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.service-step:nth-child(even) {
    margin-left: auto;
}
.service-step:nth-child(odd) {
    margin-right: auto;
}
.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px rgba(10, 46, 91, 0.2);
}
.step-content h4 {
    color: var(--primary-blue);
}
.service-arrow-right, .service-arrow-left {
    position: absolute;
    height: 80px;
    width: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M10,50 Q50,10 90,50 T10,50' fill='none' stroke='%230A2E5B' stroke-width='2' stroke-dasharray='5 5'/%3E%3Cpath d='M90,50 L80,45 M90,50 L80,55' fill='none' stroke='%230A2E5B' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.service-arrow-right {
    top: calc(50% - 40px);
    left: 45%;
    transform: rotate(90deg);
}
.service-arrow-left {
    top: calc(50% - 40px);
    right: 45%;
    transform: rotate(-90deg) scaleX(-1);
}

.services-process > div:nth-child(1) + .service-arrow-right { top: 120px; left: calc(50% - 40px); transform: rotate(90deg); }
.services-process > div:nth-child(3) + .service-arrow-left { top: 320px; right: calc(50% - 40px); transform: rotate(-90deg) scaleX(-1); }
.services-process > div:nth-child(5) + .service-arrow-right { top: 520px; left: calc(50% - 40px); transform: rotate(90deg); }


@media (max-width: 767.98px) {
    .service-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .service-step .step-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .service-arrow-right, .service-arrow-left {
        display: none !important;
    }
}


.feature-card {
    background-color: var(--text-light);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mobile-screen-mockup {
    width: 100%;
    max-width: 280px;
    height: 220px;
    border-radius: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mobile-screen-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 10px;
    background-color: var(--primary-blue);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.mobile-screen-mockup i {
    color: var(--primary-blue);
}
.feature-card h4 {
    color: var(--primary-blue);
}

.team-member-card {
    background-color: var(--text-light);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.team-member-card img {
    display: block;
}
.team-info h4 {
    color: var(--primary-blue);
}
.fun-fact-overlay {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
    background-color: rgba(10, 46, 91, 0.9);
}
.team-member-card:hover .fun-fact-overlay {
    opacity: 1;
    transform: translateY(0);
}

#stats {
    background-image: url(assets/pics/stats-background_11.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
#stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
#stats .container {
    position: relative;
    z-index: 1;
}
#stats h2, #stats p {
    color: var(--text-light);
}
.icon-large {
    font-size: 4rem;
    color: var(--accent-red);
}
.stat-number {
    color: var(--accent-red);
}

.infographic-flow {
    max-width: 900px;
    margin: 0 auto;
}
.flow-step {
    position: relative;
    z-index: 1;
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.flow-step:nth-child(even) {
    margin-left: auto;
}
.flow-step:nth-child(odd) {
    margin-right: auto;
}
.step-badge {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 0 0 5px rgba(10, 46, 91, 0.2);
}
.step-details h4 {
    color: var(--primary-blue);
}

.flow-path {
    position: absolute;
    border: 2px dashed var(--primary-blue);
    opacity: 0.5;
    z-index: 0;
}
.flow-path-1 {
    top: 100px;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translateX(-50%);
}
.flow-path-2 {
    top: 300px;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translateX(-50%);
}
.flow-path-3 {
    top: 500px;
    left: 50%;
    width: 2px;
    height: 100px;
    transform: translateX(-50%);
}
@media (max-width: 767.98px) {
    .flow-path {
        display: none !important;
    }
}


.faq-questions .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 4px solid transparent;
}
.faq-questions .list-group-item:hover {
    background-color: #e9ecef;
    border-left-color: var(--primary-blue);
}
.faq-questions .list-group-item.active {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-left-color: var(--accent-red);
}
.faq-questions .list-group-item.active .faq-question-link {
    color: var(--text-light);
}
.faq-question-link {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}
.faq-question-link:hover {
    color: var(--primary-blue);
}
.faq-questions .list-group-item.active .faq-question-link:hover {
    color: var(--text-light);
}

#faq-answer-display {
    background-color: var(--text-light);
    border: 1px solid #e0e0e0;
    min-height: 200px;
}
.faq-answer-item {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}
.faq-answer-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.faq-answer-item h4 {
    color: var(--primary-blue);
}

#contact-form {
    background-image: url(assets/pics/contact-background_4.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
#contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 46, 91, 0.85);
    z-index: 0;
}
#contact-form .container {
    position: relative;
    z-index: 1;
}
#contact-form h2, #contact-form p {
    color: var(--text-light);
}
#contact-form form {
    background-color: var(--text-light);
    border: none;
}
#contact-form .form-label {
    color: var(--primary-blue);
    font-weight: 500;
}
#contact-form .form-control,
#contact-form .form-select {
    border-color: #ced4da;
    padding: 0.75rem 1rem;
}
#contact-form .form-control:focus,
#contact-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(10, 46, 91, 0.25);
}

#footer {
    background-color: var(--dark-bg);
}
#footer .navbar-brand img {
    filter: invert(100%);
}
#footer .navbar-brand {
    color: var(--text-light);
}
#footer h5 {
    color: var(--text-light);
}
#footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}
#footer a:hover {
    color: var(--accent-red);
}
#footer .list-unstyled li {
    margin-bottom: 5px;
}
#footer .list-unstyled li:last-child {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}/* Parent block container styles */
.infoGuardBlock {
    padding: 25px; /* Internal spacing from content to block edges */
    margin-top: 40px; /* Space above the block */
    margin-bottom: 40px; /* Space below the block */
    /* You might want to add a max-width and margin: 0 auto; here for centering */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles */
.infoGuardBlock h1 {
    font-size: 28px; /* Moderate size for H1 */
    line-height: 1.2; /* Good readability */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 20px; /* Space below heading */
    font-weight: bold; /* Ensure it's bold */
}

/* Heading 2 styles */
.infoGuardBlock h2 {
    font-size: 24px; /* Moderate size for H2 */
    line-height: 1.3;
    margin-top: 30px; /* Space above H2, separating from previous content */
    margin-bottom: 15px;
    font-weight: bold;
}

/* Heading 3 styles */
.infoGuardBlock h3 {
    font-size: 20px; /* Moderate size for H3 */
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Heading 4 styles */
.infoGuardBlock h4 {
    font-size: 18px; /* Moderate size for H4 */
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Heading 5 styles */
.infoGuardBlock h5 {
    font-size: 16px; /* Moderate size for H5, similar to body text */
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Good readability for paragraphs */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.infoGuardBlock ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indent the list content and bullets */
}

/* List item styles */
.infoGuardBlock li {
    font-size: 16px; /* Standard text size for list items */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5em; /* Space between list items */
}
