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



:root {
    --sisw-blue: #007bff;
    --sisw-dark-blue: #0056b3;
    --sisw-light-blue: #e6f0ff;
    --sisw-bg-dark: #0a192f;
}

/* Reset et base */
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--sisw-bg-dark);
      line-height: 1.6;

}

.major {
    color : var(--sisw-blue);
}


.sisw-bg-blue {
    background-color: var(--sisw-blue);
    color: white;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.sisw-bg-dark {
    color: white;
    background-color: var(--sisw-bg-dark);
}

.sisw-bg-dark-blue {
    background-color: var(--sisw-dark-blue);
    color: white;

}

.sisw-bg-lg {
    background-color: #fdfdfe;
    color: black;

}

.sisw-bg-wh {
    background-color: white;
    color: black;
}

header.sisw-bg-dark-blue {
    background-color: var(--sisw-bg-dark);
    color: white;

    padding-top: 5rem;
    padding-bottom: 5rem;
}

.navbar-brand
{
    color: var(--sisw-blue) !important;
     font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.025em;
}

.nav-link, .btn-light {
    color: white !important;
}

.nav-link.active {
    font-weight: bold;
}

.sisw-intro-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.sisw-intro-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: auto;
}

.sisw-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sisw-card:hover {
    transform: translateY(-5px);
}

.sisw-card-icon {
    font-size: 3rem;
    color: var(--sisw-blue);
}

.sisw-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.sisw-section-title2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.sisw-footer-bg {
    background-color: var(--sisw-dark-blue);
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

.sisw-btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.sisw-btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.sisw-btn-primary {
    color: white;
    background-color: var(--sisw-blue);
    border-color: var(--sisw-blue);
    padding: 10px 20px;
    border-radius: 10px;
}

.sisw-btn-primary:hover {
    color: white;
    background-color: var(--sisw-dark-blue);
    border-color: var(--sisw-dark-blue);
}




#footer
{
    margin-bottom: 0;
    text-shadow: -1px -1px 0 rgba(0,0,0,1);
    position: relative;
    z-index: 2;
}

#footer h2
{
    font-size: 1.35em;
    color: #fff;
}

#footer a
{
   color: white
}

#footer ul li
{
    border-top: solid 1px;
    border-color: #444;
    border-color: rgba(255,255,255,0.075);
}

#footer ul li:first-child
{
    border-top: 0;
}

#footer ul li a
{
    text-decoration: none;
}

#footer ul li 
{
    padding: 0.50em 0 0.50em 0;
    list-style : none;
}

#footer td {
    padding: 10px 40px 10px 0px; 
}






.modern-footer {
    background: linear-gradient(135deg, #fffff 0%, var(--sisw-dark-blue) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sisw-blue);
    text-decoration: none;
}

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sisw-blue), transparent);
}

.contact-info {
    color: white;
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--sisw-blue);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--sisw-blue);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.quick-links {
    display: grid;
 /*   grid-template-columns: repeat(2, 1fr);*/
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.quick-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-links a:hover {
    color: var(--sisw-blue);
    transform: translateX(5px);
}

.quick-links a::before {
    content: '→';
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-links a:hover::before {
    opacity: 1;
}

.newsletter-input {
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-subscribe {
    background: linear-gradient(45deg, var(--sisw-blue), #a363d9);
    border: none;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.footer-bottom {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
}

.footer-bottom a {
    color: var(--sisw-blue);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .quick-links {
        grid-template-columns: 1fr;
    }
}