* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.text-balance {
    text-wrap: balance;
}

img {
    image-rendering: auto;
}

/* Header */
#navToggle {
    position: relative;
}

/* Icons ringing */
.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    animation: ringPulse 1.8s infinite;
    z-index: 0;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hamburger-line {
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #047857;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    transform: translateY(-6px);
}

.hamburger-line:nth-child(3) {
    transform: translateY(6px);
}

#navToggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

#navToggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#navToggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero Section */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 51, 41, 0.85), rgba(23, 51, 41, 0.5), rgba(23, 51, 41, 0.3));
    z-index: 1;
}

.hero-slide>img {
    position: relative;
    z-index: 0;
}

/* Contact Modal */
.input-style {
    width: 100%;
    border: 1px solid #d1fae5;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.input-style:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Footer */
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #d1fae5;
    transition: all 0.2s ease;
}

.footer-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}