

@charset "UTF-8";

/* Header area  */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Overpass', sans-serif;
}


body {
    background-color: #ffffff;
    color: #FF6F61;  
}



/* ================= Banner ================= */
.banner {

    background: linear-gradient(135deg, #2c3e50, #34495e);
    text-align: center;
    color: white;
    padding: 0.6rem 1rem;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #FF6F61;
}
.banner h1 {
    font-size: clamp(1rem, 1.4vw + 0.5rem, 1.5rem);
    font-weight: 700;
}
.banner h3 {
    font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
    font-weight: 600;
    margin-top: 0.2rem;
}
.banner p {
    font-size: clamp(0.75rem, 0.9vw + 0.2rem, 0.95rem);
    margin-top: 0.3rem;
    max-width: 650px;
    line-height: 1.3;
    padding: 0 0.5rem;
}
.complaints {
    margin-top: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.complaint-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(0.7rem, 0.9vw + 0.2rem, 0.9rem);
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}
.complaint-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    animation: zoomInOut 2s ease-in-out infinite;
}
@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ================= Header ================= */
.ht-online-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 8px 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}
.nsc-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
.nsc-logo img {
    height: clamp( 5vw );
    width: auto;
    max-width: 95%;
}

/* Toolbar */
.tool-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tool-bar button,
.tool-bar a {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: none; 
    padding: 4px 8px;   
    border-radius: 4px; 
    cursor: pointer;
    font-size: 12px;    
    text-decoration: none;
    color: white; 
    transition: 0.3s;
}


/* Hover Effect */
.tool-bar button:hover,
.tool-bar a:hover {
    background: #ddd;
    color: green;   
    font-weight: bold; 
}

/* Dark Mode */
.dark-mode {
    background: #1e1e1e;
    color: #ffffff;
}

/* Main Content */
#main-content {
    padding: 20px;
}
/* ================= Navbar ================= */
.nsc-nav-1 {
    background: #f1f0ed;
    display: flex;
    align-items: center;
    justify-content: flex-satrt;
    padding: 12px 16px; 
    border-top: 1px solid #FF6F61;
    position: relative;
}
.nsc-nav-1-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.nsc-nav-1-links a {
    text-decoration: none;
    color: #0f4c89;
    font-weight: bold;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}
.nsc-nav-1-links a:hover {

    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;      
    transform: translateX(5px);
}
.nsc-nav-1-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #FF6F61;
   
}
.nsc-nav-1-links a:hover::after {
    width: 100%;
}




.nsc-dropdown {


}

/* ================= Dropdown ================= */
.nsc-dropdown-content {
    position: absolute;
    min-height: 200px; 
    left: 0;
    width: 100%;             
    background: #ffffff;    
    padding: 20px 30px;
    border-radius: 1px;
    grid-template-columns: repeat(3, 1fr) 220px;
    gap: 20px;
    display: none;
    animation: nsc-fadeDown 0.35s ease forwards;
    z-index: 999;            
}

/* Show on hover */
.nsc-dropdown:hover .nsc-dropdown-content,
.nsc-dropdown-content:hover {
    display: grid;
}




.nsc-dropdown h4 { 
    font-size: 13.5px;
    font-weight: 600;
    color: green;
    margin-bottom:1px;
    padding-left: 6px;
}

.nsc-dropdown ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 6px;
}

.nsc-dropdown ul li a {
    font-size: 13px;
    color: black;
    padding: 6px 8px;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
}

.nsc-dropdown ul li a:hover {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    transform: translateX(5px);
}

/* ================= Dropdown Visibility ================= */
.nsc-dropdown-content.active {
    display: grid;
    animation: nsc-fadeDown 0.35s ease forwards;
}

@keyframes nsc-fadeDown {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================= Mobile Toggle ================= */
.nsc-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.nsc-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0f4c89;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================= Responsive ================= */
/* Large desktop (1200px and above) */
@media (min-width: 1200px) {
    .nsc-dropdown-content {
        grid-template-columns: repeat(4, 1fr); 
        padding: 25px 40px;
    }
}

/* Tablets landscape (769px–1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .nsc-dropdown-content {
        grid-template-columns: 1fr 1fr; 
        padding: 20px;
    }
}

/* Tablets & small devices (max 768px) */
@media (max-width: 768px) {
    .nsc-online-header {
        flex-direction: column;
    }
    .tool-bar { margin-top: 8px; }

    .nsc-nav-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .nsc-menu-toggle { display: flex; }

    .nsc-nav-1-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    .nsc-nav-1-links.active {
        display: flex;
    }

    .nsc-dropdown-content {
        position: relative;   
        grid-template-columns: 1fr; 
        width: 100%;
        padding: 15px;
    }
}

/* Small phones (max 480px) */
@media (max-width: 480px) {
    .nsc-logo img { height: 38px; }

    .tool-bar a {
        font-size: 12px;
        padding: 4px 6px;
    }

    .nsc-dropdown-content {
        padding: 12px;
    }
}

/* Extra small phones (max 360px) */
@media (max-width: 360px) {
    .nsc-dropdown-content {
        padding: 10px;
        font-size: 12px;
    }
}

.nsc-nav-1 a {
    font-size: 1.2rem; 
    padding: 0.5rem 1rem; 
}

.nsc-dropdown-content {
    padding: 1.5rem;
}

.form-header {
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: #FF6F61;
    word-break: break-word;
    margin-bottom: 20px;
}
body {
    font-size: 1rem; /* 16px default */
}



/* =======================================================*/

/* Footer area */
.ht-Online-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.75rem;
    line-height: 1.4;   
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    border-top: 2px solid #FF6F61;  
 
    bottom: 0;
    left: 0;
    width: 100%;
}

.ht-Online-footer > div {
    flex: 1 1 200px
    margin: 10px;
}


.ht-Online-footer h3 {
    margin-top: 0.5px;
    font-size: 1rem;
    margin-bottom: 0.5px; 
    color:  #FF6F61; 
    position: relative;
    letter-spacing: 0.7px;
    transition: color 0.3s ease; 
}

.ht-Online-footer h3:hover {
    color: #4facfe;
}

.ht-Online-footer h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #00f2fe;
    margin-top: 6px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ht-Online-footer h3:hover::after {
    width: 55px;
    background: #FF6F61; 
}

.ht-Online-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ht-Online-footer ul li {
    margin: 6px 0;
}

.ht-Online-footer ul li a {
        padding: 5px;
    color:white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
    position: relative;
}

.ht-Online-footer ul li a::before {
    content: " ➜  ";
    color: #00f2fe;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    left: -18px;
}

.ht-Online-footer ul li a:hover {
    color: #00f2fe;
    transform: translateX(5px);
}

.ht-Online-footer ul li a:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.ht-Online-contact-info p,
.ht-Online-contact-info a {
    font-size: 0.75rem;
    margin: 5px 0;
    color:white; 
    line-height: 1.5;
    transition: color 0.3s ease;
}

.ht-Online-contact-info a:hover {
    color: #00f2fe;
}

.ht-Online-social-icons {
    margin-top: 10px;
}

.ht-Online-social-icons a {
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.ht-Online-social-icons a:hover {
    background:  #FF6F61;  
    color: #111;
    transform: scale(1.15) rotate(5deg); 
}

.ht-Online-footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid  #FF6F61;   
    padding-top: 8px;
    font-size: 0.75rem;
    color:white; 
    letter-spacing: 0.6px;   
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}


.ht-Online-social-icons {
    display: flex;
    gap: 12px;
}

.ht-Online-social-icons img.social-icon {
    width: 28px;     /* adjust size */
    height: 28px;
    border-radius: 6px;  /* optional rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ht-Online-social-icons img.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}



/*toolbar*/
/* Toolbar container */
/* Toolbar */
.toolbar {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 12px;
    flex-wrap: wrap;
}

.toolbar button,
.toolbar a {
    max-width: fit-content;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: none; 
    padding: 4px 8px;   
    border-radius: 4px; 
    cursor: pointer;
    font-size: 12px;    
    text-decoration: none;
    color: white; 
    transition: 0.3s;
}


/* Hover Effect */
.toolbar button:hover,
.toolbar a:hover {
    background: #ddd;
    color: green;   
    font-weight: bold; 
}

/* Skip Menu link */
.skip-menu {
    color: white;
    background-color: #0066cc;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-right: auto; /* pushes it to the left */
}

/* Hide visually but keep accessible (optional) */
.skip-menu.visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-menu.visually-hidden:focus {
    position: static;
    width: auto;
    height: auto;
    left: auto;
    overflow: visible;
}





    
   .footer-copy {
    width: 100%; 
    text-align: center; 
    margin-top: 0; 
    
    background: linear-gradient(135deg, #2c3e50, #4d6073);
    color:white;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;  
    
    bottom: 0;
    left: 0;
  
    padding:20px;
  
  
}





