




.hero .hero-content{
    margin-left: 20px;
    /* min-width: 500px; */
}

.hero .map-info{
    display: flex;
    width: 100%;
    gap: 5%;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .map-info .info{
    width: 49%;
    min-width: 500px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    
    .hero-content{
        width: 40%;
        margin-left: 0px;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        animation: fadeInRight 1s ease-out;
        width: 40%;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #289DD2;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    
    .section-title{
        text-align: center;
        font-size: 25px;
        margin-bottom: 4rem;
    }
    
    .hero-content{
        width: 80%;
        margin-top: 20%;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #289DD2;
    }
    
    .hero-content .description{
        font-size: small;
        width: 100%;
    }
    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 0rem;
        line-height: 1;
    }
    
    .hero-content .cta-buttons .btn{
        padding: 0.5rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-visual {
        /* flex: 1; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        animation: fadeInRight 1s ease-out;
        max-width: 600px;
    }
}

.hero .map-info .info button {
    background-color: #3AB077;
    padding: 20px;
    border-radius: 20px;
    border: none;
}

.hero .map-info .map{
    width: 35%;
}

.hero .map-info .map img{
    width: 100%;
}

.hero .map-info .info h1{
    color: #289DD2;
}

.hero .map-info .info h2{
    margin-top: 20px;
}

.hero .map-info .info p{
    margin-top: 20px;
}

.hero-content {
    /* flex: 1; */
    /* max-width: 600px; */
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



.highlight {
    background: linear-gradient(135deg, #3AB077, #289DD2);
    /* background: linear-gradient(135deg, #289DD2, #4169E1); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: #289DD2;
    margin-bottom: 1rem;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3AB077, #289DD2);
    color: #fff;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #3AB077;
    border: 2px solid #3AB077;
}

.btn-secondary:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-3px);
}



@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.big-eye {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(65, 105, 225, 0.1));
    border-radius: 50%;
    border: 3px solid #289DD2;
    position: relative;
    box-shadow: 0 0 60px #289DD2, inset 0 0 40px #289DD2;
    animation: watchful 4s ease-in-out infinite;
}

@keyframes watchful {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.big-pupil {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 35% 35%, #3AB077, #16252B);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px #16252B
}

.iris-shine {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 25%;
    filter: blur(5px);
}

.features {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.02);
}



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

.feature-card {
    background: rgba(64, 224, 208, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(64, 224, 208, 0.1);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}



.feature-card p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.download-section {
    padding: 6rem 5%;
    text-align: center;
}

.download-badge {
    display: inline-block;
    margin-top: 2rem;
    transition: transform 0.3s;
}

.download-badge:hover {
    transform: scale(1.05);
}

.faq-section {
    padding: 6rem 5%;
    background: rgba(0, 0, 0, 0.2);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(64, 224, 208, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #289DD2;
}

.faq-icon {
    font-size: 1.5rem;
    color: #289DD2;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-section {
    padding: 6rem 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(64, 224, 208, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.4);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #289DD2;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    color: #289DD2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #4169E1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #289DD2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #4169E1;
}

.contact-form {
    background: rgba(64, 224, 208, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #289DD2;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #289DD2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.btn-primary span img{
    width: 20px;    
}

#subject option{
    background-color: #16252B;
}


nav ul {
    gap: 1rem;
}

.big-eye {
    width: 300px;
    height: 180px;
}

.big-pupil {
    width: 80px;
    height: 80px;
}

.contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}
