/* General Reset and Body Styling */
* {
    box-sizing: border-box;
    font-family: 'Lobster Two', 'Arial', sans-serif;
}

/* Global Styles */
body {
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: #2ecc71 !important;
    font-weight: 600;
}

label {
    color: #e0e0e0 !important;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Header and Navigation */
header.navbar {
    display: flex;
    background-color: #161b22;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 2rem;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-weight: bold;
}

.navbar a {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2a9d8f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar-item:hover {
    color: #2a9d8f !important;
}

.navbar-item {
    color: white !important;
}

.navbar-burger {
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
}

.hero .title {
    color: #2ecc71 !important;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    color: #e0e0e0;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.box {
    background-color: #1e1e1e;
    border-left: 4px solid #2ecc71;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.15);
}

.box .subtitle {
    color: #2ecc71 !important;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.box p {
    color: #c9c9c9;
}

/* Contact Form Section */
.form-container {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 50px auto;
}

.form-container .title {
    margin-bottom: 30px;
    color: #2ecc71 !important;
}

.input,
.textarea {
    background-color: #252525;
    border: 1px solid #333;
    color: #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.input:focus,
.textarea:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.button.is-primary {
    background-color: #2ecc71;
    color: #121212;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
    padding: 10px 25px;
    height: auto;
}

.button.is-primary:hover {
    background-color: #27ae60;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

/* Footer Section */
.footer {
    background-color: #0a0a0a;
    color: #888;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2ecc71, transparent);
}

/* footer-icons.css */
.social-icons a i {
    color: #22c55e;
    /* A nice green shade */
    transition: color 0.2s;
}

.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Add fix for footer column alignment */
.footer .column.is-4 {
    text-align: center !important;
    float: none !important;
    margin: 0 auto !important;
}

.social-icons a:hover i {
    color: #16a34a;
    /* Darker green on hover */
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar a {
        font-size: 0.9rem;
        color: white !important;
    }

    .hero .title {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 30px 15px;
    }

    .navbar-menu {
        background-color: #000;
        box-shadow: 0 8px 16px rgba(10, 10, 10, .1);
        padding: .5rem 0
    }
}

/* Animation Enhancements */
.columns {
    margin-top: 20px;
}

.column {
    padding: 15px;
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom Animation for Services */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}