
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* 
  old-color: #e1c299;
  new-color: #e1c299;
*/


@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
html{
  scroll-behavior: smooth;
}


body {
  font-family: "Open Sans", sans-serif;
  /* color: #444444; */
  color: #212529;
  overflow-x:hidden;
}

a {
  color: #703c19;
  text-decoration: none;
}

a:hover {
  color: #e1c299;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e1c299;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e1c299;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 400;
}
#hero h2 span {
  color: #e1c299;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  background: #e1c299;
}
#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  text-transform: uppercase;
  border: 2px solid #e1c299;
  background: #F88E3E;
}
#hero .btn-get-started:hover {
  background: #703c19;
  border-color: #703c19;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

/* .section-bg {
  background-color: #f1f1f1;
} */

.section-bg {
  background-color: #f1f1f1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}
.section-title h2,h3 {
  font-size: 32px;
  font-weight: bold;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #703c19;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
}
.about .content p {
  margin-bottom: 0;
  text-align: justify !important;
}
.about .content .icon-box {
  margin-top: 25px;
}
.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}
.about .content .icon-box i {
  font-size: 30px;
  float: left;
  color: #703c19;
}
.about .content .icon-box p {
  font-size: 15px;
  color: #444444;
  margin-left: 60px;
}
.about .image {
  background: url("../img/mgmu.jpg") center center no-repeat;
  border-radius: 5%;
  background-size: cover;
  min-height: 400px;
}
@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

.mybtn

.mybtn {
  background-color: #f88e3e; /* Change to a more vibrant color */
  padding: 10px 20px; /* Increase padding for better click area */
  color: #fff;
  text-decoration: none;
  border-radius: 5px; /* Slightly round the corners */
  border: none;
  transition: background-color 0.3s; /* Add transition for hover effect */
}
.mybtn:hover {
  background-color: #703c19; /* Darker shade on hover */
}
/* {
  background-color: #e1c299;
  padding: 2px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  border: none;
}
.mybtn:hover{
  color: #fff;
} */

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
}
.counts .count-box {
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #e1c299;
  float: left;
  line-height: 0;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2a2a2a;
  margin-left: 60px;
}
.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #777777;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services{
  background-color: #b16a0d14;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}
.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #e1c299;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}
.services .icon i {
  font-size: 36px;
  line-height: 0;
}
.services:hover .icon {
  box-shadow: 0px 0 25px rgba(92, 159, 36, 0.3);
}
.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
.services .title a {
  color: #703c19;
  transition: 0.3s;
}
.services .title a:hover {
  color: #e1c299;
}
.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #e1c299;
  bottom: 0;
  left: calc(50% - 25px);
}
.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #703c19;
}
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #2a2a2a;
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #e1c299f3;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #e1c299;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(42, 42, 42, 0.7);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(42, 42, 42, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #703c19;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e1c299;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e1c299;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 42, 42, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
}
.team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}
.team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  color: #e1c299;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}
.pricing .box h4 {
  font-size: 42px;
  color: #e1c299;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #2a2a2a;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: #e1c299;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  border: 2px solid #e1c299;
  color: #e1c299;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {
  background: #e1c299;
  color: #fff;
}
.pricing .recommended {
  background: #e1c299;
}
.pricing .recommended h3, .pricing .recommended h4, .pricing .recommended h4 span, .pricing .recommended ul, .pricing .recommended ul .na {
  color: #fff;
}
.pricing .recommended .btn-buy {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pricing .recommended .btn-buy:hover {
  background: #fff;
  border-color: #fff;
  color: #e1c299;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #e1c299;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #e1c299;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #e1c299;
}
.contact .contact-info address, .contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
.contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
.contact .contact-info a {
  color: #000;
}
.contact .contact-info a:hover {
  color: #e1c299;
}
.contact .contact-address, .contact .contact-phone, .contact .contact-email {
  margin-bottom: 20px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #e1c299;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #e1c299;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  padding: 10px 15px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #e1c299;
}
.contact .php-email-form button[type=submit] {
  background: #e1c299;
  border: 0;
  padding: 10px 30px 12px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #6ab82a;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact .contact-address, .contact .contact-phone, .contact .contact-email {
    padding: 20px 0;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f6;
  min-height: 40px;
  margin-top: 80px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #703c19;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #e1c299;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #703c19;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #e1c299;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e1c299;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #e1c299;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #000;
}
#footer .credits a{
  color: #000;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #000;
}

#registration
{
  background-color: #b16a0d14;
}
#patron
{
  /* background-color: #e1c29914; */
}
#advisory {
  background-color: #b16a0d14;
}

#city {
  background-color: #b16a0d14;
}


@media screen and (max-width: 531px) {
  .container { display: flex; flex-flow: column; }
  .B { order: 1; }
  .A { order: 2; }
  .D { order: 3; }
  .C { order: 4; } 
}

@media (max-width: 531px) {
  .sizeOnSmall{
    padding:50px;
  }
}

html{
  padding: 0px;
  margin: 0px;
}

table a {
  color: #1c0ded !important;
}

.NewBtn {
  color: #703c19;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border: 1px solid #703c19;
}



          
/*--------------------------------------------------------------
# Team2 Section
--------------------------------------------------------------*/
.team2 .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team2 .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team2 .member .member-content {
  padding: 0 20px 30px 20px;
}

.team2 .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team2 .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team2 .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* .team2 .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
} */

.team2 .member .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team2 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*contact sectiom code*/



    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f9f3ec;
            padding: 40px 20px;
            min-height: 100vh;
        } */

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: #703c19;
            font-size: 3em;
            margin-bottom: 50px;
            text-shadow: 2px 2px 4px rgba(112, 60, 25, 0.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .contact-card h2 {
            color: #703c19;
            font-size: 1.3em;
            margin-bottom: 20px;
            border-bottom: 3px solid #703c19;
            padding-bottom: 10px;
        }

        .contact-info {
            margin-bottom: 15px;
        }

        .contact-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .contact-email {
            color: #703c19;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-email:hover {
            color: #8d4d20;
            text-decoration: underline;
        }

        .address-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 30px;
        }

        .address-section h2 {
            color: #703c19;
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .address-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .address-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .address-text p {
            color: #555;
            font-size: 1.1em;
            line-height: 1.8;
            text-align: center;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .address-content {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 300px;
            }

            .contact-card {
                padding: 20px;
            }
        }


        /*--------Submission-Guidelines-tab------*/
 .submission-section {
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      color: #7b4e2a;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 0;
    }

    .guidelines-box {
      background: white;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-left: 6px solid #7b4e2a;
    }

    .intro-text {
      color: #2c3e50;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .subsection-title {
      color: #2c3e50;
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 20px;
      margin-top: 30px;
    }

    .subsection-title:first-of-type {
      margin-top: 0;
    }

    .guidelines-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 30px;
    }

    .guidelines-list li {
      color: #555;
      font-size: 1.05rem;
      line-height: 1.8;
      padding-left: 35px;
      position: relative;
      margin-bottom: 12px;
    }

    .guidelines-list li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #7b4e2a;
      font-weight: 700;
      font-size: 1.3rem;
    }

    .submission-info {
      background: #f8f9fa;
      padding: 20px 25px;
      border-radius: 10px;
      margin-bottom: 25px;
      border-left: 4px solid #5dade2;
    }

    .submission-info p {
      color: #2c3e50;
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .submission-info strong {
      color: #1a5490;
      font-weight: 700;
    }

    .deadline-box {
      background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
      padding: 20px 25px;
      border-radius: 10px;
      margin-bottom: 25px;
      border-left: 4px solid #ff8c42;
      display: flex;
      align-items: center;
    }

    .deadline-box i {
      font-size: 2rem;
      color: #ff8c42;
      margin-right: 20px;
    }

    .deadline-box p {
      color: #2c3e50;
      font-size: 1.1rem;
      margin-bottom: 0;
      font-weight: 600;
    }

    .deadline-box strong {
      color: #d35400;
    }

    .note-text {
      color: #555;
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: justify;
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2rem;
      }

      .guidelines-box {
        padding: 25px 20px;
      }

      .intro-text,
      .guidelines-list li,
      .submission-info p,
      .note-text {
        font-size: 1rem;
      }

      .deadline-box {
        flex-direction: column;
        text-align: center;
      }

      .deadline-box i {
        margin-right: 0;
        margin-bottom: 15px;
      }
    }

       /*--------Paper Submission------*/
          .submission-section {
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      color: #7b4e2a;
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 0;
    }

    .submission-box {
      background: white;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-left: 6px solid #7b4e2a;
      text-align: center;
    }

    .submission-content {
      color: #2c3e50;
      font-size: 1.1rem;
      line-height: 1.8;
      text-align: justify;
      margin-bottom: 35px;
    }

    .submission-content a {
      color: #7b4e2a;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .submission-content a:hover {
      border-bottom-color: #7b4e2a;
    }

    .submission-content strong {
      color: #2c3e50;
      font-weight: 700;
    }

    .btn-register {
      background-color: #7b4e2a;
      color: white;
      padding: 15px 50px;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(123, 78, 42, 0.3);
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
    }

    .btn-register:hover {
      background-color: #5d3a1f;
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(123, 78, 42, 0.4);
      color: white;
    }

    .btn-register:active {
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(123, 78, 42, 0.3);
    }

    .btn-register i {
      margin-right: 10px;
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2rem;
      }

      .submission-box {
        padding: 25px 20px;
      }

      .submission-content {
        font-size: 1rem;
        text-align: left;
      }

      .btn-register {
        padding: 12px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
      }
    }

    /*----header------------*/
   /* Header Container */
  #header {
    background: white;
    width: 100%;
    z-index: 997;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .header-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Conference Title Section */
  .conference-title-section {
    background: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
  }

  .conference-title {
    color: #7b4e2a;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }

  .conference-title sup {
    font-size: 0.6em;
    top: -0.5em;
  }

  /* Header Navigation Wrapper */
  .header-nav-wrapper {
    padding: 10px 30px;
    background: white;
  }

  /* Logo */
  .logo {
    line-height: 1;
  }

  .logo img {
    max-height: 70px;
    width: auto;
  }

  /* Navbar */
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
  }

  .navbar li {
    position: relative;
  }

  .navbar a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .navbar a:hover,
  .navbar .active {
    color: #7b4e2a;
  }

  .navbar .active {
    border-bottom: 2px solid #7b4e2a;
  }

  /* Mobile Navigation Toggle */
  .mobile-nav-toggle {
    display: none;
    color: #7b4e2a;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  /* Add padding to body to prevent content from hiding under fixed header */
  body {
    padding-top: 140px; /* Adjust this value based on your header height */
  }

  /* Responsive Styles */
  @media (max-width: 1400px) {
    .conference-title {
      font-size: 1.3rem;
    }

    .navbar a {
      font-size: 0.8rem;
      padding: 10px 10px;
    }

    .navbar ul {
      gap: 2px;
    }

    body {
      padding-top: 130px;
    }
  }

  @media (max-width: 1200px) {
    .conference-title {
      font-size: 1.2rem;
    }

    .navbar a {
      font-size: 0.75rem;
      padding: 10px 8px;
    }

    .header-nav-wrapper {
      padding: 10px 20px;
    }

    body {
      padding-top: 125px;
    }
  }

  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
      margin-left: 15px;
    }

    .navbar ul {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      right: 15px;
      background: white;
      width: 280px;
      border-radius: 8px;
      padding: 15px 0;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
      flex-direction: column;
      gap: 0;
      z-index: 999;
    }

    .navbar ul.navbar-mobile {
      display: flex;
    }

    .navbar li {
      width: 100%;
    }

    .navbar a {
      padding: 12px 20px;
      font-size: 0.9rem;
      width: 100%;
      border-bottom: none;
    }

    .navbar a:hover,
    .navbar .active {
      background: #f8f5f0;
      color: #7b4e2a;
    }

    .conference-title {
      font-size: 1rem;
    }

    .logo img {
      max-height: 55px;
    }

    body {
      padding-top: 115px;
    }
  }

  @media (max-width: 768px) {
    .conference-title-section {
      padding: 12px 15px;
    }

    .conference-title {
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .header-nav-wrapper {
      padding: 8px 15px;
    }

    .logo img {
      max-height: 50px;
    }

    body {
      padding-top: 105px;
    }
  }

  @media (max-width: 576px) {
    .conference-title {
      font-size: 0.8rem;
    }

    .logo img {
      max-height: 45px;
      width: 75px;
    }

    body {
      padding-top: 100px;
    }
  }


  /*-----------Registration section----------*/
   .fees-section {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      color: #7b4e2a;
      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 0;
      position: relative;
      display: inline-block;
    }

    .section-title h2:after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, #7b4e2a 0%, #d4a574 100%);
      border-radius: 2px;
    }

    .fees-table-wrapper {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      margin-bottom: 35px;
    }

    .fees-table {
      width: 100%;
      margin-bottom: 0;
    }

    .fees-table thead {
      background: linear-gradient(135deg, #7b4e2a 0%, #9d6639 100%);
    }

    .fees-table thead th {
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 20px;
      border: none;
      text-align: center;
    }

    .fees-table tbody tr {
      transition: all 0.3s ease;
      border-bottom: 1px solid #f0f0f0;
    }

    .fees-table tbody tr:hover {
      background: linear-gradient(90deg, #fef9f3 0%, #fef5e7 100%);
      transform: scale(1.01);
      box-shadow: 0 4px 15px rgba(123, 78, 42, 0.1);
    }

    .fees-table tbody tr:last-child {
      border-bottom: none;
    }

    .fees-table tbody td {
      padding: 20px;
      color: #555;
      font-size: 1rem;
      vertical-align: middle;
      transition: color 0.3s ease;
    }

    .fees-table tbody tr:hover td {
      color: #2c3e50;
    }

    .fees-table tbody td:first-child {
      font-weight: 600;
      color: #2c3e50;
      text-align: center;
    }

    .fees-table tbody td:nth-child(2) {
      font-weight: 700;
      color: #7b4e2a;
      font-size: 1.2rem;
      text-align: center;
    }

    .fees-table tbody td:last-child {
      text-align: center;
    }

    /* Staggered animation */
    @keyframes fadeInRow {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .fees-table tbody tr {
      animation: fadeInRow 0.6s ease forwards;
      opacity: 0;
    }

    .fees-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
    .fees-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
    .fees-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
    .fees-table tbody tr:nth-child(4) { animation-delay: 0.4s; }

    .info-box {
      background: white;
      border-left: 5px solid #7b4e2a;
      border-radius: 10px;
      padding: 25px 30px;
      margin-bottom: 25px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .info-box:hover {
      transform: translateX(5px);
      box-shadow: 0 8px 25px rgba(123, 78, 42, 0.15);
    }

    .info-box p {
      color: #555;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .info-box strong {
      color: #7b4e2a;
      font-weight: 700;
    }

    .additional-info {
      background: white;
      border-radius: 10px;
      padding: 25px 30px;
      margin-bottom: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .additional-info ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .additional-info ul li {
      color: #555;
      font-size: 1rem;
      line-height: 1.8;
      padding-left: 30px;
      position: relative;
      margin-bottom: 12px;
    }

    .additional-info ul li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #7b4e2a;
      font-weight: 700;
      font-size: 1.3rem;
    }

    .register-btn {
      background: linear-gradient(135deg, #7b4e2a 0%, #9d6639 100%);
      color: white;
      padding: 15px 45px;
      font-size: 1.1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(123, 78, 42, 0.3);
      text-decoration: none;
      display: inline-block;
      margin-bottom: 30px;
    }

    .register-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(123, 78, 42, 0.4);
      background: linear-gradient(135deg, #5d3a1f 0%, #7b4e2a 100%);
      color: white;
    }

    .register-btn i {
      margin-right: 10px;
    }

    .note-box {
      background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
      border-left: 5px solid #ff8c42;
      border-radius: 10px;
      padding: 25px 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .note-box p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .note-box strong {
      color: #2c3e50;
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2.2rem;
      }

      .fees-table-wrapper {
        overflow-x: auto;
      }

      .fees-table thead th,
      .fees-table tbody td {
        padding: 15px 10px;
        font-size: 0.9rem;
      }

      .fees-table tbody td:nth-child(2) {
        font-size: 1rem;
      }

      .info-box,
      .additional-info,
      .note-box {
        padding: 20px;
      }

      .register-btn {
        width: 100%;
        max-width: 300px;
      }
    }

    /*-------------Date Section--------*/

     .dates-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    /* .section-title {
      text-align: center;
      margin-bottom: 60px;
    } */

    /* .section-title h2 {
      color: #7b4e2a;
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 0;
    } */

    .dates-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-bottom: 30px;
    }

    .dates-container.bottom-row {
      grid-template-columns: repeat(3, 1fr);
    }

    .date-box {
      background: white;
      border-radius: 12px;
      padding: 40px 25px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .date-box:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #7b4e2a 0%, #d4a574 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .date-box:hover:before {
      transform: scaleX(1);
    }

    .date-box:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 15px 35px rgba(123, 78, 42, 0.2);
    }

    .date-box:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 80%;
      height: 3px;
      background: #7b4e2a;
      transition: transform 0.4s ease;
      border-radius: 2px;
    }

    .date-box:hover:after {
      transform: translateX(-50%) scaleX(1);
    }

    .date-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .date-box:hover .date-number {
      color: #7b4e2a;
    }

    .date-description {
      font-size: 0.95rem;
      color: #888;
      line-height: 1.6;
      margin-bottom: 0;
      transition: color 0.3s ease;
    }

    .date-box:hover .date-description {
      color: #666;
    }

    .date-description ul {
      list-style: none;
      padding-left: 0;
      margin-top: 10px;
      margin-bottom: 0;
    }

    .date-description ul li {
      font-size: 0.9rem;
      margin-bottom: 6px;
      padding-left: 18px;
      position: relative;
    }

    .date-description ul li:before {
      content: '◆';
      position: absolute;
      left: 0;
      color: #7b4e2a;
      font-size: 0.7rem;
    }

    /* Staggered animation on page load */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .date-box {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }

    .date-box:nth-child(1) { animation-delay: 0.1s; }
    .date-box:nth-child(2) { animation-delay: 0.2s; }
    .date-box:nth-child(3) { animation-delay: 0.3s; }
    .date-box:nth-child(4) { animation-delay: 0.4s; }
    .date-box:nth-child(5) { animation-delay: 0.5s; }
    .date-box:nth-child(6) { animation-delay: 0.6s; }
    .date-box:nth-child(7) { animation-delay: 0.7s; }

    /* Pulse animation for important date */
    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      }
      50% {
        box-shadow: 0 8px 30px rgba(123, 78, 42, 0.25);
      }
    }

    .date-box.highlight {
      animation: fadeInUp 0.6s ease forwards, pulse 2s ease-in-out infinite;
      animation-delay: 0.1s, 1s;
    }

    @media (max-width: 1200px) {
      .dates-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .dates-container.bottom-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 2.2rem;
      }

      .dates-container,
      .dates-container.bottom-row {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .date-box {
        padding: 30px 20px;
      }

      .date-number {
        font-size: 1.3rem;
      }
    }

    /*---------------Commitee------------*/

    