/* White background for entire page */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
}

/* Header container with logo and heading */
header {
  background-color: white;
  width: 100%;
  height: 150px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  flex-wrap: wrap;
}

/* .logo-container {
  flex-shrink: 0;
} */

.logo {
  width: 350px;
  height: auto;
  margin-left: 30px;
  padding-top: 50px;
}

/* Navigation */
.navbar {
  background-color: #a60000;
  flex-grow: 1;
  margin-left: 400px;
  display: inline-block;
  border-radius: 8px;
  position: relative;
  margin-top: 0;
  padding-top: 0;
  top:-70px;
}

.nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  margin-top: 5px;
  margin-bottom: 5px;

}

.nav li {
  position: relative;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.nav a:hover {
  background-color: #c22e2e;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #b10606;
  min-width: 220px;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  padding: 10px;
  border-bottom: 1px solid #fff;
}

.dropdown-menu a:hover {
  background-color: #c72d2d;
}
/* .slider {
  position: relative;
  width: 100%;
  height: 400px;
  background: #801313;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.slide.active {
  display: flex;
}


.slide .text {
  flex: 1;
  font-size: 1.5rem;
  text-align: left;
  padding-right: 2rem;
  text-decoration: underline;
}

.slide .image {
  flex: 1;
  text-align: center;
}

.slide .image img {
  width: 300px;
  height: auto;
}

.slide .image p {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-family: cursive;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  user-select: none;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
  background-color: yellow;
}

.icons {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  width: 300px;
  height: 300px;
  position: relative;
}

.icon-grid::before, .icon-grid::after {
  content: '';
  position: absolute;
  background-color: yellow;
}

.icon-grid::before{
  content: '';
  position: absolute;
  background-color: yellow;
  height: 100%;
  width: 3px;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-1px);
  z-index: 1;
}

.icon-grid::after{
  content: '';
  position: absolute;
  background-color: yellow;
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  transform: translateY(-px);
  z-index: 1;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.icon-grid img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.benefits-text {
  flex: 1;
  color: white;
  padding-left: 2rem;
}

.benefits-text h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefits-text ul {
  list-style: none;
  font-size: 1.2rem;
  line-height: 2;
}

.benefits-text li::before {
  content: '✔ ';
  color: #00ff99;
} */

/* Arrows */
/* .prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  user-select: none;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
} */

/* Dots */
/* .dots {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
  background-color:yellow;
} */

/* .nav-dot{
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background:rgba(255, 255, 255, 0.5);
   cursor: pointer;
   transition: all 0.3s ease;
}

.nav-dot.active{
   background-color: #fff;
   transform: scale(1.2);
}

.slide {
  display: none;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.slide.active {
  display: flex;
} */

/* margin: 40px 20px; */
/* .info-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0px 10px 20px 10px 
}

.info-box {
  flex: 1 1 calc(25% - 10px);
  max-width: 300px;
  padding:20px;
  color: white;
  text-align: center;
  border-radius: 0px;
  margin: 0px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
 
} */

/* .info-box:hover {
  transform: translateY(-5px);
} */

/* .icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.info-box h3 {
  font-size: 20px;
  margin: 10px 0;
}

.info-box p {
  font-size: 15px;
  margin: 10px 0 20px;
}

.info-box button {
  padding: 8px 16px;
  border: none;
  background-color: white;
  color: black;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* background: url(./sainisociety_bg_sp_img1.avif) center center; */
/* .green1 { 
  background-color: rgba(40, 167, 69, 0.6);
  width: auto;
  height: 500%;
  margin-left: -10px;
  
}
.orange2 { 
  background-color: rgba(245, 90, 1, 0.7);
  width: auto;
   height: 500%;
}
.blue3 { 
  background-color: rgba(23, 162, 184, 0.7);
  width: auto; 
   height: 500%;
}
.yellow4 { 
  background-color:rgba(255, 193, 7, 0.7);
  width: auto; 
   height: 500%;
  margin-right: -10px;
} */ */

/* .info-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 40px 60px;
  gap: 40px;
}

.info-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
}

.btn_banner {
  font-size: 26px;
  margin-bottom: 15px;
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #d65a5a;
  cursor: pointer;
  border: none;
  padding: 10px;
  border-radius: 10px;
}

.btn_banner:hover{
  background-color:#b71c1c;
}

.info-text ul {
  list-style: none;
  padding: 0;
}

.info-text li {
  margin-bottom: 10px;
  color: #333;
}

.info-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
} */

/* Info Section Style */
/* .info-section1 {
  background: #2c2c2c;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  gap: 10px;
  flex-wrap: wrap;
}

.info-box .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.info-box .circle p {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
}

.green {
  border-color: #5cb85c transparent transparent transparent;
  background: conic-gradient(#5cb85c 70%, #444 0);
}
.orange {
  border-color: #f0ad4e transparent transparent transparent;
  background: conic-gradient(#f0ad4e 80%, #444 0);
}
.blue {
  border-color: #5bc0de transparent transparent transparent;
  background: conic-gradient(#5bc0de 15%, #444 0);
}
.yellow {
  border-color: #f0c419 transparent transparent transparent;
  background: conic-gradient(#f0c419 30%,#4440);
} */

/* .latest-update {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.updates-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.update-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 45%;
}

.image-placeholder {
  width: 100px;
  height: 100px;
  background-color: #444;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.update-content {
  max-width: 70%;
}

.update-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.update-description {
  font-size: 14px;
  color: #555;
}

.view-all-btn {
  text-align: right;
  margin-top: 30px;
}

.view-all-btn button {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.view-all-btn button:hover {
  background-color:#c62828;
} */

/* .site-footer {
  background-color:  #444;
  color: white;
  padding: 20px 30px;
  font-size: 14px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-content p {
  margin: 0 0 10px 0;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d2e3ff;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
} */

/* position: absolute; */
/* .footer-buttons {
  position: fixed;
  right: 30px;
  top: 95%;
  transform: translateY(-50%);
} */

.btn {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}

.btn:hover {
  background-color:#c62828;
}

/* Slider Container */
.slider-head {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 300px;
  background: #7e1111;
  padding: 30px;
}

/* Slide */
.slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  transition: opacity 0.5s ease-in-out;
}
.slide.active {
  display: flex;
}

/* Text Section */
.slide .text {
  flex: 1;
}
.slide .text h2 {
  font-size: 2rem;
  font-family: 'serif';
  font-weight: lighter;
  color: white;
  padding-left: 200px;
}

.underline{
 text-decoration: underline;
}

.slide .text p {
  font-size: 1.1rem;
  color: #666;
}

/* Image Section */
.slide .image img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  padding-right: 400px;
  border-radius: 5px;
}

.image p{
  font-size: 25px;
  font-family: cursive;
  padding-left: 20px;
  margin-top: 5px;
  color: white;
 font-weight: lighter;
}

/* Icon Section */
.icons {
 flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-grid{
  display: grid;
  grid-template-columns: 1fr  1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  position: relative;
}

.icon-grid::before, 
.icon-grid::after {
 content: "";
 position: absolute;
 background-color: yellow;
}

.icon-grid::before{
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-1px);
}

.icon-grid::after{
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
}

.icon-box{
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  width: 100px;
  height: 100px;
  /* filter: brightness(10); */
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 20px;
}

.benefits-text{
  font-family: serif;
  font-size: 20px;
  color: white;
  padding-right: 250px;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: #333; */
  color: white;
  font-size: 30px;
  padding: 700px 80px;
  border-radius: 50%;
  z-index: 100;
}
.prev:hover, .next:hover {
  background: #1312123b;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Dots */
.dots {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}
.dot {
  height: 8px;
  width: 8px;
  margin: 0 1px;
  background-color:#7e1111;
  border: 1px solid white;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background-color:  white;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}

.box {
  flex: 1 1 20%;
  padding: 30px 20px;
  color: white;
  text-align: center;
  min-width: 250px;
}

.box .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.box p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.box button {
  padding: 8px 20px;
  background-color: white;
  color: #333;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.box button:hover{
  background-color: #e2dbdb;
}

.box.green1 {
  background-color: #3baf4a;
  height: 270px;
}

.box.orange2 {
  background-color: #da6d28;
  height: 300px;

}

.box.blue3 {
  background-color: #00a9e0;
}

.box.yellow4 {
  background-color:#f5b400;
}

.hero-section {
  background: #f8f8f8;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-text {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}

.left-text h3 {
  color: red;
  margin-bottom: 15px;
}

.left-text p {
  margin-bottom: 10px;
}

.left-text ul {
  list-style: none;
  padding-left: 0;
}

.left-text li {
  margin-bottom: 8px;
  font-size: 16px;
}

.right-img {
  flex: 1;
  max-width: 50%;
  text-align: right;
  margin-right: 100px;
  margin-bottom: -45px;
}

.right-img img {
  max-width: 100%;
  height: auto;
}

.hero-section {
  background: #f8f8f8;
  padding: 40px 20px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-text {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}

.left-text h3 {
  background-color: #c62828;
  color:white;
  margin-bottom: 15px;
  display: inline-block;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
}

.left-text h3:hover{
  background-color: #da5353;
}

.left-text p {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: left;
}

.left-text ul {
  list-style: none;
  padding-left: 0;
}

.left-text li {
  margin-bottom: 8px;
  font-size: 16px;
}

.right-img {
  flex: 1;
  max-width: 50%;
  text-align: right;
}

.right-img img {
  max-width: 100%;
  height: auto;
}

.stats-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #333;
  padding: 40px 20px;
  flex-wrap: wrap;
  height: 200px;
}

.circle-container {
  text-align: center;
  margin: 0 60px;
}

.circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--color) calc(var(--percent) * 1%), #eee 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 30px;
}

.inner-text {
  width: 100px;
  height: 100px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inner-text strong {
  font-size: 22px;
  font-weight: bold;
}

.inner-text span {
  font-size: 11px;
  margin-top: 5px;
  text-align: center;
}

.latest-update {
  padding: 40px 20px;
  background: #f7f7f7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  margin-left: 100px;
  margin-right: 100px;
}

.section-header h2 {
  font-size: 22px;
  color: #333;
}


.view-all {
  background-color: #f44336;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.view-all:hover{
  background-color: #d32f2f;
}

.update-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.update-card {
  background-color: white;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 500px;
}

.update-image {
  width: 100px;
  height: 100px;
  background-color: #444;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  text-align: center;
  line-height: 1.2;
}

.update-text h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
}

.update-text p {
  font-size: 14px;
 color: #555;
}

.update-image{
  color: #807d7d;
  font-weight: bold;
  font-size: 16px;
}

.site-footer {
  background-color:  #444;
  color: white;
  padding: 20px 30px;
  font-size: 14px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-content p {
  margin: 0 0 10px 0;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d2e3ff;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-buttons {
  /* position: absolute; */
  position: fixed;
  right: 30px;
  top: 95%;
  transform: translateY(-50%);
}

.btn {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}

.btn:hover {
  background-color:#c62828;
}