@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #00D962;
    --green-dark: #00B350;
    --gold: #FFD700;
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --gray: #2A2A2A;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navbar with Dropdowns */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 98, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--green));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu > li > a:hover {
    color: var(--green);
}

.nav-menu > li > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    border: 1px solid rgba(0, 217, 98, 0.3);
    border-radius: 10px;
    min-width: 240px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 217, 98, 0.1);
    color: var(--green);
    padding-left: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 217, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 98, 0.6);
}

/* Hero Section - Fixed no overlap */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 98, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.green-text {
    color: var(--green);
    text-shadow: 0 0 30px rgba(0, 217, 98, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.disclaimer-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.disclaimer-box i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 98, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(0, 217, 98, 0.1);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(0, 217, 98, 0.3);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--green));
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: var(--dark);
    border-top: 1px solid rgba(0, 217, 98, 0.1);
    border-bottom: 1px solid rgba(0, 217, 98, 0.1);
}

.partners-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-item:hover {
    color: var(--green);
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--green);
}

/* Services Overview Section */
.services-overview {
    padding: 8rem 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--dark);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 98, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(0, 217, 98, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 217, 98, 0.5);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    text-shadow: 0 0 10px var(--green);
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 98, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.glow-btn {
    animation: glow-pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 217, 98, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 217, 98, 0.6);
    }
}

/* Footer */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 217, 98, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: var(--green);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--green);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 98, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 217, 98, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 217, 98, 0.6);
}

.chat-button i {
    font-size: 1.8rem;
    color: var(--white);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 98, 0.3);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-header i {
    font-size: 2rem;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.online-status {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-status i {
    font-size: 0.6rem;
    color: #4ade80;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 98, 0.3);
    border-radius: 10px;
}

.message {
    display: flex;
    gap: 1rem;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 1.2rem;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: var(--gray);
    padding: 1rem;
    border-radius: 15px;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content p {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.user-message .message-avatar {
    background: var(--gray);
}

.chat-input {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 217, 98, 0.2);
    display: flex;
    gap: 1rem;
}

.chat-input input {
    flex: 1;
    background: var(--gray);
    border: 1px solid rgba(0, 217, 98, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-family: inherit;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 10px rgba(0, 217, 98, 0.3);
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 217, 98, 0.5);
}

.chat-quick-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 217, 98, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-quick-actions button {
    background: var(--gray);
    border: 1px solid rgba(0, 217, 98, 0.3);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-quick-actions button:hover {
    background: rgba(0, 217, 98, 0.2);
    border-color: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-box {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

/* Show company name next to logo */
.nav-logo .company-name {
    display: inline-block !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 0.5rem;
}

.nav-logo img {
    height: 40px;
}

/* Fix logo display */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-logo .company-name {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

/* Make sure no duplicate text appears */
.nav-logo span:not(.company-name) {
    display: none !important;
}

/* Glowing gold and white company name */
.nav-logo .company-name {
    background: linear-gradient(135deg, #FFD700, #FFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: gold-glow 3s ease-in-out infinite;
}

@keyframes gold-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
}

/* Make it even more visible */
.nav-logo .company-name {
    font-size: 1.2rem !important;
    letter-spacing: 0.5px;
}

/* Contact Section on Home Page */
.contact-home {
    padding: 6rem 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card-home {
    background: var(--black);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 98, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card-home:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 20px 60px rgba(0, 217, 98, 0.3);
}

.contact-icon-home {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.contact-card-home:hover .contact-icon-home {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 217, 98, 0.5);
}

.contact-icon-home i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-card-home h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.contact-email {
    display: block;
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--green-dark);
    text-shadow: 0 0 15px var(--green);
}

.contact-card-home p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: var(--black);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 98, 0.3);
}

.contact-detail-home {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-detail-home i {
    font-size: 2.5rem;
    color: var(--green);
    filter: drop-shadow(0 0 10px var(--green));
}

.contact-detail-home strong {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-detail-home span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Chat Badge "Live" text */
.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00ff00;
    color: var(--black);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% {
        box-shadow: 0 0 5px #00ff00;
    }
    50% {
        box-shadow: 0 0 20px #00ff00;
    }
}
