/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
}

/* Top Navigation */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    position: relative;
    background: white;
    z-index: 1001;
}

.logo img {
    width: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

nav li a {
    font-size: 1rem;
    font-weight: 500;
    color: #162b5b;
    padding: 0px 15px;
    text-decoration: none;
    transition: all .4s ease;
}

/* Buttons */
.btn-signin {
    color: #1070ca;
    background-color: #fff;
    border: 1px solid #1070ca;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 5px;
}
.btn-try {
    background-color: #1070ca;
    color: #fff;
    border: 1px solid #1070ca;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 5px;
}
.lang-select {
    vertical-align: top;
}

/* ✅ Dropdown Styling (cleaned & fixed) */
.dropdown-product,
.dropdown-menu {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Show dropdowns only when hovering */
.dropdown:hover .dropdown-product,
.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 20px;
}

/* Product dropdown layout */
.dropdown-product {
    min-width: 800px;
    max-width: 90%;
}

.dropdown-product .product-column {
    flex: 1;
    padding: 10px;
}

/* Resources dropdown layout */
.dropdown-menu {
    min-width: 1000px;
    max-width: 95%;
}

.dropdown-menu .column {
    flex: 1;
    padding: 10px;
}

/* List reset inside dropdowns */
.dropdown-menu ul,
.dropdown-product ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li,
.dropdown-product li {
    margin-bottom: 8px;
}

.dropdown-menu a,
.dropdown-product a {
    text-decoration: none;
    color: #162b5b;
}

.dropdown-menu a:hover,
.dropdown-product a:hover {
    text-decoration: underline;
}

/* ✅ Language Dropdown (independent from big menus) */
.language-dropdown {
    position: relative;
    cursor: pointer;
}

.language-dropdown .lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    min-width: 150px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1002;
    flex-direction: column;
}

.language-dropdown:hover .lang-menu {
    display: flex;
}

/* Countdown Styling */
.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}

.label {
    font-size: 12px;
    font-weight: normal;
    margin-top: 2px;
}

.separator {
    font-size: 22px;
    font-weight: bold;
}

/* Webinar Banner */
.webinar-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #0057b8;
    color: white;
    font-weight: bold;
    text-align: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.btn-save {
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #56b18e;
    font-family: "Roboto", Sans-serif;
    font-size: .8rem;
    font-weight: 600;
    line-height: 15px;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: #e6f2ff;
}

.hero-text h1 {
    font-size: 30px;
    color: #222;
}

.hero-image img {
    width: 150px;
}

/* Popular Features Section */
.popular-features {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.popular-features-container {
    width: 90%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.popular-features-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #001F3F;
}

/* Features Section */
.features {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
.features-container {
    width: 90%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.features-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #001F3F;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-icon {
    font-size: 24px;
    color: #0073e6;
    margin-right: 20px;
}

.feature-item:nth-child(even) .feature-icon {
    margin-right: 0;
    margin-left: 20px;
}

.feature-content {
    max-width: 600px;
}

.feature-content h3 {
    font-size: 18px;
    color: #001F3F;
}

.feature-content p {
    font-size: 14px;
    color: #555;
}

/* Video Section */
.video-section {
    background: #f5f5f5;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.Video-section-header {
    margin-bottom: 10px;
}

.video-container {
    width: 80%;
    max-width: 900px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Demo Section */
.demo-section {
    background: #004080;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.demo-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.demo-text {
    max-width: 600px;
    text-align: left;
}

.demo-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.demo-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.demo-btn {
    background: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
}

.demo-btn:hover {
    background: #218838;
}

.demo-image img {
    width: 400px;
    border-radius: 10px;
}

.demo-section hr {
    width: 90%;
    margin: 30px auto 0;
    border: 0;
    border-top: 2px solid white;
}

/* Floating Demo Button */
.floating-demo-btn {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #4bc09f;
    color: white;
    padding: 10px 20px 8px 20px;
    border-radius: 15px 15px 2px 2px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.5;
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}

.floating-demo-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Footer Section */
.footer {
    background: #004080;
    color: white;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f1f1f1;
}

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

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

.footer ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    text-decoration: underline;
}

/* Social Links */
.footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: white;
    color: #0a0a0a;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
}

.footer .social-links a:hover {
    background: #0073e6;
    color: white;
    padding-left: 8px;
}

/* Dynamic Copyright */
.footer .copyright {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

footer hr {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    border: none;
    margin: 20px 0;
}
