/* Base Styles */
:root {
    --sunshine-yellow: #FFD700;
    --sunshine-orange: #FFA500;
    --tech-blue: #0077B6;
    --dark-blue: #023E8A;
    --light-bg: #F8F9FA;
    --text-dark: #212529;
    --text-light: #F8F9FA;
    --section-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Sunshine Effect */
.sunshine-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255,215,0,0) 0%, 
        rgba(255,215,0,0.8) 50%, 
        rgba(255,215,0,0) 100%);
    box-shadow: 0 0 15px var(--sunshine-yellow);
    animation: sunshineGlow 3s infinite alternate;
}

@keyframes sunshineGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    color: var(--sunshine-orange);
    margin-right: 0.5rem;
    font-size: 1.8rem;
    animation: sunPulse 4s infinite;
}

.tech-text {
    color: var(--tech-blue);
    font-weight: 600;
    margin-left: 0.3rem;
}

@keyframes sunPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 1.1rem;
    color: var(--tech-blue);
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sunshine-yellow), var(--sunshine-orange));
    transition: width 0.3s ease;
}

.nav-link:hover:before {
    width: 100%;
}

.nav-link:hover {
    color: var(--tech-blue);
}

.nav-link.active {
    color: var(--sunshine-orange);
}

.nav-link.active:before {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--sunshine-yellow), var(--sunshine-orange));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--tech-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: var(--section-bg);
    padding: 6rem 5% 8rem;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subheading {
    font-size: 1.2rem;
    color: var(--sunshine-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.main-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    line-height: 1.2;
}

.main-heading .highlight {
    color: var(--sunshine-orange);
    position: relative;
}

.main-heading .highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.company-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    margin-top: 3rem;
}

.expert-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--tech-blue), var(--dark-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expert-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.phone-number {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phone-number:before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.expert-btn:hover .phone-number {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 5% 6rem;
    }
    
    .subheading {
        font-size: 1rem;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .company-description {
        font-size: 1rem;
    }
    
    .expert-btn {
        flex-direction: column;
        padding: 1rem;
    }
    
    .phone-number {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}