
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url("images/backgroundimage.png") center/cover fixed no-repeat;
    color: #1f2937;
    padding-top: 70px;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0, 85, 165, .95); 
    backdrop-filter: blur(0);
    transition: all 0.35s ease;
    padding: 0.8rem 0;
}
.navbar.transparent a {
    color: #003366;
}

.navbar.transparent {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.navbar.transparent .dropdown-menu {
    background: rgba(255,255,255,0.95);
}

.navbar.transparent .dropdown-menu li a {
    color: #003366;
}

.navbar.transparent .dropdown-menu li a:hover {
    background: rgba(0,0,0,0.08);
}
.navbar > ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.navbar > ul > li {
    margin: 0 1rem;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.4px;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.navbar ul li a:hover {
    background: rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.navbar.transparent ul li a {
    color: #003366;
}
/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: rgba(0, 85, 165, 0.95); /* same as navbar */
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 999;
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #ffffff; /* match navbar text */
    text-decoration: none;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.15);
}
.dropdown-menu {
    display: none;
    flex-direction: column;
}

.dropdown.active .dropdown-menu {
    display: flex;
}
header {
    background: url("images/bgheader3.png") center/cover no-repeat;
    color: #fff;
    padding: 0.5rem 0;
    text-align: center;
    height: 100%;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: .5rem;
    flex-wrap: wrap;
}
.header-logo {
    width: 110px;
    height: auto;
    
}
.header-text h1 {
    font-size: 3rem;
    font-weight: 1000;
    letter-spacing: 1.2px;
    font-family: 'Cinzel', 'Trajan Pro', serif;
}

.header-text p {
    font-size: .75rem;
    letter-spacing: 1px;
    opacity: 0.85;
    text-align: left;
    
}
.trajan {
    font-family: 'Cinzel', 'Trajan Pro', serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.image-carousel {
    position: relative;
    max-width: 70%;
    height: 85vh;
    min-height: 350px;
    overflow: hidden;
    border-radius: 18px;
    margin: 1.5rem auto;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.carousel-track {
    position: relative;
    height: 100%;
}

.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.75);
    border: none;
    font-size: 1.8rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: #ffffff;
}

.carousel-btn.prev {
    left: 18px;
}

.carousel-btn.next {
    right: 18px;
}


.carousel-indicators {
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #ffffff;
}


@media (max-width: 768px) {
    .image-carousel {
        height: 45vh;
    }

    .carousel-btn {
        font-size: 1.4rem;
        padding: 0.5rem 0.8rem;
    }
}

.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.2);
    transition:
        opacity 1s ease-in-out,
        transform 6s ease;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    image-rendering: auto;
}
.image-carousel:hover .carousel-item.active {
    transform: scale(1);
}

.division-section {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 14px;
    width: 100%;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: #1b4f8a;
    margin-bottom: 10px;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.card {
    min-width: 160px;
    min-height: 150px;
    border-radius: 12px;
    padding: 12px;
    align-items: center;
    font-size: 14px;
    gap: 8px;
    display: flex;              
    flex-direction: column;     
    justify-content: center;   
    align-items: center;
    color: #ffffff;
    text-align: center;

     box-shadow: 
        0 4px 12px rgba(0,0,0,0.08),
        0 10px 25px rgba(0,0,0,0.12);
    
     transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.12),
        0 18px 35px rgba(0,0,0,0.18);
}

.card .icon {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 4px;
}

.card h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin: 0;

    letter-spacing: 0.5px;
}

.card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;

    letter-spacing: 0.8px;
    opacity: 0.95;
}
.link-card {
    transition: all 0.25s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}
.navy {
    background: linear-gradient(135deg, #1E4FA1, #0A2C6F);
}

.maroon {
    background: linear-gradient(135deg, #A61C3C, #7A0C2E);
}

.gold {
    background: linear-gradient(135deg, #E6B800, #C49102 );
}

.teal {
    background: linear-gradient(135deg, #14B8A6,  #0F766E);
}

.gray {
    background: #e5e7eb;
    color: #333;
}

.secondary .card {
    height: 120px;
}

.see-more {
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    background: #e0e6ed;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.see-more:hover {
    background: #cfd6df;
}
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}

.container {
    width: 70%;
    margin: auto;
    padding: .5rem 0;
}


.banner {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.banner h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}


.updates {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.updates h3 {
    margin-bottom: 0.8rem;
    color: #003366;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.4rem;
}

.updates ul li {
    margin-bottom: 0.4rem;
}
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.updates, .banner {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.updates:hover, .banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}
.contact-section {
    padding: .5rem 0;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b4f8a;
    margin-bottom: 10px;
  
}

.contact-subtitle {
    font-size: 12px;
    margin: 12px;
    color: #7a7979;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.contact-card {
    font-size: 12px;
    background: #ffffff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto .3rem auto;
    background: #1b4f8a;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card h4 {
    margin-bottom: 0.3rem;
    color: #1b4f8a;
    font-weight: 200;
}

.contact-card p {
    color: #333;
    font-weight: 200;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
/* See More Button */
.see-more-container {
    text-align: center;
    margin: 30px 0;
}

.see-more-btn {
    background: #cfd4da;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.see-more-btn:hover {
    background: #b8bec6;
}

/* Hidden Section */
.stats-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

/* Active (shown) */
.stats-section.active {
    max-height: 1000px;
    margin-top: 20px;
}

/* Stats Wrapper */
.stats-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.stats-card {
    background: #f5f7fa;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stats-card h3 {
    background: #1e4e8c;
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.stats-card p {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 6px 0;
}

.stats-card .total {
    margin-top: 15px;
    background: #dbe7f6;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.contact-grid{
    background: #a9a9ab;
    color: #0f172a;
    text-align: center;
    padding: .5rem 0;
    font-size: 0.70rem;
    opacity: .5;

}

.link-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.weelmat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.weelmat-logo {
  height: 100px;
  width: auto;
}

@media (max-width: 720px) {
  .weelmat-header {
    flex-direction: column;
  }

  .weelmat-logo {
    height: 60px;
  }
}
.table-loading {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.table-loading .spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #e3edf7;
  border-top: 5px solid #174a8b;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

.table-loading p {
  color: #667085;
  font-size: 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}