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

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Garamond', sans-serif;
    scroll-behavior: smooth;
}
:root{
    --skyblue: rgb(30, 173, 229);
    --primary: #f1f1f1;
    --secondary: #bebebe;
}

body {
    background-color: #0a0a0a;
    color: var(--primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--skyblue);
    color: var(--primary) !important;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(15, 15, 15, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 5%;
    background-color: rgba(10, 10, 10, 0.98);
}

.social-icons {
    display: none;
    z-index: 100;
    top: 200px;
    right: 10px;
    position: fixed;
}

/* Social icons floating effect */
.social-icons a {
    display: block;
    margin: 5px 0;
    gap: 2px;
    font-size: 5px;
    color: var(--primary);
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in;
}

.social-icons a:hover {
    color: white;
}

/* Show social icons on scroll */
.show-social-icons {
    display: block;
}

.logo p {
    font-size: 2rem;
    font-weight: 700;
}

.logo-e {
    color: var(--skyblue);
    transition: color 0.3s ease;
}

.logo-web {
    color: var(--primary);
    transition: color 0.3s ease;
}

.logo a:hover .logo-e {
    color: #2ecc71;
}

.logo a:hover .logo-web {
    color: var(--primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    animation: fadeIn 2s ease-in;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--skyblue);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover {
    color: var(--skyblue);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Intro Section */
.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

.intro-text {
    width: 55%;
    padding-right: 40px;
}

.intro h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
   animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    border-radius: 10px;
    padding: 2px 5px;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(231, 234, 235, 0.2);
}

.intro p {
    font-size: 1.1rem;
    margin: 20px 0;
    color: var(--primary);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.intro-image {
    width: 40%;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

/* Stats Section */
.insights {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    padding: 50px 5%;
    margin: 0 auto;
    background-color: #0a0a0a;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-box {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--skyblue);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--skyblue);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.stat {
    font-weight: 700;
    font-size: 3rem;
    color: var(--skyblue);
    margin-bottom: 10px;
}

.description {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
}

/* Projects Section */
.projects {
    padding: 80px 5%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeIn 1s ease-in;
}

.projects h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--skyblue);
    bottom: -10px;
    left: 25%;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
}

.project-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.project-desc {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--skyblue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.project-link {
    color: var(--skyblue);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.project-link:hover {
    color: #2ecc71;
}

/* Skills Section */
.skills {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.skills h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeIn 1s ease-in;
}

.skills h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--skyblue);
    bottom: -10px;
    left: 25%;
}

.skills .container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 30px 0;
}

.skills .project-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    width: 250px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--skyblue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skills .project-header h2 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.skills .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.skills .tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--skyblue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 8px;
}

.skills .tag:hover {
    background-color: var(--skyblue);
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.contact .content {
    width: 100%;
    padding: 0 0 30px 0;
    background-color: #1a1a1a;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeIn 1s ease-in;
}

.contact h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--skyblue);
    bottom: -10px;
    left: 25%;
}

.contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* New Contact Layout */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3, 
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-info h3::after,
.contact-form h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--skyblue);
    bottom: -8px;
    left: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

.contact-method:hover .contact-icon {
    background-color: rgba(52, 152, 219, 0.3);
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #262626;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--skyblue);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--skyblue);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--skyblue);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 30px 5%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid #222;
    transition: all 0.4s ease;
    animation: fadeIn 0.4s ease-in;
}

footer nav {
    margin-bottom: 20px;
}

footer nav ul {


    display: flex;
    gap: 20px;
    justify-content: center;
}

footer nav ul li a img {
    width: 25px;
    height: 25px;
    transition: transform 0.4s ease;
}

footer nav ul li a:hover img {
    transform: translateY(-5px);
}

footer p {
    color: var(--secondary);
    font-size: 0.9rem;
}

footer p a {
    color: var(--skyblue);
    font-weight: 500;
}

footer p a:hover {
    color: #2ecc71;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .intro-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .intro-image {
        width: 70%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .contact-info h3,
    .contact-form h3 {
        text-align: center;
    }
    
    .contact-info h3::after,
    .contact-form h3::after {
        left: 25%;
    }
    
    .contact-method {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .intro h1 {
        font-size: 2.8rem;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .intro-image {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .intro h1 {
        font-size: 2.3rem;
    }
    
    .intro p {
        font-size: 1rem;
    }
    
    .stat-box {
        min-width: 100%;
    }
    
    .skills .project-card {
        width: 100%;
    }
    
    .contact h1 {
        font-size: 2.2rem;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
    }
    
    footer nav ul {
        justify-content: center;
        margin-bottom: 15px;
    }
}

/* Map styling */
.map-method {
    align-items: center;
    margin-bottom: 5px;
}

.map-label {
    font-weight: 500;
}

.map-container {
    width: 100%;
    margin: 0 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        max-width: 100%;
    }
}

/* Contact link styling */
.contact-link {
    color: var(--primary);
    transition: color 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--skyblue);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--skyblue);
}

.contact-link:hover::after {
    width: 100%;
}

/* Project Modal Styles */
.modal-container {
    display: none;
}

.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: #1a1a1a;
    margin: 80px auto;
    padding: 40px;
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--skyblue);
}

.modal-img {
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.modal-img img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--skyblue);
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--skyblue);
    margin: 25px 0 15px;
}

.modal-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 15px;
}

.modal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.modal-content ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 8px;
}

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

.modal-tech .tech-tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 30px;
        margin: 60px auto;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
    
    .modal-content h4 {
        font-size: 1.1rem;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 40px auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    .modal-content h4 {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #0a0a0a;
}

.testimonials h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: var(--skyblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeIn 1s ease-in;
}

.testimonials h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--skyblue);
    bottom: -10px;
    left: 25%;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
    border-left: 3px solid var(--skyblue);
    flex: 1;
    max-width: 500px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-card p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: 0;
    font-family: Georgia, serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--skyblue);
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-source {
    text-align: right;
    margin-top: 20px;
}

.testimonial-source h3 {
    font-size: 1rem;
    color: var(--skyblue);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-source span {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .testimonials h1 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
}

i {
  font-size: 24px;
  color: white;
  padding: 5px;
  transition: color 1s ease;
}

i:hover {
  color: var(--skyblue);
}

.coming-soon {
    background-color: var(--primary);
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}