@charset "utf-8";

/* ===================================================================
   IMPORTS
=================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@600;700&family=Poppins:wght@300;400;500&family=Nunito+Sans:wght@400;700&family=Merriweather:wght@700&family=Raleway:wght@700;800&display=swap');

/* ===================================================================
   VARIABLES
=================================================================== */
:root {
  /* Green Palette */
  --main-color: #00A896;      /* Teal/Cyan Accent */
  --dark-green: #276A34;     /* Main Navigation/Strong Green */
  --light-green: #498002;    /* Sub-menu/Highlight Green */
  --accent-green: #2f5d3e;   /* Link/Heading Text Color */
  --hover-green: #9bbe8c;    /* Link Hover Color */
  --button-green: #5ea403;   /* Primary Button Background */
  --header-bg: #FAF3D6;      /* Header Middle Background */
  --topbar-bg: #043D12;      /* Top Bar Background */
  
  /* Neutral Palette */
  --body-bg: #f9f7f4;
  --text-color: #333;
  --white-color: #fff;
  --dark-text: #151515;
  --highlight-orange: #e49125; /* Nav Hover/Sub-menu border */
}

/* ===================================================================
   GLOBAL STYLES & RESET
=================================================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  font-size: 10px; /* Base for REM units */
}

body {
  font-family: 'Nunito Sans', 'Poppins', 'Roboto', sans-serif;
  font-size: 1.6rem; /* 16px */
  background-color: var(--body-bg);
  color: var(--text-color);
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}

ul {
  list-style: none;
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--hover-green);
}

a:hover img {
  opacity: 0.8;
  transition: all 0.3s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Merriweather', serif;
  color: var(--accent-green);
  font-weight: 700;
  line-height: 1.2;
}

h1, h2 {
  font-size: 3.5rem;
}

h3 {
  color: var(--hover-green);
}

/* Specific text block styles that were duplicated/merged */
h4.headd, h4.headd1 {
  color: #f16633; /* Orange color from merged block */
  font-size: 2.7rem;
  margin-top: 1rem;
}
h4.headd1 {
  margin-top: 2rem;
}

/* ===================================================================
   LAYOUT / STRUCTURE
=================================================================== */
.header_bg {
  background: var(--button-green);
  width: 100%;
}

.body_bg {
  background: url("../images/abstract-bg.png") no-repeat top center;
  background-size: cover;
  width: 100%;
}

/* Use max-width for modern container */
.header,
.body_cnt {
  max-width: 1278px; /* Use the widest specified width */
  margin: 0 auto;
  padding: 0 15px; /* Add some padding for smaller screens */
  width: 100%; /* Ensure it takes full width on small screens */
}

/* Heading/Logo Panel (Replaced outdated float/display:table with Flexbox) */
.heading_panal {
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_left,
.logo_right {
  width: 15%;
  flex-shrink: 0;
}

.logo_right {
  text-align: right;
}

.heading_div {
  width: 70%;
  text-align: center;
}

.tital01 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--button-green);
  text-transform: uppercase;
  font-size: 5rem;
  text-align: center;
  padding: 2.5rem 0 0;
}

/* ===================================================================
   TOP BAR
=================================================================== */
.top-bar {
  background-color: var(--topbar-bg);
  color: #ecf0f1;
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar a {
  color: #f8f9fa;
}

.top-bar a:hover {
  color: var(--main-color);
}

/* ===================================================================
   HEADER MIDDLE (For separate logo/title/etc. section)
=================================================================== */
.header-middle {
  background: var(--header-bg);
  padding: 1.5rem 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #004D40;
}

.title-text h1 {
  font-family: 'Nunito Sans', sans-serif; /* Override for this specific title */
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #004D40;
}

.title-text h1 .eng-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00796B;
}

.title-text p,
.header-middle p {
  font-size: 1.4rem;
  color: #555;
  margin: 0.3rem 0 0;
}
/* ===================================================================
   NAVIGATION BAR
=================================================================== */
nav.navbar {
  width: 100%;
  height: 60px;
  background: var(--dark-green);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-weight: 500;
}

.navbar-nav {
  gap: 30px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--highlight-orange);
}

.navbar-nav .btn-outline-secondary {
  border-color: #fff;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar-nav .btn-outline-secondary:hover {
  background-color: #fff;
  color: var(--dark-green);
}

/* Bootstrap dropdown */
.dropdown-menu {
  background-color: var(--white-color);
  border: none;
  font-size: large;
  border-radius: 0.4rem;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dropdown-item {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #F0F4EE;
  color: var(--dark-green);
}

/* Multi-level dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  border-radius: 0.4rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a::after {
  content: "▶";
  float: right;
  margin-left: 5px;
  font-size: 0.6rem;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.dropdown-submenu:hover > a::after {
  transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
  }

  .dropdown-submenu > a::after { float: right; }
}


/* ===================================================================
   HERO SECTION / PAGE CONTENT
=================================================================== */
.hero-section {
  background-color: var(--body-bg);
  padding: 60px 20px 40px;
  text-align: center;
}

.hero-section1 p{
  font-size: 1.8rem;
} 

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-section img {
  width: 80px;
  height: auto;
}

.text-shadow {
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.home-tag {
  background-color: var(--hover-green);
  color: var(--white-color);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 6px 12px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  margin-bottom: 20px;
  display: inline-block;
}

.page_heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  padding-top: 30px;
  font-size: 4rem;
  text-align: center;
}

/* Text & Paragraphs */
.para_text {
  font-size: 1.8rem; /* larger font size */
  color: var(--dark-text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 30px;
  padding: 0px 40px;
}

.tpr_detail .para_text {
  text-align: justify;
}

.tpr_detail .para_text .green_para {
  color: var(--light-green);
  font-weight: 700;
}

p.diseases, p.diseases1 {
  text-align: center;
  color: #755d4c;
  border-radius: 5px;
}

p.diseases {
  height: 105px;
  font-size: 2rem;
  padding: 30px;
  background: #fbceb1;
  border: 1px solid #a9907e;
}

p.diseases1 {
  height: 60px;
  font-size: 1.9rem;
  padding: 15px;
  background: #fbceb1;
  border: 1px solid #a9907e;
}

p.det {
  font-size: 1.6rem;
  text-align: justify;
}

/* Utility Lists/Images */
.ad_list {
  padding: 30px 0;
  display: flex; /* Updated from display:table */
  justify-content: center;
  flex-wrap: wrap;
}
.ad_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ad_list ul li {
  margin: 10px 17px; /* Adjusted margin for flex layout */
  transition: 0.3s ease-in-out;
}
.ad_list ul li:hover {
  transform: scale(1.1);
}
.ad_list ul li img {
  width: 100%;
}

.hover-zoom {
  transition: transform .5s ease;
}

.hover-zoom:hover {
  transform: scale(1.1);
}

/* ===================================================================
   BUTTONS / FORMS
=================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
}

.button-primary {
  background: #4234f8; /* Blue accent */
  color: var(--white-color);
}

.button-primary:hover {
  background: #4b3ef8;
}

.button-secondary {
  background: #ff6c50; /* Orange accent */
  color: var(--white-color);
}

.button-secondary:hover {
  background: #ff795f;
}

.register-btn,
.btn-success1,
.btn-success {
  background-color: var(--dark-green);
  color: var(--white-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.register-btn:hover,
.btn-success1:hover,
.btn-success:hover {
  background-color: #3e6a37; /* Darker green hover */
}

.green_btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  border-radius: 15px;
  padding: 10px 40px;
  box-shadow: 0 3px 6px #333;
  background: var(--button-green);
  color: var(--white-color); /* Added white color for readability */
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.green_btn:hover {
  color: var(--white-color);
  background: #3e6a37;
}

/* Generic Button/Input */
button, input, select, textarea, label {
  font-size: 1.7rem;
  line-height: 30px;
}
button {
  background-color: black;
  color: #c5c5c5;
  padding: 25px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}
button.newbutton {
  background-color: #f16734;
  color: #fff600;
  padding: 4px 10px;
  margin: 20px 20px 0 0;
}

/* Search Form Example */
form.example input[type=text] {
  padding: 10px;
  font-size: 1.7rem;
  border: 1px solid grey;
  width: 75%;
  background: #f1f1f1;
  float: left;
}
form.example button {
  float: left;
  width: 25%;
  padding: 10px;
  background: #f16633;
  color: white;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
  /* Reset generic button style */
  background-color: #f16633;
  color: white;
  padding: 10px;
  border-radius: 0;
}
form.example::after {
  content: "";
  display: table;
  clear: both;
}

/* ===================================================================
   REGISTRATION FORM
=================================================================== */
.register {
  background: linear-gradient(to right, #f16633, #fff600);
  margin: 8% 0 1%;
  padding: 3%;
  display: flex;
  flex-wrap: wrap;
}
.register-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
  color: var(--white-color);
  margin-top: 4%;
}
.register-left img {
  width: 25%;
  margin: 15% 0 5%;
  animation: mover 1s infinite alternate;
}
.register-left input {
  border: none;
  border-radius: 1.5rem;
  padding: 2%;
  width: 60%;
  background: #f8f9fa;
  font-weight: bold;
  color: #383d41;
  margin: 30% 0 3%;
  cursor: pointer;
}
.register-right {
  flex: 2;
  min-width: 300px;
  background: #f8f9fa;
  border-top-left-radius: 10% 50%;
  border-bottom-left-radius: 10% 50%;
}
.register .register-form {
  padding: 10%;
  margin-top: 10%;
}
.btnRegister {
  border: none;
  border-radius: 1.5rem;
  padding: 2%;
  background: #f16a32;
  color: var(--white-color);
  font-weight: 600;
  width: 50%;
  cursor: pointer;
  /* Override generic button */
  background-color: #f16a32;
}
.register .nav-tabs {
  margin-top: 3%;
  border: none;
  background: #0062cc;
  border-radius: 1.5rem;
  width: 28%;
  float: right;
}
.register .nav-tabs .nav-link {
  padding: 2%;
  height: 34px;
  font-weight: 600;
  color: var(--white-color);
  border-radius: 0;
}
.register .nav-tabs .nav-link.active {
  width: 100px;
  color: #0062cc;
  border: 2px solid #0062cc;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.register-heading {
  text-align: center;
  margin: 8% 0 -15%;
  color: #495057;
}
.col-md-12.reg {
  text-align: center;
}
input.form-control.new {
  font-size: 1.5rem;
}
/* ================= HERO CAROUSEL ================= */
#hero {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  transition: transform 1.5s ease, filter 1.5s ease;
  filter: brightness(0.85);
}

.carousel-item.active img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Overlay Gradient */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 1;
}

/* Caption */
.carousel-caption {
  position: absolute;
  bottom: 0%;
  left: 10%;
  right: 10%;
  z-index: 2;
  text-align: left;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease forwards;
}

.carousel-caption h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #f0f0f0;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 127, 127, 0.7);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(0, 159, 159, 0.9);
}

/* Indicators */
.carousel-indicators {
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #00a896 !important;
  transform: scale(1.3);
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s 
ease;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-caption {
    bottom: 12%;
    padding: 1.5rem 2rem;
  }
  .carousel-caption h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  .carousel-caption p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
  }
  .carousel-caption {
    bottom: 8%;
    padding: 1rem 1.5rem;
  }
  .carousel-caption h2 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 0.95rem;
  }
}

/* ===================================================================
   CONTACT
=================================================================== */
.contact_box {
  background: #3e6a37;
  max-width: 700px;
  padding: 40px 20px;
  margin: 0 auto 40px;
  border-radius: 15px;
}

.contact_box .heading {
  font-size: 2.5rem;
  color: var(--white-color);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  padding-bottom: 20px;
}

.contact_item {
  font-size: 1.5rem;
  color: var(--white-color);
  font-family: 'Raleway', sans-serif;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact_item i {
  background: var(--white-color);
  padding: 8px;
  color: #3e6a37;
  font-size: 1.9rem;
  width: 30px;
  height: 30px;
  line-height: 16px;
  text-align: center;
  border-radius: 60px;
  margin-right: 11px;
  vertical-align: middle;
}

/* ===================================================================
   DOWNLOAD SECTION
=================================================================== */
.download-section {
  background-color: #E9ECEF;
  padding: 40px 20px;
  text-align: center;
}

.download-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.download-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.download-buttons img {
  height: 90px;
  margin: 10px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.download-buttons img:hover {
  transform: scale(1.05);
}

/* ===================================================================
   SCROLLING PARTNERS
=================================================================== */
.partner-marquee-wrapper {
  overflow: hidden;
  position: relative;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 10px 0;
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.partner-marquee-track .partner-logo {
  flex: 0 0 auto;
  padding: 0 20px;
  transition: transform 0.3s ease;
  min-width: 150px; /* Ensure logos have space */
}

.partner-marquee-track .partner-logo img {
  max-height: 60px;
  opacity: 0.8;
  margin: 0 auto; /* Center image within logo container */
}

.partner-marquee-track .partner-logo:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* ===================================================================
   FOOTER
=================================================================== */


.footer-container {
  background: var(--dark-green);
  color: var(--white-color);
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  margin: auto;
  gap: 40px;
  padding-top: 20px;
}

.footer-column {
  flex: 1;
  min-width: 260px;
}

.footer-container h3 {
  color: var(--white-color);
  border-left: 4px solid var(--white-color);
  padding-left: 10px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif; /* Override for footer */
}

.footer-column ul li a {
  color: var(--white-color);
  transition: all 0.3s ease;
  font-size: 1.6rem;
  display: inline-block; /* Allows transform */
  padding: 2px 0;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  transform: translateX(5px);
  color: #C6D834; /* Light yellow-green accent */
}

.footer-bottom {
  color: var(--white-color);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  border-top: 1px solid rgba(255,255,255,0.3);
  line-height: 1.6;
  padding: 15px 0;
  background: var(--dark-green);
}

.footer-bottom a {
  color: var(--white-color);
}

.footer-bottom a:hover {
  color: #C6D834;
}

/* ===================================================================
   UTILITIES
=================================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.p-2 { padding: 1rem; }
.pad01 { padding: 40px 0 0; }
.text_center { text-align: center; }

/* ===================================================================
   ANIMATIONS
=================================================================== */
@keyframes heroBg {
  from {
    transform: scaleY(0) scaleX(1.2) skewY(30deg);
    opacity: 0;
  }
  to {
    transform: scaleY(1) scaleX(1) skewY(0);
    opacity: 1;
  }
}

@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* Carousel/Hero Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Dark Theme Animations (Left for reference but typically not used with green theme) */
/*
@keyframes heroContent {
  from { transform: translateY(40px) skewY(2deg); opacity: 0; }
  to { transform: translateY(0) skewY(0); opacity: 1; }
}

@keyframes heroMockup {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
*/

/* ===================================================================
   RESPONSIVE / MEDIA QUERIES
=================================================================== */
@media (max-width: 1024px) {
  /* Features Extended adjustments for screens below 1025px (from merged block) */
  .feature-extended .feature-extended-image { margin-right: 96px; }
  .feature-extended:nth-child(even) .feature-extended-image { margin-left: 96px; }
}

@media (max-width: 992px) {
  .header {
    padding: 0 20px;
  }

  /* Old Nav Menu toggle logic */
  .nav-list {
    flex-direction: column;
    display: none;
    gap: 0;
    position: absolute;
    top: 60px;
    background: var(--dark-green);
    width: 100%;
    left: 0;
    z-index: 99;
    padding-bottom: 10px;
  }
  .nav-list li {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
  .nav-list a {
    font-size: 1.6rem;
  }

  .nav-list.active {
    display: flex;
  }

  /* Assuming a menu-icons toggle button exists in HTML */
  .menu-icons {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
  }
  
  
}

@media (max-width: 768px) {
  .top-bar, .header-middle, .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-column h3 {
    border-left: none;
    text-align: center;
  }
  .hero-section h1 { font-size: 2rem; }
  .download-buttons img { height: 70px; }
  
  
}

@media (max-width: 640px) {
  h1, h2 {
    font-size: 2rem;
  }
  .tital01 {
    font-size: 2rem;
  }
  
 

@media (max-width: 334px) {
  img.newimg { max-width: 148px !important; margin-bottom: 12px !important; }
}
}