/********** Template CSS **********/
:root {
  --primary: #B78431;
  --secondary: #FDBE33;
  --light: #F4F6F8;
  --dark: #040F28;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  transition: .5s;
}

.btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  bottom: -1px;
  left: 50%;
  background: var(--primary);
  transition: .5s;
}

.btn.btn-primary::after {
  background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
  width: 50%;
  left: 25%;
}

.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  border-radius: 0;
  z-index: 99;
}

.bg-dark-radial {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-size: 3px 3px;
}

.bg-light-radial {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link  {
      margin-left: 0;
      padding: 10px 0;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 15, 40, .7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h4 {
      font-size: 18px;
      font-weight: 500 !important;
  }

  .carousel-caption h1 {
      font-size: 30px;
      font-weight: 600 !important;
  }
}

.page-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.service-item .service-icon {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.service-item .service-icon i {
  transition: .2s;
}

.service-item:hover .service-icon i {
  font-size: 60px;
}

.portfolio-item {
  margin-bottom: 60px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  padding: 0 30px;
  right: 30px;
  left: 30px;
  bottom: -60px;
  background: #FFFFFF;
  z-index: 3;
}

.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  font-size: 120px;
  line-height: 0;
  transition: .1s;
  transition-delay: .3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  transition: .5s;
  z-index: 1;
  background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
  left: 0;
}

.portfolio-box::after {
  right: 0;
}

.portfolio-item:hover .portfolio-box::before {
  left: 0;
  width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
  right: 0;
  width: 50%;
}

@media (min-width: 992px) {
  .testimonial,
  .contact-form {
      margin-left: -90px;
  }
}

@media (min-width: 992px) {
  .footer::after {
      position: absolute;
      content: "";
      width: 1px;
      height: 100%;
      top: 0;
      left: 50%;
      background: var(--primary)
  }
}

.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--primary);
  transform: skew(40deg);
}
.logo-img {
  width: 250%; /* Increase the logo size relative to its container */
  max-width: 800px; /* Set a maximum width for larger screens */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between the logo and text */
  margin-left: -20px; /* Move the logo to the left */
}

/* Media queries for different screen sizes */
@media (max-width: 1200px) {
  .logo-img {
    width: 130%; /* Adjust the size for large screens */
    max-width: 700px; /* Set a slightly smaller maximum width */
    margin-left: -15px; /* Adjust left margin for large screens */
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 110%; /* Adjust the size for tablets */
    max-width: 600px; /* Set a smaller maximum width */
    margin-left: -10px; /* Adjust left margin for tablets */
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 100%; /* Fit within the container for mobile devices */
    max-width: 400px; /* Set the maximum width for mobile devices */
    margin-left: 0; /* No left margin for mobile devices */
  }
}

/* Mobile Styles */
@media only screen and (max-width: 767px) {

  .section-padding {
    padding: 30px 15px; 
  }

  .services-icons .left-side-icon {
    float: none;
    margin-bottom: 15px;
  }

  .services-icons img {
    width: 60px;
    height: 60px;
  }

  .features-text-right {
    text-align: center;
  }

}

/* Tablet Styles */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .section-padding {
    padding: 50px 30px;
  }

  .services-icons .left-side-icon {
    float: left;
    margin-right: 15px; 
  }

  .services-icons img {
    width: 80px;
    height: 80px;
  }

} 

/* Desktop Styles */
@media only screen and (min-width: 992px) {

  .section-padding {
    padding: 70px 50px;
  }

  .services-icons .left-side-icon {
    float: left;
    margin-right: 25px;
  }

  .services-icons img {
    width: 100px;
    height: 100px;
  }

}

/* General Styles */

.section-padding {
  background: #f5f5f5;
}

.services-icons {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.services-icons img {
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
} 

.features-text-right {
  flex: 1;
}

h3 {
  margin-top: 0;
  font-size: 20px;
}

p {
  font-size: 14px;
  line-height: 1.5;
}



/* Testimonials Section Styles */
.page-title {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.container.section-padding {
  padding: 40px 15px;
}

.test_gallary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card.gallery {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.card.gallery video {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

.card.gallery .card-body {
  padding: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .card.gallery {
      width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .card.gallery {
      width: 100%;
  }
}




.image_container{
  display: flex;
  flex-wrap: wrap;
}

.img-fluid{
  width: 200px;
  margin-left: 10px;
  margin-bottom: 10px;
  justify-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}



/* Add this CSS for styling the funfacts section */




#floating-sidebar {
  position: fixed;
  top: 50%;
  right: 1780px;
  transform: translate(-50%, -50%);
  background-color: #030303;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #B78431; /* Add blue border */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.social-icon {
display: block;
margin-bottom: 10px;
padding: 8px;
color: #fff;
text-decoration: none;
text-align: center;
border-radius: 5px;
font-size: 20px;
}
.linkedin {
  background: linear-gradient(135deg, #B78431, #00405e);
}

.twitter {
  background: linear-gradient(135deg, #1da1f2, #005a9e);
}

.instagram {
  background: linear-gradient(135deg, #e4405f, #bc2a8d);
}

.youtube {
  background: linear-gradient(135deg, #c4302b, #961e18);
}



 /* Style for the blinking animation */
 @keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Style for the WhatsApp icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: blink 1s infinite;
}

/* Style for the WhatsApp icon on hover */
.whatsapp-icon:hover {
  animation: none; /* Disable blinking on hover */
}

/* Make the icon larger */
.whatsapp-icon i {
  font-size: 80px;
}








body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.image-container {
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  padding: 20px;
  box-sizing: border-box;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center the image */
}

.content-container {
  flex: 1;
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .image-container img {
      max-width: 100%; /* Make the image responsive on smaller screens */
  }
}

/* Common styling for links in tables */
table tr>td>a,
table tr>td>a:hover {
  text-decoration: underline;
}
/* Events section styling */
section.events-section .event-section-wrapper {
  padding: 60px 0 7px;
}

@media screen and (max-width: 479px) {
  section.events-section .event-section-wrapper {
      padding: 36px 0 7px;
  }
}

@media screen and (max-width: 768px) {
  section.events-section .event-section-wrapper {
      padding: 61px 0 50px;
  }
}

/* Event slider styling */
section.events-section .event-slider {
  width: 100%;
  overflow: hidden;
  padding: 15px 0 35px 0;
}

section.events-section .event-slider .slick-initialized.slick-slider {
  width: 100%;
  overflow: hidden;
  margin: 0 35px;
}

@media screen and (max-width: 768px) {
  section.events-section .event-slider .slick-initialized.slick-slider {
      margin: 0;
      padding: 20px 10px;
  }
}

/* Hide arrow in the event slider */
section.events-section .event-slider .slick-initialized.slick-slider .slick-arrow {
  display: none !important;
}

/* Style dots in the event slider */
section.events-section .event-slider .slick-initialized.slick-slider .slick-dots {
  text-align: center;
  padding-left: 0;
  display: block;
  z-index: 9;
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

section.events-section .event-slider .slick-initialized.slick-slider .slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 45px;
  padding: 0 2px;
  cursor: pointer;
}

@media screen and (max-width: 479px) {
  section.events-section .event-slider .slick-initialized.slick-slider .slick-dots li {
      margin: 0;
  }
}

section.events-section .event-slider .slick-initialized.slick-slider .slick-dots li button {
  border: 0;
  background: 0 0;
  display: block;
  height: 100%;
  width: 100%;
  outline: 0;
  background-color: #e5e5e5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  padding: 0;
}

section.events-section .event-slider .slick-initialized.slick-slider .slick-dots li button:before {
  content: "" !important;
  height: 100%;
  width: 100%;
  font-family: slick;
  font-size: 6px;
  font-size: .375rem;
  line-height: 20px;
  text-align: center;
  background: #eaeaea;
  opacity: 1;
  display: block;
}

/* Common styling for titles and paragraphs */
.publication-title,
.sector-content p,
.sector-title h5,
section.events-section .event-slider .single-events .single-events-wrapper .event-details p {
  font-family: Montserrat, sans-serif;
}

/* Active dot style in the event slider */
section.events-section .event-slider .slick-initialized.slick-slider .slick-dots li.slick-active button:before {
  background: #adb7bd;
}

/* Individual event styling */
section.events-section .event-slider .single-events {
  float: left;
}

section.events-section .event-slider .single-events .single-events-wrapper {
  margin: 0 15px 65px 0;
  cursor: pointer;
  width: 400px; /* Increased width for better visibility */
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  section.events-section .event-slider .single-events {
      float: none;
      text-align: center;
      width: auto; /* Reset width for mobile devices */
      margin: 0 auto;
  }

  section.events-section .event-slider .single-events .single-events-wrapper {
      width: 100%;
      margin: 0 auto !important;
  }
}

@media screen and (max-width: 768px) {
  section.events-section .event-slider .single-events .single-events-wrapper {
      margin: 0 5px;
  }
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img {
  position: relative;
  text-align: center;
  min-height: 134px;
}

@media screen and (max-width: 599px) {
  section.events-section .event-slider .single-events .single-events-wrapper .event-img {
      width: 100%;
      margin: 0 auto;
      min-height: 145px;
      max-width: 500px; /* Increased max-width for responsiveness */
  }
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img .hover-content {
  opacity: 0;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img .hover-content span {
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img img {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%; /* Make images responsive */
  height: auto;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-img:after {
  content: "";
  position: absolute;
  background: #bdbdbd;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-title {
  padding-top: 20px;
  min-height: 65px;
}

section.events-section .event-slider .single-events .single-events-wrapper .event-title h5 {
  font-size: 20px;
  font-size: 1rem;
  font-weight: 800;
  max-width: 225px;
}

@media screen and (max-width: 599px) {
  section.events-section .event-slider .single-events .single-events-wrapper .event-title h5 {
      font-size: 14px;
      font-size: .875rem;
      max-width: 100%;
  }
}

section.events-section .event-slider .single-events .single-events-wrapper .event-details p {
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 190px;
  font-size: 12px;
  font-size: .75rem;
}

@media screen and (max-width: 599px) {
  section.events-section .event-slider .single-events .single-events-wrapper .event-details p {
      max-width: 100%;
      font-size: 12px;
      font-size: .75rem;
  }
}

section.events-section .event-slider .single-events .single-events-wrapper:hover .hover-content {
  position: absolute;
  background: rgba(16, 171, 229, .83922);
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.sector-common-wrapper,
.sector-wrapper {
  position: relative;
}

section.events-section .event-slider .single-events .single-events-wrapper:hover .hover-content a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  outline: 0;
}

.event-slider-wrapper {
  display: flex;
  justify-content: center; /* Align items horizontally at the center */
  align-items: center; /* Align items vertically at the center */
}

.event-slider-wrapper .slick-list {
  width: 100%;
}



/* Responsive adjustments */
@media (max-width: 767px) {
  .container-fluid.bg-light.py-6.px-5 {
      padding: 30px 10px;
  }

  .text-center.mx-auto.mb-5 {
      max-width: 100%;
  }

  .d-inline-block.bg-dark-radial.text-center.pt-4.px-5.mb-5 {
      padding: 2rem 1rem 4rem 1rem;
  }

  #portfolio-flters li {
      margin-right: 5px;
      margin-bottom: 5px;
  }

  .portfolio-item {
      padding: 10px;
  }
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container-fluid {
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col-lg-6 {
  flex-basis: calc(50% - 20px);
  margin-bottom: 20px;
}

.registration-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.registration-container h1 {
  color: black;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.select-control {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-register {
  background-color: #B78431;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .col-lg-6 {
      flex-basis: 100%;
  }
}








/*------/ Title /------*/
.title-wrap {
  padding-bottom: 4rem;
}

.title-a {
  text-decoration: none;
  font-size: 2.1rem;
  font-weight: 600;
}

.title-link {
  font-size: 1.2rem;
  font-weight: 300;
  padding-top: 1.2rem;
}

.title-link a {
  text-decoration: none;
  color: #313131;
}

.title-link span {
  font-size: 20px;
  padding-left: 4px;
  vertical-align: middle;
}

.title-box-d {
  padding-bottom: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.title-box-d .title-d {
  font-weight: 600;
  font-size: 1.5rem;
}

.title-box-d .title-d:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: #2eca6a;
  bottom: 20px;
  left: 0;
}

/*------/ Display Table & Table Cell /------*/
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*------/ Ul Resect /------*/
.ul-resect ul,
.box-comments ul,
.list-a ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/*------/ Overlay /------*/
.overlay-a {
  text-decoration: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}

.carousel-pagination {
  margin-top: 10px;
  text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #555;
  margin: 0 4px;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}

.carousel-pagination .swiper-pagination-bullet-active {
  background-color: #2eca6a;
  width: 36px;
}

.nav-arrow-a {
  text-decoration: none;
}

.nav-arrow-a .owl-arrow .owl-nav {
  font-size: 1.8rem;
  margin-top: -110px;
}

.nav-arrow-a .owl-arrow .owl-nav .owl-next {
  margin-left: 15px;
}

.nav-arrow-b .owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev,
.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  padding: 0.7rem 1.5rem !important;
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #ffffff;
  background-color: #2eca6a;
  opacity: 0.9;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
.nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
  transition: all 0.6s ease-in-out;
  color: #ffffff;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
.nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
  background-color: #26a356;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  margin-left: 0px;
}

/*------/ Socials /------*/
.socials-a {
  text-decoration: none;
}

.socials-a .list-inline-item:not(:last-child) {
  margin-right: 25px;
}





body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.contact-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

h1 {
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  color: #333;
}



/* Add this to your existing CSS or in a separate style block */
.button-style {
  display: inline-block;
  padding: 15px 25px;
  border: 2px solid #B78431; /* Blue color, you can change it to your desired color */
  border-radius: 8px;
  text-decoration: none;
  color: #B78431; /* Blue color, matches the border color */
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.button-style:hover {
  background-color: black; /* Darker blue color on hover, you can adjust it accordingly */
  color: #fff; /* White text color on hover */
}



/* Newsletter Section Styles */

.newsletter {
  background-color: #f8f8f8;
  padding: 60px 0; /* Adjust the padding as needed */
}

.subscribe-text {
  margin-bottom: 30px;
}

.subscribe-text h6 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.subscribe-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
}

.subscribe-form .newsletter-inner {
  display: flex;
  flex-wrap: wrap;
}

.subscribe-form input {
  width: calc(70% - 10px); /* Adjust the width as needed */
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.subscribe-form button {
  width: calc(30% - 10px); /* Adjust the width as needed */
  padding: 15px;
  background-color: #B78431;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Responsive styles for smaller screens */
@media (max-width: 767px) {
  .subscribe-form .newsletter-inner {
      flex-direction: column;
  }

  .subscribe-form input,
  .subscribe-form button {
      width: 100%;
      margin-right: 0;
  }
}












