﻿body{
  margin:0;
  background:#f2f4f7;
  font-family:"Segoe UI",sans-serif;
  overflow-x: hidden;
}
body, html {
  overflow-x: hidden;
}

/* HEADER */
.gov-stripe{
  position:relative;
  width:100%;
  padding:50px 20px 70px; 
  background:#ffffff;
  overflow:hidden;
  text-align:center;
}


 
 
 
 /* =======================
   HEADER CONTAINER
======================= */
.custom-header {
    position: relative;
    width: 100%;
    height: 110px; /* Adjust height as needed */
    display: flex;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 8px solid #00acc1; /* teal bottom bar */
}


.header-left {
    position: relative;
    width: 20%;
    min-width: 150px; /* responsive minimum width */
    background-color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.header-logo {
    max-height: 70px;       /* adjust as needed */
    max-width: 100%;
    object-fit: contain;     /* maintain aspect ratio */
    display: block;
}


/* angled cut on the blue section */
.header-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background-color: #1e3a8a;
    transform: skewX(-20deg);
    z-index: 1;
}

/* teal accent ribbon behind the blue */
.header-left::before {
    content: "";
    position: absolute;
    top: 0;
    right: -70px;
    width: 100px;
    height: 100%;
    background-color: #00acc1;
    transform: skewX(-20deg);
    z-index: -1;
}



.header-right {
    flex: 1;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    padding: 20px;            /* spacing around content */
}

.content-box {
    max-width: 600px;
    text-align: center;       /* center text */
}

/* TAGLINE AND DESCRIPTION */
.tagline {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.description {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: Inter;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;       /* vertical center */
    justify-content: space-between;  /* content centered + logo right */
    padding: 0 20px;           /* horizontal spacing */
}

.content-box {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;            /* centers tagline + description */
}

.right-logo {
    max-height: 70px;          /* adjust as needed */
    object-fit: contain;
}



  /* Tablet / Small Desktop (<= 1024px) */
@media (max-width: 1024px) {
  .custom-header {
    height: 100px;
  }

  .header-left {
    width: 25%;
    min-width: 130px;
  }

  .header-logo {
    max-height: 60px;
  }

  .header-left::after {
    right: -30px;
    width: 60px;
  }

  .header-left::before {
    right: -50px;
    width: 80px;
  }

  .header-right {
    padding: 15px;
  }

  .content-box {
    max-width: 500px;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .right-logo {
    max-height: 60px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .custom-header {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .header-left {
    width: 100%;
    min-width: unset;
    height: 80px;
    justify-content: center;
  }

  .header-left::after,
  .header-left::before {
    display: none; /* remove skew on small screens */
  }

  .header-logo {
    max-height: 50px;
  }

  .header-right {
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
  }

  .content-box {
    max-width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .tagline {
    font-size: 1rem;
  }

  .description {
    font-size: 0.85rem;
  }

  .right-logo {
    max-height: 50px;
    margin-top: 10px;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .custom-header {
    height: auto;
    padding: 8px 0;
  }

  .header-logo, .right-logo {
    max-height: 40px;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .description {
    font-size: 0.8rem;
  }

  .content-box {
    margin: 5px 10px;
  }
}




/* ============================
   EXTRA LARGE DESKTOP (≥1600px)
=============================== */
@media (min-width: 1600px) {
  .custom-header { height: 130px; }
  .header-left { width: 18%; }
  .header-logo, .right-logo { max-height: 85px; }
  .tagline { font-size: 1.4rem; }
  .description { font-size: 1.3rem; }
}

/* ============================
   LARGE DESKTOP (1440px–1599px)
=============================== */
@media (max-width: 1599px) and (min-width: 1440px) {
  .custom-header { height: 120px; }
  .header-logo, .right-logo { max-height: 80px; }
  .tagline { font-size: 1.3rem; }
}

/* ============================
   DESKTOP NORMAL (1200px–1366px)
=============================== */
@media (max-width: 1366px) and (min-width: 1200px) {
  .custom-header { height: 115px; }
  .header-left { width: 22%; }
  .header-logo, .right-logo { max-height: 70px; }
  .content-box { max-width: 550px; }
}

/* ============================
   TABLET LANDSCAPE (680px–767px)
=============================== */
@media (max-width: 767px) and (min-width: 680px) {
  .custom-header { padding: 12px 0; }
  .header-left { height: 85px; }
  .header-logo, .right-logo { max-height: 52px; }
  .tagline { font-size: 0.95rem; }
  .description { font-size: 0.82rem; }
}

/* ============================
   MOBILE LARGE (500px–599px)
=============================== */
@media (max-width: 599px) and (min-width: 500px) {
  .custom-header { padding: 10px 0; }
  .header-left { height: 75px; }
  .header-logo, .right-logo { max-height: 45px; }
  .tagline { font-size: 0.9rem; }
  .description { font-size: 0.78rem; }
}

/* ============================
   MOBILE MEDIUM (360px–479px)
=============================== */
@media (max-width: 479px) and (min-width: 360px) {
  .custom-header { padding: 0px 0; }
  .header-left { height: 65px; }
  .header-logo, .right-logo { max-height: 38px; }
  .tagline { font-size: 0.88rem; }
  .description { font-size: 0.72rem; }
}

/* ============================
   MOBILE SMALL (300px–359px)
=============================== */
@media (max-width: 359px) and (min-width: 300px) {
  .custom-header { padding: 8px 0; }
  .header-left { height: 60px; }
  .header-logo, .right-logo { max-height: 34px; }
  .tagline { font-size: 0.8rem; }
  .description { font-size: 0.68rem; }
}

/* ============================
   ULTRA SMALL PHONES (<300px)
=============================== */
@media (max-width: 299px) {
  .custom-header { padding: 6px 0; }
  .header-left { height: 55px; }
  .header-logo, .right-logo { max-height: 30px; }
  .tagline { font-size: 0.75rem; }
  .description { font-size: 0.62rem; }
}



















/* NAVIGATION */

.new-nav a{
  color:white;
  margin-right:18px;
  font-size:14px;
  text-decoration:none;
  font-weight:500;
}

.new-nav .nav-right a{
  margin-right:60px;
}

/* NAV LINK HOVER EFFECT */
.new-nav a {
  color: white;
  margin-right: 18px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover effect */
.new-nav a:hover {
  color: #fcd34d; /* change text color on hover (gold/yellow) */
  transform: scale(1.05); /* slight pop effect */
}

/* Optional: underline effect */
.new-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #fcd34d;
  transition: width 0.3s ease;
}

.new-nav a:hover::after {
  width: 100%;
}

/* Hide both buttons on desktop */
.hamburger,
.close-btn {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {

  /* Hide hamburger by default */
  .hamburger {
    display: block;
    z-index: 9999;
  }

  /* Close button (hidden initially) */
  .close-btn {
    display: none;
    position: absolute;  /* keep it absolute */
    top: 250px;         /* inside menu padding */
    right: 15px;         /* inside menu padding */
    font-size: 24px;
    color: white;
    z-index: 10000;      /* above menu items */
  }

  /* Menu items hide first */
  .nav-left, .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1e3a8a;
    padding: 50px 15px 15px 15px; /* top padding leaves space for close button */
    margin-top: 0;
    position: relative;  /* relative to menu container */
  }

  /* When menu open */
  .show-menu .nav-left,
  .show-menu .nav-right {
    display: flex;
  }

  /* Switch buttons */
  .show-menu .hamburger {
    display: none;
  }
  

  .show-menu .close-btn {
    display: block !important;
  }
}








/* ===== FIXED HEADER ===== */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

/* ===== FIXED NAVIGATION ===== */
.new-nav {
    position: fixed;
    top: 138px; /* desktop header height */
    left: 0;
    width: 100%;
    background: #1e3a8a;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999; /* below header but above content */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .new-nav {
        top: auto; /* allow nav to stack below header */
        margin-top: -51px; /* height of header for stacking */
        flex-direction: column;
        padding: 10px 15px;
        width: 100%;
        z-index: 9999;
    }

    /* Menu items */
    .nav-left, .nav-right {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1e3a8a;
        padding: 50px 15px 15px 15px; /* leave space for close button */
        margin: 0;
        position: relative;
    }

    /* Show menu when toggled */
    .show-menu .nav-left,
    .show-menu .nav-right {
        display: flex;
        gap: 10px;
    }

    /* Hamburger & close buttons */
    .hamburger {
        display: block;
        z-index: 10001; /* above header/nav */
    }

    .close-btn {
        display: none;
        position: absolute;
        top: 10px;
        right: 48px;
        font-size: 24px;
        color: white;
        z-index: 10002; /* above everything */
    }

    .show-menu .close-btn {
        display: block !important;
    }

    .show-menu .hamburger {
        display: none;
    }
}

/* Add padding so content does not hide behind fixed header + nav */
body {
    padding-top: 160px; /* header + nav height */
}

@media (max-width: 768px) {
    body {
        padding-top: 206px; /* stacked header + nav height */
    }
}



@media (max-width: 768px) {
    .hamburger {
        align-self: flex-start !important; 
    }
}









/* ============================
   LARGE DESKTOP (1440px – 1599px)
=============================== */
@media (max-width: 1599px) and (min-width: 1440px) {
  .new-nav {
    top: 140px;
    padding: 10px 20px;
  }

  .nav-left a, .nav-right a {
    font-size: 15px;
    margin-right: 20px;
  }
}

/* ============================
   DESKTOP NORMAL (1200px – 1439px)
=============================== */
@media (max-width: 1439px) and (min-width: 1200px) {
  .new-nav {
    top: 110px;
    padding: 10px 18px;
  }

  .nav-left a, .nav-right a {
    font-size: 14px;
    margin-right: 18px;
  }
}

/* ============================
   LAPTOP (992px – 1199px)
=============================== */
@media (max-width: 1199px) and (min-width: 992px) {
  .new-nav {
    top: 110px;
    padding: 0px 0px;
  }

  .nav-left a, .nav-right a {
    font-size: 13px;
    margin-right: 15px;
  }
}

/* ============================
   TABLET LANDSCAPE (768px – 991px)
=============================== */
@media (max-width: 991px) and (min-width: 768px) {
  .new-nav {
    top: auto;
    margin-top: -40px;
    flex-direction: column;
    padding: 8px 15px;
  }

  .nav-left a, .nav-right a {
    font-size: 13px;
    margin: 8px 0;
  }
}

/* ============================
   MOBILE EXTRA LARGE (550px – 599px)
=============================== */
@media (max-width: 599px) and (min-width: 550px) {
  .nav-left a, .nav-right a {
    font-size: 12px;
    margin: 6px 0;
  }

  .hamburger {
    font-size: 22px;
  }

  .close-btn {
    top: 12px;
    right: 42px;
  }
}

/* ============================
   MOBILE MEDIUM (360px – 479px)
=============================== */
@media (max-width: 479px) and (min-width: 360px) {
  .nav-left a, .nav-right a {
    font-size: 11px;
    margin: 5px 0;
  }

  .hamburger {
    font-size: 20px;
  }

  .close-btn {
    top: 10px;
    right: 35px;
  }
}

/* ============================
   MOBILE SMALL (300px – 359px)
=============================== */
@media (max-width: 359px) and (min-width: 300px) {
  .nav-left a, .nav-right a {
    font-size: 10px;
    margin: 4px 0;
  }

  .hamburger {
    font-size: 18px;
  }

  .close-btn {
    top: 8px;
    right: 30px;
  }
}

/* ============================
   ULTRA SMALL PHONES (<300px)
=============================== */
@media (max-width: 299px) {
  .nav-left a, .nav-right a {
    font-size: 9px;
    margin: 3px 0;
  }

  .hamburger {
    font-size: 16px;
  }

  .close-btn {
    top: 6px;
    right: 25px;
  }
}


















/* SEARCH */
.search-block {
  display: flex;
  gap: 10px;          
  margin: 60px 0 32px 0; 
  padding: 0 54px;     
}
.search-block input[type="submit"] 
{
      flex: 1;
  padding: 12px 20px;
  background: #1e3a8a !important;       /* keep original button color */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2),
              -2px -2px 6px rgba(255,255,255,0.4); /* 3D effect */
  transition: 0.3s;
}

.search-block input[type="submit"]:hover {
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.25),
              inset -2px -2px 6px rgba(255,255,255,0.3);
}


.search-block input {
  flex: 7;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #bcc3cc; /* keep original border */
  background: #fff;           /* keep original color */
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
              inset -2px -2px 5px rgba(255,255,255,0.7); /* 3D effect */
  transition: 0.3s;
  margin-top: 10px;
}


/* Specific view: 1024px width and 600px height */
@media (width: 1024px) and (height: 600px) {
  .search-block input {
    flex: 7;
    padding: 10px;   /* adjust padding for this screen */
    border-radius: 6px;
    margin-top: 8px;
    max-width: 935px; /* optional: limit width */
  }
}

/* Specific view: 1440px width and 900px height */
@media (width: 1440px) and (height: 900px) {
  .search-block input {
    flex: 7;
    padding: 14px;    /* slightly bigger padding for larger screen */
    border-radius: 6px;
    margin-top: 12px;
    max-width: 1320px; /* optional: adjust input width */
  }
}




.search-block input:focus {
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.15),
              inset -1px -1px 3px rgba(255,255,255,0.8);
}

.search-block button {
  padding: 12px 20px;
  background: #1e3a8a !important;       /* keep original button color */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2),
              -2px -2px 6px rgba(255,255,255,0.4); /* 3D effect */
  transition: 0.3s;
}

.search-block button:hover {
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.25),
              inset -2px -2px 6px rgba(255,255,255,0.3);
}


/* -------- MOBILE / TABLET VIEW -------- */
@media (max-width: 1024px) {
    .search-block {
        padding: 14px 30px;  /* reduce horizontal padding */
        flex-direction: column;
        gap: 12px;
    }

    .search-block input,
    .search-block button {
        width: 100%;       /* full width */
    }
}

@media (max-width: 768px) {
    .search-block {
        padding: 14px 20px;   /* further reduce padding for smaller screens */
    }

    .search-block input,
    .search-block button {
        font-size: 14px;  /* slightly smaller text */
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .search-block input,
    .search-block button {
        font-size: 13px;  /* very small devices */
        padding: 8px;
    }
}

/* ====== Large Desktop (1600px ↓) ====== */
@media (max-width: 1600px) {
    .search-block {
        padding: 14px 48px;
        gap: 12px;
    }
}

/* ====== Desktop (1440px ↓) ====== */
@media (max-width: 1440px) {
    .search-block {
        padding: 14px 44px;
    }
}

/* ====== Desktop (1366px ↓) ====== */
@media (max-width: 1366px) {
    .search-block {
        padding: 14px 40px;
    }
}

/* ====== Laptop (1280px ↓) ====== */
@media (max-width: 1280px) {
    .search-block {
        padding: 14px 36px;
    }
}

/* ====== Small Laptop (1200px ↓) ====== */
@media (max-width: 1200px) {
    .search-block {
        padding: 14px 32px;
        gap: 10px;
    }
}

/* ====== Tablet Landscape (992px ↓) ====== */
@media (max-width: 992px) {
    .search-block {
        padding: 14px 28px;
        flex-direction: column;
        gap: 14px;
    }

    .search-block input,
    .search-block button {
        width: 100%;
        font-size: 15px;
    }
}

/* ====== Mobile Large (600px ↓) ====== */
@media (max-width: 600px) {
    .search-block {
        padding: 14px 18px;
        gap: 12px;
    }

    .search-block input,
    .search-block button {
        font-size: 14px;
        padding: 7px;
    }
}

/* ====== Mobile Medium (420px ↓) ====== */
@media (max-width: 420px) {
    .search-block {
        padding: 14px 15px;
        gap: 10px;
    }

    .search-block input,
    .search-block button {
        font-size: 13px;
        padding: 5px;
        width: 100%;          /* Correct – always fits */
        max-width: 376px;     /* Perfect for 420px screens */
        box-sizing: border-box;
    }
}

/* ====== Mobile Small (360px ↓) ====== */
@media (max-width: 360px) {
    .search-block {
        padding: 14px 12px;
        gap: 8px;
    }

    .search-block input,
    .search-block button {
        font-size: 12px;
        padding: 6px;
    }
}

/* ====== Extra Small (320px ↓) ====== */
@media (max-width: 320px) {
    .search-block {
        padding: 14px 10px;
    }

    .search-block input,
    .search-block button {
        font-size: 11.5px;
        padding: 6px;
    }
}













/* FILTERS */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;          
  margin-bottom: 20px;
  padding: 0 54px;     
}

.filter-grid select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #bcc3cc; /* keep original border */
  background: #fff;           /* keep original color */
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1),
              inset -2px -2px 5px rgba(255,255,255,0.7); /* 3D effect */
  transition: 0.3s;
}

.filter-grid select:focus {
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.15),
              inset -1px -1px 3px rgba(255,255,255,0.8);
  outline: none;
}

/* -------- MOBILE / TABLET VIEW -------- */
@media (max-width: 1024px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns for tablets */
        padding: 0 30px;                        /* reduce horizontal padding */
        gap: 12px;                               /* slightly larger gap for clarity */
    }

    .filter-grid select {
        width: 100%;                             /* full width inputs */
    }
}

@media (max-width: 768px) {
    .filter-grid {
        grid-template-columns: 1fr;              /* 1 column for small screens */
        padding: 0 20px;
        gap: 10px;
    }

    .filter-grid select {
        font-size: 14px;                         /* slightly smaller font for mobile */
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .filter-grid select {
        font-size: 13px;                         /* very small devices */
        padding: 8px;
    }
}




/* ====== Large Desktop (1600px ↓) ====== */
@media (max-width: 1600px) {
    .filter-grid {
        padding: 0 48px;
        gap: 12px;
    }
}

/* ====== Desktop (1440px ↓) ====== */
@media (max-width: 1440px) {
    .filter-grid {
        padding: 0 44px;
    }
}

/* ====== Desktop (1366px ↓) ====== */
@media (max-width: 1366px) {
    .filter-grid {
        padding: 0 40px;
    }
}

/* ====== Laptop (1280px ↓) ====== */
@media (max-width: 1280px) {
    .filter-grid {
        padding: 0 36px;
    }
}

/* ====== Small Laptop (1200px ↓) ====== */
@media (max-width: 1200px) {
    .filter-grid {
        padding: 0 32px;
        gap: 10px;
    }
}

/* ====== Tablet Large (992px ↓) ====== */
@media (max-width: 992px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 28px;
        gap: 14px;
    }
}

/* ====== Mobile Large (600px ↓) ====== */
@media (max-width: 600px) {
    .filter-grid {
        grid-template-columns: 1fr;
        padding: 0 18px;
        gap: 12px;
    }

    .filter-grid select {
        font-size: 14px;
        padding: 9px;
    }
}

/* ====== Mobile Medium (420px ↓) ====== */
@media (max-width: 420px) {
    .filter-grid {
        padding: 0 15px;
    }

    .filter-grid select {
        font-size: 13px;
        padding: 8px;
    }
}

/* ====== Mobile Small (360px ↓) ====== */
@media (max-width: 360px) {
    .filter-grid {
        padding: 0 12px;
        gap: 10px;
    }

    .filter-grid select {
        font-size: 12px;
        padding: 7px;
    }
}

/* ====== Extra Small (320px ↓) ====== */
@media (max-width: 320px) {
    .filter-grid {
        padding: 0 10px;
    }

    .filter-grid select {
        font-size: 11.5px;
        padding: 6px;
    }
}



















/* PAGE */
.page-container {
  max-width: 1500px;
  width: 100%;    /* makes it shrink on smaller screens */
  margin: 80px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}


.section-title{
  margin:20px 0 15px;
  color:#1e3a8a;
  font-size:30px;
  font-weight:700;
      text-align: center;
    margin-bottom: 42px;
}




.section-subtitle{
  margin:20px 0 15px;
  color:#1e3a8a;
  font-size:20px;
  font-weight:700;
      text-align: center;
    margin-bottom: 27px;
    margin-top: 60px;
}





.mini3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mini3d-card {
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;

  /* TRUE 3D SHADOW */
  box-shadow: 
    0px 6px 10px #1e3a8a;

  transition: 0.25s ease;
}

.mini3d-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 12px 20px #1e3a8a;
}

/* SMALL ICON BOX */
.mini3d-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini3d-icon img {
  width: 30px;
  opacity: 0.95;
}

.mini3d-info h5 {
  font-size: 13px;
  margin: 0;
  font-weight: 600;
  color: #1e3a8a;
}

.mini3d-info .v {
  margin: 4px 0 0 0;
  font-size: 26px;
  font-weight: 700;
}

/* ------------------------
   THEMES
------------------------- */

.c-blue .mini3d-icon { background: #e0e7ff; }
.c-blue .v { color: #1e3a8a; }

.c-green .mini3d-icon { background: #d1fae5; }
.c-green .v { color: #059669; }

.c-orange .mini3d-icon { background: #ffedd5; }
.c-orange .v { color: #ea580c; }

.c-purple .mini3d-icon { background: #ede9fe; }
.c-purple .v { color: #7c3aed; }



/* -------- TABLET VIEW -------- */
@media (max-width: 1024px) {
  .page-container {
    width: 95%;      /* reduce container width for tablets */
    padding: 20px;
  }

  .mini3d-grid {
    grid-template-columns: repeat(2, 1fr);  /* 2 cards per row */
    gap: 16px;
  }
}

/* -------- MOBILE VIEW -------- */
@media (max-width: 768px) {
  .page-container {
    width: 100%;
    margin-top:57px;
    padding: 5px;
  }

  .mini3d-grid {
    grid-template-columns: 1fr;             /* 1 card per row */
    gap: 12px;
  }

  .mini3d-info h5 {
    font-size: 12px;
  }

  .mini3d-info .v {
    font-size: 22px;
  }

  .mini3d-icon {
    width: 48px;
    height: 48px;
  }

  .mini3d-icon img {
    width: 26px;
  }
}
@media (min-width: 1300px) and (max-width: 1400px) {
    .mini3d-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        width: 1350px;
        overflow-x: auto;
    }
}
/* -------- SMALL DEVICES -------- */
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .mini3d-info h5 {
    font-size: 11px;
  }

  .mini3d-info .v {
    font-size: 20px;
  }

  .mini3d-icon {
    width: 44px;
    height: 44px;
  }

  .mini3d-icon img {
    width: 24px;
  }
}
@media (max-width: 768px) {
    .mini3d-card {
        width: 88% !important;   /* or any size you want */
    }
}
@media (min-width: 1430px) and (max-width: 1450px) 
       and (min-height: 590px) and (max-height: 610px) {
  .page-container {
    max-width: 1440px;
    width: 100%;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
  }
}










/* MAIN HORIZONTAL WRAPPER */
.stats-horizontal {
  display: flex;
  gap: 41px; /* reduced gap */
  justify-content: center; /* center all cards */
  align-items: center;
  flex-wrap: nowrap; /* no wrapping */
  margin-top: 40px;
  overflow: visible; /* no scrollbar */
}

@media (width: 1400px) and (height: 600px) {
    .stats-horizontal {
       display: flex;
  gap: 9px; /* reduced gap */
  justify-content: center; /* center all cards */
  align-items: center;
  flex-wrap: nowrap; /* no wrapping */
  margin-top: 40px;
  overflow: visible; /* no scrollbar */
    }
}




/* EACH ITEM */
.stat-box {
  display: flex;
  align-items: center;
  gap: 12px; /* smaller gap between icon and text */
  background: #ffffff;
  padding: 10px 14px; /* smaller padding */
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  min-width: 150px; /* smaller width */
  transition: 0.2s;
  flex-shrink: 0; /* prevent shrinking below min-width */
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* ICON */
.stat-box img {
  width: 28px; /* smaller icon */
  height: 28px;
  opacity: 0.9;
}

/* TEXT */
.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-title {
  font-size: 13px; /* smaller font */
  font-weight: 600;
  color: #374151;
}

.stat-number {
  font-size: 18px; /* smaller number */
  font-weight: 700;
  color: #1e3a8a;
}

/* MINI GRAPH */
.mini-graph {
  width: 40px; /* smaller graph */
  height: 18px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.mini-graph::after {
  content:"";
  position:absolute;
  left: -100%;
  top:0;
  width:100%;
  height:100%;
  background: rgba(255,255,255,0.35);
  animation: shine 2.5s infinite linear;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* -------- TABLET VIEW -------- */
@media (max-width: 1024px) {
  .stats-horizontal {
    flex-wrap: wrap;        /* allow wrapping */
    justify-content: center;
    gap: 25px;              /* reduce gap for smaller screens */
  }

  .stat-box {
    min-width: 130px;       /* slightly smaller boxes */
    padding: 8px 12px;
  }

  .stat-box img {
    width: 24px;
    height: 24px;
  }

  .stat-title {
    font-size: 12px;
  }

  .stat-number {
    font-size: 16px;
  }

  .mini-graph {
    width: 30px;
    height: 16px;
  }
}

/* -------- MOBILE VIEW -------- */
@media (max-width: 768px) {
  .stats-horizontal {
        display: flex;
        flex-direction: column;    /* stack items vertically */
        align-items: center;       /* center items horizontally */
        justify-content: flex-start; /* align from top */
        gap: 15px;                 /* spacing between items */
        width: 100%;               /* full width */
        max-width: 380px;          /* optional: prevent overflow */
        margin: 37px 0px;
        padding: 0 10px;           /* horizontal padding to avoid overflow */
        box-sizing: border-box;    /* include padding in width */
       
    }

  .stat-box {
    min-width: 100%;       /* full width cards */
    justify-content: flex-start;
  }

  .stat-box img {
    width: 22px;
    height: 22px;
  }

  .stat-title {
    font-size: 11px;
  }

  .stat-number {
    font-size: 14px;
  }

  .mini-graph {
    width: 25px;
    height: 14px;
  }
}

/* Even smaller screens under 480px */
@media (max-width: 480px) {
    .stats-horizontal {
        max-width: 333px;
        gap: 10px;
        padding: 0 5px;
    }
}

/* Specific view: 414px width and 876px height */
@media (width: 414px) and (height: 876px) {
    .stats-horizontal {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 380px; /* exact adjustment for this screen */
        gap: 10px;
        margin: 20px 0;
        padding: 0 5px;
        box-sizing: border-box;
    }
}


/* -------- SMALL DEVICES -------- */
@media (max-width: 480px) {
  .stat-box {
    padding: 6px 10px;
  }

  .stat-title {
    font-size: 10px;
  }

  .stat-number {
    font-size: 13px;
  }

  .mini-graph {
    width: 20px;
    height: 12px;
  }
}






/* STATUS BAR */
.status-strip {
  background: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #dce1e6;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05); /* subtle inner shadow */
}

/* BACKGROUND BAR */
.strip-bar {
  flex: 1;
  background: #e0e5ea;
  height: 10px;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 
              inset 0 -2px 4px rgba(0,0,0,0.1); /* inner highlights and shadows */
}

/* FILL BAR */
.strip-fill {
  height: 10px;
  background: #1e3a8a;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.4),
              inset 0 -2px 4px rgba(0,0,0,0.2), 
              0 2px 4px rgba(0,0,0,0.1); /* 3D shine */
  transition: width 0.4s ease;
}













/* 3D container */
        .ar-form-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 25px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 
                0 6px 12px rgba(0,0,0,0.10),
                0 12px 24px rgba(0,0,0,0.06);
            transform: translateZ(0);
        }

        /* Heading 3D effect */
        .ar-heading {
            font-size: 26px;
            font-weight: 700;
            color: #1e3a8a;
            padding-left: 15px;
            margin-bottom: 25px;
            text-shadow: 0 2px 3px rgba(0,0,0,0.15);
            text-align: center;
        }

        .ar-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #374151;
        }

        /* 3D Input & Textarea */
        .form-group input,
        .form-group textarea {
            padding: 10px 12px;
            border-radius: 6px;
            border: 1px solid #cbd5e1;
            background: #ffffff;
            font-size: 15px;
            transition: 0.2s ease;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        /* 3D Focus effect */
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 
                inset 0 2px 4px rgba(0,0,0,0.15),
                0 0 8px rgba(37, 99, 235, 0.3);
        }
        
        .form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 25px;
}

.submit-btn {
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: 0.25s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
}

.submit-btn:active {
    transform: scale(0.97);
}

.form-group select {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    font-size: 15px;
    transition: 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.15),
        0 0 8px rgba(37,99,235,0.3);
}









.ar-split{
    background:#fff;
    padding:25px;
    border-radius:8px;
    border:1px solid #ddd;
}

.ar-split-title{
    font-size:24px;
    color:#0c3c60;
    margin-bottom:15px;
}

.split-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.split-box{
    flex:1;
    padding:15px;
    border:1px solid #d7d7d7;
    border-radius:6px;
    background:#f9fbff;
}

.split-box.full{
    margin-bottom:20px;
}

.split-box h3{
    margin-top:0;
    font-size:18px;
    color:#0c3c60;
    border-bottom:1px solid #bcd;
    padding-bottom:4px;
}

.split-box p{
    margin:6px 0;
    font-size:15px;
}

.long{
    line-height:1.5;
}





.click-table tr {
    cursor: pointer;
    transition: background 0.2s;
}

.click-table tr:hover {
    background: #eaf3ff;
}





.page-bottom-space {
    padding-bottom: 100px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* MENU ITEMS */
.nav-menu > li {
    position: relative;
}

/* LINKS */
.nav-menu a {
    display: block;
    padding: 15px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: #0f2d6d;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    z-index: 1000;
}

.dropdown-menu li a {
    color: #333;
    padding: 12px 15px;
}

.dropdown-menu li a:hover {
    background: #f2f2f2;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu > li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
/*THUMBNAILS*/

.image-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: left;
    flex-wrap: wrap;
}

.ar-image {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    border: 1px solid #ccc;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
     pointer-events: auto; /* make clickable */
  
}

.ar-image:hover {
    transform: scale(1.1);
}

/* Overlay background */
.popup-overlay {
    display: none;           
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    text-align: center;
    line-height: 100vh;
}

/* Popup image (FIXED SIZE) */
.popup-img {
    width: 920px !important;
    height: 580px !important;
    object-fit: cover !important;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
    margin-top: 256px;
}


/* Close button */
.close-btn1 {
    position: absolute;
    top: -198px;
    right: 321px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}

.prev-btn, .next-btn {
    position: fixed;
    top: 0%;
    font-size: 50px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10001;
    user-select: none;
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {

    .ar-image {
        width: 80px;
        height: 60px;
    }

    .popup-img {
        width: 300px !important;
        height: 300px !important;
        max-width: 95%;
        margin-top: 320px !important;  /* <-- move popup a bit lower on mobile */
    }

    .close-btn1 {
        top: -60px !important;
        right: 40px !important;
        font-size: 30px;
    }

    .prev-btn, .next-btn {
        font-size: 35px;
        top: 58%;
        transform: translateY(-50%);
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}


/* MAIN BOX */
.threeD-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding-top: 10px;
}

/* TITLE 3D */
.threeD-title {
    font-size: 28px;
    font-weight: bold;
    color: #1e3a8a;
    text-shadow: 1px 1px 2px #00000022;
    margin-bottom: 25px;
}

/* FORM OUTER BOX */
.clean-form-box {
    width: 100%;
    margin: 27px auto;
}

/* UPDATED ROW FLEX - This centers the inputs */
.clean-row {
    display: flex;
    align-items: center;      
    justify-content: center;  /* CHANGED: This centers the form row */
    gap: 20px;                
    flex-wrap: wrap;          /* Added for better wrapping on smaller screens */
}

/* FIELD BLOCK */
.clean-field {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
}

.clean-field label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

/* INPUT + SELECT NEW STYLE */
.clean-field select,
.clean-field input {
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    background: #f7f9ff;
    transition: 0.2s;
    box-shadow: inset 2px 2px 6px #d9d9d9, inset -2px -2px 6px #ffffff;
}

.clean-field select:focus,
.clean-field input:focus {
    border-color: #4a6cf7;
    background: #ffffff;
}

/* ADD BUTTON */
.clean-center {
    text-align: center;
    margin-top: 20px;
}

.clean-btn {
    padding: 10px 25px;
    background: linear-gradient(145deg, #4a6cf7, #324ed3);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.clean-btn:hover {
    transform: translateY(-2px);
}

/* Make label + input in one line */
.clean-field.horizontal {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.clean-field.horizontal label {
    margin-bottom: 0;
    min-width: 60px;
}

.clean-field.horizontal select,
.clean-field.horizontal input {
    height: 42px;
    width: 240px;
    box-sizing: border-box;
}

/* TABLE WRAPPER */
.threeD-table-wrap {
    display: flex;
    justify-content: center;
}













/* TABLE 3D */
.threeD-table {
    width: 650px;
    border-collapse: collapse;
    background: #f2f5ff;
    border-radius: 10px;
  font-family:"Segoe UI",sans-serif;
    overflow: hidden;
    box-shadow: 6px 6px 14px #c7c7c7, -6px -6px 14px #ffffff;
}

.threeD-table th {
    background: #4a4a8f;
    color: white !important;
    padding: 12px;
    font-size: 15px;
    text-shadow: 1px 1px 2px #00000033;
}

.threeD-table td {
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    text-align: center; /* Added to center table text as per image */
}

/* EVEN / ODD SOFT COLORS */
.threeD-table tr:nth-child(even) {
    background: #e4e8f5;
}

.threeD-table tr:nth-child(odd) {
    background: #eef1fa;
}

.edit-icon {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.threeD-center {
    text-align: center;
    margin-top: 25px;
}

.threeD-btn-update {
    padding: 12px 30px;
    background: linear-gradient(145deg, #4a6cf7, #324ed3);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.threeD-btn-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* HEADER BG + WHITE TEXT */
.threeD-table th {
    background-color: #153f87 !important; 
    color: #ffffff !important;           /* PURE WHITE TEXT */
    font-weight: 600;
    padding: 10px;
}

/* If header contains sorting links (<a>) */
.threeD-table th a {
    color: #ffffff !important;           /* WHITE LINK TEXT */
    text-decoration: none !important;
}

.threeD-table th a:hover {
    color: #e6e6e6 !important;           /* slightly lighter white */
}
/* ================== MOBILE RESPONSIVE ================== */
@media (max-width: 768px) {
    .clean-form-box {
        width: 90%;
        margin: 20px auto;
    }

    .clean-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .clean-field.horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .clean-field.horizontal label {
        min-width: 0;
        margin-bottom: 5px;
    }

    .clean-field.horizontal select,
    .clean-field.horizontal input {
        width: 100%;
    }

    .clean-btn,
    .threeD-btn-update {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
    }

    .threeD-table-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        margin-top: 20px;
    }

    .threeD-table {
        width: 100%;
        min-width: 400px;
    }

    .threeD-table th,
    .threeD-table td {
        font-size: 13px;
        padding: 8px;
    }

    .threeD-title {
        font-size: 22px;
    }

    .clean-center,
    .threeD-center {
        margin-top: 15px;
    }
}



/* PAGE CONTAINER */
.page-container1 {
   width: 100%;
    max-width: 1500px;
    min-width: 1200px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}


/* TABLE WRAPPER */
.table-section1 {
    width: 100%;
    overflow-x: auto;
}

/* MAIN GRIDVIEW TABLE */
.grid-table1 {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* HEADER */
/* HEADER */
.grid-table1 th {
    background: #153f87;
    color: #ffffff !important;   /* FORCE PURE WHITE */
    padding: 12px 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}


/* ROWS */
.grid-table1 td {
    padding: 12px 10px;
    color: #1a1a1a;
    border-bottom: 1px solid #e6e6e6;
}

/* ALTERNATE ROW */
.alt1 td {
    background: #f7f9fc;
}

/* HOVER */
.grid-table1 tr:hover td {
    background: #eef4ff;
    transition: 0.2s ease;
}
/* FIX: Make header <a> text white */
.grid-table1 th a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Optional: hover lighter white */
.grid-table1 th a:hover {
    color: #f2f2f2 !important;
}
/* ------------------------------------------ */
/* 1440 × 900 VIEW                            */
/* ------------------------------------------ */
@media (max-width: 1440px) {
    .page-container1 {
        max-width: 1300px;   /* Reduced */
        min-width: 1000px;
    }
}


/* ------------------------------------------ */
/* 1024 × 600 VIEW                            */
/* ------------------------------------------ */
@media (max-width: 1024px) {
    .page-container1 {
        max-width: 900px;    /* Reduced */
        min-width: 750px;
    }
}


/* ------------------------------------------ */
/* 414 × 876 VIEW (Mobile)                    */
/* ------------------------------------------ */
@media (max-width: 414px) {
    .page-container1 {
        max-width: 380px;    /* Your required reduced size */
        min-width: auto;
        padding: 15px;       /* Mobile friendly */
        margin: 20px auto;
    }
}

@media (max-width: 768px) {

    /* Page container full width on mobile */
    .page-container1 {
        min-width: 100%;
        max-width: 100%;
        margin: 0px;
        padding: 0px;
    }

    /* Allow table to scroll properly */
    .table-section1 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Table becomes wider for scroll */
    .grid-table1 {
        min-width: 700px;
        font-size: 13px;
    }

    .grid-table1 th,
    .grid-table1 td {
        padding: 10px;
        font-size: 13px;
    }
}



/* STATUS COLORS (like your Pending - red) */
.status-pending {
    color: #c41818;
    font-weight: 600;
}
.status-approved {
    color: #008f39;
    font-weight: 600;
}
.status-rejected {
    color: #d00000;
    font-weight: 600;
}

/* PAGINATION WRAPPER */
.pager1 {
    padding: 18px 0;
    text-align: left !important;
    font-family: 'Segoe UI', sans-serif;
}

/* PAGINATION BUTTONS */
.pager1 a,
.pager1 span {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 6px;
    font-size: 20px;
    border-radius: 6px;
    text-decoration: none !important;
    border: 1px solid #153f87;
    transition: 0.25s ease-in-out;
}

/* NORMAL PAGES */
.pager1 a {
    background: #ffffff;
    color: #153f87 !important;       /* Blue text */
}

/* HOVER */
.pager1 a:hover {
    background: #153f87;
    color: #ffffff !important;       /* White text on hover */
}

/* ACTIVE PAGE */
.pager1 span {
    background: #153f87;             /* Solid Blue */
    color: #ffffff !important;       /* White text */
    font-weight: 600;
}










    



.image-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.image-wrapper {
    display: flex;
    flex-direction: column; /* stack image and icon vertically */
    align-items: center;    /* center the icon below */
}

.ar-image {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    border: 1px solid #ccc;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.ar-image:hover {
    transform: scale(1.1);
}

/* Download Icon Below Image */
.download-icon {
    margin-top: 8px;        /* space below the image */
   
    color: #070066;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.download-icon i {
    margin-right: 5px; /* space if you want text later */
}
.img-title {
    font-family: Inter;/* clean modern font */
    font-size: 18px;                     /* change size here */
    font-weight: 600;                    /* bold but smooth */
    margin-bottom: 10px;
    color: #1e3a8a;                         /* dark grey for professional look */
    text-align: left;                    /* keep alignment */
}


/* Mobile */
@media (max-width: 768px) {
    .ar-image {
        width: 80px;
        height: 60px;
    }

    .download-icon {
        padding: 3px 6px;
        font-size: 12px;
    }
}








/* POPUP FULL-SCREEN VIEW */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.popup-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
}

.close-btn1 {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev-btn,
.next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    transform: translateY(-50%);
    padding: 10px;
    user-select: none;
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }












/* Container */
.reg-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px 25px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
.reg-heading {
  text-align: center;
  margin-bottom: 25px;
  color: #1e3a8a;
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Form Groups */
.reg-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.reg-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #000;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.05);
}

/* 3D Inputs & Select */
.reg-group input,
.reg-group select {
  padding: 12px 14px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.05), 2px 2px 5px rgba(0,0,0,0.1);
  background: #f9f9f9;
}

.reg-group input:focus,
.reg-group select:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.05), 2px 2px 6px rgba(74,144,226,0.3);
}

/* Submit Button */
.reg-submit {
  text-align: center;
}

.reg-btn {
  padding: 12px 28px;
  background-color: #00acc1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2), inset 0 -2px 4px rgba(0,0,0,0.1);
}

.reg-btn:hover {
  background-color: #357ab8;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.25), inset 0 -2px 4px rgba(0,0,0,0.1);
}
