/* Global Styles */
:root {
    --primary-color: #0a2d62; /* Darker navy blue from the image */
    --secondary-color: #1a4789; /* Medium blue from the image */
    --accent-color: #2a67b2; /* Lighter blue from the image */
    --light-blue: #e8f0fa; /* Very light blue background */
    --dark-blue: #051d3b; /* Very dark blue */
    --text-color: #333;
    --light-text: #fff;
    --hero-blue: #0a2d62; /* Deep blue for hero background */
    --hero-overlay: rgba(10, 45, 98, 0.85); /* Blue overlay color */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section with Integrated Header */
.hero-section {
    position: relative;
    color: var(--light-text);
    padding: 0 0 120px;
    overflow: hidden;
    min-height: 100vh;
    background-image: url('../Images/header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #001C78 6.8%, rgba(0, 28, 120, 0) 95.83%), linear-gradient(263.76deg, rgba(0, 28, 120, 0) 9.53%, #001C78 97.2%);
    z-index: 1;
}

.container.position-relative {
    z-index: 2;
}

/* Header/Navigation */
header {
    padding: 20px 0;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: white !important;
    position: relative;
    border-top: 5px solid #68AFFF;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.navbar-brand:hover {
    color: white;
}

.navbar-nav .nav-link {
    color: white;
    margin: 0 25px;
    font-weight: 400;
    font-size: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Dropdown Styling to match the blue gradient design */
.nav-item.dropdown {
    position: relative;
}

    .nav-item.dropdown form {
        margin: 0;
    }

    /* Style the select element */
    .nav-item.dropdown select.nav-link {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent;
        border: none;
        color: white;
        font-size: 20px;
        padding: 8px 10px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    /* Add custom dropdown arrow */
    .nav-item.dropdown::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid white;
        pointer-events: none;
    }

    /* Hover state */
    .nav-item.dropdown select.nav-link:hover {
        opacity: 0.85;
    }

    /* Focus state */
    .nav-item.dropdown select.nav-link:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }

    /* Style the options */
    .nav-item.dropdown select.nav-link option {
        background-color: #001C78;
        color: white;
        padding: 10px;
        font-weight: normal;
    }

/* Remove default dropdown toggle styling */
.dropdown-toggle::after {
    display: none;
}

/* Style for the dropdown when open */
.nav-item.dropdown select.nav-link:focus {
    border-color: transparent;
}

/* Make sure text is visible on the blue background */
.nav-item.dropdown select.nav-link,
.nav-item.dropdown select.nav-link option {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
/* Sign in Button Styling */
.sign-in-button {
    margin: 0 10px;
    background-color: white;
    color: #001C78;
    font-weight: 500;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    /* Hover state */
    .sign-in-button:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    /* Active/pressed state */
    .sign-in-button:active {
        transform: translateY(1px);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    /* Focus state */
    .sign-in-button:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 2px 4px rgba(0, 0, 0, 0.1);
    }
/* Hero Content */
.hero-content {
    padding-top: 150px;
}

.hero-section h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section h2 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 60px;
    font-weight: 700;
}

.hero-section p {
    font-size: 25px;
    margin-bottom: 60px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-section .btn-light {
    padding: 26.67px 53.33px;
    width: 342px;
    height: 80px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 15px;
    color: #1A5597;
    border: none;
}

.hero-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background-color: #fff;
}

.community-logo {
    width: 183.03px;
    height: 183.03px;
    margin: 0 auto 20px;
    border-radius: 30px;
    position: relative;
    background: linear-gradient(143.45deg, rgba(0, 66, 140, 0) 28.91%, rgba(0, 66, 140, 0.3) 93.83%);
    box-shadow: 0 0 50px  rgba(0, 66, 140, 0.3) ;
    overflow: hidden;
}

.community-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(143.45deg, rgba(0, 66, 140, 0) 28.91%, rgba(0, 66, 140, 0.3) 93.83%);

    background-image: url("../Images/Group.png");
}

.community-section h3 {
    color: #1A3B85;
    margin-bottom: 20px;
}

.community-section p {
    margin-bottom: 15px;
}

/* Blueprint Section */
.blueprint-section {
    padding: 200px 0;
    position: relative;
}

.blueprint-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/EIFBackground.png");
    background-size: cover;
    background-position: center;
}

.implementation-box {
    box-shadow: 0px 4px 44px 0px #0134BA40;
    border-radius: 10px;
    padding: 90px 50px;
    background: radial-gradient(75.03% 458.04% at 19.83% 0%, rgba(195, 222, 252, 0.659) 0%, rgba(255, 255, 255, 0.749) 80.45%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.implementation-box img {
    width: 350px;
    height: 130px;
    max-width: 100%;
}

.implementation-box div {
    flex: 1;
    min-width: 300px;
}

.implementation-box h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: #fff;
}

.partners-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.partner-box {
    width: 165px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8f0fa;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    color: #00428C;
    font-weight: 500;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f0fa, #d1e3f9);
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: auto;
    min-height: 700px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    display: flex;
}

.live-card {
    background: linear-gradient(11.17deg, #FFFFFF 17.66%, rgba(255, 255, 255, 0.4) 96.65%),
radial-gradient(74.55% 161.94% at 100% 100%, #4CEE1A 0%, #FFFFFF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
backdrop-filter: blur(104px);

box-shadow: 0px 4px 34px 0px #1A3B851A;

    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    backdrop-filter: blur(104px);
    box-shadow: 0px 4px 34px 0px #1A3B851A;
}

.work-card {
    background: linear-gradient(11.17deg, #FFFFFF 17.66%, rgba(255, 255, 255, 0.4) 96.65%), radial-gradient(88.75% 183.35% at 98.84% 96.21%, #944BF4 0%, #F9F4FF 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
}

.integrate-card {
    background: linear-gradient(351.22deg, #FFFFFF 5.77%, rgba(255, 255, 255, 0.1) 84.55%),
radial-gradient(109.01% 64.74% at 100% 4.18%, #FFB84D 0%, #FFF8EB 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
backdrop-filter: blur(104px);

box-shadow: 0px 4px 34px 0px #1A3B851A;

    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
}

.feature-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-card .feature-content,
.work-card .feature-content {
    width: 50%;
}

.integrate-card .feature-content {
    padding-top: 20px;
}

.feature-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.live-card .feature-image,
.work-card .feature-image {
    width: 50%;
}

.integrate-card .feature-image {
    height: 60%;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.btn-primary {
    width: 195px;
    height: 70px;
    gap: 10.67px;
    border-radius: 13px;
    padding: 20px 40px !important;
    background: linear-gradient(258.47deg, #00428C 0%, #00428C 100%);
    align-self: flex-start;
    font-weight: 600 !important;
    font-size: 21.33px !important;
    vertical-align: middle !important;
    text-transform: capitalize !important;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f0fa, #d1e3f9);
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-card {
    padding: 50px;
    background: linear-gradient(100.37deg, rgb(250, 250, 250) 20.87%, rgba(0, 65, 140, 0.772) 92.98%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.contact-form-col {
    padding: 40px;
}

.contact-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.contact-image-col img {
    max-width: 100%;
    height: auto;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.option-btn {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    color: #555;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.option-btn.active {
    background: #00428C;
    color: white;
}

.option-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.8;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(42, 103, 178, 0.25);
}

.submit-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 10px;
    width: 150px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #fff;
    color: var(--text-color);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-tagline h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--primary-color);
}

.footer-social h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #00428C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info strong {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-info span {
    color: #666;
}

.footer-bottom {
    background: #00428C;
    color: white;
    padding: 20px 0;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Enhanced Responsive Styles */
@media (max-width: 1399px) {
    .hero-section h1 {
        font-size: 54px;
    }
    
    .hero-section p {
        font-size: 22px;
    }
    
    .btn-primary {
        width: 180px;
        height: 60px;
        font-size: 18px !important;
        padding: 15px 30px !important;
    }
    
    .hero-section .btn-light {
        width: 300px;
        height: 70px;
        font-size: 20px;
        padding: 20px 40px;
    }
}

@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
    }
    
    .live-card {
        grid-column: 1;
        grid-row: 1;
    }
    
    .work-card {
        grid-column: 1;
        grid-row: 2;
    }
    
    .integrate-card {
        grid-column: 1;
        grid-row: 3;
        flex-direction: row;
    }
    
    .integrate-card .feature-content,
    .integrate-card .feature-image {
        width: 50%;
        height: auto;
    }
    
    .navbar-nav .nav-link {
        margin: 0 15px;
        font-size: 18px;
    }
    
    .hero-section h1 {
        font-size: 48px;
    }
    
    .hero-section p {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .hero-section .btn-light {
        width: 280px;
        height: 65px;
        font-size: 18px;
    }
    
    .implementation-box {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .implementation-box img {
        width: 300px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-section h1 {
        font-size: 40px;
    }
    
    .hero-section p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-section .btn-light {
        width: 250px;
        height: 60px;
        font-size: 16px;
        padding: 18px 36px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 66, 140, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 16px;
    }
    
    .feature-content {
        padding: 30px;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    
    .contact-form-col {
        width: 100%;
        padding: 30px;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .legal-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .btn-primary {
        width: 160px;
        height: 55px;
        font-size: 16px !important;
        padding: 15px 25px !important;
    }
    
    .blueprint-section {
        padding: 100px 0;
    }
    
    .implementation-box {
        padding: 40px 30px;
    }
    
    .implementation-box img {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-top: 150px;
    }
    
    .hero-section {
        padding-bottom: 80px;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-section .btn-light {
        width: 100%;
        max-width: 250px;
        height: 50px;
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .community-logo {
        margin-bottom: 30px;
        width: 150px;
        height: 150px;
    }
    
    .live-card,
    .work-card,
    .integrate-card {
        flex-direction: column;
    }
    
    .live-card .feature-content,
    .work-card .feature-content,
    .integrate-card .feature-content,
    .live-card .feature-image,
    .work-card .feature-image,
    .integrate-card .feature-image {
        width: 100%;
    }
    
    .feature-content {
        order: 2;
        padding: 25px;
    }
    
    .feature-image {
        order: 1;
    }
    
    .feature-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .feature-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary {
        width: 140px;
        height: 50px;
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
    
    .blueprint-section {
        padding: 80px 0;
    }
    
    .implementation-box {
        padding: 30px 20px;
    }
    
    .implementation-box img {
        width: 200px;
    }
    
    .implementation-box h4 {
        font-size: 1.5rem;
    }
    
    .implementation-box p {
        font-size: 0.9rem;
    }
    
    .contact-options {
        gap:0;
    }
    
    .option-btn {
        padding: 12px;
    }
    
    .option-btn div {
        font-size: 0.9rem;
    }
    
    .option-subtitle {
        font-size: 0.7rem;
    }
    
    .form-control {
        padding: 12px;
    }
    
    .submit-btn {
        width: 120px;
        padding: 10px 20px;
    }
    
    .footer-tagline h5,
    .footer-social h5,
    footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-info strong {
        font-size: 0.9rem;
    }
    
    .contact-info span {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 14px;
    }
    
    .hero-section .btn-light {
        height: 45px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .community-section h3 {
        text-align: center;
        font-size: 36px;
        font-weight: 600;
    }
    
    .community-section p {
        font-size: 16px;
        margin: 0 15px;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        width: 120px;
        height: 45px;
        font-size: 13px !important;
        padding: 10px 15px !important;
    }
    
    .implementation-box {
        padding: 25px 15px;
    }
    
    .implementation-box img {
        width: 180px;
    }
    
    .partner-box {
        width: 100px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-col {
        padding: 20px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .hero-section h1 {
        font-size: 24px;
    }
    
    .hero-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-section .btn-light {
        width: 100%;
        max-width: 410px;
        height: 40px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .community-logo {
        width: 120px;
        height: 120px;
    }
    
    .implementation-box img {
        width: 250px;
    }

    .implementation-box h4 {
        text-align: left;
        font-size: 1.3rem;
    }

    .implementation-box p {
        text-align: left;
        font-size: 1rem;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-content h2 {
        font-size: 36px;
    }
    
    .feature-content p {
        font-size: 16px;
    }

    .btn-primary {
        width: 350px;
        height: 40px;
        font-size: 16px !important;
        padding: 3px 12px !important;
    }
    
    .contact-section h2 {
        font-size: 2.3rem;
    }
    
    .contact-subtitle {
        font-size: 1.rem;
    }
    
    .option-btn {
        padding: 10px;
    }
    
    .option-btn div {
        font-size: 0.85rem;
    }
    
    .option-subtitle {
        font-size: 0.65rem;
    }
    
    .form-control {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        width: 360px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Sign in Button Responsive Styles */
@media (max-width: 991px) {
    .sign-in-button {
        font-size: 16px;
        padding: 6px 16px;
        margin: 10px 0;
        display: inline-block;
        width: auto;
    }
    
    /* Center the button in mobile navbar */
    .navbar-collapse .sign-in-button {
        display: table;
    }
}

@media (max-width: 767px) {
    .sign-in-button {
        font-size: 14px;
        padding: 5px 14px;
    }
}

@media (max-width: 575px) {
    .sign-in-button {
        font-size: 14px;
        padding: 4px 12px;
        border-radius: 3px;
    }
}

/* Language Dropdown Responsive Styles */
@media (max-width: 991px) {
    .nav-item.dropdown {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-item.dropdown select.nav-link {
        font-size: 16px;
        padding: 6px 20px 6px 10px;
        margin: 0 auto;
        width: auto;
        display: inline-block;
    }
    
    .nav-item.dropdown::after {
        right: calc(50% - 40px);
    }
}

@media (max-width: 767px) {
    .nav-item.dropdown select.nav-link {
        font-size: 14px;
        padding: 5px 18px 5px 8px;
    }
}

@media (max-width: 575px) {
    .nav-item.dropdown select.nav-link {
        font-size: 14px;
        padding: 0;
    }
    
    .nav-item.dropdown::after {
        right: calc(88% - 35px);
    }
}

/* Fix for navbar items alignment on mobile */
@media (max-width: 991px) {
    
    
    /* Create a flex container for language and sign-in on larger mobile screens */
    @media (min-width: 576px) and (max-width: 991px) {
        .navbar-collapse .navbar-nav {
            display: flex;
            gap:30px;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .navbar-collapse .nav-item.dropdown,
        .navbar-collapse .sign-in-button {
            width: auto;
            margin: 10px 5px;
        }
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .sign-in-button {
        font-size: 16px;
        padding: 4px 10px;
        margin: 8px 0;
    }
    
    .nav-item.dropdown select.nav-link {
        font-size: 16px;
    }
    
    /* Stack language and sign-in vertically on very small screens */
    .navbar-collapse .navbar-nav {
        flex-direction: column;
    }
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.4s ease-out;
}

.animated-icon {
    font-size: 3rem;
    animation: pulse 1s ease-in-out infinite alternate;
}

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

