body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #aadd00;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #aadd00;
    color: #1a1a1a;
}

.btn-secondary {
    background-color: transparent;
    color: #ffcc00;
    border: 2px solid #ffcc00;
}

.btn-secondary:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00;
    position: relative;
    padding-bottom: 10px;
}

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

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #ccc;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background-color: #000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffcc00;
}

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav .nav-link {
    font-weight: 600;
    color: #f0f0f0;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #aadd00;
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffcc00;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav {
    position: relative;
    width: 80%;
    max-width: 400px;
    background-color: #1a1a1a;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffcc00;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list .nav-link {
    font-size: 1.5rem;
    color: #f0f0f0;
    font-weight: 600;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    background-color: #333;
    color: #ffcc00;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f0f0f0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(70%);
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* About Section (Timeline) */
.about-section {
    padding: 100px 0;
    background-color: #222;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #aadd00;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -100px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -100px;
}

.timeline-icon {
    height: 50px;
    width: 50px;
    background-color: #ffcc00;
    position: absolute;
    top: 15px;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    box-shadow: 0 0 0 5px #222;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-title {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.timeline-description {
    color: #ccc;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

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

.feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 250px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    color: #aadd00;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.6rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.feature-item p {
    color: #ccc;
    flex-grow: 1;
}

/* How It Works Section */
.howitworks-section {
    padding: 100px 0;
    background-color: #222;
}

.flow-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
}

.flow-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #333;
    z-index: 0;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    background-color: #222;
    margin: 0 10px;
}

.step-badge {
    width: 80px;
    height: 80px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 8px #222;
}

.flow-step h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.flow-step p {
    color: #ccc;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    background-image: url('uploads/media/subtle-geometric-pattern_4.png');
    background-size: 150px;
    background-repeat: repeat;
}

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

.team-member {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    border: 3px solid #ffcc00;
}

.team-member:hover .member-photo {
    filter: grayscale(0%);
}

.member-name {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 5px;
}

.member-title {
    font-size: 1rem;
    color: #aadd00;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #222;
}

.portfolio-strip {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-strip:last-child {
    margin-bottom: 0;
}

.strip-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.strip-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.5s ease;
}

.portfolio-strip:hover .strip-image .overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.strip-content {
    flex: 1;
    padding: 40px;
    color: #f0f0f0;
    transition: transform 0.5s ease;
}

.portfolio-strip.reverse {
    flex-direction: row-reverse;
}

.strip-content h3 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.strip-content p {
    margin-bottom: 25px;
    color: #ccc;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.stats-timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stats-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
    z-index: 0;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
}


.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #222;
}

.accordion-container {
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.accordion-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 20px 30px;
    background-color: #333;
    color: #ffcc00;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #444;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px;
    background-color: #2a2a2a;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-content.active {
    max-height: 300px; /* Adjust based on expected content height */
    padding: 20px 30px;
}

.accordion-content p {
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info p i {
    font-size: 1.5rem;
    color: #aadd00;
}

.contact-info a {
    color: #f0f0f0;
}

.contact-info a:hover {
    color: #ffcc00;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    object-fit: cover;
}

.contact-form-wrapper {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-form .form-group {
    margin-bottom: 20px;
}

.main-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffcc00;
}

.main-form input[type="text"],
.main-form input[type="email"],
.main-form input[type="tel"],
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: #f0f0f0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    border-color: #aadd00;
    box-shadow: 0 0 0 3px rgba(170, 221, 0, 0.3);
    outline: none;
}

.main-form textarea {
    resize: vertical;
    min-height: 120px;
}

.main-form .btn-primary {
    width: auto;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #ccc;
    padding: 60px 0 20px 0;
    border-top: 5px solid #aadd00;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.6rem;
    color: #ffcc00;
    margin-bottom: 20px;
    margin-block-start: unset;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: #ffcc00;
}

.footer-col .logo-container .site-name {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }
}

@media (max-width: 1023px) {
    .site-name {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .timeline-container::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 10px;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: auto;
        right: 10px;
        top: 0;
    }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        right: auto;
    }
    .flow-container {
        flex-direction: column;
        align-items: center;
    }
    .flow-step {
        margin-bottom: 40px;
        max-width: 100%;
    }
    .flow-container::before {
        display: none;
    }
    .portfolio-strip {
        flex-direction: column;
    }
    .portfolio-strip.reverse {
        flex-direction: column;
    }
    .strip-image, .strip-content {
        flex: none;
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .site-name {
        font-size: 1.25rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-description {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .timeline-date {
        font-size: 0.9rem;
    }
    .timeline-title {
        font-size: 1.3rem;
    }
    .feature-item h3 {
        font-size: 1.4rem;
    }
    .step-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .flow-step h3 {
        font-size: 1.3rem;
    }
    .member-name {
        font-size: 1.5rem;
    }
    .strip-content h3 {
        font-size: 1.5rem;
    }
    .stat-value {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    .accordion-header {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    /* .accordion-content {
        padding: 15px 20px;
    } */
    .contact-info h3 {
        font-size: 1.6rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
    .main-form label {
        font-size: 0.95rem;
    }
    .main-form input, .main-form select, .main-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    .main-form .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .footer-col h3 {
        font-size: 1.4rem;
    }
    .footer-col ul li a {
        font-size: 0.9rem;
    }
    .footer-col .logo-container .site-name {
        font-size: 1.25rem;
    }
}/*
 * Styles for the .infoGuardBlock container
 * Provides general spacing for the content within.
 */
.infoGuardBlock {
    margin-top: 40px; /* Top margin for overall block separation */
    padding: 30px 25px; /* Padding on all sides for internal content */
    /* You might add background-color, border, or box-shadow here if needed */
}

/*
 * Heading styles within .infoGuardBlock
 * Font sizes are moderate, not excessively large, with appropriate margins.
 */
.infoGuardBlock h1 {
    font-size: 1.8em; /* Moderate size for main heading (approx 28.8px if base is 16px) */
    line-height: 1.2; /* Tighter line height for headings */
    margin: 0 0 0.8em; /* No top margin, 0.8em bottom margin */
    color: #dad7d7; /* A common dark text color */
}

.infoGuardBlock h2 {
    font-size: 1.5em; /* Moderate size for secondary heading (approx 24px) */
    line-height: 1.3;
    margin: 1.2em 0 0.7em; /* Top margin for separation, 0.7em bottom margin */
    color: #dad7d7;
}

.infoGuardBlock h3 {
    font-size: 1.25em; /* Moderate size for tertiary heading (approx 20px) */
    line-height: 1.4;
    margin: 1.2em 0 0.6em;
    color: #dad7d7;
}

.infoGuardBlock h4 {
    font-size: 1.1em; /* Slightly larger than base for sub-heading (approx 17.6px) */
    line-height: 1.5;
    margin: 1.2em 0 0.5em;
    color: #dad7d7;
}

.infoGuardBlock h5 {
    font-size: 1em; /* Base font size for minor heading (approx 16px) */
    line-height: 1.5;
    margin: 1.2em 0 0.4em;
    color: #dad7d7;
}

/*
 * Paragraph styles within .infoGuardBlock
 */
.infoGuardBlock p {
    font-size: 1em; /* Standard paragraph font size */
    line-height: 1.6; /* Comfortable line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #dad7d7; /* Slightly lighter text color for body */
}

/*
 * Unordered list styles within .infoGuardBlock
 */
.infoGuardBlock ul {
    list-style-type: disc; /* Standard disc bullets */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indentation for bullet points */
    color: #dad7d7;
}

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

/*
 * Optional: Ordered list styles (if you need them, though not explicitly requested)
 */
.infoGuardBlock ol {
    list-style-type: decimal; /* Standard numbered list */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em;
    color: #dad7d7;
}
