body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a2b40;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.navbar {
    background-color: #1a2b40;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: #4a90e2;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00bcd4;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4a90e2;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #1a2b40;
}

.hero-bg-image {
    z-index: 0;
    opacity: 0.2;
    filter: grayscale(100%);
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #1a2b40;
    z-index: 1;
}

.hero-section::before {
    top: 0;
    transform: skewY(-3deg);
    transform-origin: top left;
}

.hero-section::after {
    bottom: 0;
    transform: skewY(3deg);
    transform-origin: bottom right;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #00bcd4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section p.lead {
    font-size: 1.5rem;
    color: #e0e0e0;
}

.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #00bcd4;
    border-color: #00bcd4;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary {
    color: #4a90e2;
    border-color: #4a90e2;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
}

/* About Section */
.about-section {
    background-color: #21354a;
}

.about-section p {
    color: #e8e6e6;
}
.about-section #interactive-map-container p {
        color: #727171;

}

.interactive-map-container {
    background-color: #2a405a;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.interactive-map-container img {
    opacity: 0.3;
    filter: grayscale(100%);
}

.map-pin {
    width: 40px;
    height: 40px;
    background-color: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    z-index: 10;
}

.map-pin:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
}

.map-info-panel {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    color: #1a2b40;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 11;
}

.map-info-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

/* Services Section */
.services-section {
    background-color: #1a2b40;
}

.service-card {
    background-color: #21354a;
    border: 1px solid #2a405a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #4a90e2;
}

.service-icon {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #4a90e2;
    font-weight: 600;
}

.service-card p {
    color: #d0d0d0;
}

/* Features Section */
.features-section {
    background-color: #21354a;
}

.feature-list li {
    margin-bottom: 1.5rem;
}

.feature-list i {
    font-size: 1.5rem;
    color: #00bcd4;
    min-width: 30px;
}

.feature-list h5 {
    color: #4a90e2;
    font-weight: 600;
}

.feature-list p {
    color: #d0d0d0;
}

/* Pricing Section */
.pricing-section {
    background-color: #1a2b40;
}

#pricing-slider-container {
    background-color: #21354a;
    border: 1px solid #2a405a;
    padding: 3rem;
}

.pricing-plan-card {
    background-color: #2a405a;
    border: 1px solid #3a506a;
    transition: all 0.3s ease;
}

.pricing-plan-card h3 {
    font-weight: 700;
    color: #00bcd4;
}

.pricing-plan-card .price {
    font-weight: 700;
    color: #4a90e2;
}

.feature-list-small li {
    color: #e0e0e0;
}

.feature-list-small .text-success {
    color: #28a745 !important;
}

.feature-list-small .text-danger {
    color: #dc3545 !important;
}

.slider-input {
    width: 100%;
    height: 8px;
    background: #3a506a;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00bcd4;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-input::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00bcd4;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-label {
    color: #a0a0a0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.slider-label.active {
    color: #e0e0e0;
}

/* Team Section */
.team-section {
    background-color: #21354a;
}

.team-member-card {
    background-color: #2a405a;
    border: 1px solid #3a506a;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.team-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-photo img {
    transform: scale(1.05);
}

.fun-fact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 188, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .fun-fact-overlay {
    opacity: 1;
    visibility: visible;
}

.team-member-card h4 {
    color: #00bcd4;
    font-weight: 600;
}

.team-member-card p {
    color: #d0d0d0;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a2b40;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    border: 1px solid #2a405a;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.bg-light {
    background-color: #21354a !important;
}

.testimonial-card.bg-white {
    background-color: #2a405a !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card blockquote {
    color: #e0e0e0;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-card .quote-icon {
    color: #4a90e2;
    font-size: 1.5rem;
}

.testimonial-card .author-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #00bcd4;
}

.testimonial-card .author-info h5 {
    color: #00bcd4;
    font-weight: 600;
}

.testimonial-card .author-info p {
    color: #d0d0d0;
}

/* FAQ Section */
.faq-section {
    background-color: #21354a;
}

#faq-wizard-container {
    background-color: #2a405a;
    border: 1px solid #3a506a;
}

.wizard-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.wizard-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.wizard-option {
    text-decoration: none;
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-result-list .accordion-item {
    background-color: #3a506a;
    border: 1px solid #4a607a;
    margin-bottom: 10px;
}

.faq-result-list .accordion-button {
    background-color: #3a506a;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    box-shadow: none;
    text-decoration: none;
}

.faq-result-list .accordion-button:not(.collapsed) {
    color: #00bcd4;
    background-color: #4a607a;
}

.faq-result-list .accordion-body {
    background-color: #2a405a;
    color: #d0d0d0;
}

/* Contact Section */
.contact-section {
    background-color: #1a2b40;
}

.contact-list li {
    font-size: 1.2rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li i {
    color: #00bcd4;
    font-size: 1.5rem;
}

.contact-list li a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: #00bcd4;
}

/* Footer */
.sticky-footer {
    position: relative;
    background-color: #1a2b40;
    color: #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sticky-footer .footer-logo {
    height: 30px;
    width: auto;
}

.sticky-footer .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sticky-footer .footer-links a:hover {
    color: #00bcd4;
}

.fab {
    position: absolute;
    right: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    background-color: #4a90e2;
    border-color: #4a90e2;
    transition: all 0.3s ease;
}

.fab:hover {
    background-color: #00bcd4;
    border-color: #00bcd4;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #1a2b40;
        text-align: center;
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .hero-section p.lead {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-section .row, .features-section .row {
        flex-direction: column-reverse;
    }
    .map-info-panel {
        width: 95%;
        bottom: 10px;
    }
    .fab {
        right: 15px;
        top: -25px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .sticky-footer .d-flex {
        flex-direction: column;
        text-align: center;
    }
    .sticky-footer .footer-links {
        margin-top: 1rem;
    }
    .sticky-footer .footer-logo-link {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .testimonial-list {
        grid-template-columns: 1fr;
    }
    .pricing-plan-card {
        margin-bottom: 1.5rem;
    }
    #pricing-slider-container {
        padding: 1.5rem;
    }
    .slider-label {
        font-size: 0.9rem;
    }
    .contact-list li {
        justify-content: flex-start;
    }
    .sticky-footer .fab {
        position: static;
        margin-top: 1rem;
        transform: none;
    }
    .sticky-footer .d-flex {
        align-items: center;
    }
}
/* Parent container for policy content */
.policyOrbitalShell {
    margin-top: 2rem; /* Top margin for separation from content above */
    margin-inline: auto; /* Center the block horizontally */
    max-width: 800px; /* Limit width for readability on large screens */
    padding-inline: 1.5rem; /* Side padding for smaller screens and general content spacing */
    padding-bottom: 2rem; /* Bottom padding */
    box-sizing: border-box; /* Ensure padding doesn't add to max-width */
    color: #bdbcbc;
}

/* Heading 1 styles */
.policyOrbitalShell h1 {
    font-size: 2.2rem; /* Moderate size for the main heading */
    margin-top: 2.5rem; /* Space above heading */
    margin-bottom: 1rem; /* Space below heading */
    line-height: 1.2; /* Tighter line height for headings */
    font-weight: 700; /* Bold text */
}

/* Heading 2 styles */
.policyOrbitalShell h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
}

/* Heading 3 styles */
.policyOrbitalShell h3 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Heading 4 styles */
.policyOrbitalShell h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Heading 5 styles */
.policyOrbitalShell h5 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Paragraph styles */
.policyOrbitalShell p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-top: 0; /* No top margin by default, let previous element define spacing */
    margin-bottom: 1rem; /* Space after each paragraph */
    line-height: 1.6; /* Optimal line height for readability */
}

/* Unordered list styles */
.policyOrbitalShell ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    margin-left: 1.5rem; /* Indent for bullet points */
    padding-left: 0; /* Reset default padding if any */
}

/* List item styles */
.policyOrbitalShell li {
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Readability for list text */
}
.feature-list-small li.text-muted,
.author-info .text-muted {
    color: #b4b2b2 !important;
}
@media screen and (width < 400px) {
    #faq-wizard-container {
        padding: 0.5rem !important;
    }
    .wizard-option { 
        padding: 15px 10px ;
    }
}
main {
    overflow: hidden;
}
    .feature-list-small li,
    .service-card h3 {
        word-break: break-all;
    }
