
/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.transitional-break{
    background: linear-gradient(to right, rgb(10, 185, 10), rgb(1, 1, 184));
}
.spacer-100{
    height: 100px;
}
.spacer-50{
    height:50px;
}
.i-support{
    display:none;
}
.SI {
    background:  linear-gradient(to right, rgb(6, 116, 6), rgb(1, 1, 184));
    background-clip: text;
    color: transparent;
    text-decoration: none;
}
.S1 {
    color: rgb(16, 207, 89);
    text-decoration: none;
}
.SIplus {
    text-decoration: none;
    transform:  scale(1.05, 1.05) ease;
}
.SIplus:hover {
    background:  linear-gradient(to right, rgb(6, 116, 6), rgb(1, 1, 184));
    padding:5px;
    border-radius: 15px;
    color: white;
}

/* Nav Bar Styles VERSION 2 */

/* Navbar Styling with Sticky Effect */
.navbar  {
    position: sticky;
    top: 0;
    z-index: 1000; 
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} 
.nav-container{
    width:100%;
}

/* Top Row Styling */

.contact-button {
    background-color: #03aa11;
    color: white;
    padding: 15px 50px;
    border:solid 3px darkgreen;
    border-radius: 20px;
    text-decoration: none;
    text-align: right;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background-color: #1105b6;
}
.content-button{
    color: white;
    font-weight: 500;
    font-size: 25px;
    padding: 0 20px 0 20px;
    transition: color 0.3s ease;
    text-decoration: none;
}
.content-button:hover {
    background-color: #09f32865;
    border-radius: 20px;
    color:white;
}
.img2{
   height:80px;
   width: auto;
}
.nav2row {
    background: linear-gradient(to right, rgb(10, 185, 10), rgb(1, 1, 184));
}
.navbar {
    padding: 10px 15px; 
}
.navbar-toggler {
    background-color: white;
    border: none;
    outline: none;
    box-shadow: none; 
}
.nav2row .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Second Row: Navigation Links */
.nav-link {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.nav-link a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}
.nav-link a:hover {
    color: #40f030;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container, .navbar{
        width:100%;
        margin:0;
    }
    .contact-button{
        padding: 5px 20px;
    }
    .navbar-toggler {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none; 
        padding: 5px 10px 8px 5px;
    }
    .subNavRow {
        margin-top: 20px;
    }
}
@media (max-width: 500px) and (orientation: landscape) {
    .nav-container, .navbar{
        width:80%;
        margin:0;
    }
    .contact-button{
        padding: 5px 20px;
    }
    .navbar-toggler {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none; 
        padding: 5px 10px 8px 5px;
    }
    .subNavRow {
        margin-top: 20px;
    }
}
@media (max-width: 500px) {
    .nav-container, .navbar{
        width:100%;
        margin:0;
    }
    .contact-button{
        padding: 5px 20px;
    }
    .navbar-toggler {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none; 
        padding: 5px 10px 8px 5px;
    }
    .subNavRow {
        margin-top: 20px;
    }
}


/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.footer-container {
    width:100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-content p {
    margin: 0;
    font-size: 14px;
}
.footer-links {
    margin: 10px 0;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}
.footer-links a:hover {
    text-decoration: underline;
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    display: inline-block;
    margin: 0 10px;
}
.favicon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}
.favicon:hover {
    transform: scale(1.2);
}
