/* General Body Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar Styles */
.navbar-container {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 1002;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-container.scrolled {
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 15px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-center .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #4CAF50;
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
    height: auto;
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #4CAF50;
}

.dropdown-menu i {
    font-size: 16px;
    width: 20px;
    color: #4CAF50;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
    width: 200px;
    min-width: 200px;
}

.nav-right {
    display: flex;
    align-items: center;
    height: 80px;
}

.nav-right .nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
}

.nav-right .nav-links i {
    font-size: 18px;
    color: #ffffff;
}

.nav-right .nav-links a {
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.nav-right .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-right .nav-links a:hover i {
    color: #4CAF50;
}

.hamburger {
    display: none;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #4CAF50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.info-card i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.info-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #1f1f1f;
    color: white;
    width: 90%;
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 8px;
    animation: modalSlide 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.modal-body {
    margin-top: 20px;
}

.modal-body h3 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-body li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.modal-body li:last-child {
    border-bottom: none;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-tags span {
    background: rgba(76, 175, 80, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

@keyframes modalSlide {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Quote Form Styles */
.get-quote {
    background: #1f1f1f;
    padding: 60px 0;
    color: white;
    margin: 0;
    position: relative;
}

.get-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #4CAF50 50%, transparent 100%);
    opacity: 0.3;
}

.get-quote .info-container {
    max-width: 800px;
}

.get-quote h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.get-quote p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: center;
}

.quote-form {
    margin-top: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.quote-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.quote-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Button Group Styles */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.info-btn, .start-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    border: none;
}

.info-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.start-btn {
    background: #4CAF50;
    color: white;
}

.info-btn:hover, .start-btn:hover {
    transform: translateY(-2px);
}

.start-btn:hover {
    background: #45a049;
}

/* Info Section Styles */
.info-section {
    background: #1f1f1f;
    color: white;
    padding: 60px 0;
    position: relative;
    margin: 0;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #4CAF50 50%, transparent 100%);
    opacity: 0.3;
}

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

.info-section h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.info-section p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: center;
}

/* Technologies Section Styles */
.technologies .info-cards {
    grid-template-columns: repeat(4, 1fr);
}

/* Support Resources Section */
.support-resources .info-cards {
    grid-template-columns: repeat(3, 1fr);
}

/* Footer Styles */
.footer {
    background-color: #1f1f1f;
    color: #ffffff;
    padding: 20px 0;
    margin-top: auto;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #4CAF50;
}

.footer-right i {
    font-size: 16px;
}

.fa-brands.fa-x-twitter {
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .technologies .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .support-resources .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
    }
    .navbar {
        height: 60px;
        padding: 0 10px;
    }
    .logo {
        height: 60px;
        padding: 0 5px;
    }
    .logo img {
        height: 35px;
    }
    .nav-center {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(31, 31, 31, 0.98);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 10px;
        box-sizing: border-box;
    }
    .nav-center.active {
        display: block;
    }
    .nav-center .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1px;
        padding: 0;
        margin: 0;
    }
    .nav-center .nav-links li a {
        padding: 8px 20px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 4px;
    }
    .nav-right {
        height: 60px;
        padding: 0;
    }
    .nav-right .nav-links {
        gap: 8px;
        margin-right: 10px;
    }
    .nav-right .nav-links a {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
    .nav-right .nav-links i {
        font-size: 16px;
    }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
    .hamburger i {
        font-size: 24px;
        color: #ffffff;
    }
    .hero-banner {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .info-cards {
        grid-template-columns: 1fr;
    }
    .technologies .info-cards {
        grid-template-columns: 1fr;
    }
    .support-resources .info-cards {
        grid-template-columns: 1fr;
    }
    .modal-content {
        width: 95%;
        margin: 50px auto;
        padding: 20px;
    }
}