* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
overflow-x: hidden;   /* Horizontal scroll bar ko hide karega */
overflow-y: auto; 
}




button{
  background-color: NONE;
  border: none;
}





.navo{
  width: 100%;
  height: 70px;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.navo ul li .twobtns{
  display: flex;
  width: 100%;
  padding:0;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.navo ul li .twobtns a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
  color: white;
  border-radius: 0.2rem;
}
.navo ul li .twobtns a:hover{
  background-color: #333;
color: rgba(255, 255, 255, 0.364);
}













nav{
  width: 100%;
  height: 60px;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.logo h3{
  font-size: 2.7rem;
  font-weight: bold;
  color: rgb(255, 255, 254);
  display: flex;
}

.logo h2{
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(39, 255, 6);
  margin-top: 1.1rem;
}
ul,
.navo ul{
  display: flex;
  list-style: none;
  gap: 15px;
  margin-right:0.2rem;
  align-items: center;align-items: center;
}

ul li,
.navo ul li {
  cursor: pointer;
  font-size: 0.9rem;
}
ul .homes{
color:white;text-decoration:none;
}
ul .homes:hover{
color:rgb(0, 235, 231);
}
.namer{
  margin-top: 2rem; font-size: 1rem;
}
.uid{
  color: rgb(116, 123, 255); font-size: 1rem;
}



















/* Scrollbar Styling for Chrome, Edge, Opera */
::-webkit-scrollbar {
  width: 10px; /* Scrollbar ki width */
}

::-webkit-scrollbar-track {
  background:rgb(215, 215, 215) ; /* Track ka background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-image:linear-gradient(to bottom,
  #12b0007e,
  #007b04) ; /* Track ka background */
 /* Scroll bar ka color */
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background-image:linear-gradient(to bottom,
  #12b000c8,
  #007b04ba) ; /* Track ka background */
}

/* Scrollbar Styling for Firefox */
* {
  scrollbar-width: thin; /* thin ya auto */
  scrollbar-color: #0ecb81 #0b0f14; /* thumb color | track color */
}


























/***nav 2*****/
#nav2 {
  background-color: none;
  padding: 1rem;
  height: auto;
  border-bottom: 1px solid black;
  box-shadow: 3px 2px 8px rgb(0, 57, 56);
  position: relative;
z-index: 100;
overflow: visible;
}

ul.nav-list2 {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

ul.nav-list2 > li {
  position: relative;
color: black;
cursor: pointer;
  font-size: 1rem;
}
ul.nav-list2 > li:hover{
  color: rgb(0, 220, 132);
  text-decoration: underline;
}

.sub-list2 {
  display: none;
position: absolute;
top: 2.5rem;
left: 0;
background-color: rgb(242, 242, 242);
flex-direction: column;
padding: 0.5rem;
border-radius: 5px;
z-index: 999;
min-width: 180px;
box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
overflow-wrap: break-word;
white-space: normal;
border:1px solid rgb(145, 145, 145);
}

.sub-list2 a {
  padding: 0.1rem 0.3rem;
  margin: 0.2rem 0;
  border: none;
  color: rgb(72, 46, 0);
  text-decoration: none;
  text-align: left;
  transition: background 0.3s;
  display: block;
  align-items: flex-start;
}

.sub-list2 a:hover {
  text-decoration: underline;
}

.has-sublist.active .sub-list2 {
  display: flex;
  
}

























/* Main Container */
.weeglie-bigcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
  overflow: hidden;
  gap: 30px;
  background-color: rgba(26, 26, 26, 0.681);
  background-image: url("images/enjoy.JPG");
  background-blend-mode: multiply;
  background-size: cover;
}

/* Left Box (Text) */
.weeglie-left-box {
  flex: 1;
  transform: translateX(-100%);
  animation: slideInLeft 1s ease-out forwards;
}

.weeglie-left-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #00cfe6;
}

.weeglie-left-box p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Right Box (Images Column) */
.weeglie-right-box {
  flex: 1;
  display: flex;
  flex-direction: column;  /* 👈 Show images in vertical column */
  gap: 20px;
  align-items: center;
}

/* Animate each image */
.weeglie-right-box img {
  max-width: 90%;
  height: 15rem;
  margin-top: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(100%);
  animation: slideImageInRight 1s ease forwards;
}
/* Add more if needed */

@keyframes slideImageInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Animations */
@keyframes slideInLeft {
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.hidden {
  display: none;
}
.see-more {
  font-size: 1.2rem;
  text-decoration: none;
  color: rgba(0, 244, 236, 0.948);
  cursor: pointer;
  margin-top: 1rem;
}
.see-more:hover {
  text-decoration: underline;
  color: rgb(255, 0, 0);
  cursor: pointer;
  margin-top: 1rem;

}
/* Responsive Styles */
@media only screen and (min-width: 300px) and (max-width: 410px){
  .weeglie-bigcontainer {
    padding: 10px 5%;
    gap: 10px;
  }
  .weeglie-left-box h2 {
    font-size: 8px;
    margin-bottom: 12px;
  }
  
  .weeglie-left-box p {
    font-size: 6px;
    margin-bottom: 5px;
    line-height: 1.4;
  }
  
  /* Right Box (Images Column) */
  .weeglie-right-box {  /* 👈 Show images in vertical column */
    gap: 10px;
  }
  
  /* Animate each image */
  .weeglie-right-box img {
    max-width: 100%;
    height: 6rem;
    margin-top: 0;
    border-radius: 6px;
  }
  .see-more {
    font-size: 0.5rem;
    margin-top: 1rem;
  }
  .see-more:hover {
    margin-top: 1rem;
  
  }
}
@media only screen and (min-width: 411px) and (max-width: 480px) {
  .weeglie-bigcontainer {
    padding: 20px 5%;
    gap: 15px;
  }
  .weeglie-left-box h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .weeglie-left-box p {
    font-size: 8px;
    margin-bottom: 5px;
    line-height: 2;
  }
  
  /* Right Box (Images Column) */
  .weeglie-right-box {  /* 👈 Show images in vertical column */
    gap: 10px;
  }
  
  /* Animate each image */
  .weeglie-right-box img {
    max-width: 100%;
    height: 9rem;
    margin-top: 1rem;
    border-radius: 6px;
  }
  .see-more {
    font-size: 0.6rem;
    margin-top: 1rem;
  }
  .see-more:hover {
    margin-top: 1rem;
  
  }
}
@media only screen and (min-width: 481px) and (max-width: 500px) {
  .weeglie-bigcontainer {
    padding: 20px 5%;
    gap: 12px;
  }
  .weeglie-left-box h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .weeglie-left-box p {
    font-size: 8px;
    margin-bottom: 5px;
    line-height: 2;
  }
  
  /* Right Box (Images Column) */
  .weeglie-right-box {  /* 👈 Show images in vertical column */
    gap: 10px;
  }
  
  /* Animate each image */
  .weeglie-right-box img {
    max-width: 100%;
    height: 9rem;
    margin-top: 1rem;
    border-radius: 6px;
  }
  .see-more {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
  .see-more:hover {
    margin-top: 1rem;
  
  }
}
@media only screen and (min-width: 501px) and (max-width: 768px) {
  .weeglie-bigcontainer {
    padding: 20px 5%;
    gap: 12px;
  }
  .weeglie-left-box h2 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .weeglie-left-box p {
    font-size: 9px;
    margin-bottom: 5px;
    line-height: 1.5;
  }
  
  /* Right Box (Images Column) */
  .weeglie-right-box {  /* 👈 Show images in vertical column */
    gap: 10px;
  }
  
  /* Animate each image */
  .weeglie-right-box img {
    max-width: 100%;
    height: 9rem;
    margin-top: 1rem;
    border-radius: 6px;
  }
  .see-more {
    font-size:0.8rem;
    margin-top: 1rem;
  }
  .see-more:hover {
    margin-top: 1rem;
  
  }
}





















:root{
  --card-gap:16px;
  --card-radius:8px;
  --card-shadow: 0 6px 18px rgba(14,22,34,0.08);
  --max-width:1200px;
  --accent:#ff3b30;
}

.live-blog-wrap{
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #111827;
}

.live-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.live-icon{
  width:12px;height:12px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 6px rgba(255,59,48,0.08);
}
.live-title{font-size:20px;font-weight:600;display:flex;align-items:center;gap:8px}
.live-sub{font-size:13px;color:#6b7280}

.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.card{
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display:flex;
  flex-direction:column;
}

.thumb-wrap{
  position:relative;
  width:100%;
  padding-top:56.25%;
  overflow:hidden;
}
.thumb-wrap img{
  position:absolute;
  left:0;top:0;width:100%;height:100%;object-fit:cover;display:block;
  transition: transform .35s ease, filter .35s ease;
}
.thumb-wrap:hover img{ 
  transform: scale(1.05);
  filter: blur(3px) brightness(0.7);
}

.overlay{
  position:absolute;
  top:0;right:0;bottom:0;left:0;
  display:flex;align-items:center;justify-content:center;
  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.2,.9,.3,1);
  text-decoration:none;
}
.thumb-wrap:hover .overlay{ transform: translateX(0); }

.overlay-content{
  background: rgba(0,0,0,0.6);
  color:white;
  padding:14px 20px;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
}
.card-title{font-size:15px;font-weight:600;line-height:1.25}
.card-desc{font-size:13px;color:#6b7280;flex:0}

.meta-row{font-size:12px;color:#6b7280;margin-top:auto;display:flex;gap:8px;align-items:center}

@media (max-width:900px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:560px){
  .cards-grid{ grid-template-columns: 1fr; }
  .live-title{font-size:18px}
}

.overlay:focus{ outline:3px solid rgba(59,130,246,0.18); outline-offset:3px; }






































/* ===============================
   WEEGLIE — About+Blogs Container Styles
   Clean typography • Wide device support
   =============================== */

/* ---- CSS Variables (easy theming) ---- */
:root{
  --bg: #0b0e14;           /* page bg (dark navy/ink) */
  --card: #0f1320;         /* section bg */
  --text: #e7ecf3;         /* primary text */
  --muted: #a9b4c6;        /* secondary text */
  --brand: #4f8cff;        /* accent/brand color */
  --brand-2: #7dd3fc;      /* soft accent/grad */
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --maxw: 1100px;
  --lh: 1.75;
}

/* Auto dark/light if system prefers light */
@media (prefers-color-scheme: light){
  :root{
    --bg:#f7f9fc;
    --card:#ffffff;
    --text:#0f172a;
    --muted:#475569;
    --brand:#2563eb;
    --brand-2:#60a5fa;
    --shadow: 0 10px 25px rgba(2,6,23,.08);
  }
}
/* ---- Container ---- */
.about-blogs{
  max-width: var(--maxw);
  margin-inline: auto;
  background: linear-gradient(180deg, color-mix(in oklab, var(--card) 94%, transparent), var(--card));
  padding: clamp(20px, 3vw, 40px);
  line-height: var(--lh);
  position: relative;
  overflow: hidden;
}

/* Subtle glow border */
.about-blogs::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: inherit;
  pointer-events:none;
  background: radial-gradient(1200px 300px at -10% -20%, color-mix(in oklab, var(--brand) 30%, transparent), transparent 60%),
              radial-gradient(800px 240px at 110% 120%, color-mix(in oklab, var(--brand-2) 30%, transparent), transparent 60%);
  mask: linear-gradient(#000,transparent 60%);
  opacity:.6;
}

/* ---- Headings ---- */
.about-blogs h2{
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing:.2px;
  margin: 4px 0 18px;
  line-height: 1.25;
}

.about-blogs h3{
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  margin: 28px 0 10px;
  display:flex; align-items:center; gap:.55rem;
}

/* Emoji/icon booster inside h3 (you already placed emojis) */
.about-blogs h3 :where(.icon, .emoji){
  font-size: 1.25em;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.25));
}

/* Decorative underline */
.about-blogs h3::after{
  content:"";
  flex:1 1 auto;
  height: 2px;
  margin-left:.35rem;
  background: linear-gradient(90deg, color-mix(in oklab, var(--brand) 65%, transparent), transparent 70%);
  opacity:.35;
}

/* ---- Paragraphs ---- */
.about-blogs p{
  margin: 8px 0 14px;
  color: var(--text);
  opacity:.92;
  font-size: clamp(.98rem, 1.1vw, 1.05rem);
}
.about-blogs p em{
  color: #de3b00;
}
/* First paragraph highlight */
.about-blogs > p:first-of-type{
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand-2) 18%, transparent), transparent 70%);
  border: 1px solid color-mix(in oklab, var(--brand-2) 25%, transparent);
  padding: 14px 16px;
  border-radius: calc(var(--radius) - 6px);
}

/* Emphasis */
.about-blogs strong{ color: var(--brand-2); font-weight: 800; }
.about-blogs em{ color: var(--brand); font-style: normal; font-weight: 600; }

/* Links (if any inside paragraphs) */
.about-blogs a{
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, var(--brand) 50%, transparent);
}
.about-blogs a:hover{
  color: color-mix(in oklab, var(--brand) 80%, white 10%);
  border-bottom-style: solid;
}

/* ---- Optional: RTL support (Urdu-friendly) ---- */
html[dir="rtl"] .about-blogs{
  text-align: start;
}
html[dir="rtl"] .about-blogs h3{ flex-direction: row-reverse; }
html[dir="rtl"] .about-blogs h3::after{ margin-left:0; margin-right:.35rem; }

/* ---- Subtle separators between sections ---- */
.about-blogs h3 + p{
  border-left: 3px solid color-mix(in oklab, var(--brand) 40%, transparent);
  padding-left: 12px;
}
html[dir="rtl"] .about-blogs h3 + p{
  border-left: none; border-right: 3px solid color-mix(in oklab, var(--brand) 40%, transparent);
  padding-left: 0; padding-right: 12px;
}

/* ---- Accessibility: focus styles ---- */
.about-blogs :where(a, button, [tabindex]):focus{
  outline: 3px solid color-mix(in oklab, var(--brand) 60%, white 10%);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */

/* Phones — up to 480px */
@media (max-width: 480px){
  .about-blogs{
    padding: 16px 14px;
    border-radius: 14px;
  }
  .about-blogs h2{ font-size: 1.35rem; }
  .about-blogs h3{ font-size: 1.05rem; gap:.5rem; }
  .about-blogs h3::after{ display:none; }
  .about-blogs p{ font-size: .98rem; }
}

/* Small phones in landscape / small tablets — 481–767px */
@media (min-width: 481px) and (max-width: 767px){
  .about-blogs{ padding: 20px; }
  .about-blogs h2{ font-size: 1.55rem; }
  .about-blogs h3{ font-size: 1.12rem; }
}

/* Tablets — 768–1023px */
@media (min-width: 768px) and (max-width: 1023px){
  .about-blogs{ padding: 28px; }
  .about-blogs h2{ font-size: 1.85rem; }
  .about-blogs h3{ font-size: 1.18rem; }
}

/* Laptops — 1024–1439px */
@media (min-width: 1024px) and (max-width: 1439px){
  .about-blogs{ padding: 34px; }
  .about-blogs h2{ font-size: 2rem; }
  .about-blogs h3{ font-size: 1.25rem; }
}

/* Large desktops — 1440px+ */
@media (min-width: 1440px){
  :root{ --maxw: 1220px; }
  .about-blogs{ padding: 40px 46px; }
  .about-blogs h2{ font-size: 2.2rem; }
}

/* ===============================
   SMALL UTILS (optional)
   =============================== */

/* Add this span in headings if you want stronger icon control:*/

.about-blogs .icon{
  display:inline-grid; place-items:center;
  width: 1.9em; height: 1.9em;
  border-radius: 12px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 35%, transparent), transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 40%, transparent);
  box-shadow: 0 6px 16px rgba(0,0,0,.18) inset, 0 2px 8px rgba(0,0,0,.15);
}








































/* === Main Container === */
.ads-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* === Left Box (70%) === */
.ads-left {
  flex: 0 0 70%;
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s ease-in-out;
}
.ads-left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* === Right Box (28%) === */
.ads-right {
  flex: 0 0 28%;
  background: #1f2937;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s ease-in-out;
}
.ads-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* === Animation Active Class === */
.ads-left.show {
  opacity: 1;
  transform: translateX(0);
}
.ads-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* === Responsive Media Queries === */

/* Phones (<600px) → Stack */
@media (max-width: 600px) {
  .ads-container {
    flex-direction: column;
  }
  .ads-left, .ads-right {
    flex: 100%;
    transform: translateY(80px);
  }
  .ads-left.show, .ads-right.show {
    transform: translateY(0);
  }
  .ads-right {
    margin-top: 16px;
  }
}

/* Tablets (600px–991px) → 60% / 38% */
@media (min-width: 601px) and (max-width: 991px) {
  .ads-left { flex: 0 0 60%; }
  .ads-right { flex: 0 0 38%; }
}

/* Laptops (992px–1439px) → Normal */
@media (min-width: 992px) and (max-width: 1439px) {
  .ads-left { flex: 0 0 68%; }
  .ads-right { flex: 0 0 30%; }
}

/* Large Screens (1440px+) */
@media (min-width: 1440px) {
  .ads-container { max-width: 1400px; }
}






































.blog-container {
  display: flex;
  flex-direction: row; /* Image left, blog right */
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  max-width: 1000px;
  margin: 50px auto;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.blog-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE BOX */
.blog-left-box {
  flex: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
  transition-delay: 0.3s; /* shows 2s after container fadeup */
}

.blog-left-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE STYLE */
.blog-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CONTENT BOX */
.fadeup-right-box {
  flex: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
  transition-delay: 0.5s; /* shows 2s after image */
}

.fadeup-right-box.show {
  opacity: 1;
  transform: translateY(0);
}

.fadeup-right-box h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.fadeup-right-box p {
  font-size: 16px;
  line-height: 1.6;
}

/* REVERSE ANIMATION WHEN SCROLLING UP */
.blog-container.hide {
  opacity: 0;
  transform: translateY(-60px);
}

.blog-left-box.hide,
.fadeup-right-box.hide {
  opacity: 0;
  transform: translateY(-60px);
}



.blog-container .see-now{
  background: none;
  margin-top: 1rem;
}
.blog-container .see-now a{
 transition: background 0.6s ease;
 transition: border 0.6s ease;
  text-decoration: none; background: none;padding: 0.3rem 2rem; border-radius: 0.5rem; border: 1px solid forestgreen; font-size: 1rem; font-style: none;color: brown;
}

.blog-container .see-now a:hover{
  background: rgba(0, 0, 255, 0.085);
  border: 1px solid rgb(139, 71, 34);
  color: rgb(58, 57, 57);
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .blog-container {
    padding: 30px;
    gap: 25px;
  }

  .fadeup-right-box h2 {
    font-size: 22px;
  }

  .fadeup-right-box p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column; /* Stack vertically */
    text-align: center;
    padding: 20px;
  }

  .blog-left-box,
  .fadeup-right-box {
    transform: none !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 100%;
  }

  .blog-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .fadeup-right-box h2 {
    font-size: 20px;
  }

  .fadeup-right-box p {
    font-size: 14px;
  }
}
/* Max width: 300px */
@media (max-width: 300px) {
  .blog-container {
    display: flex;
    flex-direction: row; /* Image left, blog right */
    justify-content: space-between;
    gap: 20px;
    padding: 25px;
    max-width: 100rem;
    margin: 30px auto;
  }
  
  .blog-container.show {
    opacity: 1;
    transform: translateY(0);
  }
  


  /* IMAGE STYLE */
  .blog-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 6px;
  }
  .fadeup-right-box h2 {
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .fadeup-right-box p{
    font-size: 6px;
    line-height: 1.5;
  }
  .blog-container .see-now{
    margin-top: 1rem;
  }
  .blog-container .see-now a{
    padding: 0.3rem 1rem; border-radius: 0.3rem;font-size: 0.6rem; font-style: none;color: brown;
  }
}
@media (max-width: 300px) {
  .blog-container {
    display: flex;
    flex-direction: row; /* Image left, blog right */
    justify-content: space-between;
    gap: 20px;
    padding: 25px;
    max-width: 100rem;
    margin: 30px auto;
  }
  
  .blog-container.show {
    opacity: 1;
    transform: translateY(0);
  }
  


  /* IMAGE STYLE */
  .blog-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 6px;
  }
  .fadeup-right-box h2 {
    margin-bottom: 6px;
    font-size: 21px;
  }
  
  .fadeup-right-box p{
    font-size: 6px;
    line-height: 1.5;
  }
  .blog-container .see-now{
    margin-top: 1rem;
  }
  .blog-container .see-now a{
    padding: 0.3rem 1rem; border-radius: 0.3rem;font-size: 0.6rem; font-style: none;color: brown;
  }
}
/* Max width: 500px */
@media only screen and (min-width: 300px) and (max-width: 410px){
  .blog-container {
    display: flex;
    flex-direction: row; /* Image left, blog right */
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
    max-width: 100rem;
    margin: 30px auto;
  }
  /* IMAGE STYLE */
  .blog-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  .fadeup-right-box h2 {
    margin-bottom: 6px;
    font-size: 10px;
  }
  
  .fadeup-right-box p{
    font-size: 7px;
    line-height: 1.5;
  }
  .blog-container .see-now{
    margin-top: 1rem;
  }
  .blog-container .see-now a{
    padding: 0.3rem 1rem; border-radius: 0.3rem;font-size: 0.6rem; font-style: none;color: brown;
  }
}
@media only screen and (min-width: 411px) and (max-width: 500px) {
  .blog-container {
    display: flex;
    flex-direction: row; /* Image left, blog right */
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
    max-width: 100rem;
    margin: 30px auto;
  }
  /* IMAGE STYLE */
  .blog-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 6px;
  }
  .fadeup-right-box h2 {
    margin-bottom: 6px;
    font-size: 18px;
  }
  
  .fadeup-right-box p{
    font-size: 11px;
    line-height: 1.5;
  }
  .blog-container .see-now{
    margin-top: 1rem;
  }
  .blog-container .see-now a{
    padding: 0.3rem 1rem; border-radius: 0.3rem;font-size: 0.6rem; font-style: none;color: brown;
  }
}



































    /* 🔹 Banner Section */
    .weegli-banner {
      position: relative;
      height: 100vh;
      width: 100%;
      background: url('./footer.jpg') no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    /* 🔹 Blurry Color Overlay */
    .weegli-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 255, 170, 0.2);
      backdrop-filter: blur(10px);
      z-index: 1;
    }

    /* 🔹 Content */
    .weegli-content {
      position: relative;
      z-index: 2;
      color: white;
      padding: 20px;
    }

    .weegli-content h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      font-weight: bold;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }

    .weegli-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
    }

    /* 🔹 Looping Icon Animation */
    .moving-icon {
      display: inline-block;
      font-size: 2rem;
      animation: slideIcon 2.5s linear infinite;
    }

    @keyframes slideIcon {
      0% { transform: translateX(-50px); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateX(50px); opacity: 0; }
    }

    /* 🔹 Media Queries: Responsive */

    @media (max-width: 480px) {
      .weegli-banner {
        height: 30vh;
      }
      .weegli-content h1 {
        font-size: 1.2rem;
      }
      .weegli-content p {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .moving-icon {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 500px) {
      .weegli-banner {
        height: 40vh;
      }
      .weegli-content h1 {
        font-size: 1.6rem;
      }
      .weegli-content p {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .moving-icon {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .weegli-banner {
        height: 70vh;
      }
      .weegli-content h1 {
        font-size: 2.2rem;
      }
      .weegli-content p {
        font-size: 1rem;
      }
    }
    @media (max-width: 600px) {
      .weegli-banner {
        height: 60vh;
      }
      .weegli-content h1 {
        font-size: 2.2rem;
      }
      .weegli-content p {
        font-size: 1rem;
      }
    }

































    .weeglie-blog-section {
      padding: 4rem 2rem;
      background: #f8f9fc;
      margin-top: 3rem;
      animation: fadeIn 0.4s ease;
    }
    
    .blog-title {
      font-size: 1rem;
      font-weight: bold;
      color: rgb(162, 7, 7);
      text-align: center;
      margin-bottom: 3rem;
      background-color: rgb(70, 70, 70);
      min-width: 10rem;
      justify-content: center;
      height: auto;
      padding:1rem 0;
    }
    
    .blog-logo-icon {
      animation: rotateIcon 3s linear infinite alternate;
      display: inline-block;
      margin-right: 10px;
    }
    
    .blog-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    
    .blog-card {
      width: 20%;
      min-width: 10rem;
      background: white;
      border-radius: 1rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      padding: 1rem;
      transition: transform 0.3s ease, opacity 0.5s;
      opacity: 0;
      transform: translateY(30px);
      animation: cardIn 0.3s ease forwards;
    }
    
    .blog-card:nth-child(1) { animation-delay: 0.1s; }
    .blog-card:nth-child(2) { animation-delay: 0.2s; }
    .blog-card:nth-child(3) { animation-delay: 0.3s; }
    .blog-card:nth-child(4) { animation-delay: 0.5s; }
    .blog-card:nth-child(5) { animation-delay: 0.8s; }
    .blog-card:nth-child(6) { animation-delay: 1s; }
    
    .blog-card:hover {
      transform: translateY(-10px);
    }
    
    .blog-card h3 {
      margin-top: 1rem;
      font-size: 1.3rem;
      color: #222;
    }
    
    .blog-card p {
      margin-top: 0.5rem;
      color: rgb(228, 0, 0);
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    .icon {
      font-size: 2.5rem;
      border-radius: 50%;
      padding: 0.8rem;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: bounce 2s ease-in-out infinite alternate;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    
    .icon.green {
      background: linear-gradient(145deg, #a5f5bd, #61d978);
      color: #fff;
    }
    
    .icon.blue {
      background: linear-gradient(145deg, #8fd3f4, #1da1f2);
      color: #fff;
    }
    
    /* Rotate Animation */
    @keyframes rotateIcon {
      0%   { transform: rotate(-15deg); }
      100% { transform: rotate(15deg); }
    }
    
    /* Scroll-in Animation */
    @keyframes cardIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Icon bounce */
    @keyframes bounce {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-8px); }
    }
    /* Weeglie Blog Section Styles */
    .weeglie-overview-section {
      padding: 3rem 2rem;
      background: #f4faff;
      text-align: center;
    }
    
    .weeglie-intro-icon {
      font-size: 4rem;
      animation: spin-icon 3s linear infinite alternate;
      display: inline-block;
      color: #10b981; /* greenish tone */
    }
    
    @keyframes spin-icon {
      0% { transform: rotate(-20deg); }
      100% { transform: rotate(20deg); }
    }
    
    .weeglie-heading {
      font-size: 2.2rem;
      margin: 1rem auto 2rem;
      font-weight: 700;
      color: #1e3a8a;
    }
    
    .weeglie-card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }
    
    .weeglie-card {
      background: white;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      max-width: 300px;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.6s ease-in-out;
    }
    
    .weeglie-card.show {
      opacity: 1;
      transform: translateY(0);
    }
    
    .weeglie-icon {
      font-size: 2.5rem;
      color: #22c55e;
      margin-bottom: 1rem;
    }
    
    /* Media Queries for Mobile */
    @media (max-width: 400px) {
      .weeglie-heading {
        font-size: 0.8rem;
      }
    
      .weeglie-card-container {
        flex-direction: column;
        align-items: center;
      }
    
      .weeglie-card {
        width: 90%;
      }
    
      .weeglie-intro-icon {
        font-size: 1rem;
      }
    }
    @media only screen and (min-width: 410px) and (max-width: 610px){
      .weeglie-blog-section {
        padding: 4rem 2rem;
      }
      .blog-title {
        font-size: 0.4rem;
        margin-bottom: 2rem;
        min-width: 6rem;
        padding:0.7rem 0;
      }
      .blog-logo-icon {
        margin-right: 6px;
      }
      .blog-cards {
        gap: 0.5rem;
      }
      
      .blog-card {
        width: 17%;
        min-width: 6rem;
        border-radius: 0.6rem;
        padding: 0.7rem;
        transform: translateY(30px);
      }
      .blog-card h3 {
        margin-top: 1rem;
        font-size: 0.6rem;
      }
      
      .blog-card p {
        margin-top: 0.5rem;
        font-size: 0.5rem;
      }
      
      .icon {
        font-size: 1rem;
        border-radius: 50%;
        padding: 0.8rem;
        width: 20px;
        height: 20px;
      }
      /* Weeglie Blog Section Styles */
      .weeglie-overview-section {
        padding: 3rem 2rem;
      }
      
      .weeglie-intro-icon {
        font-size: 1rem;
      }
  
      .weeglie-heading {
        font-size: 1.7rem;
        margin: 1rem auto 2rem;
        font-weight: 200;
      }
      
      .weeglie-card-container {
        gap: 2rem;
      }
      
      .weeglie-card {
        border-radius: 1rem;
        padding: 1rem;
        flex: 1 1 180px;
        max-width: 200px;
      }
      
      .weeglie-icon {
        font-size: 1rem;
        margin-bottom: 1rem;
      }

    }
    
    
    
    

































































    /* ------------------ CSS RESET ------------------ */
    *, *::before, *::after { box-sizing: border-box; }
    img { width: 100%; height: 15rem;}
    a { color: inherit; text-decoration: none; }
    /* ------------------ THEME ------------------ */
    :root {
      --bg: #f5f5f5;
      --panel: #12141a;
      --muted: #1b1f2a;
      --text: #545454;
      --sub: #323232;
      --brand: #f4f4f4; /* accent */
      --brand-2: #26d0ce;
      --radius: 18px;
      --radius-sm: 12px;
      --shadow: 0 10px 30px rgba(0,0,0,0.35);
      --shadow-soft: 0 6px 18px rgba(0,0,0,0.25);
      --grid-gap: clamp(14px, 2vw, 24px);
      --section-pad: clamp(22px, 4vw, 48px);
    }
    body {font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial; line-height: 1.6; }
    .wrap { max-width: 1200px; margin: 0 auto; padding: var(--section-pad); }
    .section-title { font-size: clamp(22px, 3vw, 34px); font-weight: 800; display: flex; align-items: center; gap: 10px; margin: 6px 0 18px; }
    .section-title .dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(130deg, var(--brand), var(--brand-2)); box-shadow: 0 0 0 6px rgba(124,92,255,0.12); }

    /* ------------------ UTILS ------------------ */
    .tag { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); color: #3c3c3c; }
    .meta { display: flex; align-items: center; gap: 12px; color: var(--sub); font-size: 13px; }

    /* ------------------ FIXED IMAGE OVERLAY ------------------ */
    .image-overlay-link {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      background: linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.65));
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }
    .image-overlay-link:hover{background: linear-gradient(180deg,rgba(0, 183, 180, 0.45),rgba(163, 254, 158, 0.263));text-shadow: 0 2px 6px rgba(132, 15, 15, 0.6); color: rgb(247, 247, 247);}
    .overlay-chip {color: white; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(2px); }

    /* ------------------ FEATURED ------------------ */
    .featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--grid-gap); }
    .feature-card, .mini-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); padding: 0.5rem;}
    .feature-media { aspect-ratio: 16/10; position: relative; }
    .feature-card  .feature-media img{width: 100%; height: 22rem; border-radius: 0.5rem;}
    .feature-title { font-size: clamp(18px, 2.8vw, 28px); font-weight: 800; padding: 0.5rem;}
    .mini-grid { display: grid; gap: var(--grid-gap); }
    .mini-card { display: grid; grid-template-columns: 1fr 1.3fr; min-height: 120px; }
    .mini-media { aspect-ratio: 16/10; position: relative; }

    /* ------------------ MASONRY ------------------ */
    .masonry { columns: 3; column-gap: var(--grid-gap); }
    .card { break-inside: avoid; background:rgb(237, 237, 237); border-radius: var(--radius); overflow: hidden; margin: 0 0 var(--grid-gap); box-shadow: var(--shadow-soft); }
    .card-media { position: relative; aspect-ratio: 16/10; }
    .card-title { font-weight: 800; font-size: 18px; }
    .mini-card .mini-media img{width: 100%; height: 7rem;border-radius: 0.5rem;}
    .mini-card .mini-body{padding:4px 10px; margin-left: 0.2rem; background-color: rgb(230, 230, 230); border-radius: 0.5rem;}

    /* ------------------ TIMELINE ------------------ */
    .timeline { position: relative; display: grid; gap: 22px; }
    .timeline::before { content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, rgba(124,92,255,0.5), rgba(38,208,206,0.4)); }
    .t-item { position: relative; padding-left: 50px; }
    .t-item::before { content: ""; position: absolute; left: 10px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(130deg, var(--brand), var(--brand-2)); }
    .t-card { background:#fff; border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow-soft); }

    /* ------------------ SPLIT ------------------ */
    .split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
    .split-item { display: grid; grid-template-columns: 120px 1fr; gap: 14px; align-items: center; background:#fff; border-radius: var(--radius-sm); padding: 10px; box-shadow: var(--shadow-soft); }
    .split-thumb { aspect-ratio: 16/12; position: relative; overflow: hidden; border-radius: 10px; }
    .split-item .spit{padding:4px 10px; background-color: rgb(235, 235, 235); border-radius: 0.5rem;}

    /* ------------------ SCROLLER ------------------ */

    .scroller { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(250px, 32vw, 360px); gap: var(--grid-gap); overflow-x: auto; scroll-behavior: smooth; }
    .nutonbatons{display: flex; width: 100%; justify-content: space-between;}
    .nutonbatons .btn { background:#fff; border:1px solid #ccc;color: rgb(255, 77, 0); padding:8px 12px; border-radius:999px; cursor:pointer; font-weight:700; margin-bottom: 10px;}
    .nutonbatons .btn:hover{color: rgb(18, 177, 0);}
    .dots { display:flex; gap:8px; justify-content:center; margin-top:10px; }
    .dot { width:8px; height:8px; border-radius:50%; background:#ccc; }
    .dot.active { background:linear-gradient(130deg, var(--brand), var(--brand-2)); }
    .card .card-body{padding:4px 10px;}


    /* ------------------ SEE MORE / SEE LESS ------------------ */
.excerpt {display: -webkit-box;-webkit-line-clamp: 2;/* Default 2 lines visible */
  -webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;transition: all 0.3s ease-in-out;}
.excerpt.expanded {-webkit-line-clamp: unset;display: block;}
.see-more-btn {display: inline-block;margin: 0.3rem 0 0.5rem;padding: 4px 10px;background: #2e2e2e;color: #fff;font-size: 12px;border-radius: 2rem;cursor: pointer;border: none;transition: background 0.3s ease;}
.see-more-btn:hover { background: #005ec4;}

    @media (max-width:992px){.masonry{columns:2}.split{grid-template-columns:1fr}}
    @media (max-width:768px){.masonry{columns:1}.mini-card{grid-template-columns:1fr}.split-item{grid-template-columns:100px 1fr}.scroller{grid-auto-columns:82vw}}
    @media (max-width:480px){.split-item{grid-template-columns:1fr}}






























































    .weeglie-overview {
      padding: 1rem 1rem;
      background-color: none;
      text-align: center;
    }
    
    .weeglie-container {
    width: 100%;
    height: 60vh;
      margin: auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      background: url('./images/last banner.jpg') no-repeat center center/cover;
      background-blend-mode: multiply;
      background-size: cover;
    }
    
    .weeglie-intro-icon {
      font-size: 4rem;
      color: #00ffae;
      animation: rotateIcon 3s infinite linear;
      flex: 1 1 100px;
      margin-top: 1rem;
    }
    
    .weeglie-title {
      font-size: 2.3rem;
      color: rgb(3, 208, 0);
      margin-bottom: 0.5rem;
    }
    
    .weeglie-description {
      font-size: 1rem;
      color: rgb(247, 247, 247);
      margin-bottom: 1rem;
    }
    
    .weeglie-features {
      list-style: none;
      padding: 0;
    }
    
    .weeglie-features li {
      font-size: 1rem;
      margin: 0.5rem 0;
      color: rgb(232, 232, 232);
    }
    
    .weeglie-features i {
      color: #00ffaa;
      margin-right: 0.5rem;
    }
    
    /* Icon Animation */
    @keyframes rotateIcon {
      0% { transform: rotate(-10deg); }
      50% { transform: rotate(10deg); }
      100% { transform: rotate(-10deg); }
    }
    @media (max-width: 300px) {
      .weeglie-overview {
        padding: 0.5rem 1rem;
        background-color: none;
      }
      .weeglie-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      width: 100%;
      height: 50vh;
        gap: 0.5rem;
      }
      
      .weeglie-intro-icon {
        font-size: 4rem;
        flex: 1 1 10px;
        margin-top: 1rem;
      }
      
      .weeglie-title {
        font-size: 2.3rem;
      }
      
      .weeglie-description {
        font-size: 0.3rem;
        margin-bottom: 1rem;
      }
      .weeglie-features li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
      }
    }
    @media (max-width: 300px) {
      .weeglie-overview {
        padding: 0.5rem 1rem;
        background-color: none;
      }
      .weeglie-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      width: 100%;
      height: 60vh;
        gap: 0.5rem;
      }
      
      .weeglie-intro-icon {
        font-size: 3rem;
        flex: 1 1 10px;
        margin-top: 1rem;
      }
      
      .weeglie-title {
        font-size: 1.3rem;
      }
      
      .weeglie-description {
        font-size: 0.5rem;
        margin-bottom: 1rem;
      }
      .weeglie-features li {
        font-size: 0.5rem;
        margin-bottom: 0.6rem;
      }
    }

    @media only screen and (min-width: 410px) and (max-width: 610px)  {
      .weeglie-overview {
        padding: 0.5rem 1rem;
        background-color: none;
      }
      .weeglie-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      width: 100%;
      height: 60vh;
        gap: 0.5rem;
      }
      
      .weeglie-intro-icon {
        font-size: 4rem;
        flex: 1 1 10px;
        margin-top: 0.4rem;
      }
      
      .weeglie-title {
        font-size: 1.1rem;
      }
      
      .weeglie-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
      }
      .weeglie-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
      }
    }




    




    
    
    
    
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      filter: blur(3px);
      transition: all 1s ease;
    }
    
    /* Jab element viewport mein aaye */
    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    footer.main-footer {
      background: #0f172a;
      color: #fff;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', sans-serif;
      margin-top: 1rem;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: auto;
    }
    
    .footer-section h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: #00eaff;
      border-bottom: 1px solid #333;
      padding-bottom: 5px;
    }
    
    .footer-section a {
      display: block;
      color: #cbd5e1;
      font-size: 14px;
      text-decoration: none;
      margin: 6px 0;
      transition: 0.3s;
    }
    
    .footer-section a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      color: #94a3b8;
      border-top: 1px solid #334155;
      padding-top: 15px;
    }
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        padding: 0 20px;
      }
    
      .footer-section h3 {
        font-size: 16px;
      }
    
      .footer-section a {
        font-size: 13px;
      }
    }
    
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    
      .footer-section {
        padding: 10px 5px;
      }
    
      .footer-section h3 {
        font-size: 15px;
      }
    
      .footer-section a {
        font-size: 12.5px;
        margin: 5px 0;
      }
    
      .footer-bottom {
        font-size: 12px;
        padding-top: 12px;
      }
    }
    
    @media (max-width: 480px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 15px;
      }
    
      .footer-section {
        text-align: left;
        padding: 8px 0;
        border-bottom: 1px solid #1e293b;
      }
    
      .footer-section h3 {
        font-size: 14px;
        margin-bottom: 6px;
      }
    
      .footer-section a {
        font-size: 12px;
      }
    
      .footer-bottom {
        font-size: 11.5px;
        padding: 10px 0;
      }
    }















    @media only screen and (min-width: 300px) and (max-width: 410px) {
      nav {
        flex-direction: column;
         align-items: flex-start;
         height: auto;
         padding:0;
         }
         
         .logo {
         font-size: 0.9rem;
         height: 2rem;
         }
         .logo h3{
           font-size: 1.4rem;
         }
         
         .logo h2{
           font-size: 0.6rem;
           margin-top: 0.3rem;
         }
         ul {
         gap: 6px;     width: 100%;   flex-wrap: wrap;
         text-align: left;
         }
         
         ul li {
         font-size: 0.5rem;
         padding: 0;margin-left: 0.1rem;
          margin-bottom: 0.2rem;
         }
 
.namer{
  margin-top: 0.4rem; font-size: 0.5rem;
}
.uid{font-size: 0.5rem;
}






.navo{
  flex-direction: row;
   align-items: flex-start;
   height: auto;
   padding:3px;
   }
.navo ul{
  background: none;
  width: auto;
}
.navo ul li .twobtns{
  display: flex;
  width: 100%;
  padding:0;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.navo ul li .twobtns a{
  font-size: 0.5rem;
  padding: 0.2rem 0.3rem;
  border-radius: 0.2rem;
}








      #nav2 {
        padding: 0.5rem;
        box-shadow: 0 2px 8px rgb(0, 57, 56);
      }
      
      
      ul.nav-list2 {
        gap: 0.5rem;
        flex-direction: row;
      }
      
      .sub-list2 {
        margin-left: 1rem;
      }
      ul.nav-list2 > li {
        font-size:0.5rem;
      }
      }
      @media only screen and (min-width: 411px) and (max-width: 480px) {
        nav {
          flex-direction: column;
           align-items: flex-start;
           height: auto;
           padding:0;
           }
           
           .logo {
           font-size: 1rem;
           height: 2.3rem;
           }
           .logo h3{
             font-size: 1.5rem;
           }
           
           .logo h2{
             font-size: 0.8rem;
             margin-top: 0.6rem;
           }
           ul {
           gap: 7px;     width: 100%;   flex-wrap: wrap;
           text-align: left;
           }
           
           ul li {
           font-size: 0.6rem;
           padding: 0;margin-left: 0.2rem;
            margin-bottom: 0.3rem;
           }
           .navo{
            flex-direction: row;
             align-items: flex-start;
             height: auto;
             padding:3px;
             }
          .navo ul{
            background: none;
            width: auto;
          }
          .navo ul li .twobtns{
            display: flex;
            width: 100%;
            padding:0;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1rem;
          }
          .navo ul li .twobtns a{
            font-size: 0.7rem;
            padding: 0.2rem 0.3rem;
            border-radius: 0.2rem;
          }
          .namer{
            margin-top: 0.4rem; font-size: 0.7rem;
          }
          .uid{font-size: 0.7rem;
          }








    #nav2 {
      padding: 0.5rem;
      box-shadow: 0 2px 8px rgb(0, 57, 56);
    }
    
    
    ul.nav-list2 {
      gap: 0.5rem;
      flex-direction: row;
    }
    
    .sub-list2 {
      margin-left: 1rem;
    }
    ul.nav-list2 > li {
      font-size:0.6rem;
    }
    }

    @media only screen and (min-width: 481px) and (max-width: 500px) {
      nav {
        flex-direction: column;
         align-items: flex-start;
         height: auto;
         padding:0;
         }
         
         .logo {
         font-size: 1.2rem;
         height: 2.6rem;
         margin-bottom: 0.4rem;
         }
         .logo h3{
           font-size: 1.7rem;
         }
         
         .logo h2{
           font-size: 1rem;
           margin-top: 0.9rem;
         }
         ul {
         gap: 9px;     width: 100%;   flex-wrap: wrap;
         text-align: left;
         }
         
         ul li {
         font-size: 0.7rem;
         padding: 0;margin-left: 0.3rem;
          margin-bottom: 0.4rem;
         }
.navo{
  flex-direction: row;
   align-items: flex-start;
   height: auto;
   padding:3px;
   }
.navo ul{
  background: none;
  width: auto;
}
.navo ul li .twobtns{
  display: flex;
  width: 100%;
  padding:0;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}
.navo ul li .twobtns a{
  font-size: 0.8rem;
  padding: 0.2rem 0.3rem;
  border-radius: 0.2rem;
}
         .namer{
           margin-top: 0.4rem; font-size: 0.8rem;
         }
         .uid{font-size: 0.8rem;
         }




      #nav2 {
        padding: 0.5rem;
        box-shadow: 0 2px 8px rgb(0, 57, 56);
      }
      
      
      ul.nav-list2 {
        gap: 0.5rem;
        flex-direction: row;
      }
      
      .sub-list2 {
        margin-left: 1rem;
      }
      ul.nav-list2 > li {
        font-size:0.7rem;
      }
      }
      @media only screen and (min-width: 501px) and (max-width: 768px) {
        nav {
          flex-direction: column;
           align-items: flex-start;
           height: auto;
           padding:0;
           }
           
           .logo {
           font-size: 1.5rem;
           height: 3rem;
           margin-bottom: 0.6rem;
           }
           .logo h3{
             font-size: 2rem;
           }
           
           .logo h2{
             font-size: 1.2rem;
             margin-top: 1.1rem;
           }
           ul {
           gap: 4px;     width: 100%;   flex-wrap: wrap;
           text-align: left;
           }
           
           ul li {
           font-size: 0.9rem;
           padding: 0;margin-left: 0.8rem;
            margin-bottom: 0.6rem;
           }

        .navo{
          flex-direction: row;
           align-items: flex-start;
           height: auto;
           padding:3px;
           }
        .navo ul{
          background: none;
          width: auto;
        }
        .navo ul li .twobtns{
          display: flex;
          width: 100%;
          padding:0;
          justify-content: center;
          gap: 0.6rem;
          margin-top: 1rem;
        }
        .navo ul li .twobtns a{
          font-size: 0.8rem;
          padding: 0.2rem 0.3rem;
          border-radius: 0.2rem;
        }
         .namer{
           margin-top: 0.5rem; font-size: 0.8rem;
         }
         .uid{font-size: 0.8rem;
         }
        







         #nav2 {
          padding: 0.5rem;
          box-shadow: 0 2px 8px rgb(0, 57, 56);
        }
        ul.nav-list2 {
          gap: 0.5rem;
          flex-direction: row;
        }
        
        .sub-list2 {
          margin-left: 1rem;
        }
        ul.nav-list2 > li {
          font-size:0.8rem;
        }
        }
        @media only screen and (min-width: 769px) and (max-width: 992px) {
          nav {
            flex-direction: column;
             align-items: flex-start;
             height: auto;
             padding:0;
             }
             
             .logo {
             font-size: 1.7rem;
             height: 3.2rem;
             margin-bottom: 0.8rem;
             }
             .logo h3{
               font-size: 2.2rem;
             }
             
             .logo h2{
               font-size: 1.25rem;
               margin-top: 1.4rem;
             }
             ul {
             gap: 4px;     width: 100%;   flex-wrap: wrap;
             text-align: left;
             }
             
             ul li {
             font-size: 1.1rem;
             padding: 0;margin-left: 1rem;
              margin-bottom: 0.8rem;
             }
             .navo{
              flex-direction: row;
               align-items: flex-start;
               height: auto;
               padding:12px;
               }
            .navo ul{
              background: none;
              width: auto;
            }
            .navo ul li .twobtns{
              display: flex;
              width: 100%;
              padding:0;
              justify-content: center;
              gap: 0.6rem;
              margin-top: 1rem;
            }
            .navo ul li .twobtns a{
              font-size: 1rem;
              padding: 0.2rem 0.3rem;
              border-radius: 0.2rem;
            }
            .namer{
              margin-top: 0.5rem; font-size: 0.9rem;
            }
            .uid{font-size: 0.9rem;
            }















          #nav2 {
            padding: 0.2rem;
            box-shadow: 0 2px 8px rgb(0, 57, 56);
          }
          
          
          ul.nav-list2 {
            gap: 1.4rem;
            flex-direction: row;
          }
          
          .sub-list2 {
            margin-left: 0.5rem;
          }
          ul.nav-list2 > li {
            font-size:1rem;
          }
          }
    













