body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    
}

section {
    margin-bottom: 1.5rem;
}

footer {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    header, section, footer {
        text-align: center;
    }
}
.navbar {
    padding: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navbar Styles */
#navbar {
    background-color: #031233; /* Dark background color */
    transition: background-color 0.4s ease;
    padding: 15px 0; /* Vertical padding */
}

/* Transparent Background when Scrolling */
.transparent {
    background-color: transparent;
}

/* Navbar Link Styles */
.navbar .nav-link, .navbar .navbar-brand {
    color: #ffffff; /* White color for links and brand */
    transition: color 0.4s; /* Smooth color transition */
}

.transparent .nav-link, .transparent .navbar-brand {
    color: #ffffff; /* Maintain white color when transparent */
}

/* Optional: Add some shadow to the navbar */
.navbar {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}


/* Off-Canvas Styling */
.offcanvas {
    background-color: #091f3e; /* Dark background */
    color: #ffffff;
}

.offcanvas-header, .offcanvas-body a {
    color: #ff9800; /* Orange links and headers */
}

.offcanvas a:hover {
    color: #ffb74d; /* Lighten color on hover */
}


/* Hero Section Styling */
.index-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a, #1b263b); /* Gradient background */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Diagonal bottom */
}

.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/src/img/backg.jpg') center center / cover;
    opacity: 0.6; /* Adjust opacity for smoky effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    z-index: 2; /* Place above smoky overlay */
}

.hero-text {
    flex: 1;
    padding: 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transform: skew(-10deg);
}

.cta-btn:hover {
    background-color: #ffb74d;
    transform: scale(1.05) skew(-10deg);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    transform: translateX(20px); /* Slight offset for better alignment */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image img {
        max-width: 60%;
        margin-top: 20px;
        transform: translateX(0);
    }
}

#services {
    background-color: #183c5f; /* Light background for contrast */
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 8px;
}

/* .service-card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
} */

.service-icon {
    font-size: 2.5rem;
    color: #fd7e14; /* Primary color for the icon */
}

#services h2 {
    color: #cfdbff;
    font-weight: bold;
}

.about-section {
    background: linear-gradient(to right, #1f4037, #99f2c8); /* Subtle gradient */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.about-section p {
    color: #f1f1f1;
    line-height: 1.7;
    font-size: 1.125rem;
}

.about-section .read-more-btn-primary {
    background-color: #fd7e14;
    border-color: #fd7e14;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.more-text{
    display: none;
}

.about-section .read-more-btn-primary:hover {
    background-color: #f95705;
    border-color: #f95705;
}

/* .about-section img {
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
} */
.about-section h2 {
    font-family: 'Playfair Display', serif;
}

.about-section p {
    font-family: 'Open Sans', sans-serif;
}

.careers-section {
    background-color: #f3f4f6;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.careers-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0a2446;
    margin-bottom: 1rem;
}

.careers-section p {
    color: #666;
    line-height: 1.7;
}

.careers-section .btn-primary {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    background-color: #fd7e14;
    border-color: #fd7e14;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.careers-section .btn-primary:hover {
    background-color: #f95705;
    border-color: #f95705;
}

.position-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.position-card h5 {
    color: #0a2446;
    font-weight: bold;
    font-size: 1.25rem;
}

.position-card p.text-muted {
    font-size: 0.9rem;
    color: #888;
}

.position-card .btn-outline-primary {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
}
.careers-section h2, .position-card h5 {
    font-family: 'Roboto', sans-serif;
}

.careers-section p, .position-card p {
    font-family: 'Lato', sans-serif;
}

.partners-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.partners-section h2 {
    color: #0a2446;
    font-weight: bold;
    margin-bottom: 2rem;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-wrapper {
    display: flex;
    gap: 2rem;
    animation: scroll-logos 15s linear infinite; /* Controls scrolling effect */
}

.logo-item {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1); /* Logo zoom effect on hover */
}

.logo-item img {
    max-width: 100px;
    max-height: 50px;
    filter: grayscale(100%); /* Stylish grayscale look */
    transition: filter 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%); /* Restore color on hover */
}

/* Keyframes for scrolling animation */
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logos-wrapper {
        gap: 1rem;
    }
    .logo-item img {
        max-width: 80px;
        max-height: 40px;
    }
}

/* Carousel Control */
.carousel-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.contact-section {
    background: #f3f4f6;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-section h2 {
    color: #f9ecec;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-section p.lead {
    color: #d0c2c2;
}

.contact-info {
    background: linear-gradient(to right, #1f4037, #99f2c8);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-info i {
    color: #e0e0e0;
    margin-right: 0.5rem;
}

/* form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.form-group label {
    font-weight: bold;
    color: #0a2446;
}

.form-control {
    border: 1px solid #ccc;
    padding: 0.75rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #fd7e14;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    background-color: #fd7e14;
    border-color: #fd7e14;
    font-size: 1rem;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.btn-primary:hover {
    background-color: #f95705;
    border-color: #f95705;
}

@media (max-width: 768px) {
    .contact-info {
        text-align: center;
    }
    .contact-info p {
        text-align: center;
    }
}
.contact-section {
    background: url('/src/img/vect.jpg') center center / cover no-repeat;
    position: relative;
}

/* .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
} */
.footer-section {
    background-color: #031233;
    color: #dcdcdc;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: #dcdcdc;
}

.footer-link {
    color: #dcdcdc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fd7e14;
    text-decoration: underline;
}

.footer-social-icon {
    font-size: 1.5rem;
    color: #dcdcdc;
    margin-right: 0.8rem;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #fd7e14;
}

.footer-section i {
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-section h5 {
        font-size: 1.1rem;
    }
    .footer-social-icon {
        font-size: 1.2rem;
    }
}
/* Articles Section */
#articles {
    background-color: #f8f9fa; /* Light background color */
}

#articles h2 {
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Effect */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card Image */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Card Title */
.card-title {
    color: #fd7e14;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Read More Button */
.card .btn-primary {
    background-color: #fd7e14;
    border: none;
    transition: background-color 0.3s;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.card .btn-primary:hover {
    background-color: #ce500d;
}

/* Join Our Team Section Styling */
.join-our-team {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #0a2446;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Job Listings Table Styling */
.job-listings-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.job-listings-table thead {
    background-color: #0a2446;
    color: #ffffff;
}

.job-listings-table th, 
.job-listings-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.job-listings-table th {
    font-weight: 600;
}

.job-listings-table tr:hover {
    background-color: #f1f1f1;
}

.apply-btn {
    color: #fff;
    background-color: #ff9800;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.apply-btn:hover {
    background-color: #ffb74d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .job-listings-table th, 
    .job-listings-table td {
        padding: 10px;
    }
}

/* Extended Content Section Styling */
.extended-content {
    position: relative;
    padding: 60px 0;
    background-color: #1b263b;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.extended-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.articles {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

/* Gradient and Image Fade Effect */
.gradient-image {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 30px;
    overflow: hidden;
}

.gradient-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(27, 38, 59, 0.8), transparent 60%); */
    z-index: 1;
}

.gradient-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    opacity: 0.85;
    z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .extended-content h2 {
        font-size: 2rem;
    }

    .articles {
        font-size: 1rem;
    }
}

/* Cookie Consent Section Styling */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(5, 9, 64, 0.9); /* Dark, semi-transparent background */
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.cookie-consent .logo {
    height: 40px;
    margin-right: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    margin: 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.accept-btn {
    background-color: #4CAF50;
    color: #fff;
}

.accept-btn:hover {
    background-color: #45a049;
}

.decline-btn {
    background-color: #ff5722;
    color: #fff;
}

.decline-btn:hover {
    background-color: #e64a19;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin: 10px 0;
    }
}

/* Newsletter Section Styling */
.newsletter-section {
    padding: 60px 20px;
    background-color: #031233;
    color: #fff;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-section p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto;
}

/* Newsletter Form Styling */
.newsletter-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter-signup {
    background: #0a2446;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    flex: 1;
}

.newsletter-signup h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.newsletter-signup input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    outline: none;
    box-sizing: border-box;
}

.newsletter-signup .subscribe-btn {
    background-color: #ff9800;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.newsletter-signup .subscribe-btn:hover {
    background-color: #e68900;
}

/* Pyramid Chart Styling */
.pyramid-chart {
    width: 200px;
    margin: 0 auto;
    text-align: center;
}

.level {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    background-color: #ff9800;
    margin: 5px 0;
    border-radius: 4px;
}

.level1 { width: 100%; }
.level2 { width: 80%; }
.level3 { width: 60%; }
.level4 { width: 40%; }

/* Counter Styling */
.counter {
    margin-top: 20px;
    color: #ff9800;
}

.counter h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.counter .count {
    font-size: 2rem;
    font-weight: 700;
}

/* Career Form Styling */
.career-form-section {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #e1cccc;
    color: #272424;
    border-radius: 8px;
}

.career-form-section h2 {
    text-align: center;
    color: #ff9800;
}

.career-form-section label {
    display: block;
    margin: 15px 0 5px;
}

.career-form-section input[type="text"],
.career-form-section input[type="email"],
.career-form-section input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.career-form-section button {
    display: block;
    width: 100%;
    background-color: #ff9800;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.career-form-section button:hover {
    background-color: #e68900;
}

/* Extended Content Section Styling */
.extended-content {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('/src/img/education.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.extended-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.extended-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.extended-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f3f4f7;
    opacity: 0.9;
}

/* Button Styling */
.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #ff9800;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e68900;
}

/* Gradient Fading Effect */
.extended-content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgb(27 63 119 / 70%) 0%, transparent 50%);
    z-index: 1;
}

.extended-content .content-wrapper {
    position: relative;
    z-index: 2;
}

/* Education Section Styling */
.education-section {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('/src/img/education.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Content Wrapper */
.education-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.education-section h2 {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.education-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f3f4f7;
}

/* Button Styling */
.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #ff9800;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e68900;
}

/* Table Wrapper */
.table-wrapper {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
}

.table-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff9800;
}

/* Sponsorship Table Styling */
.sponsorship-table {
    width: 100%;
    border-collapse: collapse;
    color: #dbdcdf;
}

.sponsorship-table th,
.sponsorship-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsorship-table th {
    background-color: rgba(255, 152, 0, 0.8);
    color: #342f2f;
    font-weight: 600;
}

.sponsorship-table td {
    background-color: rgba(255, 255, 255, 0.1);
    color: #35373e;
}

/* Gradient Fade Effect */
.education-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    z-index: 1;
}

.education-section .content-wrapper,
.table-wrapper {
    position: relative;
    z-index: 2;
}

/* Blockchain Section Styling */
.blockchain-section {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('blockchain-background.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Content Wrapper */
.blockchain-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blockchain-section h2 {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.blockchain-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f3f4f7;
}

/* Button Styling */
.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #ff9800;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e68900;
}

/* Quotes Wrapper */
.quotes-wrapper {
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.quotes-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff9800;
}

/* Quote Rows Styling */
.quote-row {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #f3f4f7;
    position: relative;
    overflow: hidden;
}

.quote-row blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #f1f1f1;
    margin: 0 0 10px;
}

.quote-row cite {
    font-size: 0.9rem;
    color: #ff9800;
}

/* Gradient Fade Effect */
.blockchain-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    z-index: 1;
}

.blockchain-section .content-wrapper,
.quotes-wrapper {
    position: relative;
    z-index: 2;
}

.loader {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    color: #007BFF;
  }