/* Global Styles */
/* GLOBAL FONT SETUP */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #222;
}

body.full-height-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
header {
    background: white;
    border-bottom: 3px solid #ff9933;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo-title h1 {
    color: #138808;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}



header .tagline {
    margin: 0;
    font-size: 12px;
    color: #444;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: 0.3s;
}

header nav a:hover {
    border-bottom: 2px solid #138808;
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* Mobile toggle icon */
.mobile-toggle {
    display: none;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

/* Footer Styles */
footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
    color: #444;
    font-size: 13px;
    border-top: 3px solid #ff9933;
}
footer {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}


/* header style */

/* Animated SHASAN text */
.shasan-logo .logo-link {
    text-decoration: none;
    color: #28a745;
    font-size: 2.2rem;
    font-weight: bold;
    animation: pulseText 2.5s ease-in-out infinite;
}

@keyframes pulseText {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Tagline style */
.tagline {
    font-size: 1rem;
    color: #555;
    margin-top: -5px;
    font-weight: 500;
}


/* Responsive for header */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    header nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    header nav.show-nav {
        display: flex;
    }

    header nav a {
        margin: 10px 0;
    }
  }
  
  /* new footer update */
  body.full-height-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

  
  