/* custom.css */

/* Background settings for the banner */
body.banner {
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
}

/* Dark overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.image-bg, .header-content, .footer-content, .card, .content {
    position: relative;
    z-index: 2;
}

/* Padding for the logo */
.logo-padding {
    margin-top: 20px; /* Adjust value as needed */
    display: inline-block;
}

/* Additional Info Section */
.additional-info-section, .avatars-grid-section, .demo-section {
    background: #f8f9fa; /* Light gray background */
    padding: 60px 0;
}

.feature-row .feature-block, .avatars-grid-section .card {
    background: #ffffff; /* Background for the feature blocks and avatars */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-row .feature-block h2, .avatars-grid-section .card h5 {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

.feature-row .feature-block.bg-primary {
    background-color: #1d6ccd;
    color: #ffffff;
}

.feature-row .feature-block.bg-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

/* Attention-grabbing styling for iframe */
.embed-avatar-demo {
    background: rgba(0, 0, 0, 0.6); /* Transparent background similar to top section */
    border: 3px solid #1d6ccd; /* Blue border */
    border-radius: 8px; /* Rounded corners */
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    z-index: 2;
}

.embed-avatar-demo iframe.attention-grabbing-iframe {
    width: 100%;
    max-width: 950px;
    height: 700px;
}

/* Bold and attention-grabbing title */
h2.text-light-gray {
    color: #d1d3e2 !important;
    font-size: 2rem;
    font-weight: bold;
}

/* Call to Action Banner */
.call-to-action-banner {
    background: #1d6ccd; /* Primary blue background */
    color: #fff;
    padding: 40px 0;
    z-index: 2;
}

.call-to-action-banner h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.call-to-action-banner .btn {
    font-size: 1.5rem;
    padding: 15px 30px;
}

/* Text color for light gray */
.text-light-gray-800 {
    color: #d1d3e2 !important;
}

/* Link styles */
a {
    color: #1d6ccd;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #224abe;
    text-decoration: underline;
}

/* Additional styles */
.text-gray-800 {
    color: #5a5c69 !important;
}

.text-primary {
    color: #1d6ccd !important;
}

.text-center .btn {
    padding: 15px 30px;
    font-size: 1rem;
}

.text-gray-200 {
    color: #d1d3e2 !important;
}

.text-white {
    color: #fff !important;
}


/* custom.css */

/* custom.css */

/* Background settings for the header */
.header-bg {
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    position: relative;
}

.header-bg .container {
    position: relative;
    z-index: 2;
}

.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

/* Breadcrumb styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #1d6ccd; /* Color for links including Home */
}

.breadcrumb-item.active {
    color: #fff; /* White for active item */
}

/* Footer links styling */
.footer-links a {
    color: #1d6ccd;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #224abe;
    text-decoration: underline;
}

/* Text color for light gray */
.text-light-gray-800 {
    color: #d1d3e2 !important;
}

/* Additional styling for forms and buttons */
.form-control {
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #1d6ccd;
    box-shadow: 0 0 0 0.2rem rgba(29, 108, 205, 0.25);
}

.btn-primary {
    background-color: #1d6ccd;
    border-color: #1d6ccd;
}

.btn-primary:hover {
    background-color: #224abe;
    border-color: #224abe;
}

/* Link styles */
a {
    color: #1d6ccd;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #224abe;
    text-decoration: underline;
}

/* Additional styles */
.text-gray-800 {
    color: #5a5c69 !important;
}

.text-primary {
    color: #1d6ccd !important;
}

.text-gray-200 {
    color: #d1d3e2 !important;
}

.text-white {
    color: #fff !important;
}

/* custom.css */

/* Styles for the Back-to-Top arrow */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Initially hidden */
    width: 40px;
    height: 40px;
    background-color: #1d6ccd; /* Match site primary color */
    color: #fff; /* White arrow color */
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: background-color 0.3s, opacity 0.3s;
}

.back-to-top i {
    font-size: 18px;
}

.back-to-top:hover {
    background-color: #224abe; /* Slightly darker blue on hover */
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

/* custom.css */

/* Social Media Links Styling */
.social-media {
    margin-top: 20px;
}

.social-media a {
    color: #1d6ccd; /* Site primary color */
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #224abe; /* Slightly darker blue on hover */
}

/* Styles for the Back-to-Top arrow */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Initially hidden */
    width: 40px;
    height: 40px;
    background-color: #1d6ccd; /*


	
/* custom.css */

/* Other styles... */

@media (max-width: 991px) {
    .only-desktop {
        display: none !important;
    }
}

/* Other styles... */
